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

:root {
  --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: #FFFFFF;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,80,200,.07), 0 1px 2px rgba(0,80,200,.04);
  --shadow-md: 0 4px 16px rgba(0,80,200,.09), 0 2px 4px rgba(0,80,200,.05);
  --shadow-lg: 0 10px 32px rgba(0,80,200,.11);
  --focus-ring: 0 0 0 3px rgba(0,120,240,.25);
  --trans: all .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--n800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue-700);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  z-index: 9999;
  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 { box-shadow: var(--focus-ring); outline: none; }
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
h1,h2,h3,h4 { font-family: var(--font); font-weight: 600; line-height: 1.2; color: var(--n900); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1rem; }
p { line-height: 1.75; color: var(--n600); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-100);
  padding: .25rem .875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 500;
  padding: .6875rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.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-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,.6); }
.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-brand {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 500; padding: .5625rem 1.125rem;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; transition: var(--trans); line-height: 1;
}
.btn-brand:active { transform: scale(.98); }
.section { padding: 5rem 0; }
.section-alt { background: var(--n50); }
.section-dark { background: var(--blue-900); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .625rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }
#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 .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.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: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 600; color: #fff;
  letter-spacing: -.02em;
}
.nav-logo-text { 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;
  list-style: none;
  gap: .125rem;
}
.nav-links a {
  display: block;
  padding: .4375rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav-cta { display: none; }
.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-sm); transition: var(--trans);
}
.nav-hamburger:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-hamburger svg { width: 22px; height: 22px; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
}
.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: 1rem;
}
.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-sm);
  transition: var(--trans);
}
.drawer-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-nav { list-style: none; 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-sm); transition: var(--trans);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.drawer-nav li a:hover { color: #fff; background: rgba(255,255,255,.08); }
.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: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  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-badge {
  display: inline-flex; align-items: center; gap: .375rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .8125rem; font-weight: 500;
  padding: .375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
#hero h1 {
  color: #fff;
  max-width: 760px;
  margin: 0 auto 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: .8125rem;
  padding: .375rem .875rem;
  border-radius: var(--radius-full);
}
.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; }
#about .about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  #about .about-grid { grid-template-columns: 3fr 2fr; }
}
.about-text .eyebrow { margin-bottom: .875rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; font-size: 1.0625rem; }
.about-facts { display: flex; flex-direction: column; gap: .625rem; }
.fact-chip {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border: 1px solid var(--n200);
  border-left: 3px solid var(--blue-700);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: .875rem 1.125rem;
  transition: var(--trans);
}
.fact-chip:hover { border-left-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.fact-chip-icon { color: var(--blue-600); flex-shrink: 0; }
.fact-chip-icon svg { width: 18px; height: 18px; }
.fact-chip-text { font-size: .9375rem; font-weight: 500; color: var(--n700); }
.fact-chip-sub { font-size: .8125rem; color: var(--n500); margin-top: .1rem; }
#brands { background: var(--n50); }
.brands-parent {
  text-align: center;
  margin-bottom: 1.5rem;
}
.parent-card {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  background: var(--blue-900);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
}
.parent-card-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 700; color: #fff;
}
.parent-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  display: block;
  margin-top: .125rem;
}
.brands-connector {
  display: flex; justify-content: center;
  margin-bottom: 1.5rem;
}
.connector-svg { width: 280px; height: 48px; }
.brands-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }

