:root {
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --blue-950: #000D2E;
  --blue-900: #001E5C;
  --blue-800: #003496;
  --blue-700: #0050C8;
  --blue-600: #0064DC;
  --blue-500: #0078F0;
  --blue-400: #3B9AF5;
  --blue-200: #B8D9FB;
  --blue-100: #E0EFFD;
  --blue-50:  #F0F7FF;
  --orange-700: #C4620A;
  --orange-600: #D97211;
  --orange-500: #F2983A;
  --orange-100: #FEF0DC;
  --orange-50:  #FFF8F0;
  --green-700: #3A7012;
  --green-600: #4E8F1C;
  --green-500: #6BB835;
  --green-100: #E4F5D0;
  --green-50:  #F2FBE8;
  --purple-700: #6B1480;
  --purple-600: #831A9C;
  --purple-500: #9626AC;
  --purple-100: #F2DBF7;
  --purple-50:  #FAF0FC;
  --n900: #0D1117;
  --n800: #1A2332;
  --n700: #2D3748;
  --n600: #4A5568;
  --n500: #718096;
  --n400: #A0AEC0;
  --n300: #CBD5E0;
  --n200: #E2E8F0;
  --n100: #F1F5F9;
  --n50:  #F8FAFC;
  --white: #fff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,80,200,.09), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 24px rgba(0,80,200,.12), 0 2px 8px rgba(0,0,0,.04);
  --shadow-nav: 0 2px 20px rgba(0,0,0,.25);
  --focus-ring: 0 0 0 3px rgba(0,120,240,.28);
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-full: 9999px;
  --trans:      all .2s ease;
  --trans-slow: all .3s ease;
  --nav-h:         64px;
  --container-max: 1200px;
  --sp-hero:    6rem;
  --sp-primary: 5rem;
  --sp-std:     4rem;
  --sp-compact: 3.5rem;
  --sp-tight:   3rem;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--n800);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); }
button { font-family: var(--font-body); }
ul, ol { list-style: none; }
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue-700);
  color: #fff;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .875rem;
  font-weight: 500;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: .75rem; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--n900);
  line-height: 1.15;
}
h1 { font-size: clamp(1.777rem, 4.5vw, 2.8rem);   letter-spacing: -.025em; }
h2 { font-size: clamp(1.333rem, 3vw, 1.777rem);   letter-spacing: -.02em; line-height: 1.3; }
h3 { font-size: clamp(1.05rem,  2vw, 1.25rem);    letter-spacing: -.01em; line-height: 1.3; }
p  { color: var(--n600); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3125rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: .875rem;
}
.eyebrow-blue { background: var(--blue-100); color: var(--blue-700); }
.eyebrow-dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .85;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  padding: .6875rem 1.375rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
  min-height: 44px;
}
.btn:active { transform: scale(.98); }

.btn-primary      { background: var(--blue-700);    color: #fff; border-color: var(--blue-700); }
.btn-primary:hover{ background: var(--blue-600);    border-color: var(--blue-600); }
.btn-orange       { background: var(--orange-500);  color: #fff; border-color: var(--orange-500); }
.btn-orange:hover { background: var(--orange-600);  border-color: var(--orange-600); }
.btn-green        { background: var(--green-500);   color: #fff; border-color: var(--green-500); }
.btn-green:hover  { background: var(--green-600); }
.btn-ghost        { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover  { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-outline-blue { background: transparent; color: var(--blue-700); border-color: var(--blue-200); }
.btn-outline-blue:hover { background: var(--blue-50); border-color: var(--blue-400); }
.btn-sm           { font-size: .8125rem; padding: .5rem 1rem; min-height: 36px; border-radius: var(--radius-md); }
.btn-ghost-sm     { background: transparent; color: var(--n600); border: 1.5px solid var(--n200);
                    font-size: .8125rem; padding: .5rem 1rem; min-height: 36px; border-radius: var(--radius-md); }
.btn-ghost-sm:hover { background: var(--n50); border-color: var(--n300); }
.section         { padding: var(--sp-primary) 0; }
.section-std     { padding: var(--sp-std) 0; }
.section-compact { padding: var(--sp-compact) 0; }
.section-tight   { padding: var(--sp-tight) 0; }
.section-white   { background: var(--white); }
.section-offwhite{ background: var(--n50); }
.section-navy    { background: var(--blue-900); }
.section-dark    { background: var(--n900); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .625rem; }
.section-header p  { font-size: 1.125rem; color: var(--n500); }
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-900);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--trans-slow);
}
#navbar.scrolled { box-shadow: var(--shadow-nav); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blue-700);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: .6875rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  display: block;
}
.nav-links {
  display: none;
  gap: .125rem;
}
.nav-links a {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: .4375rem .75rem;
  border-radius: var(--radius-md);
  transition: var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.09); }

