/* ============================================================
   Greek Golden Visa Landing Page — golden_visa_landing.css
   Mobile-first, premium, SEO-optimized
   ============================================================ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --gv-gold:        #C9A84C;
  --gv-gold-light:  #E8C97A;
  --gv-dark:        #0D1B2A;
  --gv-darker:      #060e17;
  --gv-mid:         #1e3a5f;
  --gv-text:        #1a2535;
  --gv-text-muted:  #5a6a7e;
  --gv-bg-alt:      #f4f7fb;
  --gv-white:       #ffffff;
  --gv-radius:      18px;
  --gv-radius-sm:   10px;
  --gv-shadow:      0 8px 40px rgba(13,27,42,.15);
  --gv-shadow-hover:0 16px 60px rgba(13,27,42,.25);
  --gv-transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Shared helpers ─────────────────────────────────────────── */
.section-pad { padding: 72px 0; }

.gv-badge {
  display: inline-block;
  background: rgba(201,168,76,.15);
  color: var(--gv-gold);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gv-badge--gold {
  background: rgba(201,168,76,.25);
  color: var(--gv-gold-light);
  border-color: rgba(201,168,76,.5);
}

.gv-section-header { text-align: center; margin-bottom: 48px; }
.gv-section-header--light .gv-section-title { color: var(--gv-white); }
.gv-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gv-text);
  margin: 0 0 12px;
  line-height: 1.2;
}
.gv-section-desc {
  color: var(--gv-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Buttons (utility system) ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 44px; /* mobile tap target */
  padding: .9rem 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    filter .15s ease,
    background .15s ease,
    border-color .15s ease;
}
.btn i { font-size: .95em; }
.btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.75);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #2b7cff 0%, #1e63ff 55%, #184bcb 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(12,44,122,0.38);
  padding: 15px 26px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(12,44,122,0.45);
  filter: brightness(1.04);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 10px 24px rgba(12,44,122,0.30);
  filter: none;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.20);
  padding: 15px 26px;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}
.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

/* ── Gold / educational CTA ─────────────────────────────────── */
.btn-gv-info {
  background: linear-gradient(135deg, #ffbf58 0%, #f3a833 55%, #de8f16 100%);
  color: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 26px rgba(227,154,33,0.32);
  padding: 14px 24px;
  font-weight: 800;
  letter-spacing: 0.015em;
}
.btn-gv-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227,154,33,0.40);
  filter: brightness(1.03);
}
.btn-gv-info:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(227,154,33,0.24);
  filter: none;
}

@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
.btn-primary.btn-primary--pulse:not(:hover):not(:active) {
  animation: ctaPulse 1.6s ease-in-out infinite;
}

.btn-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.btn-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
}
.btn-icon:active {
  transform: translateY(1px);
}
.btn-icon:focus-visible {
  outline: 3px solid rgba(59,130,246,.72);
  outline-offset: 3px;
}

/* Legacy button classes (kept for other sections) */
.gv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--gv-transition);
  cursor: pointer;
  white-space: nowrap;
}
.gv-btn--primary {
  background: var(--gv-gold);
  color: var(--gv-darker);
}
.gv-btn--primary:hover {
  background: var(--gv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}
.gv-btn--outline {
  background: transparent;
  color: var(--gv-white);
  border: 2px solid rgba(255,255,255,.65);
}
.gv-btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--gv-white);
}
.gv-btn--outline-dark {
  background: transparent;
  color: var(--gv-text);
  border: 2px solid var(--gv-text);
}
.gv-btn--outline-dark:hover {
  background: var(--gv-text);
  color: var(--gv-white);
}
.gv-btn--gold {
  background: var(--gv-gold);
  color: var(--gv-darker);
  font-size: 1rem;
  padding: 16px 36px;
}
.gv-btn--gold:hover {
  background: var(--gv-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,.5);
}
.gv-btn--whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  padding: 16px 36px;
}
.gv-btn--whatsapp:hover {
  background: #1ebe58;
  transform: translateY(-2px);
}

