/* ═══════════════════════════════════════════════════════════
   GoAway Education — Design System v2.0
   Shared stylesheet for all pages
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; font-size: 16px; }
body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
  /* Brand */
  --teal:    #c8102e;
  --teal-dk: #9b0f24;
  --teal-lt: #fde8ea;
  --teal-xl: #fdf2f3;
  --ink:     #2b0d12;
  --grad-section: linear-gradient(160deg, #7f1422 0%, #b32638 55%, #d34a5a 100%);
  --body:    #334155;
  --muted:   #64748b;
  --cream:   #fdf8f2;
  --white:   #ffffff;
  --line:    #e2e8f0;

  /* Gold Coast accent palette */
  --gold:    #f59e0b;
  --gold-dk: #d97706;
  --gold-lt: #fef3c7;
  --coral:   #f97316;
  --coral-lt:#fff0e6;
  --sun:     #fbbf24;
  --amber:   #f59e0b;
  --red:     #ef4444;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.05);
  --shadow:    0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 8px 28px rgba(0,0,0,.10);
  --shadow-xl: 0 12px 40px rgba(0,0,0,.12);
  --shadow-glow: 0 0 20px rgba(200,16,46,.20);
  --shadow-gold: 0 0 20px rgba(245,158,11,.18);

  --container: min(1160px, 100%);
  --gutter: clamp(16px, 4vw, 32px);
}

/* ─── FONTS ─────────────────────────────────────────────── */
/* DM Sans + Fraunces loaded in each page <head> */

/* ─── UTILITIES ─────────────────────────────────────────── */
.wrap { width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.section-label {
  display: block;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.02em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--body); line-height: 1.65;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 800; font-size: 15px; font-family: inherit;
  cursor: pointer; border: none; transition: all .15s;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 6px 24px rgba(200,16,46,.30);
}
.btn-primary:hover { background: var(--teal-dk); transform: translateY(-1px); box-shadow: 0 10px 32px rgba(200,16,46,.38); }
.btn-secondary {
  background: transparent; color: var(--teal-dk);
  border: 2px solid var(--teal);
}
.btn-secondary:hover { background: var(--teal-lt); }
.btn-white {
  background: #fff; color: var(--teal-dk);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(0,0,0,.18); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ─── CHIPS / TAGS ───────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.chip-teal { background: var(--teal-lt); color: var(--teal-dk); }
.chip-amber { background: #fef3c7; color: #92400e; }
.chip-dark { background: rgba(255,209,217,.20); color: #ffd1d9; }
.chip-white { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; }

/* ─── HEADER ─────────────────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 9000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.hdr__inner {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.hdr__logo { display: flex; align-items: center; flex-shrink: 0; }
.hdr__logo img { height: 46px; width: auto; }
.hdr__nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.hdr__link {
  padding: 8px 13px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600; color: #334155;
  transition: color .12s, background .12s; white-space: nowrap;
}
.hdr__link:hover { color: var(--teal); background: var(--teal-xl); }
.hdr__link.active { color: var(--teal); font-weight: 800; }
.hdr__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr__wa {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 700; transition: background .12s, transform .12s;
}
.hdr__wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.hdr__cta {
  padding: 10px 20px; border-radius: 999px;
  background: var(--teal); color: #fff;
  font-weight: 800; font-size: 14px;
  transition: background .12s; white-space: nowrap;
}
.hdr__cta:hover { background: var(--teal-dk); }

/* Burger */
.hdr__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hdr__burger span {
  display: block; width: 22px; height: 2px;
  background: #334155; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hdr__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__burger.open span:nth-child(2) { opacity: 0; }
.hdr__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.hdr__mobile {
  background: #fff; border-top: 1px solid var(--line);
  padding: 12px 20px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.hdr__mobile[hidden] { display: none; }
.hdr__mobile a {
  padding: 14px 14px; border-radius: 10px;
  font-size: 15px; font-weight: 700; color: #0f172a;
  transition: background .12s;
}
.hdr__mobile a:hover { background: var(--teal-lt); color: var(--teal-dk); }
.hdr__mobile a.cta-mob {
  margin-top: 8px; background: var(--teal); color: #fff;
  text-align: center; font-weight: 800; border-radius: 999px;
  padding: 13px 14px;
}
.hdr__mobile a.cta-mob:hover { background: var(--teal-dk); }

@media (max-width: 900px) {
  .hdr__nav, .hdr__wa { display: none; }
  .hdr__burger { display: flex; }
  .hdr__inner { height: 64px; }
  .hdr__logo img { height: 38px; }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trustbar {
  background: var(--grad-section);
  padding: 14px var(--gutter);
}
.trustbar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 28px;
}
.trustbar__item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.70);
  white-space: nowrap;
}
.trustbar__item strong { color: #fff; }
.trustbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.15); }
@media (max-width: 640px) { .trustbar__sep { display: none; } .trustbar__item { font-size: 12px; } }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--grad-section);
  padding: 56px var(--gutter) 48px;
  text-align: center; color: #fff;
}
.page-hero__badge { margin-bottom: 16px; }
.page-hero__h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -.025em; color: #fff;
  margin-bottom: 16px;
}
.page-hero__h1 em { font-style: italic; color: #ffd1d9; }
.page-hero__sub {
  font-size: 17px; color: rgba(255,255,255,.80);
  max-width: 580px; margin: 0 auto 32px; line-height: 1.65;
}
.page-hero__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--grad-section);
  padding: 64px var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: none; }