.nav-actions { display: none; align-items: center; gap: .5rem; }

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  border-radius: var(--radius-md);
  transition: var(--trans);
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
}
.nav-hamburger:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-hamburger i { font-size: 22px; }
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.open { visibility: visible; pointer-events: all; }

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .3s;
}
.nav-drawer.open .drawer-overlay { opacity: 1; }

.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: var(--blue-900);
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.nav-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1rem;
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  padding: .375rem;
  border-radius: var(--radius-md);
  transition: var(--trans);
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.drawer-close i { font-size: 22px; }

.drawer-nav { flex: 1; }
.drawer-nav li a {
  display: flex;
  align-items: center;
  padding: .875rem .75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--trans);
  border-bottom: 1px solid rgba(255,255,255,.05);
  min-height: 44px;
}
.drawer-nav li a:hover { color: #fff; background: rgba(255,255,255,.09); }

.drawer-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.drawer-footer .btn { width: 100%; justify-content: center; }
#hero {
  background: var(--blue-900);
  padding: var(--sp-std) 0;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px) 0 0/24px 24px;
  pointer-events: none;
  opacity: .7;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,100,220,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(0,80,200,.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 500;
  padding: .375rem 1.125rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.157rem);
  letter-spacing: -.03em;
  color: #fff;
  line-height: 1.08;
  margin-bottom: .125rem;
}
.hero-h1-accent {
  display: block;
  color: var(--orange-500);
  font-size: clamp(1.333rem, 3.5vw, 1.777rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-top: .25rem;
  line-height: 1.3;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 1.25rem auto 2rem;
  line-height: 1.9;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: .875rem;
}
.hero-risk {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: .01em;
}
.hero-proof {
  display: grid;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.proof-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
}
.proof-stars  { color: var(--orange-500); font-size: .8rem; margin-bottom: .4rem; letter-spacing: .05em; }
.proof-quote  { font-size: .875rem; color: rgba(255,255,255,.65); font-style: italic; line-height: 1.75; margin-bottom: .625rem; }
.proof-author { font-size: .75rem; color: rgba(255,255,255,.38); font-weight: 500; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  padding: .3125rem .875rem;
  border-radius: var(--radius-full);
}
.trust-chip i { font-size: 14px; flex-shrink: 0; }
.bento-parent {
  background: var(--blue-900);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.bento-parent-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-lg);
  background: var(--blue-700);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-parent-icon img { width: 100%; height: 100%; object-fit: cover; }
.bento-parent-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.bento-parent-sub { font-size: .8rem; color: rgba(255,255,255,.45); }
.bento-grid { display: grid; gap: 1rem; }

.brand-card {
  border-radius: var(--radius-xl);
  padding: 1.625rem;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-card:hover { transform: translateY(-4px); }

.bc-goji    { background: var(--blue-50);   border-color: var(--blue-200); }
.bc-domain  { background: var(--orange-50); border-color: var(--orange-100); }
.bc-profile { background: var(--green-50);  border-color: var(--green-100); }
.bc-goji:hover    { border-color: var(--blue-400);    box-shadow: var(--shadow-md); }
.bc-domain:hover  { border-color: var(--orange-500);  box-shadow: 0 4px 16px rgba(242,152,58,.12); }
.bc-profile:hover { border-color: var(--green-500);   box-shadow: 0 4px 16px rgba(107,184,53,.1); }

.brand-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.brand-icon i { font-size: 22px; color: #fff; }
.bi-goji    { background: var(--blue-700); }
.bi-domain  { background: var(--orange-500); }
.bi-profile { background: var(--green-500); }

.brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; margin-bottom: .125rem; letter-spacing: -.015em; }
.bn-goji    { color: var(--blue-800); }
.bn-domain  { color: var(--orange-700); }
.bn-profile { color: var(--green-700); }

.brand-url { font-size: .8125rem; font-weight: 500; margin-bottom: .625rem; }
.bu-goji    { color: var(--blue-600); }
.bu-domain  { color: var(--orange-600); }
.bu-profile { color: var(--green-600); }

.brand-persona { font-size: .8125rem; padding: .5rem .75rem; border-radius: var(--radius-md); margin-bottom: .875rem; line-height: 1.75; font-style: italic; }
.bp-goji    { background: rgba(0,80,200,.06);    color: var(--blue-800); }
.bp-domain  { background: rgba(242,152,58,.08);  color: var(--orange-700); }
.bp-profile { background: rgba(107,184,53,.07);  color: var(--green-700); }

.brand-outcome { font-size: .8125rem; font-weight: 500; padding: .4rem 0; margin-bottom: .875rem; border-top: 1px solid; border-bottom: 1px solid; }
.bo-goji    { color: var(--blue-700);   border-color: var(--blue-100); }
.bo-domain  { color: var(--orange-700); border-color: var(--orange-100); }
.bo-profile { color: var(--green-700);  border-color: var(--green-100); }

.brand-services { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .3rem; }
.brand-services li { font-size: .875rem; display: flex; align-items: center; gap: .5rem; }
.brand-services li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.bc-goji    .brand-services li  { color: var(--blue-800); }
.bc-goji    .brand-services li::before { background: var(--blue-400); }
.bc-domain  .brand-services li  { color: var(--orange-700); }
.bc-domain  .brand-services li::before { background: var(--orange-500); }
.bc-profile .brand-services li  { color: var(--green-700); }
.bc-profile .brand-services li::before { background: var(--green-500); }
.brand-ctas { display: flex; gap: .5rem; flex-wrap: wrap; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-item {
  background: var(--blue-900);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .375rem;
  display: block;
  letter-spacing: -.025em;
}
.sv-white  { color: #fff; }
.sv-orange { color: var(--orange-500); }
.sv-green  { color: var(--green-500); }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.4); letter-spacing: .02em; }
.why-grid { display: grid; gap: 1.125rem; }
.why-card {
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.25rem;
  transition: var(--trans);
  text-align: center;
}
.why-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon i { font-size: 24px; }
.wi-blue   { background: var(--blue-100);   color: var(--blue-700); }
.wi-orange { background: var(--orange-100); color: var(--orange-700); }
.wi-green  { background: var(--green-100);  color: var(--green-700); }
.wi-purple { background: var(--purple-100); color: var(--purple-700); }
.why-problem { font-size: .8125rem; color: var(--n500); font-style: italic; margin-bottom: .5rem; line-height: 1.75; }
.why-answer  { font-size: .875rem;  color: var(--n700); font-weight: 500; line-height: 1.75; }
.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--n800); margin-bottom: .5rem; }
.about-grid { display: grid; gap: 2.5rem; align-items: start; }
.about-text h2  { margin-bottom: .875rem; }
.about-text p   { margin-bottom: 1rem; font-size: 1.125rem; }
#entity-block {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
#entity-block p { font-size: .9375rem; color: var(--blue-800); line-height: 1.9; margin: 0; }

