/* ============================================================
   CYPRUS RESIDENCY HUB — Global Stylesheet
   BIZZGO Mediterranean Luxury Palette
   ============================================================ */

/* --- Root Variables --- */
:root {
  /* Primary Palette */
  --deep-blue:       #0D2B45;
  --deep-blue-light: #122F4A;
  --deep-blue-mid:   #1A3E5C;
  --teal:            #1A8C8C;
  --teal-dark:       #146A6A;
  --teal-light:      #2AADAD;
  --teal-pale:       rgba(26, 140, 140, 0.09);

  /* Warm Accents */
  --terracotta:      #C4603A;
  --terracotta-dark: #A34E2F;
  --sand:            #F5F0E8;
  --sand-dark:       #EDE6D9;
  --bougainvillea:   #B5477A;
  --boug-pale:       rgba(181, 71, 122, 0.08);

  /* Supporting */
  --cypress:         #2D5A3D;
  --gold:            #D4A44C;
  --linen:           #C8BFB0;
  --linen-faint:     rgba(200, 191, 176, 0.55);

  /* Dark & Light */
  --dark-footer:     #071A2B;
  --white:           #FFFFFF;
  --sand-section:    #F5F0E8;

  /* Text */
  --text:            #0D2B45;
  --text-body:       #374151;
  --text-muted:      #6B7280;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Effects */
  --shadow-sm:   0 1px 4px rgba(13, 43, 69, 0.07);
  --shadow:      0 4px 20px rgba(13, 43, 69, 0.11);
  --shadow-lg:   0 16px 56px rgba(13, 43, 69, 0.16);
  --shadow-teal: 0 6px 24px rgba(26, 140, 140, 0.28);

  /* Layout */
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --transition: 0.25s ease;
  --max-width:  1240px;
  --nav-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
input, select, textarea { font-family: var(--font-sans); }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 112px 0; }
.section--sand    { background: var(--sand); }
.section--dark    { background: var(--deep-blue); }
.section--teal    { background: var(--teal); }
.section--footer  { background: var(--dark-footer); }
.section--white   { background: var(--white); }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.18; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-body); line-height: 1.78; }
em { font-style: italic; }
.lead { font-size: 1.15rem; line-height: 1.82; }

/* Gold italic emphasis (hero headline word) */
.em-gold { color: var(--gold); font-style: italic; }
.em-teal { color: var(--teal); }

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.section-label--teal { color: var(--teal); }
.section-label--teal::before { background: var(--teal); }
.section-label--linen { color: var(--linen); }
.section-label--linen::before { background: var(--linen); }
.section-label--sand { color: var(--sand); }
.section-label--sand::before { background: var(--sand); }

