/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ─── TOKENS ─── */
:root {
  --bg:        #1a1a1a;
  --bg2:       #222222;
  --bg3:       #2a2a2a;
  --line:      rgba(255,255,255,.1);
  --white:     #ffffff;
  --off:       rgba(255,255,255,.65);
  --dim:       rgba(255,255,255,.35);
  --teal:      #FCC01E;
  --teal-soft: rgba(252,192,30,.35);
  --accent:    #008C8F;
  --accent2:   #00A5A8;
  --light-bg:  #f4f4f4;
  --light-text: #1a1a1a;
  --light-line: rgba(0,0,0,.08);
  --ff:        'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Keep embedded assets fluid on small viewports */
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* ─── LINKS (override browser blue / purple) ─── */
a:any-link {
  color: var(--accent2);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 83, 0.42);
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.28);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Crawl / llms resources: real URLs, looks like body copy (not accent links) */
a.link-subtle:any-link {
  color: inherit !important;
  text-decoration: none !important;
  text-underline-offset: unset;
  font-weight: inherit;
}
a.link-subtle:hover {
  color: inherit !important;
  text-decoration: none !important;
  opacity: 0.85;
}
a.link-subtle:focus-visible {
  outline: 1px solid var(--dim);
  outline-offset: 2px;
}

/* Nav, CTAs, tiles, footer: no underline; colours from existing rules */
a.logo:any-link,
a.f-logo:any-link,
a.svc-item:any-link,
a.ind-item:any-link,
a.card:any-link,
.sales-bar .logo:any-link,
.nav-links a:any-link,
.f-col ul a:any-link {
  text-decoration: none;
}
a.logo:any-link,
a.f-logo:any-link {
  color: var(--white);
}
a.svc-item:any-link,
a.ind-item:any-link {
  color: inherit;
}
a.card:any-link {
  color: var(--white);
}
.nav-links a:any-link {
  color: var(--off);
}
.f-col ul a:any-link {
  color: var(--off);
}

a.btn-fill:any-link,
a.btn-fill:visited {
  color: var(--bg) !important;
  text-decoration: none;
}
a.btn-line:any-link,
a.btn-line:visited {
  color: var(--off);
  text-decoration: none;
}
a.btn-line:hover {
  color: var(--white);
}
a.nav-cta:any-link,
a.nav-cta:visited {
  color: var(--bg) !important;
  text-decoration: none;
}

/* ─── LAYOUT ─── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  background: rgba(26,26,26,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252,192,30,.25);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
body.home-onepage nav {
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), opacity .5s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
body.home-onepage nav.nav-hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Transparent state - over hero video */
nav.nav-transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}
nav.nav-transparent .logo-img {
  filter: brightness(0) invert(1);
}
nav.nav-transparent .nav-links a {
  color: var(--white);
}
nav.nav-transparent .nav-cta {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white) !important;
}
nav.nav-transparent .nav-cta:hover {
  background: rgba(255,255,255,.1) !important;
}

/* Scrolled state */
nav.nav-scrolled {
  background: rgba(26,26,26,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252,192,30,.25);
}
nav.nav-scrolled .logo-img {
  filter: none;
}
nav.nav-scrolled .nav-links a {
  color: var(--off);
}
nav.nav-scrolled .nav-cta {
  background: var(--accent);
  border: none;
  color: var(--bg) !important;
}
nav.nav-scrolled .nav-cta:hover {
  background: var(--accent2) !important;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 291px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 47px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--off);
  font-size: .78rem; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  padding: 10px 23px;
  transition: background .2s, border-color .2s, color .2s !important;
}

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,10,.80) 0%, rgba(10,10,10,.55) 50%, rgba(10,10,10,.30) 100%);
}
.hero-top {
  position: absolute;
  top: 0; left: 0; width: 100%;
  z-index: 220;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(26,26,26,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logo--hero .logo-img {
  height: 48px;
  width: auto;
}
.hero-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-nav a:any-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--off);
  text-decoration: none;
  transition: color .2s;
}
.hero-nav a:hover { color: var(--white); }
.hero-nav a.btn-fill:any-link {
  font-size: .68rem;
  padding: 10px 20px;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 100px 40px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-inner h1,
.hero-inner .hero-label,
.hero-inner .hero-desc,
.hero-inner .hero-stat-num,
.hero-inner .hero-stat-label {
  text-shadow: 0 4px 40px rgba(0,0,0,.9), 0 2px 8px rgba(0,0,0,.7);
}
.hero-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.hero-label::before {
  content: ''; width: 40px; height: 1px;
  background: var(--teal); display: block;
}
h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -.025em;
  max-width: 860px;
}
h1 em { font-style: italic; font-weight: 500; color: var(--accent2); }
.page-hero {
  min-height: auto;
  padding-bottom: 56px;
}