.brand-card {
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  border: 1.5px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.brand-card-goji { background: var(--blue-50); border-color: var(--blue-200); }
.brand-card-domain { background: var(--orange-50); border-color: var(--orange-100); }
.brand-card-profile { background: var(--green-50); border-color: var(--green-100); }

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

.brand-name { font-size: 1.1875rem; font-weight: 600; margin-bottom: .125rem; }
.brand-name-goji { color: var(--blue-800); }
.brand-name-domain { color: var(--orange-700); }
.brand-name-profile { color: var(--green-700); }

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

.brand-services {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.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;
}
.brand-card-goji .brand-services li { color: var(--blue-800); }
.brand-card-goji .brand-services li::before { background: var(--blue-400); }
.brand-card-domain .brand-services li { color: var(--orange-700); }
.brand-card-domain .brand-services li::before { background: var(--orange-500); }
.brand-card-profile .brand-services li { color: var(--green-700); }
.brand-card-profile .brand-services li::before { background: var(--green-500); }

.btn-brand-goji { background: var(--blue-700); color: #fff; }
.btn-brand-goji:hover { background: var(--blue-600); }
.btn-brand-domain { background: var(--orange-500); color: #fff; }
.btn-brand-domain:hover { background: var(--orange-600); }
.btn-brand-profile { background: var(--green-500); color: #fff; }
.btn-brand-profile:hover { background: var(--green-600); }
#stats { background: var(--blue-900); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  background: var(--blue-900);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-value {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .375rem;
  display: block;
}
.stat-label { font-size: .875rem; color: rgba(255,255,255,.45); }
.stat-item:nth-child(1) .stat-value { color: #fff; }
.stat-item:nth-child(2) .stat-value { color: var(--orange-500); }
.stat-item:nth-child(3) .stat-value { color: #fff; }
.stat-item:nth-child(4) .stat-value { color: var(--green-500); }
#why-us { background: var(--white); }
.why-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card {
  background: var(--n50);
  border: 1px solid var(--n200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: var(--trans);
  text-align: center;
}
.why-card:hover { border-color: var(--blue-200); background: var(--blue-50); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-icon svg { width: 24px; height: 24px; }
.why-icon-1 { background: var(--blue-100); color: var(--blue-700); }
.why-icon-2 { background: var(--orange-100); color: var(--orange-700); }
.why-icon-3 { background: var(--blue-100); color: var(--blue-700); }
.why-icon-4 { background: var(--green-100); color: var(--green-700); }
.why-icon-5 { background: var(--purple-100); color: var(--purple-700); }
.why-title { font-size: 1rem; font-weight: 600; color: var(--n800); margin-bottom: .5rem; }
.why-desc { font-size: .875rem; color: var(--n500); line-height: 1.6; }
#mission { background: var(--n50); }
.mvv-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 768px) { .mvv-grid { grid-template-columns: repeat(3, 1fr); } }
.mvv-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid transparent;
}
.mvv-blue { background: var(--blue-50); border-color: var(--blue-200); }
.mvv-purple { background: var(--purple-50); border-color: var(--purple-100); }
.mvv-orange { background: var(--orange-50); border-color: var(--orange-100); }
.mvv-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .875rem;
  display: flex; align-items: center; gap: .5rem;
}
.mvv-blue .mvv-label { color: var(--blue-700); }
.mvv-purple .mvv-label { color: var(--purple-700); }
.mvv-orange .mvv-label { color: var(--orange-700); }
.mvv-label svg { width: 16px; height: 16px; }
.mvv-title { font-size: 1.25rem; font-weight: 600; margin-bottom: .625rem; }
.mvv-blue .mvv-title { color: var(--blue-800); }
.mvv-purple .mvv-title { color: var(--purple-700); }
.mvv-orange .mvv-title { color: var(--orange-700); }
.mvv-text { font-size: .9375rem; line-height: 1.7; }
.mvv-blue .mvv-text { color: var(--blue-800); }
.mvv-purple .mvv-text { color: var(--purple-700); }
.mvv-orange .mvv-text { color: var(--orange-700); }
#process { background: var(--white); }
.process-steps {
  display: grid; gap: 1.25rem;
}
@media (min-width: 640px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 26px; left: 10%; right: 10%;
    height: 1px;
    background: var(--n200);
    z-index: 0;
  }
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0625rem; font-weight: 700;
  margin: 0 auto 1rem;
  border: 2px solid transparent;
  transition: var(--trans);
}
.step-circle-blue { background: var(--blue-700); color: #fff; }
.step-circle-orange { background: var(--orange-500); color: #fff; }
.process-step:hover .step-circle { transform: scale(1.1); }
.step-title { font-size: .9375rem; font-weight: 600; color: var(--n800); margin-bottom: .375rem; }
.step-desc { font-size: .8125rem; color: var(--n500); line-height: 1.6; }
#leadership { background: var(--n50); }
.leadership-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 480px) {
  .leadership-card { flex-direction: column; text-align: center; }
}
.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
  border: 3px solid var(--blue-100);
}
.leader-name { font-size: 1.25rem; font-weight: 600; color: var(--n900); margin-bottom: .25rem; }
.leader-title { font-size: .9375rem; color: var(--blue-700); font-weight: 500; margin-bottom: .375rem; }
.leader-desc { font-size: .875rem; color: var(--n500); line-height: 1.6; }
#faq { background: var(--white); }
.faq-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; }
}
.faq-intro h2 { margin-bottom: .75rem; }
.faq-intro p { font-size: 1.0625rem; margin-bottom: 1.5rem; }
.faq-contact-note {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--blue-800);
  line-height: 1.6;
}
.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-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue-300); background: var(--blue-50); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; font-size: .9375rem; font-weight: 500;
  color: var(--n800); background: none; border: none; cursor: pointer;
  text-align: left; gap: 1rem; transition: color .2s;
  font-family: var(--font);
}
.faq-item.open .faq-question { color: var(--blue-800); }
.faq-chevron {
  width: 18px; height: 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: 300px; padding: 0 1.25rem 1rem; }