.section-title { margin-bottom: 20px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.78;
}
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.section-header--center .section-label { justify-content: center; }
.section-header--center .section-label::before { display: none; }

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
/* Primary — Teal */
.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
/* Terracotta */
.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
}
/* Ghost — white outline (on dark bg) */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
/* Ghost dark — outline on light bg */
.btn--ghost-dark {
  background: transparent;
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}
.btn--ghost-dark:hover {
  background: var(--deep-blue);
  color: var(--white);
  transform: translateY(-2px);
}
/* Ghost teal */
.btn--ghost-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--ghost-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
/* Sizes */
.btn--lg  { padding: 18px 36px; font-size: 0.97rem; }
.btn--sm  { padding: 10px 20px; font-size: 0.82rem; }
.btn--xs  { padding: 7px 14px;  font-size: 0.76rem; }
.btn--full { width: 100%; justify-content: center; }
/* Icon arrow */
.btn-arrow { font-size: 1rem; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(7, 26, 43, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,140,140,0.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(7, 26, 43, 0.97);
  box-shadow: 0 4px 32px rgba(7,26,43,0.35);
  border-bottom-color: rgba(26,140,140,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(184,147,90,0.5);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 15% 35%; display: block; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav__logo-tag {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--linen);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(200,191,176,0.82);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(26,140,140,0.12);
}
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.nav__wa:hover { background: #20ba5a; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--dark-footer);
  border-top: 1px solid rgba(26,140,140,0.2);
  padding: 16px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(7,26,43,0.5);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(200,191,176,0.85);
  padding: 13px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav__mobile a:hover { color: var(--white); background: rgba(26,140,140,0.1); }
.nav__mobile .btn { margin-top: 10px; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep-blue);
  overflow: hidden;
  padding-top: var(--nav-height);
}
/* Layered gradient — sea at depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(26,140,140,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(13,43,69,0.9) 0%, transparent 60%),
    linear-gradient(150deg, #0D2B45 0%, #0E2F4D 40%, #122A42 100%);
  pointer-events: none;
}
/* Subtle dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,191,176,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 80px 0 60px;
}
/* Left: copy */
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26,140,140,0.12);
  border: 1px solid rgba(26,140,140,0.3);
  color: var(--teal-light);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.5); }
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero__title .em-gold { color: var(--gold); font-style: italic; }
.hero__sub {
  font-size: 1.08rem;
  color: var(--linen);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
  opacity: 0.85;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
/* Stats row */
.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(200,191,176,0.15);
  padding-top: 32px;
}
.hero__stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid rgba(200,191,176,0.15);
}
.hero__stat:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat:not(:first-child):not(:last-child) { padding-left: 28px; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--linen-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Right: floating card visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(7,26,43,0.5);
}
.hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hero__card-flag { font-size: 2.8rem; line-height: 1; }
.hero__card-badge {
  background: var(--cypress);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.hero__card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hero__card-type {
  font-size: 0.75rem;
  color: var(--linen-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 24px;
}
.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.hero__card-item label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(200,191,176,0.45);
  display: block;
  margin-bottom: 4px;
}
.hero__card-item span {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--sand);
}
.hero__card-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hero__card-tag {
  font-size: 0.71rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(26,140,140,0.15);
  border: 1px solid rgba(26,140,140,0.3);
  color: var(--teal-light);
}
/* Floating mini-card */
.hero__mini-card {
  position: absolute;
  top: -24px;
  right: -12px;
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-teal);
  text-align: center;
  min-width: 100px;
}
.hero__mini-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__mini-label { font-size: 0.68rem; color: rgba(255,255,255,0.7); margin-top: 3px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-footer);
  border-top: 1px solid rgba(26,140,140,0.2);
  border-bottom: 1px solid rgba(26,140,140,0.1);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--linen-faint);
}
.trust-item strong { color: var(--linen); font-weight: 600; }
.trust-item__sep {
  width: 4px; height: 4px;
  background: rgba(26,140,140,0.5);
  border-radius: 50%;
}

/* ============================================================
   STAT ROW (on sand/white bg)
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.stat-row__item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--sand-dark);
  position: relative;
  transition: background var(--transition);
}
.stat-row__item:last-child { border-right: none; }
.stat-row__item:hover { background: var(--sand); }
.stat-row__icon { font-size: 1.6rem; margin-bottom: 12px; opacity: 0.8; }
.stat-row__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-row__num--teal { color: var(--teal); }
.stat-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.prog-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,140,140,0.3); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-card--featured { border-color: var(--teal); }
.prog-card--featured::before { transform: scaleX(1); }
.prog-card__flag { font-size: 2.4rem; line-height: 1; margin-bottom: 16px; }
.prog-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.prog-card__badge--cypress { background: var(--cypress); color: var(--white); }
.prog-card__badge--teal { background: var(--teal); color: var(--white); }
.prog-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 4px;
}
.prog-card__type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.prog-card__divider { height: 1px; background: var(--sand-dark); margin: 16px 0; }
.prog-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.meta-item label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}
.meta-item span { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.prog-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.prog-card__cta { margin-top: auto; }

/* Tags */
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--sand);
  color: var(--text-muted);
  border: 1px solid var(--sand-dark);
}
.tag--teal { background: var(--teal-pale); color: var(--teal-dark); border-color: rgba(26,140,140,0.25); }
.tag--cypress { background: rgba(45,90,61,0.1); color: var(--cypress); border-color: rgba(45,90,61,0.25); }
.tag--terracotta { background: rgba(196,96,58,0.08); color: var(--terracotta-dark); border-color: rgba(196,96,58,0.25); }
.tag--boug { background: var(--boug-pale); color: var(--bougainvillea); border-color: rgba(181,71,122,0.25); }

