*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #181818;
  --black-4:    #222222;
  --gray-1:     #2e2e2e;
  --gray-2:     #484848;
  --gray-3:     #888888;
  --gray-4:     #b4b4b4;
  --gray-5:     #d8d8d8;
  --white:      #f4f4f4;
  --orange:     #e07820;
  --orange-hi:  #f08830;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.13);
  --font-sans:  -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --nav-h:      66px;
  --max-w:      1100px;
  --gutter:     48px;
  --section-v:  108px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-v) 0; }
.page-top { padding-top: var(--nav-h); }

@media (max-width: 768px) {
  :root { --gutter: 24px; --section-v: 72px; }
}

/* ── DIVIDERS ── */
.rule { width: 28px; height: 2px; background: var(--orange); margin-bottom: 28px; }
hr.fine { border: none; border-top: 1px solid var(--border); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background 0.25s, border-color 0.25s;
  border-bottom: 1px solid transparent;
}

#nav.solid {
  background: rgba(10,10,10,0.97);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { width: 34px; height: 34px; border-radius: 50%; }
.nav-logo-name { font-size: 13px; font-weight: 500; color: var(--white); letter-spacing: 0.02em; }
.nav-logo-sub { display: block; font-size: 10px; font-weight: 400; color: var(--gray-3); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--gray-4); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: linear-gradient(180deg, #f08830 0%, #d06818 100%);
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 0 2px 0 #9a4a0a, 0 3px 10px rgba(224,120,32,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #9a4a0a, 0 6px 16px rgba(224,120,32,0.35);
  opacity: 1;
}

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--white); transition: 0.2s; }

@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 199;
  flex-direction: column;
  padding: 32px var(--gutter);
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-4);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-drawer a:hover { color: var(--white); }
.mobile-drawer .nav-cta { margin-top: 24px; text-align: center; color: var(--black) !important; }

/* ── TYPE ── */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

h1.hero-h {
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}

h1.hero-h em { color: var(--gray-3); font-style: normal; font-weight: 300; }

h2.section-h {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

h3.card-h {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  font-weight: 400;
  color: var(--gray-4);
  line-height: 1.65;
  letter-spacing: -0.005em;
}

.body-sm { font-size: 0.88rem; font-weight: 300; color: var(--gray-4); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }

.btn-fill {
  background: linear-gradient(180deg, #f08830 0%, #d06818 100%);
  color: var(--black);
  box-shadow: 0 2px 0 #9a4a0a, 0 4px 12px rgba(224,120,32,0.35);
}
.btn-fill:hover {
  box-shadow: 0 4px 0 #9a4a0a, 0 8px 20px rgba(224,120,32,0.4);
  opacity: 1;
}
.btn-fill:active {
  box-shadow: 0 1px 0 #9a4a0a, 0 2px 8px rgba(224,120,32,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-2);
  box-shadow: 0 2px 0 rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-outline:hover {
  border-color: var(--gray-3);
  box-shadow: 0 4px 0 rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 1;
}

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-num em { color: var(--orange); font-style: normal; }
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
}

@media (max-width: 580px) {
  .stat-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.grid-2 > *, .grid-3 > *, .grid-4 > * { background: var(--black); }

@media (max-width: 840px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── CARDS ── */
.c-pad { padding: 36px 32px; }
.c-pad-lg { padding: 48px 40px; }

/* Quote card */
.quote-card { display: flex; flex-direction: column; gap: 20px; }
.quote-stars { display: flex; gap: 3px; }
.q-star { width: 16px; height: 16px; background: #00b67a; display: flex; align-items: center; justify-content: center; }
.q-star svg { width: 10px; height: 10px; fill: white; }
.quote-text { font-family: var(--font-sans); font-style: normal; font-size: 0.95rem; color: var(--gray-5); line-height: 1.65; flex: 1; letter-spacing: -0.005em; }
.quote-meta { border-top: 1px solid var(--border); padding-top: 16px; }
.quote-name { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-4); margin-bottom: 3px; }
.quote-role { font-size: 11px; color: var(--gray-3); }

/* Result card */
.result-big { font-family: var(--font-sans); font-size: 3rem; line-height: 1; color: var(--white); margin-bottom: 6px; }
.result-big em { color: var(--orange); font-style: normal; }
.result-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 20px; }

/* Team card */
.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--gray-3);
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.team-bio { font-size: 13px; color: var(--gray-4); line-height: 1.65; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; text-align: left; color: var(--white); font-size: 0.98rem; font-weight: 400; transition: color 0.15s; }
.faq-btn:hover { color: var(--gray-5); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; border: 1px solid var(--gray-2); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray-3); transition: transform 0.3s, border-color 0.2s, color 0.2s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); color: var(--orange); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-inner { padding: 0 48px 24px 0; font-size: 0.88rem; color: var(--gray-4); line-height: 1.78; }

/* ── PAGE HERO (interior) ── */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 60px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { width: 30px; height: 30px; border-radius: 50%; }
.footer-logo-name { font-size: 13px; font-weight: 500; }
.footer-desc { font-size: 12px; color: var(--gray-3); line-height: 1.65; max-width: 260px; }
.f-col-head { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 14px; }
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col a { font-size: 13px; color: var(--gray-4); transition: color 0.15s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-legal { font-size: 11px; color: var(--gray-3); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.06s; } .d2 { transition-delay: 0.12s; } .d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; } .d5 { transition-delay: 0.30s; } .d6 { transition-delay: 0.36s; }

/* ── UTILS ── */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}.mt-64{margin-top:64px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}.mb-64{margin-bottom:64px}
.max-540{max-width:540px}.max-640{max-width:640px}.max-720{max-width:720px}
.text-center{text-align:center}