/* ── SECTION 1: HERO ────────────────────────────────────────── */
.gv-hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #081a2e;
  box-sizing: border-box;
}

/* ── VIDEO: full-bleed background, NOT a content column ── */
.gv-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #081a2e;
  z-index: 0;
  pointer-events: none;
  opacity: calc(var(--gv-video-opacity, 100) / 100);
  transition: opacity 0.9s ease;
}

.gv-hero__video.gv-video--loading {
  opacity: 0;
}

/* <img> fallback inside <video> for unsupported browsers */
.gv-hero__poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── OVERLAY: above video (z-index 1), below content (z-index 2) ── */
.gv-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,18,32,0.35), rgba(8,18,32,0.68)),
    radial-gradient(circle at center, rgba(0,0,0,0.18), rgba(0,0,0,0.40));
  z-index: 1;
  pointer-events: none;
}

/* ── CONTENT: centered on top of the video ── */
.gv-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
  color: #fff;
}

.gv-hero__badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gv-gold-light);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 999px;
  padding: 6px 22px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gv-hero__title {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--gv-white);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 18px;
}

.gv-hero__subtitle {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.94);
}

.gv-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gv-hero__ctas .btn {
  min-width: 180px;
}
.gv-hero__ctas .btn i {
  margin-right: 2px;
}

/* Stats — 4-column grid inside the hero, below CTAs */
.gv-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.gv-stat {
  text-align: center;
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gv-stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gv-gold);
  line-height: 1.2;
}
.gv-stat__label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,0.70);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 5px;
  line-height: 1.35;
}

/* Gold info CTA below the stats */
.gv-hero__info-cta {
  display: flex;
  justify-content: center;
}

/* ── SECTION 2: INTRO / MAIN CONTENT ───────────────────────── */
.gv-intro {
  background: var(--gv-white);
  border-bottom: 1px solid rgba(13,27,42,.06);
}

/* Intro section: comfortable top, zero bottom so Section 1 sits close */
.gv-intro-pad {
  padding: 64px 0 0;
}

/* Section 1: minimal top so it reads as a continuation of the intro */
.gv-section1-pad {
  padding: 24px 0 72px;
}
.gv-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.07rem;
  line-height: 1.85;
  color: var(--gv-text);
  text-align: left;
}