.page-hero .hero-inner {
  padding-bottom: 56px;
}
.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--line);
  gap: 48px; flex-wrap: wrap;
}
.hero-desc {
  font-size: .95rem; font-weight: 400; color: var(--white);
  max-width: 420px; line-height: 1.85;
  opacity: .85;
}
.hero-meta { display: flex; gap: 48px; flex-shrink: 0; }
.hero-meta > div { text-align: center; }
.hero-stat-num {
  font-size: 2.6rem; font-weight: 600; line-height: 1;
  color: var(--white);
}
.hero-stat-num sup { font-size: 1.3rem; color: var(--white); }
.hero-stat-label {
  font-size: .65rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white);
  opacity: .75; margin-top: 6px;
}
.hero-cta {
  margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-fill {
  display: inline-block; text-decoration: none;
  background: var(--accent); color: var(--bg);
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 2px;
  transition: background .2s, transform .2s var(--ease);
}
.btn-fill:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-line {
  display: inline-block; text-decoration: none;
  border: 1px solid var(--line); color: var(--off);
  font-size: .72rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 30px; border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.btn-line:hover { border-color: rgba(255,255,255,.35); color: var(--white); }

/* ─── SECTION COMMON ─── */
section { border-bottom: 1px solid var(--line); }
.section-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.section-label {
  font-size: .78rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -.015em;
}
h2 em { font-style: italic; font-weight: 300; }
.section-right { max-width: 380px; padding-top: 4px; }
.section-right p { font-size: .9rem; color: var(--off); line-height: 1.85; }

/* ─── SERVICES ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
#services {
  background: var(--bg2);
}
.svc-item {
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--bg3);
  transition: background .2s, border-color .2s, transform .2s var(--ease);
  border-radius: 12px;
  text-decoration: none; color: inherit; display: block;
}
.svc-item:hover { border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.svc-num {
  font-size: .6rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim);
  margin-bottom: 28px;
}
.svc-title {
  font-size: 1rem; font-weight: 500; line-height: 1.35;
  margin-bottom: 14px; color: var(--white);
}
.svc-body { font-size: .82rem; color: var(--off); line-height: 1.75; }
.svc-arrow {
  display: block; margin-top: 24px;
  font-size: .65rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}

/* ─── INDUSTRIES ─── */
.ind-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
.ind-item {
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--bg3);
  text-decoration: none; color: inherit;
  transition: background .2s, border-color .2s, transform .2s var(--ease);
  display: block;
  border-radius: 8px;
}
.ind-item:hover { background: var(--bg3); border-color: rgba(255,255,255,.18); transform: translateY(-2px); }
.ind-icon {
  margin-bottom: 16px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ind-num {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 16px;
}
.ind-name { font-size: 1rem; font-weight: 500; margin-bottom: 12px; }
.ind-desc { font-size: .8rem; color: var(--off); line-height: 1.75; }
.ind-meta {
  margin-top: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--dim);
  line-height: 1.6;
  opacity: 0.7;
}

/* ─── WHY ─── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-bottom: 72px;
}
.why-left {
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
}
.why-big {
  font-size: clamp(5rem, 9vw, 8.5rem);
  font-weight: 600; line-height: 1; letter-spacing: -.04em;
  color: var(--teal); margin-bottom: 4px;
}
.why-caption {
  font-size: .68rem; font-weight: 400; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 44px;
}
.why-checks { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-checks li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .87rem; color: var(--off); line-height: 1.6;
}
.why-checks li::before {
  content: '—'; color: var(--accent); font-weight: 500;
  flex-shrink: 0; margin-top: 1px;
}
.why-right {
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
}
.why-points { display: flex; flex-direction: column; gap: 14px; }
.why-point { border: 1px solid rgba(255,255,255,.08); background: var(--bg2); border-radius: 10px; padding: 18px 18px; }
.why-point-title { font-size: .95rem; font-weight: 500; margin-bottom: 8px; }
.why-point-body { font-size: .82rem; color: var(--off); line-height: 1.75; }

/* ─── PROCESS ─── */
/* ─── TICKER ─── */
.ticker-section {
  background: #222222;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-item {
  padding: 0 40px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--bg2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
.testi-card {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
}
.testi-industry {
  display: inline-block;
  margin-bottom: 20px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 999px;
}
.testi-metric {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 4px;
}
.testi-metric small {
  font-size: 1.1rem;
  color: var(--accent);
  vertical-align: super;
}
.testi-metric-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
}
.testi-quote {
  font-size: .87rem;
  color: var(--off);
  line-height: 1.8;
  margin-bottom: 24px;
  border-left: 2px solid var(--line);
  padding-left: 16px;
}
.testi-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
}
.testi-company {
  font-size: .75rem;
  color: var(--dim);
  margin-top: 2px;
}

