/* ═══════════════════════════════════════════════════════════════════
   Sovereign Meridian — Private Citizenship Advisory
   Shared stylesheet · Astryon-referenced · v5
   
   FONT SYSTEM (unified, no serif):
   · Anton      → all display headings, country names, amounts
   · Inter      → body, nav, buttons, callouts (italic for emphasis)
   · JetBrains Mono → eyebrows, labels, meta, table headers
   ═══════════════════════════════════════════════════════════════════ */

*{margin:0;padding:0;box-sizing:border-box}

:root{
  /* page surfaces */
  --page:#ECEAE4;
  --page-2:#E4E2DC;
  --dark:#0A0A08;
  --dark-2:#161614;
  --dark-3:#1F1F1C;
  --black:#000;

  /* text */
  --ink:#0A0A08;
  --ink-2:#4A4A46;
  --dim:#9A9892;
  --dim-2:#B8B6B0;
  --cream:#F5F3ED;
  --cream-2:#A6A49E;

  /* accent: dark teal-green (Astryon decorative) */
  --teal:#1F3A34;
  --teal-2:#2E5148;
  --teal-3:#3F7066;

  /* lines */
  --line-l:rgba(10,10,8,0.10);
  --line-l-2:rgba(10,10,8,0.06);
  --line-d:rgba(245,243,237,0.10);
  --line-d-2:rgba(245,243,237,0.06);

  /* type — unified system */
  --display:'Anton', Impact, 'Helvetica Neue', sans-serif;
  --body:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:'JetBrains Mono', ui-monospace, monospace;

  /* radius */
  --r-sm:14px;
  --r-md:24px;
  --r-lg:36px;
  --r-xl:48px;
  --r-pill:100px;
}

/* ═══════════════════ SCROLLBAR HIDING (iOS & Android) ═══════════════════ */
html{scroll-behavior:smooth;background:var(--page);overflow-x:hidden}
body{
  background:var(--page);
  color:var(--ink);
  font-family:var(--body);
  font-size:15px;
  line-height:1.5;
  font-weight:400;
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
  -webkit-font-smoothing:antialiased;
  padding:12px;
}

::selection{background:var(--ink);color:var(--cream)}

/* Hide scrollbar on all browsers but allow scrolling */
::-webkit-scrollbar{width:0;height:0}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:transparent}

/* Firefox scrollbar hide */
* {scrollbar-width:none}

/* Ensure no horizontal overflow */
.page-header,.hero,.section,.site-footer,footer,.cta-form{
  box-sizing:border-box;
  overflow-x:hidden;
}

/* Mobile touch optimization */
@supports (padding: max(0px)) {
  body{padding:env(safe-area-inset-left) env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom)}
}

/* ─── shared display heading (two-line fade) ─── */
.h-display{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(4rem, 11vw, 11rem);
  line-height:0.84;
  letter-spacing:-0.015em;
  text-transform:uppercase;
}
.h-display span{display:block}
.h-display .dim{color:var(--dim)}
.section-dark .h-display .dim,
.page-header .h-display .dim{color:var(--cream-2)}

/* smaller display variant for sub-page banners */
.h-display.h-display-md{
  font-size:clamp(3rem, 8vw, 8rem);
}

/* ─── eyebrow ─── */
.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--ink);
}
.section-dark .eyebrow,
.page-header .eyebrow{color:var(--cream)}
.eyebrow::before{
  content:'✼';
  font-size:15px;
  line-height:1;
}

/* ─── pill button ─── */
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 22px;
  border-radius:var(--r-pill);
  font-family:var(--body);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:0.1em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:all 0.28s ease;
  white-space:nowrap;
}
.pill-x-icon{
  width:12px;height:12px;
  transition:transform 0.35s ease;
}
.pill:hover .pill-x-icon{transform:rotate(90deg)}
.pill-arrow-icon{
  width:14px;height:14px;
  transition:transform 0.28s ease;
}
.pill:hover .pill-arrow-icon{transform:translateX(3px)}
.pill-light{background:var(--cream);color:var(--ink)}
.pill-light:hover{background:var(--page)}
.pill-dark{background:var(--dark);color:var(--cream)}
.pill-dark:hover{background:var(--dark-3)}
.pill-ghost-dark{background:rgba(245,243,237,0.08);color:var(--cream);border:1px solid var(--line-d)}
.pill-ghost-dark:hover{background:rgba(245,243,237,0.15)}
.pill-ghost-light{background:transparent;color:var(--ink);border:1px solid var(--line-l)}
.pill-ghost-light:hover{background:var(--page-2)}

.icon-btn{
  width:56px;height:56px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--dark);color:var(--cream);
  border:none;cursor:pointer;
  transition:all 0.3s ease;flex-shrink:0;
}
.icon-btn svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.icon-btn:hover{background:var(--dark-3);transform:scale(1.05)}

/* ═══════════════════ NAV ═══════════════════ */
nav.site-nav{
  position:relative;z-index:10;
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;
  padding:0.5rem 0.5rem 0.5rem 1.5rem;
}
.nav-brand{
  display:inline-flex;align-items:center;
  text-decoration:none;
}
.nav-logo{
  height:66px;
  width:auto;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
}
.nav-links{
  display:flex;align-items:center;gap:4px;
  list-style:none;
  background:rgba(245,243,237,0.04);
  border:1px solid var(--line-d);
  padding:5px;
  border-radius:var(--r-pill);
}
.nav-links li a{
  display:inline-flex;align-items:center;
  padding:10px 18px;
  font-family:var(--body);
  font-size:12px;font-weight:500;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--cream);text-decoration:none;
  border-radius:var(--r-pill);
  transition:background 0.22s;
}
.nav-links li a:hover{background:rgba(245,243,237,0.08)}
.nav-links li a.active{background:var(--cream);color:var(--ink)}