/* Rich-text content produced by CKEditor5 */
.gv-rich-content {
  text-align: left;
  /* Override white body color: sections with this class have a light background */
  color: var(--gv-text, #1a2535);
}

.gv-rich-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gv-dark, #1a1a2e);
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
}
.gv-rich-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gv-dark, #1a1a2e);
  margin: 1.5rem 0 0.6rem;
}
.gv-rich-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gv-dark, #1a1a2e);
  margin: 1.25rem 0 0.5rem;
}
.gv-rich-content p { margin-bottom: 1rem; color: var(--gv-text, #1a2535); }
.gv-rich-content strong { font-weight: 700; }
.gv-rich-content em { font-style: italic; }
.gv-rich-content u { text-decoration: underline; }

.gv-rich-content a {
  color: var(--gv-gold, #c9a84c);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.gv-rich-content a:hover { color: var(--gv-gold-dark, #a07c30); }

.gv-rich-content ul,
.gv-rich-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
}
.gv-rich-content ul li { list-style: disc; margin-bottom: 0.35rem; }
.gv-rich-content ol li { list-style: decimal; margin-bottom: 0.35rem; }

.gv-rich-content blockquote {
  border-left: 4px solid var(--gv-gold, #c9a84c);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: #f9f7f2;
  color: #555;
  font-style: italic;
  border-radius: 0 6px 6px 0;
}

.gv-rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.gv-rich-content th,
.gv-rich-content td {
  border: 1px solid #e2e8f0;
  padding: 0.6rem 0.9rem;
  text-align: left;
}
.gv-rich-content th { background: #f1f5f9; font-weight: 700; }
.gv-rich-content tr:nth-child(even) td { background: #f9fafb; }

.gv-rich-content figure { margin: 1.5rem 0; }
.gv-rich-content figcaption { font-size: 0.85rem; color: #888; margin-top: 0.4rem; }

.gv-rich-content hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 2rem 0;
}

/* ── SECTION 2b: ZIG-ZAG CONTENT BLOCKS ─────────────────────── */

/* Alternating section backgrounds */
.gv-zz-section          { background: var(--gv-white); }
.gv-zz-section--alt     { background: var(--gv-bg-alt); }

/* Two-column grid */
.gv-zz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text column — explicit dark color so body { color: #fff } doesn't bleed in */
.gv-zz-text {
  color: var(--gv-text, #1a2535);
}

/* Full-width when no image is uploaded */
.gv-zz-grid--full {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

/* Reverse: move image visually to the left by re-ordering columns */
.gv-zz-grid--reverse .gv-zz-image { order: -1; }

/* Text column */
.gv-zz-heading {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--gv-text);
  margin: 0 0 18px;
  line-height: 1.25;
}

/* Decorative gold underline on heading */
.gv-zz-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gv-gold);
  border-radius: 2px;
  margin-top: 10px;
}

/* Image column */
.gv-zz-image {
  position: relative;
}

.gv-zz-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(13,27,42,.13);
  display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1),
              box-shadow .45s cubic-bezier(.4,0,.2,1);
}
/* Hover zoom only on pointer devices — not on touch */
@media (hover: hover) and (pointer: fine) {
  .gv-zz-image:hover .gv-zz-img {
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(13,27,42,.20);
  }
}

/* Decorative offset border behind the image */
.gv-zz-image::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(201,168,76,.25);
  border-radius: 22px;
  z-index: -1;
  pointer-events: none;
}

/* Reversed section: decorative border mirrors on the other side */
.gv-zz-grid--reverse .gv-zz-image::before {
  inset: 14px 14px -14px -14px;
}

/* Mobile: stack vertically, image below text */
@media (max-width: 860px) {
  .gv-zz-grid,
  .gv-zz-grid--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Restore natural DOM order on mobile (text first) */
  .gv-zz-grid--reverse .gv-zz-image { order: 0; }

  /* Use aspect-ratio instead of fixed height — looks correct on every screen width */
  .gv-zz-img {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    /* No transition/transform on touch — saves GPU and avoids layout jank */
    transition: none;
  }

  /* Remove decorative offset border on mobile */
  .gv-zz-image::before { display: none; }
}

/* Extra-small screens — slightly taller crop feels better */
@media (max-width: 480px) {
  .gv-zz-img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }
}

/* ── SECTION 3: INVESTMENT TIERS ────────────────────────────── */
.gv-tiers {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
}

.gv-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-top: .5rem;
}

/* ── Card — full-bleed image with bottom overlay ────────────── */
a.gv-tier-card,
.gv-tier-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  height: 560px;
  box-shadow: 0 12px 40px rgba(10,22,40,.15);
  transition: box-shadow .4s ease, transform .4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .gv-tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(10,22,40,.26);
  }
  .gv-tier-card--premium:hover {
    box-shadow: 0 24px 64px rgba(201,162,39,.30);
  }
}

.gv-tier-card--premium {
  box-shadow: 0 12px 40px rgba(201,162,39,.18);
}

/* ── Full-bleed background image ─────────────────────────────── */
.gv-tier-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, #17345f 0%, #0a1b33 100%);
}
.gv-tier-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
@media (hover: hover) and (pointer: fine) {
  .gv-tier-card:hover .gv-tier-card__bg img {
    transform: scale(1.06);
  }
}

/* ── Navy gradient overlay — bottom-heavy ────────────────────── */
.gv-tier-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 20%,
    rgba(10,22,40,.18) 40%,
    rgba(10,22,40,.65) 62%,
    rgba(10,22,40,.94) 100%
  );
  pointer-events: none;
}