.about-facts { display: flex; flex-direction: column; gap: .625rem; }
.fact-chip {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: .875rem 1.125rem;
  transition: var(--trans);
}
.fact-chip:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.fact-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-icon i { font-size: 18px; }
.fact-text { font-size: .9375rem; font-weight: 500; color: var(--n700); }
.fact-sub  { font-size: .8125rem; color: var(--n500); margin-top: .1rem; }
.mvv-grid { display: grid; gap: 1.125rem; }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border-top: 3px solid;
  transition: var(--trans);
}
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mc-blue   { border-top-color: var(--blue-700); }
.mc-purple { border-top-color: var(--purple-500); }
.mc-orange { border-top-color: var(--orange-500); }

.mvv-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.mvv-icon i { font-size: 20px; }
.mi-blue   { background: var(--blue-100);   color: var(--blue-700); }
.mi-purple { background: var(--purple-100); color: var(--purple-600); }
.mi-orange { background: var(--orange-100); color: var(--orange-600); }

.mvv-label { font-size: .75rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .625rem; }
.ml-blue   { color: var(--blue-700); }
.ml-purple { color: var(--purple-600); }
.ml-orange { color: var(--orange-600); }

.mvv-title { font-size: 1.125rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .5rem; }
.mt-blue   { color: var(--blue-900); }
.mt-purple { color: var(--purple-700); }
.mt-orange { color: var(--orange-700); }
.mvv-text  { font-size: .9375rem; line-height: 1.75; }
.mtext-blue   { color: var(--blue-800); }
.mtext-purple { color: var(--purple-700); }
.mtext-orange { color: var(--orange-700); }
.process-steps { display: grid; gap: 1.25rem; }
.process-step  { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--trans);
  border: 2px solid transparent;
}
.step-circle i { font-size: 22px; }
.sc-blue   { background: var(--blue-700);   color: #fff; border-color: var(--blue-700); }
.sc-orange { background: var(--orange-500); color: #fff; border-color: var(--orange-500); }
.process-step:hover .step-circle { transform: scale(1.1); }
.step-title { font-size: .9375rem; font-weight: 600; color: var(--n800); margin-bottom: .25rem; }
.step-sla   { font-size: .75rem; color: var(--blue-700); font-weight: 500; margin-bottom: .375rem; }
.step-desc  { font-size: .8125rem; color: var(--n500); line-height: 1.75; }
.process-cta { text-align: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--n200); }
.process-cta p { color: var(--n500); margin-bottom: 1rem; font-size: .9375rem; }
.trust-grid { display: grid; gap: 1rem; }
.trust-pillar {
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--trans);
}
.trust-pillar:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.tp-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--blue-100); color: var(--blue-700); display: flex; align-items: center; justify-content: center; margin-bottom: .875rem; }
.tp-icon i { font-size: 20px; }
.tp-title { font-size: 1rem; font-weight: 600; color: var(--n800); margin-bottom: .4rem; letter-spacing: -.01em; }
.tp-text  { font-size: .875rem; color: var(--n500); line-height: 1.75; }
.tp-badge { display: inline-block; font-size: .75rem; font-weight: 500; color: var(--blue-700); background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: var(--radius-full); padding: .25rem .75rem; margin-top: .625rem; }
.leader-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}
.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--blue-100);
}
.la-initials { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: -.02em; }
.leader-name  { font-size: 1.25rem; font-weight: 600; color: var(--n900); margin-bottom: .25rem; letter-spacing: -.015em; }
.leader-title { font-size: .9375rem; color: var(--blue-700); font-weight: 500; margin-bottom: .625rem; }
.leader-bio   { font-size: .9375rem; color: var(--n500); line-height: 1.75; margin-bottom: .875rem; }
.leader-quote { font-style: italic; color: var(--n700); font-size: .9375rem; border-left: 3px solid var(--blue-400); padding-left: 1rem; margin-top: .5rem; }
.testimonials-grid { display: grid; gap: 1.125rem; }
.testimonial-card {
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 1.625rem;
  transition: var(--trans);
}
.testimonial-card:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-200); }
.test-stars      { color: var(--orange-500); font-size: .875rem; margin-bottom: .625rem; letter-spacing: .05em; }
.test-quote-mark { font-family: Georgia, serif; font-size: 2.5rem; color: var(--blue-200); line-height: .8; margin-bottom: .625rem; }
.test-text       { font-size: .9375rem; color: var(--n600); line-height: 1.75; font-style: italic; margin-bottom: 1.125rem; }
.test-author     { display: flex; align-items: center; gap: .75rem; }
.test-avatar     { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 600; color: #fff; flex-shrink: 0; }
.test-name       { font-size: .9375rem; font-weight: 600; color: var(--n800); }
.test-role       { font-size: .8125rem; color: var(--n500); }
.test-metric     { font-size: .8125rem; font-weight: 500; color: var(--blue-700); margin-top: .25rem; }
.future-grid { display: grid; gap: 1rem; }
.future-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--trans);
}
.future-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.future-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.future-icon i { font-size: 22px; }
.fi-blue   { background: rgba(0,80,200,.35);   color: var(--blue-200); }
.fi-purple { background: rgba(150,38,172,.3);  color: var(--purple-100); }
.fi-green  { background: rgba(107,184,53,.25); color: var(--green-100); }
.future-title { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .5rem; letter-spacing: -.01em; }
.future-desc  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; }
.future-badge { display: inline-block; font-size: .75rem; font-weight: 500; padding: .25rem .75rem; border-radius: var(--radius-full); margin-top: .75rem; }
.fb-soon { background: rgba(242,152,58,.2);  color: var(--orange-500); }
.fb-plan { background: rgba(107,184,53,.2);  color: var(--green-500); }
.future-cta-band {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
}
.future-cta-band p { color: rgba(255,255,255,.5); font-size: .9375rem; margin-bottom: 1rem; }
.email-capture { display: flex; gap: .5rem; max-width: 400px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-input {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: .6875rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: .9375rem;
  outline: none;
  transition: var(--trans);
}
.email-input::placeholder { color: rgba(255,255,255,.3); }
.email-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.faq-grid { display: grid; gap: 2rem; }
.faq-intro h2 { margin-bottom: .75rem; }
.faq-intro p  { font-size: 1.125rem; color: var(--n500); margin-bottom: 1.5rem; }
.faq-contact-note {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  color: var(--blue-800);
  line-height: 1.75;
}
.faq-contact-note a { color: var(--blue-700); font-weight: 500; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--n50);
  border: 1px solid var(--n200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue-400); background: var(--blue-50); border-left: 3px solid var(--blue-700); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--n800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color .2s;
  min-height: 52px;
}
.faq-item.open .faq-question { color: var(--blue-800); }
.faq-chevron { font-size: 18px; flex-shrink: 0; color: var(--n400); transition: transform .25s, color .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue-600); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; padding: 0 1.25rem; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: .9375rem; color: var(--n600); line-height: 1.9; }
.faq-answer a { color: var(--blue-700); }
.contact-grid { display: grid; gap: 2rem; }
.contact-form-wrap {
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}
.contact-form-wrap h3 { margin-bottom: .3rem; font-size: 1.25rem; }
.contact-form-wrap > p { font-size: .9375rem; color: var(--n500); margin-bottom: 1.5rem; }