/* ═══════════════════ HERO (home page only) ═══════════════════ */
.hero{
  position:relative;
  background:var(--dark);
  color:var(--cream);
  border-radius:var(--r-xl);
  padding:1.5rem 1.5rem 0;
  overflow:hidden;
  isolation:isolate;
  min-height:calc(100vh - 24px);
  display:flex;flex-direction:column;
}
.hero-banner-video{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
  object-fit:cover;
  pointer-events:none;
  opacity:0.55;
}
.hero-banner-placeholder{
  position:absolute;inset:0;z-index:0;
  background:var(--black);
  pointer-events:none;
}
.hero-deco{position:absolute;inset:0;z-index:1;pointer-events:none;overflow:hidden}
.hero-caps{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%) rotate(-24deg);
  width:640px;height:900px;
  filter:blur(2px);opacity:0.85;
}
.hero-caps svg{width:100%;height:100%}
.hero-vignette{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 0%, rgba(10,10,8,0.6) 70%),
    radial-gradient(ellipse at 100% 0%, rgba(31,58,52,0.25), transparent 50%);
  pointer-events:none;
}

.hero-body{
  position:relative;z-index:5;
  flex:1;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;
  padding:4rem 2rem;
}
.hero-headline-wrap{position:relative;display:inline-block}
.hero-headline{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(5rem, 16vw, 16rem);
  line-height:0.86;
  letter-spacing:-0.025em;
  color:var(--cream);
  text-transform:uppercase;
}
.hero-headline .dim-word{color:var(--cream-2)}
.hero-headline-tm{
  position:absolute;top:0.5em;right:-1.2em;
  font-family:var(--body);
  font-size:clamp(1rem, 1.4vw, 1.8rem);
  font-weight:500;
  color:var(--cream);
  letter-spacing:0.03em;
}
.hero-tagline{
  margin-top:1.5rem;
  font-family:var(--body);
  font-size:clamp(0.95rem, 1.25vw, 1.15rem);
  color:var(--cream);
}