/* ── Price badge — top-left, frosted ─────────────────────────── */
.gv-tier-card__price {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(10,22,40,.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,162,39,.30);
  border-radius: 14px;
  padding: 10px 18px;
}
.gv-tier-card__price-label {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(255,255,255,.60);
  line-height: 1;
}
.gv-tier-card__price-amount {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #c9a227, #e6c44d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Premium badge — top-right ───────────────────────────────── */
.gv-tier-card__premium-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--gv-gold) 0%, #e8c97a 100%);
  color: #0D1B2A;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(201,168,76,.50);
}

/* ── Card content — positioned at the bottom over gradient ──── */
.gv-tier-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 0 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gv-tier-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.35;
}

.gv-tier-card__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin: 0 0 20px;
}

/* ── CTA button — gold-tinted capsule ────────────────────────── */
.gv-tier-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(201,162,39,.14);
  border: 1px solid rgba(201,162,39,.45);
  color: #c9a227;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s ease, gap .25s ease,
              transform .18s ease, box-shadow .25s ease;
}
.gv-tier-card__btn i { font-size: .78em; }
.gv-tier-card__btn:hover {
  background: rgba(201,162,39,.24);
  gap: 14px;
  transform: translateX(2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.30);
}

.gv-tier-card__btn--gold {
  background: linear-gradient(135deg, #c9a227, #e6c44d);
  border-color: transparent;
  color: #0D1B2A;
}
.gv-tier-card__btn--gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(201,162,39,.45);
}

/* ── Responsive: tiers ───────────────────────────────────────── */
@media (max-width: 960px) {
  /* Benefits: drop from 4 → 2 columns on tablet */
  .gv-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 900px) {
  .gv-tiers__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 20px;
  }
  .gv-tier-card { height: 480px; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .gv-tiers__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .gv-tier-card { height: 500px; }
}

/* ── SECTION 3.5: MID-PAGE CONSULT BANNER ───────────────────── */
.gv-mid-consult-banner {
  background: linear-gradient(180deg, #eef4fb 0%, #f7fbff 100%);
  padding: 28px 0 54px;
}

.gv-mid-consult-banner__card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(130deg, #0e3d72 0%, #0d5eaf 48%, #17a589 100%);
  box-shadow: 0 18px 50px rgba(13, 94, 175, 0.3);
}

.gv-mid-consult-banner__card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.gv-mid-consult-banner__card::after {
  content: '';
  position: absolute;
  inset: auto -8% -55% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.gv-mid-consult-banner__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.gv-mid-consult-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 12px;
}

.gv-mid-consult-banner__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.25;
}

.gv-mid-consult-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 58ch;
}

.gv-mid-consult-banner__btn {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.38);
  flex-shrink: 0;
}

.gv-mid-consult-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.45);
  filter: brightness(1.04);
}

.gv-mid-consult-banner__btn:active {
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.3);
}

/* ── SECTION 4: BENEFITS ────────────────────────────────────── */

/* Photo-background variant — uses CSS custom property set inline when image exists */
.gv-benefits--photo {
  position: relative;
  background-color: var(--gv-dark);          /* fallback when no image */
  background-image: var(--benefits-bg, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;              /* parallax feel */
}

/* Dark overlay for readability */
.gv-benefits__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 20, 40, 0.82) 0%,
    rgba(15, 30, 55, 0.75) 50%,
    rgba(10, 20, 40, 0.85) 100%
  );
  z-index: 1;
}

.gv-section-title--white { color: var(--gv-white) !important; }

/* 4-column grid — always 4 on desktop so 8 items = exactly 2 rows */
.gv-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Luxury thumbnail card ── */
.gv-benefit-card {
  position: relative;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 30px 22px 26px;
  text-align: center;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease,
              border-color .25s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

@media (hover: hover) and (pointer: fine) {
  .gv-benefit-card:hover {
    background: rgba(201,168,76,.12);
    border-color: rgba(201,168,76,.45);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,.28);
  }
}

/* Gold icon circle */
.gv-benefit-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1.5px solid rgba(201,168,76,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gv-gold);
  transition: background .25s ease, border-color .25s ease;
}
.gv-benefit-card:hover .gv-benefit-card__icon-wrap {
  background: rgba(201,168,76,.28);
  border-color: var(--gv-gold);
}