/* ─── PROCESS (timeline) ─── */
.process-section {
  background: var(--bg2);
}
.process-timeline {
  padding-bottom: 72px;
}
.proc-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.proc-step + .proc-step {
  margin-top: 16px;
}
.proc-step::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 48px;
  bottom: -16px;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}
.proc-step:last-child::before {
  display: none;
}
.proc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.proc-week {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
  white-space: nowrap;
}
.proc-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--dim);
  flex-shrink: 0;
}
.proc-dot--red {
  --dot-bg: #d32f2f;
  --dot-border: #d32f2f;
  --dot-color: #fff;
  --dot-glow: rgba(211,47,47,.35);
  background: var(--bg); border-color: var(--line); color: var(--dim);
}
.proc-dot--yellow {
  --dot-bg: #f9a825;
  --dot-border: #f9a825;
  --dot-color: #1a1a1a;
  --dot-glow: rgba(249,168,37,.35);
  background: var(--bg); border-color: var(--line); color: var(--dim);
}
.proc-dot--green {
  --dot-bg: #2e7d32;
  --dot-border: #2e7d32;
  --dot-color: #fff;
  --dot-glow: rgba(46,125,50,.35);
  background: var(--bg); border-color: var(--line); color: var(--dim);
}

@keyframes dot-light {
  0% { background: var(--bg); border-color: var(--line); color: var(--dim); transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { background: var(--dot-bg, var(--bg)); border-color: var(--dot-border, var(--line)); color: var(--dot-color, var(--dim)); transform: scale(1); box-shadow: 0 0 14px var(--dot-glow, transparent); }
}
.process-section .proc-dot { animation: none; }
.process-section.visible .proc-dot { animation: dot-light .55s ease both; }
.process-section.visible .proc-step:nth-child(1) .proc-dot { animation-delay: 0s; }
.process-section.visible .proc-step:nth-child(2) .proc-dot { animation-delay: .6s; }
.process-section.visible .proc-step:nth-child(3) .proc-dot { animation-delay: 1.2s; }
.process-section.visible .proc-step:nth-child(4) .proc-dot { animation-delay: 1.8s; }

.proc-body {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
}
.proc-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.proc-desc {
  font-size: .85rem;
  color: var(--off);
  line-height: 1.75;
}

/* ─── CTA ─── */
.cta-section {
  padding: 0;
  background: transparent;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section.home-close {
  background: var(--bg2);
  padding: 100px 0;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px; position: relative;
}
.cta-section.home-close h2 em { color: var(--accent2); }
.cta-section p {
  color: var(--off); font-size: 1rem;
  margin-bottom: 36px; position: relative;
  line-height: 1.7;
}
.cta-check-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.cta-check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--dim);
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
}
.cta-check-grid span::before {
  content: '\2713';
  color: var(--accent2);
  font-weight: 700;
  font-size: .7rem;
}
.cta-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}

