:root {
  --bg: #f4f4f2;
  --surface: #ffffff;
  --text: #1f1f1f;
  --muted: #5f5f5f;
  --border: #d8d8d2;
  --green: #25a013;
  --hero-bg: #050505;
  --gold: #b38e5d;
  --gold-light: #d4b483;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-family: 'Merriweather', serif;
}

p {
  margin: 0 0 16px;
}

img {
  max-width: 100%;
}

.container {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 860px;
}

.hero-topbar {
  background: #e3c587;
  color: #171510;
  text-align: center;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #f4e6c8;
  border-left: 0;
  border-right: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-topbar p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #080808;
  color: #fff;
  border-bottom: 1px solid #1a1a1a;
  padding: 60px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("media/hero-bg.jpeg") no-repeat center center / cover;
  opacity: 0.6;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.4) 0%,
    rgba(8, 8, 8, 0.8) 100%
  ),
  linear-gradient(
    90deg, 
    rgba(8, 8, 8, 0.2) 0%, 
    rgba(8, 8, 8, 0.5) 40%, 
    rgba(8, 8, 8, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
}

.hero-kicker {
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero-brand {
  margin-bottom: 20px;
  line-height: 0.85;
}

.hero-brand p {
  margin: 0;
}

.hero-brand-title {
  font-family: "Merriweather", serif;
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: -4px;
}

.hero-brand-sub {
  font-family: "Merriweather", serif;
  font-size: clamp(12px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: #fff;
  opacity: 0.85;
}

.hero-brand-name {
  margin-top: 12px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto 24px;
  max-width: 780px;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.3;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #e5e5e5;
}

.hero h1 strong {
  font-weight: 900;
  color: #fff;
  display: inline-block;
}

.event-date,
.event-support {
  font-size: 16px;
}

.event-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
}

.hero-date-pill {
  margin: 0 auto 28px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.flags {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid rgba(228, 197, 142, 0.4);
  border-radius: 999px;
  background: rgba(19, 17, 22, 0.62);
  font-size: 13px;
  color: #fff;
}

.event-support {
  margin: 0 auto 16px;
  max-width: 760px;
  color: #dad2c6;
}

.counter-label {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccbda3;
  font-weight: 700;
}

.counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.time-box {
  min-width: 70px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-align: center;
}

.time-box span {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.time-box small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-cta {
  min-width: min(400px, 92%);
  border-radius: 999px;
  font-size: 18px;
  padding: 20px 40px;
  box-shadow: 0 10px 25px rgba(18, 148, 59, 0.3);
  background: #25a013; /* Bright vibrant green like example */
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-cta:hover {
  background: #2cb318;
  transform: translateY(-2px);
}

.hero-payments-image {
  display: block;
  width: 500px;
  margin: 0 auto 0;
  opacity: 0.6;
  filter: grayscale(1) invert(1);
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* Transformation Section */
.transformation-section {
  background: #171514;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.transformation-section h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 42px);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.1;
}

.transformation-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.transformation-card {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.transformation-card img {
  width: 100%;
  aspect-ratio: 16 / 13;
  object-fit: cover;
  border-radius: 4px;
}

.transformation-card.frustrated img {
  border: 3px solid #b72828;
}

.transformation-card.success img {
  border: 3px solid #1c8f48;
}

.transformation-pills {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.transformation-card.frustrated .transformation-pills {
  left: -20px;
  align-items: flex-start;
}

.transformation-card.success .transformation-pills {
  right: -20px;
  left: auto;
  align-items: flex-end;
}

.p-pill {
  background: red;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.transformation-card.frustrated .p-pill {
  background: #b72828;
}

.transformation-card.success .p-pill {
  background: #1c8f48;
}

.statement-bottom {
  max-width: 760px;
  margin: 0 auto;
}

.statement-bottom p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 30px;
}

.statement-bottom p strong {
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

@media (max-width: 768px) {
  .transformation-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .transformation-card.frustrated .transformation-pills,
  .transformation-card.success .transformation-pills {
    left: 10px;
    right: 10px;
    align-items: center;
  }
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.card ul,
.checks {
  margin: 0;
  padding-left: 20px;
}

.statement-wrap {
  margin-top: 26px;
  text-align: center;
}

.statement {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 20px;
}

.proof-placeholder {
  margin: 20px 0;
  border: 2px dashed var(--border);
  border-radius: 12px;
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--surface);
  text-align: center;
  color: var(--muted);
}

.support-copy {
  font-size: 20px;
}

/* Proof Section */
.proof-section {
  background: #fdfaf5;
  text-align: center;
  padding: 100px 0;
}

.proof-section h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.1;
  color: #111;
}

.proof-image-wrap {
  margin: 0 auto 50px;
  max-width: 600px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.proof-image-wrap img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.proof-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

.proof-text .highlight {
  display: block;
  margin-top: 30px;
  font-weight: 700;
  color: #000;
  font-size: 22px;
}

/* Mentor Section */
.mentor-section {
  background: #fff;
  padding: 100px 0;
}

.mentor-header {
  text-align: center;
  margin-bottom: 50px;
}

.mentor-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 15px;
  color: #000;
  font-weight: 900;
}

.mentor-divider {
  width: 120px;
  height: 2px;
  background: var(--gold-light);
  margin: 0 auto;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.mentor-photo-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.mentor-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}

.mentor-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.mentor-content ul.checks {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.mentor-content ul.checks li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #333;
}

.mentor-content ul.checks li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
}

.mentor-motto {
  margin-top: 40px;
  font-size: 18px;
  color: #111;
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.mentor-motto strong {
  font-style: normal;
  color: #000;
}

.mentor-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 60px;
}

.mentor-gallery div {
  background: #f5f5f5;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.mentor-gallery div:hover {
  transform: translateY(-5px);
}

.mentor-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Problem Section (The Bridge) */
.problem-section {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.problem-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.problem-section h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.1;
  font-weight: 900;
}

.problem-section .section-lead {
  font-size: 20px;
  color: #888;
  max-width: 700px;
  margin: 0 auto;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.pain-point {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pain-point:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(183, 40, 40, 0.3);
  transform: translateY(-5px);
}

.pain-point-icon {
  width: 50px;
  height: 50px;
  background: rgba(183, 40, 40, 0.1);
  color: #b72828;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 20px;
}

.pain-point h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.pain-point p {
  font-size: 16px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pain-points {
    grid-template-columns: 1fr;
  }
}

/* Benefits Section (The Outcome) */
.benefits-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.benefits-section h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  margin-bottom: 60px;
  font-weight: 900;
  color: #000;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

.benefit-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 40px 32px;
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.benefit-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.benefit-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f7f7f7;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

.center-cta {
  margin-top: 40px;
}

.center-cta p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.for-who-callout {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.benefit-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}

.center-cta {
  margin-top: 28px;
  text-align: center;
}

/* Daily Breakdown Section - Vertical Timeline */
.daily-breakdown {
  background: #080808;
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.daily-breakdown .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.daily-breakdown h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  font-weight: 900;
  color: #fff;
}

.daily-breakdown .section-lead {
  font-size: 20px;
  color: #888;
  max-width: 760px;
  margin: 0 auto;
}

.days-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 80px;
  padding-left: 0;
}

.days-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.day-card {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  transition: all 0.4s ease;
}

.day-dot {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #111;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(179, 142, 93, 0.2);
  transition: all 0.3s ease;
  z-index: 3;
  position: relative;
}

.day-card:hover .day-dot {
  background: var(--gold);
  transform: scale(1.1);
}

.day-dot .day-label {
  font-size: 9px;
  font-weight: 900;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.day-card:hover .day-dot .day-label {
  color: #000;
}

.day-dot .day-number {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

.day-card:hover .day-dot .day-number {
  color: #000;
}

.day-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 40px;
  border-radius: 8px;
  flex: 1;
  text-align: left;
}

.day-card:hover .day-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(179, 142, 93, 0.2);
}

.day-title {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.day-content p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 12px;
}

.day-content strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Delivery Box Refinement */
.delivery-box {
  background: linear-gradient(145deg, #171510, #080808);
  border: 1px solid var(--gold);
  padding: 50px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.delivery-info {
  flex: 1;
  text-align: left;
}

.delivery-info p {
  font-size: 24px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 25px;
}

.delivery-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.delivery-list li {
  font-size: 17px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 12px;
}

.delivery-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.delivery-note {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 900;
  max-width: 280px;
  line-height: 1.4;
  text-align: right;
}

@media (max-width: 768px) {
  .day-card {
    gap: 20px;
  }
  
  .day-dot {
    width: 50px;
    height: 50px;
  }
  
  .day-dot .day-number {
    font-size: 18px;
  }

  .days-timeline::before {
    left: 25px;
  }

  .day-content {
    padding: 20px;
  }

  .delivery-box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .delivery-info {
    text-align: center;
  }

  .delivery-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 100%;
    padding: 24px 0 0;
  }

  .delivery-list {
    grid-template-columns: 1fr;
  }
}

/* Comparison Section - High Impact */
.comparison-section {
  background-color: #0c0c0c;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("https://www.transparenttextures.com/patterns/carbon-fibre.png"); /* Subtle structural texture */
  padding: 120px 0;
  position: relative;
}

.comparison-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-card-main {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.comparison-column {
  display: flex;
  flex-direction: column;
}

.red-title {
  color: #ff4d4d;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.green-title {
  color: #00ffa3;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #ddd;
}

.red-item::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -2px;
  color: #ff4d4d;
  font-size: 24px;
  font-weight: 900;
}

.green-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ffa3;
  font-size: 20px;
  font-weight: 900;
}

.center-cta-comparison {
  text-align: center;
  margin-top: 60px;
}

.btn-pill {
  border-radius: 50px;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .comparison-card-main {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    gap: 60px;
  }
  
  .comparison-column.left {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.pricing-section {
  background: #e8e8e3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
}

.price-comparison {
  text-align: center;
  margin: 24px 0;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 30px;
}

.new-price {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price-label {
  font-weight: 700;
}

.pricing-notes,
.final-notes,
.legal-text {
  color: var(--muted);
}

.testimonials-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-container {
  display: grid;
  gap: 12px;
}

.faq-question {
  margin-bottom: 8px;
  font-size: 20px;
}

/* ============================================
   SITE FOOTER
   ============================================ */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0;
  text-align: center;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 600;
}

.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.6;
  margin: 0;
}

/* For Who Section - V2 (Image Based) */
.for-who-v2 {
  background: #fff;
  padding: 100px 0;
  color: #000;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.for-who-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  margin-bottom: 60px;
  color: #000;
  line-height: 1.1;
}

.for-who-list {
  display: flex;
  flex-direction: column;
}

.for-who-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #f0f0f0;
}

.for-who-item:last-child {
  border-bottom: none;
}

.check-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 2px solid #b38e5d; /* Your gold color */
  color: #b38e5d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

/* Diff Section - Silk & Gold Design */
.diff-section {
  background: #faf8f4;
  padding: 120px 0;
}

.diff-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 80px;
  color: #111;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.diff-grid-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Reduced gap slightly for better fit */
}

.diff-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 4px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 calc(25% - 20px); /* Strictly 4 per row on desktop */
  min-width: 240px; /* Reduced to ensure 4 fit in 1080px container */
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--gold-light);
}

/* ============================================
   PRICING SECTION - Premium Dark Card
   ============================================ */
.pricing-section-v2 {
  background: #080808;
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow behind the card */
.pricing-section-v2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(179, 142, 93, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.container--tight {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* --- External header above the card --- */
.pricing-main-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.15;
}

.pricing-main-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 50px;
  text-align: center;
}

/* --- The Card --- */
.pricing-card-v2 {
  background: linear-gradient(170deg, #141210 0%, #0a0a09 100%);
  border: 1px solid rgba(179, 142, 93, 0.25);
  border-radius: 20px;
  padding: 60px 45px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(179, 142, 93, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.7);
  position: relative;
}

/* Top gradient shine on the card border */
.pricing-card-v2::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  pointer-events: none;
}

/* --- Card Header --- */
.pricing-card-kicker {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* --- Price Display --- */
.pricing-comparison-v3 {
  margin-bottom: 5px;
}

.old-price-v3 {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 400;
}

.pricing-main-v3 {
  margin-bottom: 35px;
}

.main-price-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  margin: 8px 0 15px;
}

.main-price-wrap .currency {
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.main-price-wrap .amount {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 0.85;
}

.price-special-label {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Divider --- */
.pricing-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 35px auto;
}

/* --- Recap / Includes List --- */
.pricing-recap {
  text-align: left;
  max-width: 440px;
  margin: 0 auto 40px;
}

.pricing-recap h3 {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.recap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recap-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.recap-list li:last-child {
  margin-bottom: 0;
}

.recap-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}

/* --- CTA Button --- */
.pricing-cta-wrap {
  margin-top: 40px;
}

.btn-green-premium {
  display: block;
  background: linear-gradient(135deg, #1c8f48, #22a855);
  color: #fff;
  padding: 22px 40px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 8px 24px rgba(28, 143, 72, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
}

.btn-green-premium:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 40px rgba(28, 143, 72, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #22a053, #2fca6f);
}

/* --- Notes (Cupos / Seguro / Garantía) --- */
.pricing-notes-v3 {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-notes-v3 p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-notes-v3 p::before {
  content: "•";
  color: var(--gold);
}

.pricing-notes-v3 p:first-child::before {
  content: "";
}

/* --- Trust Image --- */
.pricing-trust {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-image {
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.5;
}

/* --- Mobile --- */
@media (max-width: 600px) {
  .pricing-section-v2 {
    padding: 80px 0;
  }

  .pricing-card-v2 {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .main-price-wrap .amount {
    font-size: 80px;
  }

  .main-price-wrap .currency {
    font-size: 24px;
  }

  .pricing-main-title {
    font-size: 28px;
  }

  .pricing-notes-v3 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-green-premium {
    font-size: 18px;
    padding: 20px 30px;
  }
}

/* Why Cheap Section - Elegant & Premium Design */
.why-cheap-v2 {
  background: #fdfbf7;
  padding: 100px 0;
  text-align: center;
}

.why-cheap-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  margin-bottom: 50px;
  color: #111;
  line-height: 1.1;
}

.why-cheap-content {
  max-width: 700px;
  margin: 0 auto;
}

.why-cheap-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.why-cheap-content p:last-child {
  margin-bottom: 0;
}

.why-cheap-lead {
  font-size: 22px !important;
  font-weight: 700;
  color: #222 !important;
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  .hero-topbar {
    padding: 12px 10px;
  }

  .hero {
    padding: 56px 0 50px;
  }

  .hero::before {
    background-position: center bottom -28px;
    background-size: 340px auto;
    opacity: 0.2;
  }

  .hero-kicker {
    font-size: 14px;
  }

  .hero-date-pill {
    border-radius: 18px;
    padding: 10px 14px;
  }

  .hero-cta {
    min-width: 100%;
    font-size: clamp(17px, 6vw, 22px);
    padding: 14px 16px;
  }

  .hero-payments-image {
    width: min(360px, 96%);
    margin-top: 18px;
  }

  .two-col,
  .mentor-grid,
  .pain-points,
  .benefits-grid,
  .for-who-grid,
  .testimonials-grid,
  .diff-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 0;
  }
}

/* Testimonials V2 Section - Masonry Grid Design */
.testimonials-v2 {
  background: #faf8f4;
  padding: 120px 0;
  text-align: center;
}

.testimonials-v2-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 60px;
  color: #111;
  line-height: 1.1;
}

.testimonials-grid-v2 {
  column-count: 3;
  column-gap: 24px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.testimonial-card-v2 {
  break-inside: avoid;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.testimonial-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .testimonials-grid-v2 {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .testimonials-v2 {
    padding: 80px 0;
  }
  
  .testimonials-v2-title {
    margin-bottom: 40px;
  }
  
  .testimonials-grid-v2 {
    column-count: 1;
    margin-bottom: 40px;
  }
}
  
  .why-cheap-content p {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .why-cheap-lead {
    font-size: 20px !important;
  }
}

.diff-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 25px;
}

.diff-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.diff-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media (max-width: 1100px) {
  .diff-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .diff-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .diff-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .for-who-title {
    margin-bottom: 40px;
  }
  
  .for-who-item {
    gap: 15px;
    padding: 20px 0;
  }
  
  .for-who-item p {
    font-size: 16px;
  }
  
  .for-who-footer p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .hero-topbar {
    padding: 12px 10px;
  }

  .hero {
    padding: 56px 0 50px;
  }

  .hero::before {
    background-position: center bottom -28px;
    background-size: 340px auto;
    opacity: 0.2;
  }

  .hero-kicker {
    font-size: 14px;
  }

  .hero-date-pill {
    border-radius: 18px;
    padding: 10px 14px;
  }

  .hero-cta {
    min-width: 100%;
    font-size: clamp(17px, 6vw, 22px);
    padding: 14px 16px;
  }

  .hero-payments-image {
    width: min(360px, 96%);
    margin-top: 18px;
  }

  .two-col,
  .mentor-grid,
  .pain-points,
  .benefits-grid,
  .for-who-grid,
  .testimonials-grid,
  .diff-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 42px 0;
  }
}

/* ============================================
   FINAL CTA - Dark Premium Strip
   ============================================ */
.final-cta-v2 {
  background: #0a0a0a;
  padding: 100px 0;
  text-align: center;
}

.final-cta-heading {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 40px;
}

.btn-green-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1c8f48, #22a855);
  color: #fff;
  padding: 20px 48px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px rgba(28, 143, 72, 0.35);
  transition: all 0.3s ease;
  border: none;
}

.btn-green-pill span {
  font-size: 24px;
  line-height: 1;
}

.btn-green-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(28, 143, 72, 0.5);
  background: linear-gradient(135deg, #22a053, #2fca6f);
}

.final-cta-notes {
  margin-top: 30px;
}

.final-cta-notes p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 6px;
  line-height: 1.5;
}

.final-cta-trust {
  margin-top: 40px;
}

.final-trust-img {
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .final-cta-v2 {
    padding: 70px 0;
  }

  .final-cta-heading {
    font-size: 26px;
    padding: 0 10px;
  }

  .btn-green-pill {
    font-size: 15px;
    padding: 18px 32px;
    width: 90%;
    justify-content: center;
  }

  .final-trust-img {
    max-width: 280px;
  }
}

/* FAQ Accordion Section */
.faq-section {
  background: #fdfbf7;
  padding: 100px 0;
}

.faq-section h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900;
  margin-bottom: 50px;
  color: #111;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  margin: 0;
  line-height: 1.3;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 28px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 15px;
  }
  
  .faq-answer p {
    padding: 0 20px;
    font-size: 15px;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}