.step-indicator { display: flex; gap: .375rem; margin-bottom: 1.25rem; }
.step-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--n200); transition: background .3s; }
.step-dot.active { background: var(--blue-700); }
.step-dot.done   { background: var(--green-500); }
.step-label { font-size: .8125rem; color: var(--n500); margin-bottom: 1rem; font-weight: 500; }

.form-step  { display: none; }
.form-step.active { display: block; }
.form-row   { display: grid; gap: .75rem; margin-bottom: .75rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-label { font-size: .875rem; font-weight: 500; color: var(--n700); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .6875rem .875rem;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--n800);
  background: var(--white);
  border: 1.5px solid var(--n300);
  border-radius: var(--radius-lg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  min-height: 44px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0,120,240,.12);
}
.form-input.error, .form-select.error, .form-textarea.error { border-color: #DC2626; }
.field-error { font-size: .8125rem; color: #DC2626; margin-top: .25rem; display: none; }
.field-error.show { display: block; }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.75; }
.form-next, .form-back { padding: .75rem 1.25rem; font-size: .9375rem; margin-top: .25rem; }
.form-submit { width: 100%; padding: .875rem; font-size: 1rem; margin-top: .25rem; }
.form-back-row { display: flex; align-items: center; gap: .75rem; margin-top: .625rem; }
.form-back-link { font-size: .875rem; color: var(--n500); background: none; border: none; cursor: pointer; font-family: var(--font-body); text-decoration: underline; }
.form-success { display: none; background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-lg); padding: 1.25rem; color: var(--green-700); font-size: .9375rem; font-weight: 500; align-items: center; gap: .625rem; margin-top: 1rem; }
.form-success.show { display: flex; }
.form-success i { font-size: 20px; flex-shrink: 0; }