/* ─── LANDING COMPONENTS ─── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 0 72px;
}
.kpi-card {
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 10px;
  padding: 22px 18px;
}
.kpi-num { font-size: 1.8rem; font-weight: 600; line-height: 1.05; }
.kpi-label { margin-top: 8px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
.card {
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
  padding: 28px 24px;
}
.card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.card p { color: var(--off); font-size: .86rem; line-height: 1.8; }
.card ul { margin-top: 14px; list-style: none; display: grid; gap: 10px; }
.card ul li { color: var(--off); font-size: .84rem; line-height: 1.7; }
.card ul li::before { content: '—'; color: var(--accent); margin-right: 10px; }

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding-bottom: 72px;
}

.faq {
  padding-bottom: 72px;
}
.faq details {
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
  padding: 18px 18px;
}
.faq details + details { margin-top: 12px; }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-body {
  margin-top: 10px;
  color: var(--off);
  font-size: .88rem;
  line-height: 1.85;
}

/* ─── SEO: FAQ / long-form ─── */
.faq-section {
  padding: 72px 0 88px;
  border-top: 1px solid var(--line);
}
.faq-section .section-head {
  justify-content: center;
  text-align: center;
}
.faq-section .section-head > div {
  flex: unset;
}
.faq-section .section-head {
  margin-bottom: 44px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-list details {
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
  padding: 4px 20px;
}
.faq-list details + details { margin-top: 12px; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--white);
  padding: 14px 0;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 0; }
.faq-list details p {
  margin: 0;
  padding: 14px 0 18px;
  font-size: 0.9rem;
  color: var(--off);
  line-height: 1.82;
}
.seo-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 4px;
  font-size: 0.9rem;
  color: var(--off);
  line-height: 1.85;
  text-align: center;
}
.seo-intro-left {
  margin: 24px 0 48px;
  padding: 0;
  text-align: left;
  max-width: 860px;
}

/* ─── GEO SEO LANDINGS (editorial layer; keeps SOS palette) ─── */
body.geo-landing {
  position: relative;
}
body.geo-landing::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(1200px 700px at 12% 8%, rgba(0, 140, 140, 0.18), transparent 55%),
    radial-gradient(900px 500px at 88% 18%, rgba(212, 168, 83, 0.12), transparent 50%),
    repeating-linear-gradient(125deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 10px);
}
body.geo-landing nav,
body.geo-landing .hero,
body.geo-landing section,
body.geo-landing footer {
  position: relative;
  z-index: 2;
}
body.geo-landing .page-hero h1 {
  font-family: var(--ff);
  font-weight: 500;
  letter-spacing: -0.03em;
}
body.geo-landing .wrap > .section-head h2 {
  font-family: var(--ff);
  font-weight: 500;
  letter-spacing: -0.02em;
}
body.geo-landing .hero-label {
  letter-spacing: 0.28em;
}