/* Small two-digit counter — top-right */
.gv-benefit-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(201,168,76,.55);
  line-height: 1;
}

/* Benefit label */
.gv-benefit-card__text {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 18px;
}

/* Gold bottom accent bar */
.gv-benefit-card__accent {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gv-gold), transparent);
  border-radius: 2px;
  transition: transform .3s ease;
}
.gv-benefit-card:hover .gv-benefit-card__accent {
  transform: translateX(-50%) scaleX(1);
}

/* ── SECTION 5: PROCESS STEPS ───────────────────────────────── */
.gv-process { background: var(--gv-white); }

.gv-process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.gv-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px 32px;
  position: relative;
}
.gv-process__step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gv-dark), var(--gv-mid));
  color: var(--gv-gold);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(13,27,42,.3);
  position: relative;
  z-index: 1;
}
.gv-process__step-body p {
  font-size: .9rem;
  color: var(--gv-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Horizontal connector line between steps */
.gv-process__connector {
  display: none; /* shown only on wider screens */
}
@media (min-width: 640px) {
  .gv-process__timeline {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    align-items: start;
  }
  .gv-process__step {
    position: relative;
  }
  .gv-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -12%;
    width: 24%;
    height: 2px;
    background: linear-gradient(to right, var(--gv-gold), transparent);
  }
}

/* ── SECTION 6: RELATED ARTICLES ────────────────────────────── */
.gv-articles--alt { background: var(--gv-bg-alt); }

.gv-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.gv-article-card {
  background: var(--gv-white);
  border-radius: var(--gv-radius);
  overflow: hidden;
  box-shadow: var(--gv-shadow);
  transition: var(--gv-transition);
  display: flex;
  flex-direction: column;
}
.gv-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gv-shadow-hover);
}
.gv-article-card__img-link { display: block; overflow: hidden; }
.gv-article-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gv-article-card:hover .gv-article-card__img { transform: scale(1.04); }
.gv-article-card__body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.gv-article-card__cat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gv-gold);
  margin-bottom: 8px;
  display: block;
}
.gv-article-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gv-text);
  margin: 0 0 10px;
  line-height: 1.35;
}
.gv-article-card__title a {
  color: inherit;
  text-decoration: none;
}
.gv-article-card__title a:hover { color: var(--gv-gold); }
.gv-article-card__excerpt {
  font-size: .88rem;
  color: var(--gv-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.gv-article-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--gv-text-muted);
  border-top: 1px solid #e8eef6;
  padding-top: 12px;
  gap: 8px;
  flex-wrap: wrap;
}
.gv-article-card__meta time { display: flex; align-items: center; gap: 5px; }
.gv-article-card__read-more {
  color: var(--gv-gold);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--gv-transition);
}
.gv-article-card__read-more:hover { gap: 8px; }

.gv-articles__cta { text-align: center; }

/* ── SECTION 7: YOUTUBE VIDEOS ──────────────────────────────── */
.gv-videos { background: var(--gv-white); }

.gv-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 480px), 1fr));
  gap: 24px;
}
.gv-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--gv-radius);
  overflow: hidden;
  box-shadow: var(--gv-shadow);
}
.gv-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 8 — FAQ  ·  LUXURY GLASS-CARD ACCORDION
   ══════════════════════════════════════════════════════════════ */

/* ── Section background — warm ivory with ambient orbs ──────── */
.gv-faq {
  position: relative;
  background: linear-gradient(175deg, #faf8f4 0%, #f3efe8 50%, #eae5db 100%);
  overflow: hidden;
}

/* Floating ambient orbs */
.gv-faq-bg { position: absolute; inset: 0; pointer-events: none; }
.gv-faq-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.gv-faq-bg__orb--1 {
  width: 500px; height: 500px;
  top: -10%; right: -8%;
  background: radial-gradient(circle, rgba(201,168,76,.22), transparent 70%);
}
.gv-faq-bg__orb--2 {
  width: 400px; height: 400px;
  bottom: -10%; left: -5%;
  background: radial-gradient(circle, rgba(13,27,42,.08), transparent 70%);
}

/* ── Section header — editorial left-aligned ────────────────── */
.gv-faq-header {
  max-width: 900px;
  margin: 0 auto 48px;
}
.gv-faq-header__title {
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 800;
  color: var(--gv-dark);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.gv-faq-header__sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gv-text-muted);
  max-width: 560px;
  margin: 0;
}