/* ============================================================
   WHY CYPRUS — DARK SECTION (numbered editorial)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); overflow: hidden; }
.why-item {
  padding: 40px 32px;
  background: transparent;
  transition: background var(--transition);
  position: relative;
}
.why-item:hover { background: rgba(26,140,140,0.07); }
.why-item__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}
.why-item__icon { font-size: 2rem; margin-bottom: 16px; }
.why-item h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.why-item p { font-size: 0.88rem; color: var(--linen); opacity: 0.75; line-height: 1.72; }

/* ============================================================
   POST-BREXIT / TEAL SECTION
   ============================================================ */
.teal-section {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.teal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.teal-section__inner { position: relative; z-index: 1; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 56px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 18px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(26,140,140,0.2));
}
.timeline__step { position: relative; margin-bottom: 44px; }
.timeline__step:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -46px; top: 2px;
  width: 36px; height: 36px;
  background: var(--deep-blue);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
}
.timeline__step h4 { font-size: 1.02rem; color: var(--deep-blue); margin-bottom: 6px; }
.timeline__step p { font-size: 0.88rem; color: var(--text-body); margin-bottom: 8px; }
.timeline__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  background: rgba(196,96,58,0.1);
  border: 1px solid rgba(196,96,58,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
/* Dark timeline variant */
.timeline--dark .timeline__dot { background: var(--deep-blue-mid); color: var(--teal-light); border-color: var(--teal); }
.timeline--dark .timeline__step h4 { color: var(--white); }
.timeline--dark .timeline__step p { color: var(--linen); opacity: 0.75; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-item:first-child { border-top: 1px solid var(--sand-dark); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-blue);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: color var(--transition);
  font-family: var(--font-sans);
}
.faq-question:hover { color: var(--teal-dark); }
.faq-question.open { color: var(--teal-dark); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-question.open .faq-icon { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 22px; font-size: 0.92rem; color: var(--text-body); line-height: 1.78; }
.faq-answer.open { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* Dark faq variant */
.faq-item--dark { border-color: rgba(255,255,255,0.08); }
.faq-item--dark:first-child { border-top-color: rgba(255,255,255,0.08); }
.faq-item--dark .faq-question { color: var(--white); }
.faq-item--dark .faq-question:hover { color: var(--teal-light); }
.faq-item--dark .faq-question.open { color: var(--teal-light); }
.faq-item--dark .faq-icon { border-color: rgba(255,255,255,0.15); color: var(--linen); }
.faq-item--dark .faq-answer { color: var(--linen); opacity: 0.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--deep-blue-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(7,26,43,0.4); }
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--bougainvillea);
  opacity: 0.5;
  position: absolute;
  top: 24px;
  right: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.93rem; line-height: 1.78; color: var(--linen); opacity: 0.85; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 0.75rem; color: var(--linen-faint); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-label span { color: var(--terracotta); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,140,140,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #C1BDB7; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-body);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-hint { font-size: 0.74rem; color: var(--text-muted); margin-top: 5px; }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-panel {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.calc-panel h3 { margin-bottom: 28px; color: var(--deep-blue); }
.calc-range-group { margin-bottom: 28px; }
.calc-range-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc-range-label span:first-child { font-size: 0.84rem; font-weight: 600; color: var(--deep-blue); }
.calc-range-value { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--teal); }
input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none; -webkit-appearance: none;
  background: var(--sand-dark);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(26,140,140,0.4);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--teal);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
.calc-breakdown { background: var(--white); border: 1px solid var(--sand-dark); border-radius: var(--radius-lg); overflow: hidden; }
.calc-breakdown-header {
  background: var(--deep-blue);
  padding: 20px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-breakdown-header h3 { color: var(--white); font-size: 1rem; font-weight: 600; font-family: var(--font-sans); }
.calc-breakdown-header span { font-size: 0.72rem; color: var(--linen-faint); }
.calc-breakdown-body { padding: 4px 0; }
.calc-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
}
.calc-line:last-child { border-bottom: none; }
.calc-line__label { color: var(--text-body); }
.calc-line__value { font-weight: 600; color: var(--deep-blue); }
.calc-line--optional .calc-line__label { color: var(--text-muted); font-style: italic; }
.calc-total-row {
  background: var(--deep-blue);
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-total-row .label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--linen-faint); }
.calc-total-row .value { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 700; color: var(--teal-light); }