.hero-bottom{
  position:relative;z-index:6;
  display:grid;grid-template-columns:1fr 1fr 1fr;
  align-items:end;
  padding:1.5rem 1.5rem 0;
  margin:0 -1.5rem;
}
.trust-card{
  background:var(--page);
  color:var(--ink);
  border-radius:var(--r-lg) var(--r-lg) 0 0;
  padding:1.5rem 2rem 1.75rem;
  margin-bottom:-1px;
  align-self:end;justify-self:start;
  width:fit-content;
}
.trust-avatars{display:flex;margin-bottom:0.8rem}
.trust-ava{
  width:34px;height:34px;
  border-radius:50%;border:2px solid var(--page);
  margin-left:-8px;background-size:cover;background-position:center;
}
.trust-ava:first-child{margin-left:0}
.trust-ava.a1{background:linear-gradient(135deg,#3d2f22,#6b5540)}
.trust-ava.a2{background:linear-gradient(135deg,#2c3a35,#556863)}
.trust-ava.a3{background:linear-gradient(135deg,#3e3623,#6d5f3e)}
.trust-ava.a4{background:linear-gradient(135deg,#2e2e26,#575346)}
.trust-text{
  font-family:var(--body);font-size:13px;font-weight:500;
  color:var(--ink);letter-spacing:-0.005em;
  display:flex;align-items:center;gap:8px;
}

.hero-scroll{
  justify-self:center;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:14px;
  color:var(--cream);padding-bottom:2rem;
}
.scroll-ring{
  width:42px;height:42px;
  border:1.5px solid var(--cream);
  border-radius:50%;position:relative;
}
.scroll-ring::after{
  content:'';position:absolute;
  top:10px;left:50%;transform:translateX(-50%);
  width:2px;height:8px;background:var(--cream);border-radius:1px;
  animation:scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot{
  0%{top:10px;opacity:0}
  50%{opacity:1}
  100%{top:24px;opacity:0}
}
.hero-scroll-label{font-family:var(--body);font-size:13px;color:var(--cream)}
.hero-since{
  justify-self:end;color:var(--cream-2);
  font-family:var(--body);font-size:13px;
  padding-bottom:2.5rem;padding-right:1rem;
}

/* ═══════════════════ PAGE HEADER (sub-pages) ═══════════════════ */
.page-header{
  position:relative;
  background:var(--black);
  color:var(--cream);
  border-radius:var(--r-xl);
  padding:1.5rem 1.5rem 5rem;
  overflow:hidden;
  isolation:isolate;
  min-height:60vh;
  display:flex;flex-direction:column;
}
.page-header-video{
  position:absolute;inset:0;z-index:0;
  width:100%;height:100%;
  object-fit:cover;
  pointer-events:none;
  opacity:0.35;
}
.page-header-placeholder{
  position:absolute;inset:0;z-index:0;
  background:var(--black);
}
.page-header-vignette{
  position:absolute;inset:0;z-index:1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(10,10,8,0.7) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(10,10,8,0.5) 100%);
  pointer-events:none;
}
.page-header-content{
  position:relative;z-index:5;
  flex:1;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:6rem 3rem 1rem;
  max-width:1500px;
  margin:0 auto;
  width:100%;
}
.page-header-eyebrow{margin-bottom:1.5rem}
.page-header-title{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(4rem, 10vw, 10rem);
  line-height:0.86;
  letter-spacing:-0.02em;
  text-transform:uppercase;
  color:var(--cream);
  margin-bottom:2rem;
}
.page-header-title .dim-word{color:var(--cream-2)}
.page-header-intro{
  font-family:var(--body);
  font-size:clamp(0.95rem, 1.15vw, 1.05rem);
  line-height:1.6;
  color:var(--cream-2);
  max-width:640px;
}
.page-header-breadcrumb{
  position:absolute;z-index:6;
  bottom:1.5rem;right:3rem;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--cream-2);
}
.page-header-breadcrumb a{color:var(--cream-2);text-decoration:none;transition:color 0.2s}
.page-header-breadcrumb a:hover{color:var(--cream)}
.page-header-breadcrumb .sep{margin:0 10px;opacity:0.4}

/* ═══════════════════ SECTIONS ═══════════════════ */
.section{padding:7rem 4rem;position:relative}
.section-light{background:var(--page);color:var(--ink)}
.section-dark{
  background:var(--dark);color:var(--cream);
  border-radius:var(--r-xl);
  margin-top:12px;
  padding:7rem 4rem;
}
.section-narrow{max-width:1200px;margin:0 auto}

.section-head{
  display:grid;grid-template-columns:1fr auto;
  gap:2rem;
  align-items:flex-end;
  margin-bottom:5rem;
  position:relative;z-index:1;
}
.section-head-right{
  display:flex;flex-direction:column;align-items:flex-end;gap:1.2rem;
  padding-bottom:1rem;max-width:420px;
}
.section-head-meta{
  font-family:var(--mono);font-size:12px;font-weight:500;
  color:var(--ink-2);
}
.section-dark .section-head-meta{color:var(--cream-2)}
.section-head-intro{
  font-family:var(--body);font-size:15px;
  line-height:1.6;color:var(--ink-2);
  text-align:right;max-width:420px;
}
.section-dark .section-head-intro{color:var(--cream-2)}

.section-lead{
  font-family:var(--body);
  font-size:clamp(1.05rem, 1.3vw, 1.25rem);
  line-height:1.55;
  color:var(--ink-2);
  max-width:720px;
  margin-bottom:3rem;
}
.section-dark .section-lead{color:var(--cream-2)}

/* ═══════════════════ TRUSTED INTEGRITY — PILLARS ═══════════════════ */
.pillars-wrap{
  margin-top:3.5rem;padding-top:3rem;
  /* separator line removed per design direction */
}
.pillars-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.25fr 1fr 1fr;
  gap:0;align-items:stretch;
}
.pillar{
  padding:0 2rem;
  border-right:1px solid var(--line-l);
  display:flex;flex-direction:column;
}
.section-dark .pillar{border-right:1px solid var(--line-d)}
.pillar:nth-child(6){border-right:none}
.pillar:first-child{padding-left:0}
.pillar:last-child{padding-right:0}
.pillar-num{
  font-family:var(--mono);font-size:11px;font-weight:400;
  letter-spacing:0.2em;color:var(--dim);
  margin-bottom:2.2rem;
}
.section-dark .pillar-num{color:var(--cream-2)}
.pillar-title{
  font-family:var(--display); /* CONSISTENT: Anton, not serif */
  font-weight:400;
  font-size:clamp(1.7rem, 2.3vw, 2.2rem);
  line-height:0.95;
  letter-spacing:-0.01em;
  color:var(--ink);
  text-transform:uppercase;
  margin-bottom:1.4rem;
}
.section-dark .pillar-title{color:var(--cream)}
.pillar-body{
  font-family:var(--body);
  font-size:14px;line-height:1.55;
  color:var(--ink-2);
  font-weight:600; /* bold per spec */
  max-width:240px;
}
.section-dark .pillar-body{color:var(--cream-2)}

/* animated placeholder between pillars (black, video-ready) */
.pillar-image{
  padding:0 1.2rem;
  display:flex;align-items:center;justify-content:center;
}
.pillar-image-card{
  width:100%;
  aspect-ratio:1/1.15;
  background:var(--black);
  border-radius:var(--r-md);
  position:relative;
  overflow:hidden;
  animation:floatCard 6s ease-in-out infinite;
}
@keyframes floatCard{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-8px) scale(1.01)}
}
.pillar-image-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.pillar-image-caps{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  animation:rotateSlow 24s linear infinite;
  opacity:0.4;
}
@keyframes rotateSlow{
  0%{transform:rotate(-5deg)}
  50%{transform:rotate(5deg)}
  100%{transform:rotate(-5deg)}
}
.pillar-image-caps svg{width:110%;height:110%;filter:blur(1px)}
.pillar-image-label{
  position:absolute;bottom:12px;left:50%;
  transform:translateX(-50%);
  font-family:var(--mono);font-size:9.5px;font-weight:400;
  letter-spacing:0.2em;color:var(--cream-2);
  text-transform:uppercase;z-index:2;
}
.pillar-image-label::before{content:'✼ ';color:var(--teal-3)}

/* ═══════════════════ PROGRAMMES GRID ═══════════════════ */
.progs-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.5rem;margin-top:2rem;
}
.prog{
  position:relative;
  background:var(--dark-2);
  border-radius:var(--r-lg);
  padding:2.5rem 2.5rem 2.2rem;
  overflow:hidden;
  transition:transform 0.5s ease, background 0.3s;
  display:flex;flex-direction:column;
  min-height:480px;
  text-decoration:none;
  color:inherit;
}
.prog:hover{transform:translateY(-6px);background:var(--dark-3)}
.prog-deco{
  position:absolute;
  top:-20%;right:-15%;
  width:60%;height:60%;
  opacity:0.5;pointer-events:none;
  color:var(--teal-3);
}
.prog-deco svg{width:100%;height:100%}
/* Coat of arms on programme detail pages — inline flow, no overlap possible */
.coa-inline{
  display:block;
  width:220px;
  height:auto;
  margin-left:auto;
  margin-bottom:0;
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}
.section-head-right:has(.coa-inline){
  gap:0.35rem;
}

.prog-deco-img{
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0.5;
  pointer-events:none;
}
.prog-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;margin-bottom:2rem;position:relative;z-index:1;
}
.prog-label{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--dark);color:var(--cream);
  padding:9px 16px;border-radius:var(--r-pill);
  font-family:var(--body);font-size:12.5px;font-weight:500;
}
.prog-label svg{width:14px;height:14px;color:var(--cream-2)}
.prog-meta{
  font-family:var(--mono);font-size:11px;font-weight:400;
  letter-spacing:0.15em;color:var(--cream-2);text-transform:uppercase;
}
.prog-mid{position:relative;z-index:1;margin-bottom:2.5rem}
.prog-name{
  font-family:var(--display);font-weight:400;
  font-size:clamp(3.5rem, 5vw, 4.5rem);
  line-height:0.88;letter-spacing:-0.015em;
  color:var(--cream);text-transform:uppercase;
  margin-bottom:0.6rem;
}
.prog-min{
  font-family:var(--mono);font-size:12px;font-weight:500;
  color:var(--cream-2);letter-spacing:0.05em;
}
.prog-min .amt{color:var(--cream);margin-left:6px}

.prog-callout{
  padding:1.4rem 0 0;
  border-top:1px solid var(--line-d);
  margin-top:auto;position:relative;z-index:1;
}
.prog-callout-lbl{
  font-family:var(--mono);font-size:10px;font-weight:500;
  letter-spacing:0.18em;color:var(--teal-3);
  text-transform:uppercase;margin-bottom:0.7rem;
  display:inline-flex;align-items:center;gap:6px;
}
.prog-callout-lbl::before{content:'✼';color:var(--teal-3)}
.prog-callout-text{
  font-family:var(--body); /* CONSISTENT: Inter, not serif */
  font-style:italic;
  font-weight:400;
  font-size:15px;
  line-height:1.55;
  color:var(--cream);
  max-width:94%;
  letter-spacing:-0.003em;
}

.prog-foot{
  display:flex;justify-content:flex-end;
  margin-top:1.5rem;position:relative;z-index:1;
}
.prog-arrow{
  width:48px;height:48px;border-radius:50%;
  background:var(--cream);color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background 0.3s;
}
.prog-arrow svg{width:16px;height:16px;stroke-width:2}
.prog:hover .prog-arrow{background:var(--teal-3);color:var(--cream)}

/* ═══════════════════ COMPARISON TABLE ═══════════════════ */
.table-wrap{overflow-x:auto;margin-top:3rem}
.compare-table{
  width:100%;min-width:900px;
  border-collapse:collapse;
  font-family:var(--body); /* CONSISTENT: Inter throughout */
}
.compare-table thead tr{border-bottom:1.5px solid var(--ink)}
.section-dark .compare-table thead tr{border-bottom:1.5px solid var(--cream)}
.compare-table th{
  padding:1.5rem 1.3rem 1.5rem 0;
  text-align:left;
  font-family:var(--mono);
  font-size:11px;font-weight:500;
  letter-spacing:0.16em;text-transform:uppercase;
  color:var(--ink-2);
  vertical-align:bottom;
}
.section-dark .compare-table th{color:var(--cream-2)}
.compare-table th.country{
  font-family:var(--display);
  font-size:1.5rem;font-weight:400;
  letter-spacing:-0.01em;
  text-transform:uppercase;
  color:var(--ink);line-height:1;
}
.section-dark .compare-table th.country{color:var(--cream)}
.compare-table td{
  padding:1rem 1.3rem 1rem 0;
  border-bottom:1px solid var(--line-l);
  font-family:var(--body);
  font-size:14px;font-weight:500;
  color:var(--ink);
  vertical-align:middle;
}
.section-dark .compare-table td{border-bottom:1px solid var(--line-d);color:var(--cream)}
.compare-table td:first-child{
  font-family:var(--mono);
  font-size:11.5px;font-weight:400;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-2);
}
.section-dark .compare-table td:first-child{color:var(--cream-2)}
.compare-table tbody tr:hover td{background:rgba(10,10,8,0.025)}
.section-dark .compare-table tbody tr:hover td{background:rgba(245,243,237,0.025)}
.compare-table .yes{color:var(--ink);display:inline-flex;align-items:center;gap:6px}
.section-dark .compare-table .yes{color:var(--cream)}
.compare-table .yes svg{width:14px;height:14px;color:var(--teal-2)}
.section-dark .compare-table .yes svg{color:var(--teal-3)}
.compare-table .no{color:var(--dim);display:inline-flex;align-items:center;gap:6px}
.compare-table .no svg{width:14px;height:14px;color:var(--dim-2)}
.compare-table .best{
  font-family:var(--body); /* CONSISTENT: Inter italic */
  font-style:italic;
  font-weight:500;
  font-size:14.5px;
  color:var(--ink);
}
.section-dark .compare-table .best{color:var(--cream)}
.compare-table tfoot td{
  padding-top:1.8rem;
  font-family:var(--body);
  font-size:12.5px;font-weight:400;
  letter-spacing:0;text-transform:none;
  color:var(--ink-2);line-height:1.6;
  border-bottom:none;
}
.section-dark .compare-table tfoot td{color:var(--cream-2)}