/* ── List ────────────────────────────────────────────────────── */
.gv-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

/* ══ Card ════════════════════════════════════════════════════════ */
.gv-faq-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 20px;
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.9) inset,
    0 8px 32px rgba(13,27,42,.06);
  overflow: hidden;
  transition:
    box-shadow     .28s ease,
    border-color   .28s ease,
    transform      .28s ease,
    background     .28s ease;
}

/* Hover: lift + brighter glass */
.gv-faq-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,.9) inset,
    0 14px 42px rgba(13,27,42,.10);
  background: rgba(255,255,255,.82);
}

/* Open: gold-kissed glass */
.gv-faq-card.is-open {
  background: rgba(255,255,255,.90);
  border-color: rgba(201,168,76,.40);
  box-shadow:
    0 1px 0 0 rgba(255,255,255,1) inset,
    0 20px 52px rgba(201,168,76,.12),
    0 4px 16px rgba(13,27,42,.06);
  transform: translateY(-3px);
}

/* ── Card head (the clickable row) ──────────────────────────── */
.gv-faq-card__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Number badge — elegant rounded square */
.gv-faq-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.10) 0%, rgba(201,168,76,.05) 100%);
  border: 1px solid rgba(201,168,76,.22);
  color: var(--gv-gold);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.gv-faq-card.is-open .gv-faq-card__num {
  background: linear-gradient(135deg, var(--gv-gold) 0%, var(--gv-gold-light) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}

/* Question text */
.gv-faq-card__q {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gv-text);
  transition: color .2s ease;
}
.gv-faq-card.is-open .gv-faq-card__q { color: var(--gv-dark); }

/* Toggle chevron — circular frame */
.gv-faq-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,27,42,.12);
  color: var(--gv-text-muted);
  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .35s cubic-bezier(.4,0,.2,1);
}
.gv-faq-card:hover .gv-faq-card__toggle {
  border-color: rgba(201,168,76,.35);
  color: var(--gv-gold);
}
.gv-faq-card.is-open .gv-faq-card__toggle {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.45);
  color: var(--gv-gold);
  transform: rotate(180deg);
}

/* SVG chevron inside toggle */
.gv-faq-card__chevron-path {
  transition: stroke .2s ease;
}

/* ── Answer body — animated panel ───────────────────────────── */
.gv-faq-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}

.gv-faq-card__answer {
  padding: 0 28px 28px;
  /* left offset = num-width(44) + gap(20) + 28px card-padding — align under question text */
  margin-left: calc(44px + 20px);
  padding-top: 4px;
  position: relative;
}

/* Gold accent bar next to the answer */
.gv-faq-card__answer::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -1px;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--gv-gold), rgba(201,168,76,.15));
}

.gv-faq-card__answer,
.gv-faq-card__answer p {
  font-size: .96rem;
  color: var(--gv-text-muted);
  line-height: 1.82;
}
.gv-faq-card__answer p            { margin: 0 0 12px; padding-left: 16px; }
.gv-faq-card__answer p:last-child { margin-bottom: 0; }