/* ============================================================
   QUIZ
   ============================================================ */
.quiz-container { max-width: 700px; margin: 0 auto; }
.quiz-progress { margin-bottom: 44px; }
.quiz-progress-bar { height: 3px; background: var(--sand-dark); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.quiz-progress-fill { height: 100%; background: linear-gradient(to right, var(--teal-dark), var(--teal-light)); transition: width 0.4s ease; }
.quiz-progress-text { display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--text-muted); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeInUp 0.35s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
.quiz-question { font-family: var(--font-serif); font-size: 1.55rem; margin-bottom: 8px; color: var(--deep-blue); }
.quiz-hint { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 28px; }
.quiz-options { display: grid; gap: 12px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.quiz-option:hover { border-color: var(--teal); background: var(--teal-pale); }
.quiz-option.selected { border-color: var(--teal); background: var(--teal-pale); }
.quiz-option__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sand-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: transparent;
  transition: all var(--transition);
}
.quiz-option.selected .quiz-option__check { background: var(--teal); border-color: var(--teal); color: var(--white); }
.quiz-option__label { font-size: 0.95rem; font-weight: 600; color: var(--deep-blue); }
.quiz-option__sub { font-size: 0.79rem; color: var(--text-muted); display: block; margin-top: 3px; font-weight: 400; }
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--sand-dark);
}
.quiz-result { display: none; }
.quiz-result.active { display: block; animation: fadeInUp 0.4s ease; }
.result-card {
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-mid));
  border-radius: var(--radius-xl);
  padding: 52px;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(26,140,140,0.15) 0%, transparent 70%);
}
.result-card__inner { position: relative; z-index: 1; }
.result-card__icon { font-size: 3.5rem; margin-bottom: 20px; }
.result-card__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
.result-card__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; }
.result-card__sub { font-size: 0.93rem; color: var(--linen); max-width: 480px; margin: 0 auto 36px; line-height: 1.75; }
.result-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.result-detail { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 16px; }
.result-detail label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--linen-faint); display: block; margin-bottom: 6px; }
.result-detail span { font-size: 0.92rem; font-weight: 600; color: var(--teal-light); }
.quiz-gate {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
}
.quiz-gate h3 { margin-bottom: 10px; color: var(--deep-blue); }
.quiz-gate p { margin-bottom: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--sand-dark); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th { background: var(--deep-blue); color: var(--white); padding: 16px 20px; text-align: left; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.01em; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--sand); color: var(--text-body); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--sand); }
.compare-table td:first-child { font-weight: 600; color: var(--deep-blue); }
.compare-table .check { color: var(--cypress); font-weight: 700; }
.compare-table .cross { color: var(--terracotta); }

/* ============================================================
   BENEFIT LIST
   ============================================================ */