.cta-banner__content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-banner__label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffd1d9; margin-bottom: 16px; }
.cta-banner__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900; letter-spacing: -.025em;
  color: #fff; line-height: 1.05; margin-bottom: 16px;
}
.cta-banner__h2 em { font-style: italic; color: #ffd1d9; }
.cta-banner__sub { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 36px; }
.cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner__trust { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.cta-banner__trust span { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 700; }
.cta-banner__trust span::before { content: '✓ '; color: #ffd1d9; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #3a0d14; color: rgba(255,255,255,.72);
  font-size: 14px;
}
.footer__grid {
  padding: 64px var(--gutter) 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
.footer__logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer__tag { line-height: 1.6; color: rgba(255,255,255,.62); margin-bottom: 16px; max-width: 230px; font-size: 13.5px; }
.footer__wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 800; margin-bottom: 16px;
  transition: background .12s;
}
.footer__wa-btn:hover { background: #1ebe5c; }
.footer__soc { display: flex; gap: 14px; }
.footer__soc a { color: rgba(255,255,255,.45); display: flex; transition: color .12s; }
.footer__soc a:hover { color: var(--teal); }
.footer__col-title {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 2px; }
.footer__links a {
  color: rgba(255,255,255,.55); padding: 4px 0;
  transition: color .12s; font-size: 13.5px;
}
.footer__links a:hover { color: #fff; }
.footer__qeac {
  margin-top: 20px; padding: 10px 14px;
  background: rgba(200,16,46,.12); border: 1px solid rgba(200,16,46,.20);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 800; color: #ffd1d9;
  letter-spacing: .06em; text-transform: uppercase;
}
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.62);
}
.footer__bar-links { display: flex; gap: 16px; }
.footer__bar-links a { color: rgba(255,255,255,.62); transition: color .12s; }
.footer__bar-links a:hover { color: #fff; }

@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; padding: 40px 20px 28px; } }

/* ─── REVIEW CARDS ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--line);
  transition: box-shadow .18s;
}
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-card__stars { color: #f9ab00; font-size: 15px; margin-bottom: 12px; }
.review-card__text {
  font-size: 14.5px; color: var(--body); line-height: 1.7;
  margin-bottom: 18px;
}
.review-card__text::before { content: '"'; }
.review-card__text::after { content: '"'; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.review-card__name { font-weight: 800; font-size: 13.5px; color: var(--ink); }
.review-card__meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ─── FAQ COMPONENT ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--line); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 20px; text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px; max-height: 0;
  overflow: hidden; transition: max-height .3s ease, padding .2s;
  font-size: 14.5px; color: var(--body); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* ─── PROCESS STEPS ──────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 27px; left: calc(12.5% + 27px);
  right: calc(12.5% + 27px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-lt), var(--teal), var(--teal-lt));
}
.process-step { text-align: center; padding: 0 16px; }
.process-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--teal-lt);
}
.process-title { font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.process-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 720px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid::before { display: none; }
}
@media (max-width: 420px) { .process-grid { grid-template-columns: 1fr; } }

/* ─── STAT CARDS ─────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: #fff; border-radius: var(--radius-sm);
  padding: 24px 20px; border: 1px solid var(--line);
  text-align: center;
}
.stat-card--teal { background: var(--teal); border-color: transparent; }
.stat-val {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 900; color: var(--teal);
  line-height: 1; margin-bottom: 6px;
}
.stat-card--teal .stat-val { color: #ffd1d9; }
.stat-label { font-size: 13px; color: var(--body); font-weight: 600; }
.stat-card--teal .stat-label { color: rgba(255,255,255,.75); }

@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .stats-grid { grid-template-columns: 1fr; } }

/* ─── CARD GRID ──────────────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 840px) { .card-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; } }

/* ─── SECTION SPACING ────────────────────────────────────── */
.section { padding: 56px 0; }
.section--sm { padding: 36px 0; }
.section--lg { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--teal-xl { background: var(--teal-xl); }
.section--white { background: #fff; }
.section--ink { background: var(--grad-section); }
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .section--sm { padding: 28px 0; }
  .section--lg { padding: 52px 0; }
}

/* ─── GUARANTEE BANNER ────────────────────────────────────── */
.guarantee-bar {
  background: linear-gradient(135deg, #064e47, #c8102e);
  padding: 12px var(--gutter);
}
.guarantee-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; text-align: center;
}
.guarantee-bar__icon { font-size: 20px; flex-shrink: 0; }
.guarantee-bar__text { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); }
.guarantee-bar__text strong { color: #fff; }
.guarantee-bar__link {
  font-size: 12px; font-weight: 800; color: #ffd1d9;
  border-bottom: 1px solid rgba(255,209,217,.4); white-space: nowrap;
}
@media (max-width: 640px) {
  .guarantee-bar { padding: 10px var(--gutter); }
  .guarantee-bar__icon { display: none; }
  .guarantee-bar__text { font-size: 12px; }
}

/* ─── PRICE CARD ─────────────────────────────────────────── */
.price-card {
  background: #fff; border-radius: var(--radius);
  border: 2px solid var(--line); padding: 32px 28px;
  transition: border-color .18s, box-shadow .18s;
}
.price-card--featured {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(200,16,46,.15);
}
.price-card__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.price-card__name { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.price-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.price-card__val {
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 900; color: var(--ink); line-height: 1;
  margin-bottom: 4px;
}
.price-card__val sup { font-size: 24px; vertical-align: super; }
.price-card--featured .price-card__val { color: var(--teal); }
.price-card__note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-card__list li {
  font-size: 14px; color: var(--body);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.price-card__list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--teal); font-weight: 900; font-size: 14px;
}
.price-card__cta { width: 100%; justify-content: center; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color .12s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__sep { color: var(--line); }
.breadcrumb__current { color: var(--body); font-weight: 600; }

/* ─── ICON FEATURE CARD ──────────────────────────────────── */
.feat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--line);
  transition: box-shadow .18s, transform .18s;
}
.feat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feat-card__icon { font-size: 32px; margin-bottom: 14px; }
.feat-card__title { font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.feat-card__desc { font-size: 14px; color: var(--body); line-height: 1.65; }
.feat-card--teal { background: var(--teal); border-color: transparent; }
.feat-card--teal .feat-card__title { color: #fff; }
.feat-card--teal .feat-card__desc { color: rgba(255,255,255,.75); }
.feat-card--ink { background: var(--grad-section); border-color: transparent; }
.feat-card--ink .feat-card__title { color: #fff; }
.feat-card--ink .feat-card__desc { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════
   GOLD COAST VIBES — Animations, Effects, New Components
   ═══════════════════════════════════════════════════════════ */

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .vibe-strip__track { animation: none; }
  .reveal, .reveal-left { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(2deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(200,16,46,.25); }
  50%       { box-shadow: 0 0 40px rgba(200,16,46,.55), 0 0 80px rgba(200,16,46,.20); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(245,158,11,.25); }
  50%       { box-shadow: 0 0 40px rgba(245,158,11,.55), 0 0 80px rgba(245,158,11,.20); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes reveal-left {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes text-cycle {
  0%, 28%   { opacity: 1; transform: translateY(0); }
  33%, 95%  { opacity: 0; transform: translateY(-16px); }
  100%      { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes border-glow-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes wave {
  0%        { transform: translateX(0); }
  100%      { transform: translateX(-50%); }
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .10s !important; }
.reveal-delay-2 { transition-delay: .20s !important; }
.reveal-delay-3 { transition-delay: .30s !important; }
.reveal-delay-4 { transition-delay: .40s !important; }
.reveal-delay-5 { transition-delay: .50s !important; }

/* ─── GRADIENT TEXT ──────────────────────────────────────── */
.text-gradient-teal {
  background: linear-gradient(135deg, var(--teal) 0%, #4dd0c4 50%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-shimmer {
  background: linear-gradient(90deg, var(--ink) 40%, var(--teal) 50%, var(--gold) 60%, var(--ink) 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ─── GLASSMORPHISM ──────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
}
.glass-dark {
  background: rgba(11,47,43,.55);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(200,16,46,.30);
  border-radius: var(--radius);
}
.glass-white {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.60);
  border-radius: var(--radius);
}

/* ─── GLOW CARDS ─────────────────────────────────────────── */
.glow-teal {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.glow-teal::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--teal), #4dd0c4, var(--teal-dk));
  background-size: 300% 300%;
  animation: gradient-shift 3s ease infinite;
  z-index: 0;
}
.glow-teal > * { position: relative; z-index: 1; }

.glow-gold {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.glow-gold::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--gold), var(--coral), var(--sun));
  background-size: 300% 300%;
  animation: gradient-shift 3s ease infinite;
  z-index: 0;
}
.glow-gold > * { position: relative; z-index: 1; }

/* ─── BADGE GOLD COAST ───────────────────────────────────── */
.badge-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; padding: 5px 14px;
  border-radius: 999px; text-transform: uppercase;
}
.badge-teal {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--teal), #4dd0c4);
  color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; padding: 5px 14px;
  border-radius: 999px; text-transform: uppercase;
}

/* ─── WAVE DIVIDER ───────────────────────────────────────── */
.wave-divider {
  position: relative; overflow: hidden;
  height: 80px; margin-top: -2px;
}
.wave-divider svg { width: 100%; height: 100%; }
.wave-divider--cream { background: #fff; }
.wave-divider--white { background: var(--cream); }

/* ─── ANIMATED WAVE BG ───────────────────────────────────── */
.wave-bg {
  position: relative; overflow: hidden;
}
.wave-bg::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0;
  width: 200%; height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23fdf8f2' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") repeat-x;
  animation: wave 8s linear infinite;
}

/* ─── DOT PATTERN ────────────────────────────────────────── */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(200,16,46,.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.dot-pattern-gold {
  background-image: radial-gradient(circle, rgba(245,158,11,.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ─── TROPICAL GRADIENT SECTION ─────────────────────────── */
.section--tropical {
  background: linear-gradient(160deg, #fdf2f3 0%, #fff8ed 50%, #fdf2f3 100%);
}
.section--sunset {
  background: var(--grad-section);
}
.section--gold-light {
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
}

/* ─── FLOATING BADGE ─────────────────────────────────────── */
.float-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 800;
  color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,.14);
  animation: float 4s ease-in-out infinite;
}
.float-badge--delayed { animation-delay: -2s; }
.float-badge--gold {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #fff; box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.float-badge--teal {
  background: linear-gradient(135deg, var(--teal), #4dd0c4);
  color: #fff; box-shadow: 0 8px 24px rgba(200,16,46,.35);
}

/* ─── STAT COUNTER ───────────────────────────────────────── */
.stat-pill {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 20px;
  display: inline-flex; align-items: center; gap: 8px;
}
.stat-pill__val { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--teal); }
.stat-pill__label { font-size: 12px; color: var(--muted); font-weight: 700; }

/* ─── BENTO GRID ─────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-top: 48px;
}
.bento-cell {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s;
  cursor: default;
}
.bento-cell:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.bento-1 { grid-column: span 5; grid-row: span 2; }
.bento-2 { grid-column: span 7; grid-row: span 1; }
.bento-3 { grid-column: span 4; grid-row: span 1; }
.bento-4 { grid-column: span 3; grid-row: span 1; }
.bento-5 { grid-column: span 5; grid-row: span 1; }
.bento-6 { grid-column: span 7; grid-row: span 1; }
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 1; grid-row: span 1; }
  .bento-1 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-1 { grid-column: span 1; }
}

/* ─── CURSOR POINTER ─────────────────────────────────────── */
.btn, .srv__cta, .faq-q, .hscroll-card, .bento-cell,
.social-chan, .scroll-top, .wa-float__btn,
.hdr__link, .hdr__cta, .hdr__wa, .hdr__burger,
.footer__links a, .footer__bar-links a,
.review-card, .feat-card { cursor: pointer; }

/* ─── FOCUS VISIBLE ──────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { border-radius: 6px; }

/* ─── HOVER LIFT ─────────────────────────────────────────── */
.hover-lift { transition: transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hover-scale { transition: transform .2s cubic-bezier(.22,1,.36,1); }
.hover-scale:hover { transform: scale(1.03); }

/* ─── VIBE STRIP (Gold Coast) ────────────────────────────── */
.vibe-strip {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 30%, #d34a5a 60%, #4dd0c4 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.vibe-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,.08)'/%3E%3C/svg%3E");
}

/* ─── PILL TAG ────────────────────────────────────────────── */
.tag { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.tag-teal { background: var(--teal-lt); color: var(--teal-dk); }
.tag-gold { background: var(--gold-lt); color: var(--gold-dk); }
.tag-coral { background: var(--coral-lt); color: var(--coral); }
.tag-ink { background: rgba(11,47,43,.08); color: var(--ink); }

/* ─── ACCESSIBILITY ──────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.wa-float__btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
  transition: transform .18s, box-shadow .18s;
  text-decoration: none;
  position: relative;
}
.wa-float__btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 40px rgba(37,211,102,.60); }
.wa-float__btn svg { width: 34px; height: 34px; fill: #fff; }
.wa-float__ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #25D366;
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-float__tooltip {
  background: #b32638; color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0; transform: translateX(10px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) {
  .wa-float { bottom: 16px; right: 16px; }
  .wa-float__btn { width: 60px; height: 60px; }
  .wa-float__tooltip { display: none; }
}

/* ─── WHATSAPP CTA SECTION ───────────────────────────────── */
.wa-section {
  background: #f0fdf4; border-top: 1px solid #bbf7d0; border-bottom: 1px solid #bbf7d0;
  padding: 48px var(--gutter); text-align: center;
}
.wa-section__inner { max-width: 600px; margin: 0 auto; }
.wa-section__title { font-family: 'Fraunces', serif; font-size: clamp(22px,3.5vw,32px); font-weight: 900; color: var(--ink); margin-bottom: 10px; line-height: 1.15; }
.wa-section__sub { font-size: 15px; color: var(--body); margin-bottom: 24px; line-height: 1.6; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 15px 32px; border-radius: 999px;
  font-weight: 800; font-size: 16px; font-family: inherit;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
  transition: background .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); }
.btn-wa svg { flex-shrink: 0; }

/* ─── SCROLL TO TOP ──────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 96px; right: 26px; z-index: 7900;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity .25s, transform .25s, box-shadow .18s;
  opacity: 0; transform: translateY(12px);
  pointer-events: none; text-decoration: none; color: var(--ink);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { box-shadow: 0 8px 24px rgba(0,0,0,.18); color: var(--teal); }
@media (max-width: 640px) { .scroll-top { bottom: 122px; right: 20px; } }

/* ─── SOCIAL FOLLOW SECTION ──────────────────────────────── */
.social-follow {
  background: linear-gradient(160deg, #e8f8f7 0%, #f0fef9 50%, #e8f8f7 100%);
  border-top: 1px solid rgba(200,16,46,.12);
  border-bottom: 1px solid rgba(200,16,46,.12);
  padding: 48px var(--gutter);
}
.social-follow__inner {
  max-width: 840px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.social-follow__label {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-dk); opacity: .7;
}
.social-follow__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.02em; color: var(--ink);
  text-align: center;
}
.social-follow__title em { font-style: italic; color: var(--teal); }
.social-follow__channels {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.social-chan {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 800;
  text-decoration: none; transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.social-chan:hover { transform: translateY(-2px); }
.social-chan--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff; box-shadow: 0 6px 24px rgba(220,39,67,.28);
}
.social-chan--ig:hover { box-shadow: 0 10px 32px rgba(220,39,67,.38); }
.social-chan--yt {
  background: #FF0000;
  color: #fff; box-shadow: 0 6px 24px rgba(255,0,0,.25);
}
.social-chan--yt:hover { box-shadow: 0 10px 32px rgba(255,0,0,.35); }
.social-chan--tk {
  background: #000; color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.20);
}
.social-chan--tk:hover { box-shadow: 0 10px 32px rgba(0,0,0,.30); }
.social-chan__icon { font-size: 18px; flex-shrink: 0; }
.social-follow__note {
  font-size: 13px; color: var(--muted); text-align: center;
}

/* ─── BTN PRIMARY PULSE ──────────────────────────────────── */
@keyframes btn-ring {
  0%   { box-shadow: 0 6px 24px rgba(200,16,46,.30), 0 0 0 0 rgba(200,16,46,.35); }
  70%  { box-shadow: 0 6px 24px rgba(200,16,46,.30), 0 0 0 12px rgba(200,16,46,.00); }
  100% { box-shadow: 0 6px 24px rgba(200,16,46,.30), 0 0 0 0 rgba(200,16,46,.00); }
}
.btn-primary.btn-pulse { animation: btn-ring 2.2s ease-out infinite; }

/* ═══════════════════════════════════════════════════════════
   BOLD EDITORIAL DESIGN SYSTEM — v3.0
   ═══════════════════════════════════════════════════════════ */

/* ─── EDITORIAL SPLIT ────────────────────────────────────── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.editorial-split__visual {
  position: relative; overflow: hidden;
  background: var(--grad-section);
}
.editorial-split__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.editorial-split:hover .editorial-split__img { transform: scale(1.05); }
.editorial-split__body {
  padding: 80px clamp(36px,6vw,96px);
  display: flex; flex-direction: column; justify-content: center;
  background: #fff;
}
.editorial-split__body--dark { background: var(--grad-section); }
.editorial-split__body--cream { background: var(--cream); }
.editorial-split__chip {
  font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px; display: block;
}
.editorial-split__body--dark .editorial-split__chip { color: #ffd1d9; }
.editorial-split__h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.025em; color: var(--ink);
  margin-bottom: 20px;
}
.editorial-split__body--dark .editorial-split__h2 { color: #fff; }
.editorial-split__h2 em { font-style: italic; color: var(--teal); }
.editorial-split__body--dark .editorial-split__h2 em { color: #ffd1d9; }
.editorial-split__p {
  font-size: 16px; color: var(--body);
  line-height: 1.72; margin-bottom: 32px;
  max-width: 480px;
}
.editorial-split__body--dark .editorial-split__p { color: rgba(255,255,255,.70); }
.editorial-split--rev .editorial-split__visual { order: 2; }
.editorial-split--rev .editorial-split__body { order: 1; }
@media (max-width: 860px) {
  .editorial-split { grid-template-columns: 1fr; min-height: auto; }
  .editorial-split__visual { aspect-ratio: 16/9; height: auto; min-height: 260px; }
  .editorial-split__visual, .editorial-split--rev .editorial-split__visual { order: 0; }
  .editorial-split__body, .editorial-split--rev .editorial-split__body { order: 1; }
  .editorial-split__body { padding: 48px clamp(20px,5vw,48px); }
}

/* ─── DISPLAY STATS (huge numbers) ──────────────────────── */
.display-stat { display: flex; flex-direction: column; }
.display-stat__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 900; line-height: .88;
  letter-spacing: -.04em;
  color: var(--teal);
}
.display-stat__num--white { color: #fff; }
.display-stat__num--aqua  { color: #ffd1d9; }
.display-stat__num--gold  { color: var(--gold); }
.display-stat__label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--body); margin-top: 10px;
}
.display-stat__label--white { color: rgba(255,255,255,.55); }

/* ─── MANIFESTO STRIP ────────────────────────────────────── */
.manifesto-strip {
  background: var(--grad-section);
  padding: 96px var(--gutter);
  position: relative; overflow: hidden;
}
.manifesto-strip__bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.028);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -.04em;
}
.display-stats-row {
  display: flex; gap: clamp(28px,7vw,88px);
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
  position: relative; z-index: 1;
}
.display-stats-row .display-stat { align-items: center; text-align: center; }
.manifesto-line {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.18;
  color: #fff; text-align: center;
  max-width: 720px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.manifesto-line em { font-style: italic; color: #ffd1d9; }
.manifesto-cta {
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}

/* ─── HORIZONTAL SCROLL CITIES ───────────────────────────── */
.hscroll-section { overflow: hidden; }
.hscroll-section__header { padding: 0 var(--gutter) 36px; }
.hscroll-track {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gutter) 28px;
  scrollbar-width: none;
  cursor: grab;
}
.hscroll-track:active { cursor: grabbing; }
.hscroll-track::-webkit-scrollbar { display: none; }
.hscroll-card {
  flex: 0 0 min(280px,75vw); height: 400px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
  transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.hscroll-card:hover { transform: scale(1.03); }
.hscroll-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.hscroll-card:hover .hscroll-card__img { transform: scale(1.08); }
.hscroll-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 45%, transparent 70%);
}
.hscroll-card--hq .hscroll-card__overlay {
  background: linear-gradient(to top, rgba(140,90,0,.88) 0%, rgba(0,0,0,.20) 45%, transparent 70%);
}
.hscroll-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 22px;
}
.hscroll-card__name {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900;
  color: #fff; line-height: 1.05; margin-bottom: 3px;
}
.hscroll-card--hq .hscroll-card__name { color: #FFD700; }
.hscroll-card__tag {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .10em;
}
.hscroll-card__pill {
  display: inline-block; margin-top: 10px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}

/* ─── DIAGONAL CLIP SECTIONS ─────────────────────────────── */
.clip-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -3%;
  padding-top: calc(3% + 64px);
}
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: calc(5% + 64px);
}
.clip-both {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: calc(5% + 64px) var(--gutter);
  margin-top: -2%;
}

/* ─── BOLD PULL QUOTE ────────────────────────────────────── */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900; font-style: italic;
  line-height: 1.2; color: var(--ink);
  position: relative; padding-left: 28px;
}
.pull-quote::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 4px; border-radius: 2px;
  background: var(--teal);
}

/* ─── BIG SECTION LABEL ──────────────────────────────────── */
.mega-label {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 12vw, 140px);
  font-weight: 900; line-height: .9;
  letter-spacing: -.04em;
  color: rgba(200,16,46,.07);
  pointer-events: none; user-select: none;
  margin-bottom: -32px; display: block;
}

/* ═══════════════════════════════════════════════════════════
   VIBRANCY UPGRADE v3 — More joy, more energy
   ═══════════════════════════════════════════════════════════ */

/* ─── GRADIENT VARS ─────────────────────────────────────── */
:root {
  --grad-teal:  linear-gradient(135deg, #e84a5f 0%, #c8102e 60%, #9b0f24 100%);
  --grad-warm:  linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --grad-ocean: linear-gradient(135deg, #0288d1 0%, #00a896 100%);
  --grad-coral: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

/* ─── PRIMARY BUTTON — gradient ─────────────────────────── */
.btn-primary {
  background: var(--grad-teal);
  box-shadow: 0 6px 20px rgba(0,181,167,.42), 0 2px 6px rgba(0,0,0,.10);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #00b4a4 0%, #9b0f24 100%);
  box-shadow: 0 14px 38px rgba(0,181,167,.52), 0 4px 14px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* ─── PILL SECTION LABELS ────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,16,46,.10);
  border: 1px solid rgba(200,16,46,.25);
  padding: 5px 16px; border-radius: 999px;
  color: #006d62;
}

/* ─── SECTION BACKGROUNDS — simplified ──────────────────── */
.section--cream { background: var(--cream); }
.section--teal-xl { background: var(--teal-xl); }

/* ─── SERVICE CARDS — clean ─────────────────────────────── */
.srv:not(.srv--dark) {
  background: #fff;
  border-color: var(--line);
}
.srv:not(.srv--dark):hover {
  border-color: rgba(200,16,46,.30);
  box-shadow: var(--shadow-lg);
}

/* ─── FEAT CARDS — clean ────────────────────────────────── */
.feat-card {
  background: #fff;
  border-color: var(--line);
}
.feat-card:hover {
  border-color: rgba(200,16,46,.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.feat-card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-lt) 0%, #c8f5f0 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(200,16,46,.15);
}
.feat-card--teal .feat-card__icon {
  background: rgba(255,255,255,.20);
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
}
.feat-card--ink .feat-card__icon {
  background: rgba(255,255,255,.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
}

/* ─── ALL REVIEW CARDS — color top borders ──────────────── */
.review-card {
  border-top: 3px solid rgba(200,16,46,.18);
  background: #fff;
}
.review-card:nth-child(1) { border-top-color: var(--teal); }
.review-card:nth-child(2) { border-top-color: var(--coral); }
.review-card:nth-child(3) { border-top-color: var(--gold); }
.review-card:nth-child(4) { border-top-color: #0288d1; }
.review-card:nth-child(5) { border-top-color: var(--teal); }
.review-card:nth-child(6) { border-top-color: var(--coral); }
.review-card__avatar {
  background: linear-gradient(135deg, var(--teal-lt), #c8f5f0);
  color: var(--teal-dk); font-weight: 900; font-size: 15px; font-family: 'Fraunces', serif;
}
.review-card:nth-child(2n) .review-card__avatar {
  background: linear-gradient(135deg, #fff0e6, #fdd8c4); color: var(--coral);
}
.review-card:nth-child(3n) .review-card__avatar {
  background: linear-gradient(135deg, #fef9e7, #fde68a); color: var(--gold-dk);
}
.review-card__stars {
  background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── WHY STATS — colored left borders + gradient bg ───── */
.why-stat {
  border-left: 4px solid var(--teal);
  background: linear-gradient(120deg, #fff 55%, var(--teal-xl) 100%);
  padding-left: 16px;
}
.why-stat:nth-child(2) {
  border-left-color: var(--gold);
  background: linear-gradient(120deg, #fff 55%, #fffdf0 100%);
}
.why-stat:nth-child(3) {
  border-left-color: var(--coral);
  background: linear-gradient(120deg, #fff 55%, #fff8f0 100%);
}
.why-stat:nth-child(4) {
  border-left-color: #0288d1;
  background: linear-gradient(120deg, #fff 55%, #f0f9ff 100%);
}
.why-stat:nth-child(2) .why-stat__val { color: var(--gold); }
.why-stat:nth-child(3) .why-stat__val { color: var(--coral); }
.why-stat:nth-child(4) .why-stat__val { color: #0288d1; }

/* ─── PROCESS STEPS — gradient number circles ───────────── */
.process-num {
  background: var(--grad-teal);
  box-shadow: 0 0 0 8px rgba(200,16,46,.12), 0 8px 24px rgba(200,16,46,.32);
}
.process-step:nth-child(2) .process-num {
  background: var(--grad-warm);
  box-shadow: 0 0 0 8px rgba(245,158,11,.12), 0 8px 24px rgba(245,158,11,.38);
}
.process-step:nth-child(3) .process-num {
  background: var(--grad-coral);
  box-shadow: 0 0 0 8px rgba(249,115,22,.12), 0 8px 24px rgba(249,115,22,.38);
}
.process-step:nth-child(4) .process-num {
  background: var(--grad-ocean);
  box-shadow: 0 0 0 8px rgba(2,136,209,.12), 0 8px 24px rgba(2,136,209,.38);
}

/* ─── PAGE HERO — simple, no aurora ─────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--grad-section);
}
.page-hero::after { content: none; }
.page-hero__badge, .page-hero__h1, .page-hero__sub,
.page-hero__btns, .breadcrumb { position: relative; z-index: 1; }

/* ─── BENTO CREAM → RICHER ──────────────────────────────── */
.bento-card--cream {
  background: linear-gradient(150deg, #fff 0%, #fdecec 80%, #fde8ea 100%);
  border: 1px solid rgba(200,16,46,.14);
}
.bento-card {
  transition: transform .22s cubic-bezier(.22,1,.36,1), box-shadow .22s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ─── STAT CARD TEAL — gradient ─────────────────────────── */
.stat-card--teal {
  background: var(--grad-teal);
  box-shadow: 0 8px 28px rgba(0,181,167,.38);
  border-color: transparent;
}
.stat-card:nth-child(2) .stat-val { color: var(--gold); }
.stat-card:nth-child(3) .stat-val { color: var(--coral); }
.stat-card:nth-child(4) .stat-val { color: #0288d1; }

/* ─── GUARANTEE BAR — simple ────────────────────────────── */
.guarantee-bar { background: var(--teal-dk); }

/* ─── HERO MINI BADGE — warmer gradient ─────────────────── */
.hero__mini-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 90%);
  box-shadow: 0 16px 48px rgba(249,115,22,.45);
}

/* ─── TRUSTBAR — simple dark ─────────────────────────────── */
.trustbar { background: var(--grad-section); }

/* ─── PRICE CARD FEATURED — gradient border ─────────────── */
.price-card--featured {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--grad-teal) border-box;
  border: 2px solid transparent;
  box-shadow: 0 16px 48px rgba(200,16,46,.18);
}

/* ─── CARD HOVER CURSOR ─────────────────────────────────── */
.srv, .feat-card, .review-card, .bento-card, .blog-card,
.study-card, .job-card, .right-card, .visa-card, .value-card,
.cert-badge, .city-card { cursor: pointer; }

/* ─── FAQ HOVER ─────────────────────────────────────────── */
.faq-item { transition: box-shadow .18s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { background: linear-gradient(150deg, #fff 0%, #fdf2f3 100%); }

/* ─── SOCIAL CHANNELS ────────────────────────────────────── */
.social-chan {
  transition: transform .18s, box-shadow .18s;
}
.social-chan:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }

/* ── Country switch: volver a Australia ── */
.cswitch{display:inline-flex;align-items:center;gap:7px;margin-left:14px;padding:6px 12px;border-radius:999px;border:1.5px solid var(--line);background:#fff;font-weight:800;font-size:13px;color:var(--ink);text-decoration:none;transition:border-color .15s,box-shadow .15s,transform .15s;white-space:nowrap;}
.cswitch:hover{border-color:var(--teal);box-shadow:0 4px 14px rgba(0,0,0,.08);transform:translateY(-1px);}
.cswitch__flag{width:20px;height:20px;flex-shrink:0;display:block;border-radius:50%;}
.cswitch__txt{line-height:1;}
@media(max-width:600px){.cswitch{margin-left:8px;padding:5px;} .cswitch__txt{display:none;}}

.hero__cswitch{display:inline-flex;align-items:center;gap:10px;margin-bottom:20px;padding:9px 16px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.35);color:#fff;font-size:14px;font-weight:700;text-decoration:none;transition:background .18s,transform .18s;}
.hero__cswitch:hover{background:rgba(255,255,255,.22);transform:translateY(-1px);}
.hero__cswitch .cswitch__flag{width:22px;height:22px;}
.hero__cswitch strong{font-weight:900;}
.hero__cswitch-arrow{font-weight:900;transition:transform .18s;}
.hero__cswitch:hover .hero__cswitch-arrow{transform:translateX(3px);}