.gv-faq-card__answer a {
  color: var(--gv-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.gv-faq-card__answer a:hover { color: var(--gv-dark); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gv-faq-card__head {
    gap: 14px;
    padding: 20px 20px;
  }
  .gv-faq-card__num { width: 38px; height: 38px; font-size: .82rem; border-radius: 10px; }
  .gv-faq-card__q { font-size: 1rem; }
  .gv-faq-card__toggle { width: 32px; height: 32px; }
  .gv-faq-card__answer {
    margin-left: calc(38px + 14px);
    padding: 0 20px 22px;
    padding-top: 4px;
  }
  .gv-faq-card__answer p { padding-left: 14px; font-size: .93rem; }
}

/* ── SECTION 9: CTA BANNER ──────────────────────────────────── */
.gv-cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--gv-darker) 0%, var(--gv-mid) 60%, var(--gv-dark) 100%);
  text-align: center;
  overflow: hidden;
}
.gv-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.1), transparent);
  pointer-events: none;
}
.gv-cta-banner__overlay { position: absolute; inset: 0; }
.gv-cta-banner__inner {
  position: relative;
  z-index: 1;
  padding: 90px 20px;
}
.gv-cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gv-white);
  margin: 0 0 16px;
  line-height: 1.2;
}
.gv-cta-banner__sub {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.gv-cta-banner__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gv-cta-banner__link-row {
  font-size: .85rem;
}
.gv-cta-banner__link-row a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--gv-transition);
}
.gv-cta-banner__link-row a:hover { color: var(--gv-gold); }