.benefit-list { list-style: none; padding: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.92rem;
  color: var(--text-body);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list__icon {
  width: 22px; height: 22px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--teal-dark);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.benefit-list li strong { color: var(--deep-blue); }
/* Dark variant */
.benefit-list--dark li { border-color: rgba(255,255,255,0.07); color: var(--linen); opacity: 0.85; }
.benefit-list--dark li strong { color: var(--white); }
.benefit-list--dark .benefit-list__icon { background: rgba(26,140,140,0.15); color: var(--teal-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--deep-blue);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(26,140,140,0.10) 0%, transparent 70%);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 18px; }
.cta-section p { color: var(--linen); opacity: 0.75; max-width: 560px; margin: 0 auto 40px; }
.cta-section__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: rgba(26,140,140,0.06);
  border: 1px solid rgba(26,140,140,0.2);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { font-size: 0.87rem; color: var(--text-body); }
.info-box strong { color: var(--deep-blue); }

/* Terracotta variant */
.info-box--terracotta {
  background: rgba(196,96,58,0.05);
  border-color: rgba(196,96,58,0.2);
  border-left-color: var(--terracotta);
}

/* ============================================================
   SIDEBAR LAYOUTS
   ============================================================ */
.sidebar-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.sidebar-layout--reverse { grid-template-columns: 340px 1fr; }
.sticky-sidebar { position: sticky; top: calc(var(--nav-height) + 28px); }

/* Quick facts card */
.quick-facts { background: var(--white); border: 1px solid var(--sand-dark); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.quick-facts__header { background: var(--deep-blue); padding: 14px 22px; font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--linen); }
.quick-fact { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px; border-bottom: 1px solid var(--sand); font-size: 0.84rem; }
.quick-fact:last-child { border-bottom: none; }
.quick-fact__label { color: var(--text-muted); }
.quick-fact__value { font-weight: 600; color: var(--deep-blue); text-align: right; max-width: 55%; font-size: 0.83rem; }

/* Consult card */
.consult-card { background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-mid)); border-radius: var(--radius-lg); padding: 32px; color: var(--white); text-align: center; margin-bottom: 24px; }
.consult-card__icon { font-size: 2rem; margin-bottom: 12px; }
.consult-card h4 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 8px; }
.consult-card p { font-size: 0.81rem; color: var(--linen); opacity: 0.65; margin-bottom: 20px; }
.consult-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.consult-card__note { font-size: 0.7rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--deep-blue);
  padding: calc(var(--nav-height) + 72px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 45%, rgba(26,140,140,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 35% 50% at 15% 80%, rgba(7,26,43,0.6) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,191,176,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero .lead { color: var(--linen); opacity: 0.8; max-width: 600px; }
.page-hero__meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.page-hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: rgba(200,191,176,0.6); }
.page-hero__meta-item strong { color: var(--teal-light); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--linen-faint); margin-bottom: 28px; }
.breadcrumb a { color: var(--linen-faint); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb__sep { color: rgba(255,255,255,0.2); }
.breadcrumb__current { color: rgba(200,191,176,0.8); }

/* ============================================================
   PARTNER TIERS
   ============================================================ */
.tier-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tier-card { background: var(--white); border: 1px solid var(--sand-dark); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: all var(--transition); position: relative; }
.tier-card--featured { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tier-icon { font-size: 2.5rem; margin-bottom: 16px; }
.tier-name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--deep-blue); margin-bottom: 6px; }
.tier-fee { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 24px; }
.tier-fee span { font-size: 0.88rem; font-weight: 400; color: var(--text-muted); }
.tier-features { text-align: left; margin-bottom: 28px; }
.tier-features li { display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: 0.84rem; color: var(--text-body); border-bottom: 1px solid var(--sand); }
.tier-features li:last-child { border-bottom: none; }
.tier-features .chk { color: var(--cypress); font-weight: 700; }

/* ============================================================
   CONTACT METHODS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--sand-dark); border-radius: var(--radius); margin-bottom: 14px; transition: all var(--transition); }
.contact-method:hover { border-color: rgba(26,140,140,0.3); box-shadow: var(--shadow-sm); }
.contact-method__icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--teal-pale); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-method h4 { margin-bottom: 3px; font-size: 0.92rem; color: var(--deep-blue); }
.contact-method p { font-size: 0.8rem; margin-bottom: 4px; }
.contact-method a { font-size: 0.88rem; font-weight: 600; color: var(--teal-dark); }
.contact-method a:hover { text-decoration: underline; }

/* Calendly placeholder */
.calendly-embed { background: var(--sand); border: 1px solid var(--sand-dark); border-radius: var(--radius-lg); height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 32px; }
.calendly-embed__icon { font-size: 2.8rem; opacity: 0.35; }
.calendly-embed h4 { color: var(--deep-blue); }