/* ═══════════════════ ADVISORY PACKAGES (pricing) ═══════════════════ */
.pkg-grid{
  display:grid;grid-template-columns:1fr 1.5fr;
  gap:1.5rem;margin-top:2rem;
}
.pkg-tabs{display:flex;flex-direction:column;gap:1rem}
.pkg-tab{
  background:var(--dark-2);
  border:1px solid var(--line-d);
  border-radius:var(--r-lg);
  padding:1.8rem 2rem;cursor:pointer;
  transition:all 0.3s ease;
}
.pkg-tab-head{display:flex;align-items:center;gap:14px;margin-bottom:0.8rem}
.pkg-tab-icon{color:var(--cream)}
.pkg-tab-icon svg{width:22px;height:22px}
.pkg-tab-name{
  font-family:var(--display);font-weight:400;font-size:1.9rem;
  text-transform:uppercase;letter-spacing:-0.005em;line-height:1;
  color:var(--cream);
}
.pkg-tab-desc{
  font-family:var(--body);font-size:13.5px;line-height:1.55;
  color:var(--cream-2);
}
.pkg-tab:not(.active) .pkg-tab-name,
.pkg-tab:not(.active) .pkg-tab-icon{color:var(--cream-2)}
.pkg-tab:not(.active) .pkg-tab-desc{color:rgba(166,164,158,0.6)}
.pkg-tab.active{border-color:var(--teal-2)}
.pkg-tab:hover{border-color:var(--teal-3)}