.svc-detail {
  border-bottom: 1px solid var(--line);
}
.svc-detail .section-head {
  padding-top: 64px;
  padding-bottom: 40px;
}
.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}
.region-links a:any-link,
.region-links a:visited {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--off) !important;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.region-links a:hover {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--bg3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--teal-soft);
  padding: 68px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(200px, 2fr) repeat(4, minmax(0, 1fr));
  gap: 48px; margin-bottom: 60px;
}
.f-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.f-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.f-tag { font-size: .8rem; color: var(--dim); line-height: 1.85; }
.f-col h4 {
  font-size: .6rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 22px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.f-col ul a {
  font-size: .82rem; color: var(--off); text-decoration: none;
  transition: color .2s;
}
.f-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--teal-soft); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px 20px;
  font-size: .68rem; color: var(--dim); letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-crawl {
  text-transform: none;
  letter-spacing: 0.04em;
}
.footer-crawl a.link-subtle:any-link {
  opacity: 0.95;
}
.footer-crawl a.link-subtle:hover {
  opacity: 1;
}

.ind-guide-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  padding: 8px 0 64px;
  max-width: 920px;
  margin: 0 auto;
}
.ind-guide-links a:any-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--teal) !important;
  border-bottom: 1px solid rgba(252,192,30,.35);
  padding-bottom: 2px;
}
.ind-guide-links a:hover {
  color: var(--white) !important;
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label { animation: fadeUp .7s var(--ease) .1s both; }
h1           { animation: fadeUp .7s var(--ease) .2s both; }
.hero-foot   { animation: fadeUp .7s var(--ease) .32s both; }
.hero-cta    { animation: fadeUp .7s var(--ease) .42s both; }

/* Scroll-triggered fade-up (applied by JS) */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 300;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: var(--ff);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent2);
}
@media (max-width: 640px) {
  .back-to-top {
    bottom: 90px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  z-index: 999;
  background: var(--bg3);
  border-top: 1px solid var(--line);
  padding: 16px 40px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  font-size: .8rem;
  color: var(--off);
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}
.cookie-banner a:any-link {
  color: var(--accent2);
  text-decoration: underline;
}
.cookie-accept {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover {
  background: var(--accent2);
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
    text-align: center;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }
  .hero-inner { padding: 80px 28px 56px; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
  .section-head { gap: 28px; padding: 56px 0 42px; }
  .section-right { max-width: 100%; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .ind-list { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-left { padding: 36px 28px; }
  .why-right { padding: 36px 28px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .hero-inner { padding: 80px 20px 56px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 62px; left: 0; width: 100%;
    flex-direction: column;
    background: rgba(26,26,26,.98);
    backdrop-filter: blur(16px);
    padding: 20px 28px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--teal-soft);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 81px; }
  .logo-img { height: 127px; }
  .hero { padding-top: 133px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.55rem; }
  .hero-label { letter-spacing: 0.12em; gap: 10px; }
  .hero-label::before { width: 24px; }
  .hero-desc { max-width: 100%; }
  .hero-stat-num { font-size: 2.1rem; }
  .hero-stat-label { letter-spacing: 0.08em; }
  .btn-fill,
  .btn-line {
    width: 100%;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-head { padding: 44px 0 34px; }
  .svc-item,
  .ind-item,
  .why-left,
  .why-right,
  .card {
    padding: 24px 20px;
  }
  .kpi-num { font-size: 2rem; }
  .faq-list details { padding: 2px 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .ind-list { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pain-item { padding: 22px 18px; }
  .pain-title { font-size: .95rem; margin-bottom: 6px; }
  .pain-body { font-size: .82rem; line-height: 1.65; }
  .pain-grid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 48px; }
  .testi-card { padding: 28px 20px; }
  .flair-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-foot { flex-direction: column; gap: 28px; }
  .hero-meta { gap: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .proc-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .proc-step::before { left: 23px; }
  .proc-body { padding: 20px; }
}

@media (max-width: 420px) {
  .logo-img { height: 127px; }
  h1 { font-size: 2rem; }
  .hero-meta { gap: 18px; }
  .hero-stat-num { font-size: 1.85rem; }
  .f-tag,
  .section-right p,
  .svc-body,
  .ind-desc {
    font-size: 0.8rem;
  }
}

/* ─── HOME: one-page sales layout (no classic navbar) ─── */
.sales-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 220;
  border-bottom: 1px solid rgba(252,192,30,.25);
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s;
}
.sales-bar.scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.sales-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo--bar .logo-img {
  height: 52px;
  width: auto;
}
.sales-bar-cta {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: 0.68rem;
}

.home-onepage .hero {
  padding-top: 0;
}

/* ─── PAIN POINTS (light section) ─── */
.pain-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
}
.pain-section .section-head {
  border-bottom-color: var(--line);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
.pain-item {
  border: 1px solid var(--line);
  background: var(--bg3);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s var(--ease);
}
.pain-item:hover {
  border-color: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.pain-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.pain-body {
  font-size: .88rem;
  color: var(--off);
  line-height: 1.75;
}

/* ─── FLAIR (animated metrics strip) ─── */
.flair-section {
  background: var(--bg2);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 52px;
}
.flair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.flair-item {
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
}
.flair-section.visible .flair-item {
  animation: flairIn .6s var(--ease) forwards;
}
.flair-section.visible .flair-item:nth-child(1) { animation-delay: .1s; }
.flair-section.visible .flair-item:nth-child(2) { animation-delay: .25s; }
.flair-section.visible .flair-item:nth-child(3) { animation-delay: .4s; }
@keyframes flairIn {
  to { opacity: 1; transform: translateY(0); }
}
.flair-icon {
  width: 36px; height: 36px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 12px;
  display: inline-block;
}
.flair-pct {
  stroke: none;
  fill: var(--accent);
}

.flair-num {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}
.flair-num small {
  font-size: 1.1rem;
  color: var(--accent);
  vertical-align: super;
}
.flair-label {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}

.home-detail-link {
  text-align: center;
  margin: -36px 0 56px;
  font-size: 0.78rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.home-detail-link a:any-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(252,192,30,.35);
}
.home-detail-link a:hover {
  color: var(--white);
}

.footer-lp {
  padding: 52px 0 32px;
}
.footer-lp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px 48px;
  align-items: start;
  margin-bottom: 44px;
}
.footer-lp-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}
.footer-lp-nav a:any-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off);
  text-decoration: none;
}
.footer-lp-nav a:hover {
  color: var(--white);
}

.sales-sticky-cta {
  display: none;
}

/* ─── SECTION CTA STRIPS ─── */
.section-cta {
  text-align: center;
  padding: 8px 0 64px;
}
.section-cta p {
  font-size: .95rem;
  color: var(--off);
  margin-bottom: 20px;
}

/* ─── FORM ─── */
.contact-form { max-width: 640px; display: grid; gap: 20px; }
.contact-form label {
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim);
}
.contact-form :is(input, textarea, select) {
  background: var(--bg3); border: 1px solid var(--line);
  color: var(--white); padding: 12px 16px; border-radius: 6px;
  font-family: var(--ff); font-size: .9rem; width: 100%;
  transition: border-color 0.2s;
}
.contact-form :is(input, textarea):focus {
  outline: none; border-color: var(--teal-soft);
}
.contact-form select:focus {
  outline: none; border-color: var(--teal-soft);
}
.contact-form select option {
  background: var(--bg3);
  color: var(--white);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn-fill { border: none; cursor: pointer; justify-self: start; }

@media (max-width: 1024px) {
  .sales-bar-inner {
    padding: 0 28px;
  }
  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-strip-item {
    text-align: left;
  }
  .footer-lp-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .sales-bar-inner {
    padding: 0 20px;
    min-height: 68px;
  }
  .logo--bar .logo-img {
    height: 46px;
  }

  .hero-top {
    padding: 12px 20px;
    justify-content: center;
  }
  .hero-nav {
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-nav a:any-link {
    font-size: .65rem;
  }
  .sales-bar-cta {
    padding: 10px 16px;
    font-size: 0.62rem;
    width: auto;
  }
  .footer-lp-grid {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }
  .home-onepage {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .sales-sticky-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 240;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
    margin: 0;
    border-radius: 0;
    border-top: 1px solid var(--teal-soft);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  }
}