/* ============================================================
   PARTNER BENEFIT CARD
   ============================================================ */
.partner-benefit-card { background: var(--white); border: 1px solid var(--sand-dark); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 24px; transition: all var(--transition); }
.partner-benefit-card:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.partner-benefit-card h4 { margin-bottom: 7px; color: var(--deep-blue); }
.partner-benefit-card p { font-size: 0.87rem; }

/* ============================================================
   FEATURE CARDS (why section, light)
   ============================================================ */
.feature-card { padding: 32px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--sand-dark); transition: all var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(26,140,140,0.25); }
.feature-card__icon { font-size: 2.2rem; margin-bottom: 18px; }
.feature-card h3 { margin-bottom: 10px; color: var(--deep-blue); font-size: 1.05rem; }
.feature-card p { font-size: 0.88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark-footer); color: var(--linen-faint); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer__brand p { font-size: 0.87rem; line-height: 1.75; margin: 18px 0 24px; color: rgba(200,191,176,0.5); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; transition: all var(--transition); color: var(--linen-faint); }
.footer__social a:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.footer__col h5 { font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.11em; color: rgba(200,191,176,0.9); margin-bottom: 20px; }
.footer__links-list li { margin-bottom: 10px; }
.footer__links-list a { font-size: 0.855rem; color: rgba(200,191,176,0.5); transition: color var(--transition); }
.footer__links-list a:hover { color: var(--teal-light); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; margin-bottom: 12px; color: rgba(200,191,176,0.5); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.76rem; color: rgba(200,191,176,0.3); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.76rem; color: rgba(200,191,176,0.3); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--teal-light); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition); }
.whatsapp-float:hover { background: #20ba5a; transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; bottom: 100px; right: 28px; background: var(--deep-blue); color: var(--white); border: 1px solid rgba(26,140,140,0.3); border-radius: var(--radius); padding: 16px 20px; font-size: 0.88rem; display: flex; align-items: center; gap: 10px; z-index: 1100; box-shadow: var(--shadow-lg); transform: translateX(120%); transition: transform 0.35s ease; max-width: 300px; }
.toast.show { transform: translateX(0); }
.toast__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-teal  { color: var(--teal); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white) !important; }
.text-linen { color: var(--linen) !important; }
.text-terracotta { color: var(--terracotta); }
.font-serif { font-family: var(--font-serif); }
.divider { border: none; border-top: 1px solid var(--sand-dark); margin: 44px 0; }
.hidden { display: none !important; }
.mt-8  { margin-top: 8px;  } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px;  } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar-layout--reverse { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .stat-row__item { border-bottom: 1px solid var(--sand-dark); }
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { flex-direction: row; }
  .calc-container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .nav__links { display: none; }
  .nav__wa span:last-child { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat { border-right: none !important; padding: 0 !important; border-bottom: 1px solid rgba(200,191,176,0.12); padding-bottom: 16px !important; }
  .hero__stat:last-child { border-bottom: none; }
  .cta-section__btns { flex-direction: column; align-items: center; }
  .result-card { padding: 32px 20px; }
  .result-details { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .stat-row { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-height) + 40px) 0 56px; }
}
@media (max-width: 380px) {
  h1 { font-size: 2.1rem; }
  .hero__title { font-size: 2.2rem; }
}


/* ── No-motion overrides: static, sharp, no scroll/hover animation ── */
html{scroll-behavior:auto!important}
*,*::before,*::after{animation:none!important}
.reveal{opacity:1!important;transform:none!important;transition:none!important}
a:hover,button:hover,[class*="btn"]:hover,[class*="card"]:hover{transform:none!important}