.pkg-detail{
  background:var(--dark-2);
  border:1px solid var(--line-d);
  border-radius:var(--r-lg);
  padding:2.2rem 2.4rem;
  display:flex;flex-direction:column;min-height:100%;
}
.pkg-detail-guarantee{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--body);font-size:12.5px;font-weight:500;
  color:var(--cream-2);margin-bottom:1.4rem;
}
.pkg-detail-guarantee svg{width:14px;height:14px;color:var(--cream-2)}
.pkg-detail-price{display:flex;align-items:baseline;gap:6px;margin-bottom:1.2rem}
.pkg-detail-amt{
  font-family:var(--display);font-weight:400;
  font-size:clamp(3.5rem,6vw,5rem);
  line-height:1;letter-spacing:-0.02em;color:var(--cream);
}
.pkg-detail-per{
  font-family:var(--display);font-size:1.2rem;
  color:var(--cream-2);text-transform:uppercase;
}
.pkg-detail-desc{
  font-family:var(--body);font-size:14.5px;line-height:1.55;
  color:var(--cream-2);margin-bottom:2rem;max-width:440px;
}
.pkg-detail-sep{
  border-top:1px dashed var(--line-d);
  margin:1rem 0 2rem;
}
.pkg-detail-heading{
  font-family:var(--display);font-weight:400;font-size:2rem;
  line-height:1;text-transform:uppercase;color:var(--cream);
  margin-bottom:1.4rem;letter-spacing:-0.005em;
}
.pkg-feats{list-style:none;margin-bottom:2rem;flex:1}
.pkg-feats li{
  display:flex;align-items:center;gap:12px;
  padding:0.5rem 0;
  font-family:var(--body);font-size:14.5px;color:var(--cream);
  line-height:1.45;
}
.pkg-feats li svg{width:15px;height:15px;color:var(--cream);flex-shrink:0}
.pkg-detail-btn{align-self:flex-start}

/* ═══════════════════ SECURE YOUR CITIZENSHIP (3-col values) ═══════════════════ */
.secure-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:3rem;margin-top:3rem;
  padding-top:3rem;border-top:1px solid var(--line-l);
}
.section-dark .secure-grid{border-top:1px solid var(--line-d)}
.secure-item{
  display:grid;grid-template-columns:auto 1fr;
  gap:1.8rem;align-items:start;
}
.secure-icon{
  width:64px;height:64px;
  border:1px solid var(--line-l);
  border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--ink);flex-shrink:0;
}
.section-dark .secure-icon{border:1px solid var(--line-d);color:var(--cream)}
.secure-icon svg{width:26px;height:26px;stroke-width:1.4}
.secure-title{
  font-family:var(--display);font-weight:400;
  font-size:1.8rem;text-transform:uppercase;letter-spacing:-0.005em;
  line-height:1;color:var(--ink);
  margin-bottom:1rem;
}
.section-dark .secure-title{color:var(--cream)}
.secure-body{
  font-family:var(--body);font-size:14.5px;line-height:1.55;
  color:var(--ink-2);max-width:320px;
}
.section-dark .secure-body{color:var(--cream-2)}

/* ═══════════════════ SITE FOOTER (dark wrapper) ═══════════════════ */
.site-footer{
  position:relative;
  background:var(--dark);color:var(--cream);
  border-radius:var(--r-xl);margin-top:12px;
  padding:4rem;overflow:hidden;
}
/* Form styling (contact page) */
.cta-form{
  background:var(--cream);color:var(--ink);
  border-radius:var(--r-xl);padding:2.5rem;
}
.form-field{margin-bottom:1.4rem}
.form-field:last-of-type{margin-bottom:1.2rem}
.form-field label{
  display:block;font-family:var(--body);
  font-size:13.5px;font-weight:500;
  color:var(--ink);margin-bottom:10px;
}
.form-field input,.form-field textarea,.form-field select{
  width:100%;padding:14px 16px;
  background:var(--page);border:none;border-radius:var(--r-sm);
  font-family:var(--body);font-size:14px;color:var(--ink);
  transition:box-shadow 0.22s;
}
.form-field input:focus,.form-field textarea:focus,.form-field select:focus{
  outline:none;box-shadow:0 0 0 2px var(--ink);
}
.form-field textarea{min-height:120px;resize:vertical}
.form-submit-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;margin-top:1.8rem;
}
.form-submit{
  flex:1;padding:18px 28px;
  background:var(--ink);color:var(--cream);
  border:none;border-radius:var(--r-pill);
  font-family:var(--body);font-size:13px;font-weight:500;
  letter-spacing:0.16em;text-transform:uppercase;
  cursor:pointer;transition:background 0.25s;
}
.form-submit:hover{background:var(--dark-3)}
.form-note{
  font-family:var(--body);font-size:12px;color:var(--ink-2);
  white-space:nowrap;
}

/* ═══════════════════ FOOTER ═══════════════════ */
footer{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.4fr 1fr;gap:3rem;
  color:var(--cream);
}
.footer-brand{
  display:inline-block;
  margin-bottom:1.8rem;
  text-decoration:none;
}
.footer-logo{
  height:68px;width:auto;display:block;
  user-select:none;-webkit-user-drag:none;
}
.footer-about{
  font-family:var(--body);font-size:14px;line-height:1.55;
  color:var(--cream-2);max-width:340px;margin-bottom:1.8rem;
}
.footer-socials{display:flex;gap:12px;margin-bottom:1.8rem}
.footer-social{
  width:40px;height:40px;
  border:1px solid var(--line-d);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--cream);text-decoration:none;
  transition:background 0.25s, border-color 0.25s;
}
.footer-social svg{width:16px;height:16px}
.footer-social:hover{background:rgba(245,243,237,0.08);border-color:var(--cream-2)}
.footer-address{
  font-family:var(--body);font-size:13px;
  color:var(--cream-2);line-height:1.7;margin-bottom:0.8rem;
}
.footer-email{
  font-family:var(--body);font-size:14px;font-weight:500;
  color:var(--cream);text-decoration:none;
  border-bottom:1px solid var(--line-d);
  padding-bottom:2px;transition:border-color 0.2s;
}
.footer-email:hover{border-color:var(--cream)}

.footer-right{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:2.5rem;
}
.footer-nav{
  display:flex;flex-direction:column;
  align-items:flex-end;gap:0.9rem;
}
.footer-nav a{
  font-family:var(--body);font-size:15px;font-weight:400;
  color:var(--cream);text-decoration:none;
  transition:color 0.22s;
}
.footer-nav a:hover{color:var(--cream-2)}