/* Contact info column */
.contact-info-title { font-size: 1.125rem; font-weight: 600; color: var(--n900); margin-bottom: .875rem; letter-spacing: -.01em; }
.contact-metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; margin-bottom: .875rem; }
.contact-metric { background: var(--n50); border: .5px solid var(--n200); border-radius: var(--radius-lg); padding: .875rem; text-align: center; }
.cm-val   { font-size: 1.375rem; font-weight: 600; color: var(--n900); font-family: var(--font-display); display: block; line-height: 1; }
.cm-label { font-size: .75rem; color: var(--n500); margin-top: .25rem; }

.contact-info { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1rem; }
.contact-chip {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  background: var(--white);
  border: .5px solid var(--n200);
  border-radius: var(--radius-lg);
  padding: .875rem 1rem;
  text-decoration: none;
  transition: var(--trans);
  color: inherit;
  min-height: 52px;
}
.contact-chip:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.cc-icon  { width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--blue-100); color: var(--blue-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-icon i { font-size: 17px; }
.cc-label { font-size: .75rem; color: var(--n500); font-weight: 500; }
.cc-value { font-size: .9375rem; font-weight: 500; color: var(--n800); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-lg);
  padding: .875rem 1rem;
  text-decoration: none;
  font-weight: 500;
  font-size: .9375rem;
  transition: var(--trans);
  cursor: pointer;
  min-height: 52px;
  font-family: var(--font-body);
}
.whatsapp-btn:hover { background: #1ebe5d; }
.whatsapp-btn i { font-size: 22px; flex-shrink: 0; }

.ssl-badge { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--green-700); background: var(--green-50); border: 1px solid var(--green-100); border-radius: var(--radius-lg); padding: .625rem .875rem; margin-top: .5rem; }
.ssl-badge i { font-size: 16px; flex-shrink: 0; }
.contact-hours { background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: var(--radius-lg); padding: 1rem 1.125rem; margin-top: .5rem; }
.ch-title { font-size: .8125rem; font-weight: 600; color: var(--blue-800); margin-bottom: .3rem; display: flex; align-items: center; gap: .375rem; }
.ch-title i { font-size: 14px; }
.contact-hours p { font-size: .875rem; color: var(--blue-700); margin: 0; line-height: 1.75; }
.form-testimonial { background: var(--blue-50); border: 1px solid var(--blue-200); border-radius: var(--radius-lg); padding: 1rem 1.125rem; margin-top: .625rem; }
.ft-stars  { color: var(--orange-500); font-size: .8rem; margin-bottom: .375rem; }
.ft-quote  { font-size: .875rem; color: var(--blue-800); font-style: italic; line-height: 1.75; margin-bottom: .5rem; }
.ft-author { font-size: .8rem; color: var(--blue-600); font-weight: 500; }
#footer { background: var(--n900); padding: 0; }