.faq-answer p { font-size: .9375rem; color: var(--n600); line-height: 1.75; }
#contact { background: var(--n50); }
.contact-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 3rem; } }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form-wrap h3 { margin-bottom: .375rem; }
.contact-form-wrap p { font-size: .9375rem; margin-bottom: 1.5rem; }
.form-row { display: grid; gap: .875rem; margin-bottom: .875rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.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);
  font-size: .9375rem;
  color: var(--n800);
  background: var(--white);
  border: 1.5px solid var(--n300);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.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-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit { width: 100%; padding: .875rem; font-size: 1rem; margin-top: .25rem; }
.form-success {
  display: none;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 1rem 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; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-title { font-size: 1.25rem; font-weight: 600; color: var(--n900); margin-bottom: .5rem; }
.contact-chip {
  display: flex; align-items: flex-start; gap: .875rem;
  background: var(--white); border: 1px solid var(--n200);
  border-radius: var(--radius-md); padding: 1rem 1.125rem;
  text-decoration: none; transition: var(--trans);
}
.contact-chip:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.contact-chip-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-chip-icon svg { width: 18px; height: 18px; }
.contact-chip-label { font-size: .75rem; color: var(--n500); font-weight: 500; margin-bottom: .125rem; }
.contact-chip-value { font-size: .9375rem; font-weight: 500; color: var(--n800); }
.contact-hours {
  background: var(--blue-50); border: 1px solid var(--blue-200);
  border-radius: var(--radius-md); padding: 1rem 1.125rem;
  margin-top: .5rem;
}
.contact-hours-title { font-size: .8125rem; font-weight: 600; color: var(--blue-800); margin-bottom: .375rem; }
.contact-hours p { font-size: .875rem; color: var(--blue-700); margin: 0; line-height: 1.7; }
#footer {
  background: var(--n900);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: .625rem;
  margin-bottom: 1rem;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: #fff;
}
.footer-logo-name { font-size: .9375rem; font-weight: 600; color: #fff; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 1rem; }
.footer-dots { display: flex; gap: .375rem; }
.footer-dot { width: 8px; height: 8px; border-radius: 50%; }
.footer-col-title {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .9rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 0;
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.25); }
.footer-reg { font-size: .8125rem; color: rgba(255,255,255,.25); }
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
.text-center { text-align: center; }
.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; }

.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(--r-md);padding:.625rem .875rem;margin-top:.5rem}
.ssl-badge svg{width:16px;height:16px;flex-shrink:0}
.whatsapp-btn{display:flex;align-items:center;gap:.75rem;background:#25D366;color:#fff;border:none;border-radius:var(--r-md);padding:1rem 1.125rem;text-decoration:none;font-weight:500;font-size:.9375rem;transition:var(--trans);cursor:pointer;min-height:44px}
.whatsapp-btn:hover{background:#1ebe5d}
.whatsapp-btn svg{width:22px;height:22px;flex-shrink:0}
.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)}
.mobile-cta-bar .btn{flex:1;justify-content:center;font-size:.875rem;padding:.625rem .75rem}
.mobile-cta-bar .btn-wa{background:#25D366;color:#fff;border-color:#25D366;flex:0 0 auto;padding:.625rem .75rem;border-radius:var(--r-md)}
@media(min-width:768px){.mobile-cta-bar{display:none}}
.footer-legal{display:flex;gap:1rem}
.footer-legal a{font-size:.8125rem;color:rgba(255,255,255,.25);text-decoration:none;transition:color .2s}
.footer-legal a:hover{color:rgba(255,255,255,.5)}