.back-to-top{
  display:flex;flex-direction:column;align-items:flex-end;gap:8px;
  text-decoration:none;color:var(--cream);
}
.back-to-top-btn{
  width:54px;height:54px;
  border:1px solid var(--line-d);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  transition:all 0.3s;
}
.back-to-top-btn svg{width:18px;height:18px;stroke-width:2}
.back-to-top:hover .back-to-top-btn{
  background:var(--cream);color:var(--ink);transform:translateY(-4px);
}
.back-to-top-lbl{
  font-family:var(--body);font-size:11.5px;font-weight:500;
  color:var(--cream-2);text-transform:uppercase;letter-spacing:0.08em;
}

.footer-bottom{
  margin-top:4rem;padding-top:1.8rem;
  border-top:1px solid var(--line-d);
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  font-family:var(--body);font-size:12.5px;color:var(--cream-2);
  position:relative;z-index:1;
}
.footer-bottom-left{display:flex;align-items:center;gap:14px}
.footer-bottom-left .sep{color:var(--cream-2);opacity:0.4}
.footer-bottom-left a{color:var(--cream);text-decoration:none}
.footer-bottom-left a:hover{color:var(--cream-2)}

/* ═══════════════════ CONTENT PATTERNS (used across pages) ═══════════════════ */

/* Two-column prose + side copy */
.prose-split{
  display:grid;grid-template-columns:2fr 3fr;
  gap:4rem;align-items:start;
  margin-top:3rem;
  position:relative;z-index:1;
}
.prose-split-lede{
  font-family:var(--body);
  font-size:clamp(1rem, 1.2vw, 1.1rem);
  line-height:1.55;
  color:var(--ink-2);
  font-weight:500;
}
.section-dark .prose-split-lede{color:var(--cream-2)}
.prose-body{
  font-family:var(--body);
  font-size:15.5px;
  line-height:1.7;
  color:var(--ink-2);
}
.section-dark .prose-body{color:var(--cream-2)}
.prose-body p{margin-bottom:1.2rem}
.prose-body p:last-child{margin-bottom:0}
.prose-body strong{color:var(--ink);font-weight:600}
.section-dark .prose-body strong{color:var(--cream)}

/* Fact list (key:value rows) */
.facts{
  list-style:none;margin:2rem 0;
  border-top:1px solid var(--line-l);
  position:relative;z-index:1;
}
.section-dark .facts{border-top:1px solid var(--line-d)}
.facts li{
  display:grid;grid-template-columns:1.2fr 2fr;
  gap:2rem;padding:1.1rem 0;
  border-bottom:1px solid var(--line-l);
}
.section-dark .facts li{border-bottom:1px solid var(--line-d)}
.facts-lbl{
  font-family:var(--mono);
  font-size:11.5px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--ink-2);
}
.section-dark .facts-lbl{color:var(--cream-2)}
.facts-val{
  font-family:var(--body);font-size:15.5px;font-weight:500;
  color:var(--ink);line-height:1.5;
}
.section-dark .facts-val{color:var(--cream)}

/* Process steps (numbered) */
.steps{list-style:none;margin-top:3rem}
.step{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:2.5rem;
  padding:2.5rem 0;
  border-bottom:1px solid var(--line-l);
  align-items:start;
}
.section-dark .step{border-bottom:1px solid var(--line-d)}
.step:last-child{border-bottom:none}
.step-num{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(3rem, 4.5vw, 4.2rem);
  line-height:0.9;
  color:var(--dim);
  min-width:6rem;
}
.section-dark .step-num{color:var(--cream-2)}
.step-content{max-width:640px}
.step-title{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(1.7rem, 2.3vw, 2.1rem);
  line-height:1;
  letter-spacing:-0.01em;
  color:var(--ink);
  text-transform:uppercase;
  margin-bottom:1rem;
}
.section-dark .step-title{color:var(--cream)}
.step-body{
  font-family:var(--body);
  font-size:15px;line-height:1.65;
  color:var(--ink-2);
}
.section-dark .step-body{color:var(--cream-2)}
.step-duration{
  font-family:var(--mono);
  font-size:11px;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  color:var(--ink-2);
  white-space:nowrap;
  padding-top:0.4rem;
}
.section-dark .step-duration{color:var(--cream-2)}
.step-duration-box{
  display:inline-block;
  padding:6px 12px;
  border:1px solid var(--line-l);
  border-radius:var(--r-pill);
}
.section-dark .step-duration-box{border:1px solid var(--line-d)}

/* FAQ accordion */
.faq-group{margin-top:3rem}
.faq-group-title{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(2rem, 3vw, 2.6rem);
  line-height:1;
  letter-spacing:-0.01em;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:2rem;
  padding-bottom:1rem;
  border-bottom:1px solid var(--line-l);
}
.section-dark .faq-group-title{color:var(--cream);border-bottom:1px solid var(--line-d)}
.faq-item{
  border-bottom:1px solid var(--line-l);
  transition:padding 0.3s ease;
}
.section-dark .faq-item{border-bottom:1px solid var(--line-d)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
  cursor:pointer;
  padding:1.5rem 0;
  font-family:var(--body);
  font-weight:500;
  font-size:clamp(1rem, 1.15vw, 1.1rem);
  line-height:1.4;
  color:var(--ink);
  transition:color 0.2s;
}
.section-dark .faq-q{color:var(--cream)}
.faq-q:hover{color:var(--teal-2)}
.section-dark .faq-q:hover{color:var(--teal-3)}
.faq-q-num{
  font-family:var(--mono);
  font-size:11px;font-weight:500;
  letter-spacing:0.1em;
  color:var(--dim);margin-right:12px;
}
.section-dark .faq-q-num{color:var(--cream-2)}
.faq-toggle{
  width:36px;height:36px;
  border-radius:50%;
  border:1px solid var(--line-l);
  color:var(--ink);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:transform 0.4s ease, background 0.3s, border-color 0.3s;
}
.section-dark .faq-toggle{border:1px solid var(--line-d);color:var(--cream)}
.faq-toggle svg{width:14px;height:14px;stroke-width:1.8}
.faq-item.open .faq-toggle{
  transform:rotate(45deg);
  background:var(--ink);color:var(--cream);
}
.section-dark .faq-item.open .faq-toggle{
  background:var(--cream);color:var(--ink);
}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height 0.5s ease, padding 0.5s ease;
}
.faq-item.open .faq-a{
  max-height:600px;
  padding-bottom:1.8rem;
}
.faq-a-text{
  font-family:var(--body);
  font-size:15px;
  line-height:1.7;
  color:var(--ink-2);
  max-width:780px;
}
.section-dark .faq-a-text{color:var(--cream-2)}
.faq-a-text p{margin-bottom:0.9rem}
.faq-a-text p:last-child{margin-bottom:0}

