/* Shared styles for SEO landing pages — mirrors the home design system */
:root {
  --bg: #000000;
  --bg-2: #07090F;
  --ink: #FFFFFF;
  --ink-muted: rgba(255,255,255,0.62);
  --ink-dim: rgba(255,255,255,0.38);
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --blue: #2D5BFF;
  --blue-soft: #6E8BFF;
  --blue-glow: rgba(45,91,255,0.55);
  --gold: #F5C518;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 14px;
}
.nav .brand .logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 8px rgba(45,91,255,0.5));
}
.nav .brand .logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav ul {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
  font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav ul a { color: var(--ink-muted); transition: color .2s; }
.nav ul a:hover { color: var(--ink); }
.nav .cta {
  background: var(--ink); color: #000;
  border: none; border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s;
}
.nav .cta:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
@media (max-width: 800px) {
  .nav { padding: 14px 18px; }
  .nav ul { display: none; }
  .nav .brand { font-size: 12px; gap: 10px; }
  .nav .brand .logo-mark { width: 26px; height: 26px; }
  .nav .cta { padding: 10px 18px; font-size: 12px; }
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--ink); color: #000;
  border: none; border-radius: 999px;
  padding: 18px 34px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--blue-glow);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 17px 30px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: background .2s, border-color .2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.6); }

/* ---------- SECTION SHELL ---------- */
section.block { padding: 96px 40px; position: relative; }
section.block + section.block { padding-top: 64px; }
.container { max-width: 1240px; margin: 0 auto; }
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.label::before { content: ""; width: 28px; height: 1px; background: var(--blue); }
h2.section-title {
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}
h2.section-title em { font-style: italic; color: var(--blue-soft); font-weight: 700; }

/* ---------- LANDING HERO ---------- */
.landing-hero {
  position: relative;
  min-height: 78svh;
  display: flex; align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.landing-hero .lh-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(45,91,255,0.28), transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(110,139,255,0.22), transparent 55%),
    linear-gradient(180deg, #05060B 0%, #000 100%);
}
.landing-hero .lh-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 22px);
  opacity: 0.6;
}
.landing-hero .lh-inner {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.landing-hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 18px 0 24px 0;
  text-transform: none;
  max-width: 14ch;
}
.landing-hero h1 em { font-style: italic; color: var(--blue-soft); font-weight: 800; }
.landing-hero .lh-sub {
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 36px;
}
.landing-hero .lh-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* breadcrumbs */
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}
.crumbs a { color: var(--ink-muted); transition: color .2s; }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { opacity: 0.4; }

/* ---------- VALUE PROPS ---------- */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.vp-card {
  background: #0A0D16;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, border-color .25s ease;
}
.vp-card:hover { transform: translateY(-3px); border-color: rgba(45,91,255,0.45); }
.vp-card .vp-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 36px;
  color: var(--blue-soft);
  letter-spacing: -0.03em;
  line-height: 1;
}
.vp-card h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.vp-card p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.55; }
@media (max-width: 900px) { .value-props { grid-template-columns: 1fr; } }

/* ---------- INCLUDES LIST ---------- */
.includes {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.includes-copy p {
  font-size: 17px; line-height: 1.65; color: var(--ink-muted);
  margin: 0 0 18px;
}
.includes-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.includes-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; font-weight: 500;
}
.includes-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 12px var(--blue-glow);
  margin-top: 9px; flex-shrink: 0;
}
.includes-list li span { color: var(--ink-muted); font-weight: 400; margin-left: 6px; }
.feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 36px;
  background:
    radial-gradient(ellipse at top right, rgba(45,91,255,0.16), transparent 70%),
    #0A0D16;
  position: relative;
  overflow: hidden;
}
.feature-card .big-stat {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 12px;
  background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card .big-label {
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.feature-card blockquote {
  margin: 0;
  font-size: 19px; line-height: 1.45; font-weight: 500;
  font-style: italic;
  color: var(--ink);
}
.feature-card .fc-who {
  margin-top: 22px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.feature-card .fc-who strong { color: var(--ink); font-weight: 700; }
@media (max-width: 900px) {
  .includes { grid-template-columns: 1fr; gap: 36px; }
  .feature-card { padding: 36px 24px; }
}

/* ---------- AREAS / LOCATIONS ---------- */
.areas {
  background: var(--bg-2);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.area-chip {
  padding: 18px 16px;
  background: #0A0D16;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  transition: border-color .2s, background .2s;
}
.area-chip:hover { border-color: rgba(45,91,255,0.5); background: #0E1322; }
@media (max-width: 800px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA BAND ---------- */
.cta-band {
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .glow {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 72px 48px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at top, rgba(45,91,255,0.2), transparent 70%),
    #060810;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--ink-muted); font-size: 17px; max-width: 540px; margin: 0 auto 32px; line-height: 1.55; }
@media (max-width: 700px) { .cta-band .glow { padding: 48px 24px; border-radius: 20px; } }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0A0D16;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px; font-weight: 400;
  color: var(--blue-soft);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
footer.foot {
  padding: 48px 40px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
}
footer.foot a:hover { color: var(--ink); }
footer.foot .socials { display: flex; gap: 22px; }
footer.foot .foot-brand { display: flex; align-items: center; gap: 12px; }
footer.foot .foot-brand img {
  width: 28px; height: 28px; object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(45,91,255,0.5));
}
footer.foot .foot-services {
  display: flex; gap: 18px;
  font-size: 11px; letter-spacing: 0.14em;
}
@media (max-width: 800px) {
  footer.foot { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
  section.block { padding: 72px 20px; }
  .landing-hero { padding: 120px 20px 64px; min-height: 70svh; }
  .landing-hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .landing-hero .lh-sub { font-size: 16px; }
  .landing-hero .lh-cta .btn-primary,
  .landing-hero .lh-cta .btn-ghost { padding: 14px 24px; font-size: 12px; letter-spacing: 0.14em; }
  h2.section-title { font-size: clamp(30px, 8vw, 44px); }
  .vp-card { padding: 24px; border-radius: 14px; }
  .feature-card { padding: 32px 22px; border-radius: 18px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