/* ── Coming-soon placeholder ────────────────────────────────── */
.gv-coming-soon {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gv-dark);
  text-align: center;
}
.gv-coming-soon__inner { color: #fff; padding: 40px 20px; }
.gv-coming-soon__inner h1 { font-size: 2.5rem; margin: 16px 0 12px; }
.gv-coming-soon__inner p { color: rgba(255,255,255,.7); }
.gv-coming-soon__inner a { color: var(--gv-gold); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1023px) and (min-width: 768px) {
  .gv-tiers__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .gv-tier-card { height: 500px; }
}

@media (max-width: 767px) {
  .section-pad { padding: 48px 0; }
  .gv-intro-pad { padding: 40px 0 0; }
  .gv-section1-pad { padding: 16px 0 40px; }

  /* Section headers */
  .gv-section-header { margin-bottom: 32px; }
  .gv-section-desc { font-size: .93rem; }

  /* Hero: full-width video background on mobile */
  .gv-hero { min-height: 78vh; }
  .gv-hero__content { padding: 120px 20px 56px; }

  /* Hero title: scale down so text fits on narrow screens */
  .gv-hero__title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .gv-hero__subtitle {
    font-size: clamp(16px, 4.5vw, 20px);
    margin-bottom: 24px;
  }
  .gv-hero__badge {
    font-size: .72rem;
    padding: 5px 16px;
    margin-bottom: 14px;
  }

  .gv-hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .gv-hero__ctas .btn,
  .gv-hero__info-cta .btn-gv-info {
    width: min(100%, 320px);
    justify-content: center;
  }

  /* Stats: 2-column grid on mobile */
  .gv-hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
  }

  /* Zig-zag: reduce gap */
  .gv-zz-grid { gap: 20px; }

  /* Tiers: horizontal scroll on mobile */
  .gv-tiers__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gv-tiers__grid::-webkit-scrollbar { display: none; }
  .gv-tier-card {
    flex: 0 0 82vw;
    max-width: 360px;
    height: 500px;
    scroll-snap-align: start;
  }

  .gv-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gv-benefits--photo { background-attachment: scroll; } /* fixed parallax off on mobile */

  /* Process steps: single column with row layout and dividers */
  .gv-process__timeline { grid-template-columns: 1fr; }
  .gv-process__step:not(:last-child)::after { display: none; }
  .gv-process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .gv-process__step:last-child { border-bottom: none; padding-bottom: 0; }
  .gv-process__step-number { flex-shrink: 0; margin-bottom: 0; }
  .gv-process__step-body { padding-top: 4px; }

  /* Disable heavy backdrop-filter on mobile — avoid GPU jank */
  .gv-benefit-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,.10);
  }

  .gv-articles__grid { grid-template-columns: 1fr; }

  /* Videos: single column on phones */
  .gv-videos__grid { grid-template-columns: 1fr; gap: 16px; }

  /* FAQ header */
  .gv-faq-header { margin-bottom: 32px; }
  .gv-faq-header__sub { font-size: .93rem; }

  /* Mid-page consult banner */
  .gv-mid-consult-banner {
    padding: 22px 0 40px;
  }
  .gv-mid-consult-banner__card {
    padding: 26px 20px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .gv-mid-consult-banner__title {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }
  .gv-mid-consult-banner__text {
    font-size: .94rem;
    line-height: 1.65;
  }
  .gv-mid-consult-banner__btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA banner: reduce excessive vertical padding */
  .gv-cta-banner__inner { padding: 56px 20px; }
  .gv-cta-banner__title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .gv-cta-banner__sub { font-size: .95rem; margin-bottom: 28px; }
  .gv-cta-banner__btns { flex-direction: column; align-items: center; }
  .gv-btn--gold, .gv-btn--whatsapp { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .section-pad { padding: 40px 0; }

  /* Benefits: 1-column on very narrow phones */
  .gv-benefits__grid { grid-template-columns: 1fr; gap: 10px; }
  .gv-benefit-card { padding: 22px 14px 20px; }
  .gv-benefit-card__icon-wrap { width: 46px; height: 46px; font-size: 1.2rem; }

  /* Hero stats: keep 2-col but reduce font size */
  .gv-hero__stats { gap: 10px; }
  .gv-stat { padding: 12px 8px; }
  .gv-stat__number { font-size: 1.6rem; }
  .gv-stat__label { font-size: .65rem; }

  /* Process step row: tighter */
  .gv-process__step { gap: 12px; }
  .gv-process__step-number { width: 46px; height: 46px; font-size: 1rem; }

  /* CTA banner */
  .gv-cta-banner__inner { padding: 44px 16px; }
}

/* ── Very small phones: 380px and below ── */
@media (max-width: 380px) {
  .gv-hero__content { padding: 110px 16px 48px; }
  .gv-hero__title { font-size: clamp(30px, 9vw, 38px); }
  .gv-hero__subtitle { font-size: 15px; }
  .gv-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .gv-tier-card { flex: 0 0 88vw; }

  .gv-cta-banner__inner { padding: 40px 14px; }
  .gv-faq-card__head { gap: 10px; padding: 16px; }
  .gv-faq-card__num { width: 34px; height: 34px; font-size: .78rem; }
  .gv-faq-card__q { font-size: .93rem; }
}

/* ═══════════════════════════════════════════════════════
   YouTube Shorts section
   ═══════════════════════════════════════════════════════ */
.gv-shorts {
  background: linear-gradient(180deg, #07111f 0%, #0a1628 100%);
  overflow: hidden;
  position: relative;
}
.gv-shorts::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.gv-shorts__header {
  text-align: center;
  margin-bottom: 3rem;
}
.gv-shorts__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0.75rem 0 0.6rem;
  letter-spacing: -.02em;
}
.gv-shorts__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card track — 4 columns, 9:16 ratio */
.gv-shorts__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* Individual short card */
.gv-short-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1f3c;
  border: 1px solid rgba(201,162,39,.18);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.gv-short-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.6);
  border-color: rgba(201,162,39,.45);
}

/* 9:16 aspect ratio wrapper */
.gv-short-card__frame {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 */
  background: #000;
}
.gv-short-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Hidden extra cards */
.gv-short-card--hidden {
  display: none;
}

/* Show More button */
.gv-shorts__more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.gv-shorts__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(201,162,39,.4);
  color: #c9a227;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
  font-family: inherit;
}
.gv-shorts__more-btn:hover {
  background: rgba(201,162,39,.1);
  border-color: #c9a227;
  transform: translateY(-2px);
}
.gv-shorts__more-btn svg {
  transition: transform .3s ease;
}
.gv-shorts__more-btn.is-expanded svg {
  transform: rotate(180deg);
}
.gv-shorts__more-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gv-shorts__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  /* Reveal 3rd card by default on tablets */
  .gv-short-card:nth-child(3) { display: block; }
}
@media (max-width: 680px) {
  .gv-shorts__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gv-short-card:nth-child(3),
  .gv-short-card:nth-child(4) { display: none; }
}
@media (max-width: 400px) {
  .gv-shorts__track {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