/* Team / leadership */
.team-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2rem;margin-top:3rem;
}
.team-card{
  background:var(--page-2);
  border-radius:var(--r-lg);
  padding:0;overflow:hidden;
}
.team-photo{
  width:100%;aspect-ratio:1/1.1;
  background:var(--black);
  position:relative;
}
.team-photo-label{
  position:absolute;bottom:16px;left:16px;
  font-family:var(--mono);font-size:10px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--cream-2);
}
.team-photo-label::before{content:'✼ ';color:var(--teal-3)}
.team-info{padding:1.8rem 1.8rem 2.2rem}
.team-role{
  font-family:var(--mono);
  font-size:10.5px;font-weight:500;
  letter-spacing:0.16em;text-transform:uppercase;
  color:var(--ink-2);margin-bottom:0.8rem;
}
.team-name{
  font-family:var(--display);
  font-weight:400;
  font-size:1.7rem;
  line-height:1;
  letter-spacing:-0.005em;
  color:var(--ink);
  text-transform:uppercase;
  margin-bottom:0.8rem;
}
.team-bio{
  font-family:var(--body);
  font-size:13.5px;
  line-height:1.6;
  color:var(--ink-2);
}

/* Investment routes cards */
.routes-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1.5rem;margin-top:3rem;
}
.route-card{
  background:var(--dark-2);
  border-radius:var(--r-lg);
  padding:2.2rem 2.4rem;
  position:relative;
  overflow:hidden;
}
.route-head{
  display:flex;align-items:flex-start;justify-content:space-between;
  gap:1rem;margin-bottom:1.5rem;
  padding-bottom:1.2rem;
  border-bottom:1px solid var(--line-d);
}
.route-tag{
  font-family:var(--mono);font-size:10.5px;font-weight:500;
  letter-spacing:0.16em;text-transform:uppercase;
  color:var(--cream-2);
}
.route-tag::before{content:'✼ ';color:var(--teal-3)}
.route-name{
  font-family:var(--display);font-weight:400;
  font-size:clamp(1.8rem, 2.5vw, 2.4rem);
  line-height:1;letter-spacing:-0.01em;
  color:var(--cream);text-transform:uppercase;
  margin-top:0.6rem;
}
.route-min{
  font-family:var(--display);
  font-size:clamp(2rem, 3vw, 2.8rem);
  font-weight:400;
  line-height:1;
  color:var(--cream);
  letter-spacing:-0.02em;
  margin-top:-0.3rem;
}
.route-body{
  font-family:var(--body);
  font-size:14.5px;
  line-height:1.65;
  color:var(--cream-2);
  margin-bottom:1.5rem;
}
.route-feats{list-style:none}
.route-feats li{
  display:flex;align-items:center;gap:10px;
  padding:0.45rem 0;
  font-family:var(--body);font-size:13.5px;
  color:var(--cream);
}
.route-feats li svg{width:14px;height:14px;color:var(--teal-3);flex-shrink:0}

/* Bullet feature list (large) */
.feature-list{list-style:none;margin-top:2rem}
.feature-list li{
  display:grid;grid-template-columns:auto 1fr;
  gap:1.4rem;align-items:start;
  padding:1.4rem 0;
  border-bottom:1px solid var(--line-l);
}
.section-dark .feature-list li{border-bottom:1px solid var(--line-d)}
.feature-list li:last-child{border-bottom:none}
.feature-list-icon{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--ink);color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.section-dark .feature-list-icon{background:var(--cream);color:var(--ink)}
.feature-list-icon svg{width:18px;height:18px;stroke-width:1.8}
.feature-list-title{
  font-family:var(--body);
  font-size:16px;font-weight:600;
  color:var(--ink);
  margin-bottom:0.3rem;
  line-height:1.3;
}
.section-dark .feature-list-title{color:var(--cream)}
.feature-list-body{
  font-family:var(--body);
  font-size:14.5px;line-height:1.55;
  color:var(--ink-2);
}
.section-dark .feature-list-body{color:var(--cream-2)}

/* Stat strip */
.stat-strip{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;margin-top:3rem;
  padding:3rem 0;
  border-top:1px solid var(--line-l);
  border-bottom:1px solid var(--line-l);
}
.section-dark .stat-strip{border-top:1px solid var(--line-d);border-bottom:1px solid var(--line-d)}
.stat{
  padding:0 2rem;
  border-right:1px solid var(--line-l);
}
.section-dark .stat{border-right:1px solid var(--line-d)}
.stat:first-child{padding-left:0}
.stat:last-child{border-right:none;padding-right:0}
.stat-num{
  font-family:var(--display);font-weight:400;
  font-size:clamp(2.5rem, 4vw, 3.8rem);
  line-height:0.9;letter-spacing:-0.015em;
  color:var(--ink);
  margin-bottom:0.6rem;
}
.section-dark .stat-num{color:var(--cream)}
.stat-lbl{
  font-family:var(--mono);
  font-size:10.5px;font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ink-2);
}
.section-dark .stat-lbl{color:var(--cream-2)}

/* Visa-free regions list */
.regions-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:2rem;
}
.region-card{
  padding:1.8rem 2rem;
  background:var(--dark-2);
  border-radius:var(--r-md);
}
.region-name{
  font-family:var(--display);font-weight:400;
  font-size:1.5rem;line-height:1;
  color:var(--cream);margin-bottom:0.8rem;
  text-transform:uppercase;letter-spacing:-0.005em;
}
.region-list{
  font-family:var(--body);font-size:13.5px;
  line-height:1.7;color:var(--cream-2);
}