.footer-cta-band { background: #002878; padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.fca-text strong { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: .25rem; letter-spacing: -.01em; }
.fca-text span   { font-size: .875rem; color: rgba(255,255,255,.45); }
.fca-actions     { display: flex; gap: .625rem; flex-wrap: wrap; }

.footer-email-band { background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.06); padding: 1.125rem 0; }
.footer-email-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-email-text  { font-size: .875rem; color: rgba(255,255,255,.45); flex: 1; min-width: 180px; }
.footer-email-text strong { color: rgba(255,255,255,.65); }
.footer-email-form  { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-email-input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: .5625rem 1rem;
  color: #fff;
  font-size: .875rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--trans);
  min-width: 200px;
}
.footer-email-input::placeholder { color: rgba(255,255,255,.3); }
.footer-email-input:focus { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); }

.footer-main   { padding: 2.5rem 0 0; }
.footer-grid   { display: grid; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo   { display: flex; align-items: center; gap: .625rem; margin-bottom: .875rem; }
.footer-logo-icon { width: 32px; height: 32px; border-radius: var(--radius-md); background: var(--blue-700); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo-name { font-family: var(--font-display); font-size: .9375rem; font-weight: 600; color: #fff; letter-spacing: -.01em; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.32); line-height: 1.75; margin-bottom: .875rem; }
.footer-dots    { display: flex; gap: .375rem; }
.footer-dot     { width: 8px; height: 8px; border-radius: 50%; }
.footer-col-title { font-size: .75rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: .875rem; }
.footer-links   { display: flex; flex-direction: column; gap: .375rem; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; display: flex; align-items: center; min-height: 36px; }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-link-cta         { color: var(--orange-500) !important; font-weight: 500 !important; }
.footer-link-cta:hover   { color: var(--orange-400) !important; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .75rem; padding: 1.125rem 0; }
.footer-copy   { font-size: .8125rem; color: rgba(255,255,255,.22); }
.footer-legal  { display: flex; gap: .875rem; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.22); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1rem;
  gap: .5rem;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mcb-phone { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); padding: .625rem .75rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; text-decoration: none; min-height: 44px; min-width: 44px; }
.mcb-phone i { font-size: 18px; }
.mcb-main { flex: 1; background: var(--orange-500); color: #fff; border: none; border-radius: var(--radius-md); padding: .625rem 1rem; font-size: .875rem; font-weight: 500; font-family: var(--font-body); cursor: pointer; text-decoration: none; display: flex; align-items: center; justify-content: center; min-height: 44px; transition: var(--trans); }
.mcb-main:hover { background: var(--orange-600); }
.mcb-wa { background: #25D366; color: #fff; border: none; border-radius: var(--radius-md); padding: .625rem .75rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; text-decoration: none; min-height: 44px; min-width: 44px; transition: var(--trans); }
.mcb-wa:hover { background: #1ebe5d; }
.mcb-wa i { font-size: 20px; }
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
#cookieBanner p { color: rgba(255,255,255,.75); font-size: .875rem; margin: 0; flex: 1; min-width: 200px; }
#cookieBanner a { color: var(--blue-400); }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.text-center { text-align: center; }
.divider     { border: none; border-top: 1px solid var(--n200); margin: 2rem 0; }
