/* SEO Websites — site styles (dark neon theme) */
:root {
  --bg: #040a1c;
  --bg-2: #07112b;
  --bg-3: #0a1738;
  --panel: rgba(16, 30, 70, .55);
  --panel-solid: #0c1a3f;
  --line: rgba(99, 145, 255, .22);
  --line-strong: rgba(99, 170, 255, .45);
  --text: #e8eeff;
  --muted: #a3b1d6;
  --dim: #7383ad;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --violet: #8b5cf6;
  --magenta: #c026d3;
  --grad: linear-gradient(90deg, #22d3ee 0%, #3b82f6 50%, #8b5cf6 100%);
  --grad-btn: linear-gradient(90deg, #1fb6ff 0%, #3b6cf6 55%, #6d4cf5 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 0 1px var(--line), 0 20px 50px -20px rgba(34, 125, 255, .45);
  --wrap: 1200px;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7ee8fa; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-block; font: 600 .78rem/1 var(--font-body); letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.lead { color: var(--muted); font-size: 1.08rem; }
.muted { color: var(--muted); }
.center { text-align: center; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: #fff; color: #000; padding: 8px 12px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px;
  border-radius: 10px; font: 600 .95rem/1 var(--font-body); cursor: pointer;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 10px 30px -8px rgba(59, 130, 246, .7), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(59, 130, 246, .9), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-ghost { background: rgba(10, 22, 55, .6); color: #fff; border-color: var(--line-strong); }
.btn-ghost:hover { color: #fff; border-color: var(--cyan); background: rgba(34, 211, 238, .08); }
.btn-ghost svg { color: var(--cyan); }
.btn-sm { padding: 11px 18px; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .88rem; }
.link-arrow svg { width: 14px; height: 14px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(4, 10, 28, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(99, 145, 255, .12);
}
.nav { display: flex; align-items: center; gap: 28px; height: 78px; }
.logo { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.logo:hover { color: #fff; }
.logo b { font: 700 1.6rem/1 var(--font-head); letter-spacing: -.02em; }
.logo b span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo small { font: 500 .6rem/1 var(--font-body); letter-spacing: .32em; color: var(--muted); margin-top: 6px; }
.menu { display: flex; gap: 6px; margin: 0 0 0 auto; padding: 0; list-style: none; align-items: center; }
.menu > li { position: relative; }
.menu a, .menu button {
  display: flex; align-items: center; gap: 5px; padding: 10px 12px; color: #d5ddf5;
  font: 500 .88rem/1 var(--font-body); background: none; border: 0; cursor: pointer; position: relative;
}
.menu a:hover, .menu button:hover { color: #fff; }
.menu a[aria-current="page"]::after, .menu .has-current > button::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -2px; height: 2px;
  background: var(--grad); border-radius: 2px; box-shadow: 0 0 10px var(--cyan);
}
.menu button svg { width: 12px; height: 12px; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -10px; min-width: 230px; padding: 8px;
  list-style: none; margin: 0; background: #0a1636; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,.6); opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .18s;
}
.dropdown a { padding: 11px 12px; border-radius: 8px; }
.dropdown a:hover, .dropdown a[aria-current="page"] { background: rgba(59,130,246,.14); }
.dropdown a[aria-current="page"]::after { display: none; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown, .has-drop.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.has-drop:hover > button svg, .has-drop.open > button svg { transform: rotate(180deg); }
.nav .btn { margin-left: 12px; }
.burger { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 9px; color: #fff; cursor: pointer; }
.burger svg { width: 22px; height: 22px; display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 60px; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 500px at 78% 30%, rgba(59, 130, 246, .28), transparent 60%),
    radial-gradient(600px 400px at 95% 70%, rgba(139, 92, 246, .22), transparent 60%),
    radial-gradient(500px 300px at 10% 10%, rgba(34, 211, 238, .08), transparent 60%);
  -webkit-mask-image: linear-gradient(#000 70%, transparent); mask-image: linear-gradient(#000 70%, transparent);
}
.hero::after { /* perspective grid floor */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; z-index: -1;
  background-image: linear-gradient(rgba(59,130,246,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(59,130,246,.18) 1px, transparent 1px);
  background-size: 48px 48px; transform: perspective(500px) rotateX(60deg); transform-origin: bottom;
  mask-image: linear-gradient(to top, #000 0%, transparent 85%); -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 85%);
  opacity: .5;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 560px; margin-bottom: 30px; }
.hero-feats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 14px 0; margin-top: 38px; }
.hero-feat { display: flex; align-items: center; gap: 10px; padding: 0 16px; border-left: 1px solid var(--line); }
.hero-feat .ring-ico { width: 38px; height: 38px; }
.hero-feat:first-child { padding-left: 0; border-left: 0; }
.hero-feat b { display: block; font-size: .85rem; font-weight: 600; }
.hero-feat small { color: var(--dim); font-size: .76rem; white-space: nowrap; }
.ring-ico {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  border: 1.5px solid var(--cyan); color: var(--cyan); box-shadow: 0 0 14px rgba(34, 211, 238, .35), inset 0 0 12px rgba(34,211,238,.15);
}
.ring-ico svg { width: 20px; height: 20px; }

/* sub-page hero */
.hero.page-hero { padding: 64px 0 70px; }
.page-hero .hero-grid { grid-template-columns: 1.15fr .85fr; }
.crumbs { display: flex; gap: 8px; font-size: .8rem; color: var(--dim); margin-bottom: 18px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); }

/* Dashboard visual */
.dash { position: relative; perspective: 1400px; min-height: 440px; }
.dash-main {
  position: relative; transform: rotateY(-14deg) rotateX(6deg); transform-style: preserve-3d;
  border-radius: 22px; padding: 22px; margin-left: 20px;
  background: linear-gradient(160deg, rgba(20, 40, 100, .75), rgba(10, 20, 55, .85));
  border: 1.5px solid rgba(96, 165, 250, .55);
  box-shadow: 0 0 0 1px rgba(139,92,246,.35), 0 0 40px rgba(59,130,246,.45), 0 0 90px rgba(139,92,246,.3), inset 0 0 40px rgba(59,130,246,.15);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px;
}
.dash-card { border-radius: 14px; padding: 16px; background: rgba(5, 12, 36, .7); border: 1px solid var(--line); }
.dash-card h4 { font: 600 .95rem/1 var(--font-body); margin-bottom: 12px; }
.dash-chart { position: relative; height: 190px; }
.dash-chart svg { width: 100%; height: 100%; }
.dash-bubble {
  position: absolute; top: 6px; right: 6px; padding: 10px 14px; border-radius: 12px;
  background: rgba(8, 20, 60, .9); border: 1px solid var(--line-strong); text-align: center;
}
.dash-bubble b { display: block; font: 700 1.5rem/1 var(--font-head); color: var(--cyan); text-shadow: 0 0 14px rgba(34,211,238,.6); }
.dash-bubble small { font-size: .7rem; color: var(--muted); }
.insights { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.insights li { display: flex; gap: 10px; align-items: center; font-size: .78rem; color: #cdd7f5; padding: 8px 0; border-bottom: 1px solid rgba(99,145,255,.12); }
.insights li:last-child { border: 0; }
.insights svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.dash-stats { display: flex; gap: 12px; margin: -30px 0 0 0; position: relative; z-index: 2; transform: translateZ(40px); justify-content: center; flex-wrap: wrap; }
.stat-tile {
  min-width: 108px; padding: 14px 16px; border-radius: 14px; text-align: left;
  background: linear-gradient(160deg, rgba(20, 44, 110, .95), rgba(10, 22, 60, .95));
  border: 1px solid rgba(96, 165, 250, .5); box-shadow: 0 0 24px rgba(59,130,246,.4);
}
.stat-tile b { display: block; font: 700 1.35rem/1 var(--font-head); }
.stat-tile small { display: block; font-size: .66rem; color: var(--muted); margin: 4px 0 6px; }
.stat-tile em { font-style: normal; font-size: .78rem; font-weight: 600; color: var(--cyan); }
.stat-tile.g { display: grid; place-items: center; min-width: 70px; }
.stat-tile.g svg { width: 34px; height: 34px; }
.dash-note { position: absolute; right: 0; bottom: -6px; font: italic 400 1.05rem/1.2 "Caveat", cursive; color: #cdd7f5; transform: rotate(-6deg); text-align: right; }
.dash-disclaimer { position: absolute; left: 20px; bottom: -8px; font-size: .68rem; color: var(--dim); }

/* compact hero visual for sub pages */
.orb-card {
  position: relative; border-radius: 22px; padding: 28px;
  background: linear-gradient(160deg, rgba(20, 40, 100, .7), rgba(10, 20, 55, .85));
  border: 1.5px solid rgba(96, 165, 250, .5);
  box-shadow: 0 0 40px rgba(59,130,246,.35), 0 0 90px rgba(139,92,246,.22), inset 0 0 30px rgba(59,130,246,.12);
}
.orb-card h4 { font-size: 1rem; margin-bottom: 16px; }
.orb-card .check { margin: 0; }
.orb-card .big-ico {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--grad-btn); box-shadow: 0 10px 30px -6px rgba(59,130,246,.8);
}
.orb-card .big-ico svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Sections ---------- */
section { position: relative; }
.sec { padding: 90px 0; }
.sec-tight { padding: 64px 0; }
.sec-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid rgba(99,145,255,.1); border-bottom: 1px solid rgba(99,145,255,.1); }
.sec-head { text-align: center; max-width: 860px; margin: 0 auto 48px; }
.sec-head p { color: var(--muted); }
.sec-head.left { text-align: left; margin-left: 0; }

/* Cards */
.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-6 { grid-template-columns: repeat(6, 1fr); }
.card {
  position: relative; padding: 28px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 34, 80, .55), rgba(8, 16, 42, .55));
  border: 1px solid var(--line); transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 20px 40px -18px rgba(59,130,246,.55); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }
.card .link-arrow { margin-top: 16px; }
.card.svc { text-align: center; display: flex; flex-direction: column; align-items: center; }
.card.svc { padding: 26px 16px; }
.card.svc p { flex: 1; font-size: .86rem; }
.svc-ico { width: 64px; height: 64px; margin-bottom: 18px; display: grid; place-items: center; }
.svc-ico svg { width: 52px; height: 52px; filter: drop-shadow(0 0 12px rgba(59,130,246,.55)); }
.card .num { font: 700 .8rem/1 var(--font-body); color: var(--cyan); letter-spacing: .1em; margin-bottom: 14px; display: block; }
.card-ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(59,130,246,.14); border: 1px solid var(--line-strong); color: var(--cyan); }
.card-ico svg { width: 24px; height: 24px; }

/* Why-us icon row */
.why { text-align: center; }
.why .ring-ico { width: 62px; height: 62px; margin: 0 auto 16px; border-width: 2px; }
.why .ring-ico svg { width: 28px; height: 28px; }
.why h3 { font-size: 1rem; margin-bottom: 8px; }
.why p { font-size: .84rem; color: var(--muted); margin: 0; }

/* Logos */
/* Client logo marquee: two identical groups; the track slides from -50% to 0 so logos travel left to right */
.logo-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8% 92%, transparent);
}
.logo-track { display: flex; width: max-content; animation: logo-scroll 70s linear infinite; will-change: transform; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-group { display: flex; align-items: center; gap: 64px; padding: 0 64px 0 0; margin: 0; list-style: none; }
.logo-slide { flex: none; display: grid; place-items: center; height: 120px; }
.logo-slide img { height: 60px; width: auto; max-width: 240px; object-fit: contain; opacity: .7; filter: brightness(0) invert(1); transition: opacity .2s; }
.logo-slide.tall img { height: 88px; }
.logo-slide.xl img { height: 104px; }
.logo-slide img:hover { opacity: 1; }
@keyframes logo-scroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .logo-track { animation: none; }
  .logo-group[aria-hidden="true"] { display: none; }
}
.certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.certs span { background: #f4f7ff; border-radius: 12px; padding: 14px 22px; display: grid; place-items: center; height: 74px; }
.certs img { max-height: 40px; width: auto; }

/* Testimonial */
.testi-band {
  background:
    radial-gradient(700px 300px at 0% 100%, rgba(34,211,238,.14), transparent 60%),
    radial-gradient(700px 300px at 100% 0%, rgba(139,92,246,.2), transparent 60%),
    linear-gradient(180deg, #081535, #06102a);
  border-block: 1px solid rgba(99,145,255,.14);
}
.testi-grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: 40px; align-items: center; }
.testi {
  display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 34px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(24, 40, 100, .6), rgba(12, 20, 60, .7));
  border: 1.5px solid rgba(139, 132, 250, .55); box-shadow: 0 0 40px rgba(99, 102, 241, .3);
}
.testi-who { text-align: center; }
.testi-who img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid rgba(255,255,255,.15); }
.testi-who b { display: block; font-size: .95rem; }
.testi-who small { color: var(--muted); font-size: .8rem; }
.testi blockquote { margin: 0; position: relative; padding-left: 0; }
.testi blockquote::before { content: "\201C"; display: block; font: 700 4rem/0.6 Georgia, serif; color: var(--cyan); margin-bottom: 10px; }
.testi blockquote p { font-size: 1.02rem; color: #dfe6fb; }
.testi-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.stars { color: #facc15; letter-spacing: 3px; font-size: 1.05rem; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--cyan); }
.badge svg { width: 14px; height: 14px; }

/* Pricing */
.price-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.price-head h2 { margin-bottom: 6px; }
.price {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 30px; border-radius: 18px;
  background: linear-gradient(160deg, rgba(20, 38, 92, .6), rgba(10, 18, 50, .7));
  border: 1px solid var(--line-strong);
}
.price .card-ico { width: 60px; height: 60px; margin: 0; }
.price h3 { margin-bottom: 6px; }
.price .amt { font: 700 2rem/1 var(--font-head); margin: 18px 0; }
.price .amt small { font: 400 .85rem var(--font-body); color: var(--muted); }
.price-note { color: var(--dim); font-size: .85rem; margin-top: 20px; }

/* Check lists */
.check { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 10px; }
.check li { display: flex; gap: 10px; align-items: flex-start; color: #d5ddf5; font-size: .95rem; }
.check li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px;
  background: var(--cyan);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check.cross li::before {
  background: #f87171;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}
.check b { color: #fff; }

/* Split / prose */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.top { align-items: start; }
.prose { color: var(--muted); }
.prose p { margin-bottom: 1.1em; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { text-decoration: underline; text-decoration-color: rgba(34,211,238,.4); text-underline-offset: 3px; }
.panel { padding: 34px; border-radius: 20px; background: var(--panel); border: 1px solid var(--line); }
.callout {
  display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 26px 30px; border-radius: 16px; margin-top: 30px;
  background: linear-gradient(90deg, rgba(34,211,238,.12), rgba(139,92,246,.14)); border: 1px solid var(--line-strong);
}
.callout p { margin: 0; font-weight: 500; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 26px 16px; border-radius: 16px; background: rgba(12, 24, 60, .5); border: 1px solid var(--line); }
.stat b { display: block; font: 700 2.3rem/1 var(--font-head); margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: .88rem; }

/* Compare */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare .card { padding: 30px; }
.compare .card.win { border-color: rgba(34,211,238,.55); box-shadow: 0 0 40px -10px rgba(34,211,238,.4); }
.tag { display: inline-block; font: 600 .7rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: 99px; background: rgba(34,211,238,.14); color: var(--cyan); margin-bottom: 14px; }
.tag.dim { background: rgba(163,177,214,.12); color: var(--muted); }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { border-radius: 14px; background: rgba(12, 24, 60, .55); border: 1px solid var(--line); overflow: hidden; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 24px; font: 600 1.02rem/1.4 var(--font-head); display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 20px; margin: 0; color: var(--muted); }

/* CTA band */
.cta {
  position: relative; overflow: hidden; padding: 80px 0 90px; isolation: isolate;
  background: radial-gradient(800px 400px at 80% 100%, rgba(59,130,246,.3), transparent 60%), linear-gradient(180deg, #06102a, #050b20);
  border-top: 1px solid rgba(99,145,255,.14);
}
.cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.cta p { color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.skyline { position: absolute; right: 0; bottom: 0; width: min(760px, 70%); z-index: -1; opacity: .95; }
.cta .dash-note { right: 8%; top: 40px; bottom: auto; font-size: 1.25rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.contact-items { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: center; padding: 22px; border-radius: 16px; background: var(--panel); border: 1px solid var(--line); color: #fff; }
.contact-item:hover { color: #fff; border-color: var(--line-strong); }
.contact-item small { display: block; color: var(--dim); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.contact-item b { font-size: 1.1rem; font-weight: 600; }
form.panel { display: grid; gap: 18px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-size: .85rem; font-weight: 500; color: #d5ddf5; }
label .req { color: var(--cyan); }
input, textarea {
  width: 100%; padding: 14px 16px; border-radius: 10px; font: inherit; font-size: .95rem; color: #fff;
  background: rgba(4, 10, 28, .7); border: 1px solid var(--line); transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.18); }
textarea { min-height: 150px; resize: vertical; }
.form-msg { font-size: .9rem; color: var(--cyan); min-height: 1.2em; margin: 0; }

/* About */
.founder { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: center; }
.founder img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; border: 1.5px solid var(--line-strong); box-shadow: 0 0 40px rgba(59,130,246,.3); }
.founder blockquote { margin: 0 0 16px; font: 600 1.6rem/1.3 var(--font-head); }

/* ---------- Footer ---------- */
.site-footer { background: #030817; border-top: 1px solid rgba(99,145,255,.14); padding: 60px 0 0; font-size: .88rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.foot-grid p { color: var(--muted); margin-top: 18px; max-width: 360px; }
.foot-grid h4 { font: 600 .95rem/1 var(--font-body); margin-bottom: 18px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: #fff; }
.foot-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.foot-contact li { display: flex; gap: 12px; align-items: center; color: #d5ddf5; }
.foot-contact a { color: #d5ddf5; }
.foot-contact svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.foot-bar { border-top: 1px solid rgba(99,145,255,.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: var(--dim); font-size: .8rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .g-6 { grid-template-columns: repeat(3, 1fr); }
  .menu a, .menu button { padding: 10px 8px; }
}
@media (max-width: 960px) {
  .burger { display: block; }
  .nav .btn { display: none; }
  .menu {
    position: fixed; top: 78px; left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch;
    background: #050b1f; padding: 20px; gap: 4px; overflow-y: auto; display: none;
  }
  .menu.open { display: flex; }
  .menu a, .menu button { font-size: 1.05rem; padding: 14px 10px; width: 100%; }
  .menu a[aria-current="page"]::after, .menu .has-current > button::after { display: none; }
  .menu a[aria-current="page"] { color: var(--cyan); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; background: transparent; border: 0; padding: 0 0 0 14px; }
  .has-drop.open .dropdown { display: block; }
  .menu .mobile-cta { display: block; margin-top: 12px; }
  .menu .mobile-cta .btn { display: flex; justify-content: center; }
  .hero-grid, .page-hero .hero-grid, .split, .testi-grid, .contact-grid { grid-template-columns: 1fr; }
  .dash { min-height: 0; margin-top: 20px; }
  .dash-main { transform: none; margin-left: 0; }
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > :first-child { grid-column: 1 / -1; }
}
@media (min-width: 961px) { .menu .mobile-cta { display: none; } }
@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .g-2, .g-3, .g-4, .g-6, .compare, .f-row { grid-template-columns: 1fr; }
  .g-6.why-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-main { grid-template-columns: 1fr; }
  .dash-main .dash-card.side { display: none; }
  .hero-feat { padding: 10px 0; border: 0; width: 100%; }
  .testi { grid-template-columns: 1fr; padding: 26px; }
  .price { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder img { max-width: 260px; }
  .foot-grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; justify-content: center; }
  .skyline { width: 120%; opacity: .45; }
  .cta .dash-note { display: none; }
  .logo-group { gap: 40px; padding-right: 40px; }
  .logo-slide { height: 90px; }
  .logo-slide img { height: 44px; max-width: 170px; }
  .logo-slide.tall img { height: 64px; }
  .logo-slide.xl img { height: 76px; }
  .hero-feats { grid-template-columns: 1fr; }
}
.sec-head.wide { max-width: 1140px; }