/* Office cards */
.offices-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;margin-top:3rem;
}
.office-card{
  padding:2rem 2rem 2.2rem;
  border-radius:var(--r-lg);
  background:var(--page-2);
  border:1px solid var(--line-l);
}
.office-city{
  font-family:var(--display);font-weight:400;
  font-size:2.2rem;line-height:1;
  color:var(--ink);margin-bottom:0.4rem;
  text-transform:uppercase;letter-spacing:-0.01em;
}
.office-region{
  font-family:var(--mono);font-size:11px;font-weight:500;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--ink-2);margin-bottom:1.5rem;
}
.office-addr{
  font-family:var(--body);font-size:14px;line-height:1.65;
  color:var(--ink-2);margin-bottom:1.2rem;
}
.office-phone,.office-email{
  font-family:var(--body);font-size:14px;font-weight:500;
  color:var(--ink);text-decoration:none;
  display:flex;align-items:center;gap:8px;
  margin-bottom:0.5rem;
}
.office-phone svg,.office-email svg{width:14px;height:14px;color:var(--ink-2);stroke:currentColor;fill:none;stroke-width:1.5}

/* Animations */
.fade-up{opacity:0;transform:translateY(26px);transition:opacity 0.8s ease, transform 0.8s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1200px){
  .pillars-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .pillar{border-right:none !important;padding:0;border-bottom:1px solid var(--line-l);padding-bottom:2rem}
  .section-dark .pillar{border-bottom:1px solid var(--line-d)}
  .pillar:nth-last-child(-n+2){border-bottom:none;padding-bottom:0}
  .pillar-image{grid-column:1 / -1;order:2;padding:0}
  .pillar-image-card{aspect-ratio:2/1;max-height:320px}
  .progs-grid,.routes-grid{grid-template-columns:1fr}
  .secure-grid,.team-grid,.regions-grid,.offices-grid{grid-template-columns:1fr;gap:2rem}
  .pkg-grid,.prose-split{grid-template-columns:1fr;gap:2.5rem}
  .section-head{grid-template-columns:1fr}
  .section-head-right{align-items:flex-start}
  .section-head-intro{text-align:left}
  footer{grid-template-columns:1fr;gap:3rem}
  .footer-right{align-items:flex-start}
  .footer-nav{align-items:flex-start}
  .back-to-top{align-items:flex-start}
  .stat-strip{grid-template-columns:1fr 1fr;gap:2rem 0}
  .stat:nth-child(2n){border-right:none}
  .stat:nth-child(-n+2){border-bottom:1px solid var(--line-l);padding-bottom:2rem}
  .section-dark .stat:nth-child(-n+2){border-bottom:1px solid var(--line-d)}
  .step{grid-template-columns:1fr;gap:1.2rem}
  .step-num{font-size:3rem}
}
@media (max-width: 768px){
  body{padding:8px}
  .hero,.page-header{border-radius:28px;padding:1rem 1rem 0}
  .hero{min-height:calc(100vh - 16px)}
  .page-header{padding:1rem 1rem 3rem;min-height:50vh}
  .page-header-content{padding:3rem 1rem 1rem}
  .page-header-breadcrumb{right:1rem;bottom:1rem;font-size:10px}
  nav.site-nav{padding:0.25rem;flex-wrap:wrap}
  .nav-logo{height:36px}
  .nav-links{display:none}
  .hero-headline-tm{right:-1em;font-size:1rem}
  .hero-bottom{grid-template-columns:1fr;gap:1rem;padding:1rem}
  .hero-scroll{padding-bottom:1rem}
  .hero-since{padding-right:0}
  .trust-card{border-radius:var(--r-md);margin-bottom:0}
  .section{padding:4rem 1.5rem}
  .section-dark{padding:4rem 1.5rem;border-radius:28px}
  .site-footer{padding:3rem 1.5rem;border-radius:28px}
  .pillars-grid{grid-template-columns:1fr}
  .pillar{border-bottom:1px solid var(--line-l);padding-bottom:2rem}
  .pillar:last-child{border-bottom:none}
  .pkg-tabs{flex-direction:column}
  .compare-table{font-size:13px;min-width:760px}
  .prog{padding:2rem;min-height:auto}
  .prog-name{font-size:2.8rem}
  .footer-logo{height:56px}
  .facts li{grid-template-columns:1fr;gap:0.5rem}
  .stat-strip{grid-template-columns:1fr;gap:2rem}
  .stat{border-right:none !important;border-bottom:1px solid var(--line-l);padding:0 0 2rem !important}
  .stat:last-child{border-bottom:none;padding-bottom:0 !important}
  .coa-inline{width:140px;margin-bottom:0.3rem}
}

@media (max-width: 480px){
  body{padding:4px}
  .hero,.page-header{padding:0.75rem;border-radius:16px}
  .section,.section-dark,.site-footer{padding:2rem 1rem;border-radius:16px}
  nav.site-nav{padding:0.25rem;gap:0.25rem}
  .nav-logo{height:32px}
  .h-display{font-size:clamp(2rem, 6vw, 3.5rem)}
  .hero-tagline{font-size:clamp(0.85rem, 2.5vw, 0.95rem)}
  .page-header-title{font-size:clamp(2rem, 6vw, 3.5rem)}
  .prog{padding:1.5rem}
  .prog-name{font-size:1.6rem}
  .prog-deco{width:90%;height:90%;right:-40%;opacity:0.2}
  .coa-inline{width:100px;margin-bottom:0.3rem}
  .table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
  .compare-table{min-width:100%;font-size:11px}
  .section-lead{font-size:clamp(0.9rem, 2vw, 1rem)}
  .footer-address{font-size:11px}
  .step-title{font-size:clamp(1.3rem, 4vw, 1.7rem)}
  .step-body{font-size:13px;line-height:1.6}
  .pillar-title{font-size:1.3rem}
  .cta-form{padding:1rem}
  .form-field{margin-bottom:0.8rem}
  .pill{padding:12px 18px;font-size:11px}
}

/* Prevent horizontal scroll on all devices */
@media (max-width: 1920px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
  }
  
  body > * {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .pill, button, a {
    min-height: 48px;
    min-width: 48px;
  }
}
