/* =====================================================================
   AGENTIC — Autonomous AI Agents / Automation Platform
   Premium multi-page template. Plain HTML5 + CSS3. No frameworks.
   No external image files — every visual is a CSS gradient, inline SVG,
   Unicode/emoji, or a pure-CSS node/flow-graph mockup. Offline-ready.
   ---------------------------------------------------------------------
   REBRAND TIP: edit the CSS variables in :root below. Swap --accent /
   --accent2 for your gradient, adjust --bg / --surface for the dark
   shell, and update --font-head / --font-body plus the Google Fonts
   <link> in each HTML file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:       #0a0e1a;            /* page background (deep space navy)   */
  --surface:  #111729;           /* cards / panels                      */
  --surface2: #161d33;           /* raised surfaces                     */
  --ink:      #e8ecf6;           /* primary text                        */
  --muted:    #8a96b3;           /* secondary / muted text              */
  --accent:   #00d4ff;           /* cyan (primary accent)               */
  --accent2:  #7c5cff;           /* indigo (secondary accent)           */
  --line:     rgba(255,255,255,.09);

  /* --- Derived helpers --- */
  --grad:      linear-gradient(120deg, var(--accent), var(--accent2));
  --grad-soft: linear-gradient(120deg, rgba(0,212,255,.16), rgba(124,92,255,.16));

  /* --- Fonts --- */
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 14px 40px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(0,212,255,.25);
  --ease:      .35s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1180px;
  --gutter: 24px;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: #67e6ff; }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(0,212,255,.3); color: #fff; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 92px 0; }
.section--soft { background: linear-gradient(180deg, var(--bg), #0c1222); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.12rem; color: #c4cce0; }
.muted { color: var(--muted); }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad);
  color: #05080f;
  box-shadow: 0 8px 24px rgba(0,212,255,.28);
}
.btn-primary:hover { color: #05080f; box-shadow: 0 12px 34px rgba(0,212,255,.45); }

.btn-ghost {
  background: rgba(255,255,255,.03);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn-light:hover { background: #fff; color: #05080f; }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,212,255,.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   AURORA / GLOW BACKDROP (hero + banners)
   --------------------------------------------------------------------- */
.aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora::before, .aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.aurora::before {
  width: 520px; height: 520px;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(0,212,255,.55), transparent 70%);
}
.aurora::after {
  width: 480px; height: 480px;
  bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(124,92,255,.5), transparent 70%);
}

/* Subtle dotted grid texture */
.grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%);
}

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 100px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(0,212,255,.12), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(124,92,255,.12), transparent 55%),
    var(--bg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   NODE / FLOW-GRAPH MOCKUP (pure CSS/SVG, no images)
   --------------------------------------------------------------------- */
.flow {
  position: relative;
  background:
    radial-gradient(500px 300px at 80% 0%, rgba(0,212,255,.1), transparent 60%),
    linear-gradient(160deg, var(--surface2), var(--surface));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow), var(--shadow-glow);
}
.flow-bar {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.flow-dots { display: flex; gap: 6px; }
.flow-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.flow-dots i:first-child { background: var(--accent); }
.flow-title { font-family: var(--font-head); font-size: .82rem; color: var(--muted); letter-spacing: .06em; }
.flow-live {
  margin-left: auto; font-size: .7rem; font-family: var(--font-head); letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
}
.flow-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* The node graph itself */
.nodes { display: grid; gap: 14px; position: relative; }
.node {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 16px;
  position: relative;
  transition: border-color var(--ease), transform var(--ease);
}
.node:hover { border-color: rgba(0,212,255,.5); transform: translateX(4px); }
.node .n-ic {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 11px;
  display: grid; place-items: center;
  font-size: 1.2rem;
  background: var(--grad-soft);
  border: 1px solid rgba(0,212,255,.25);
}
.node .n-body { flex: 1; min-width: 0; }
.node .n-body b { font-family: var(--font-head); color: var(--ink); font-size: .95rem; display: block; }
.node .n-body span { font-size: .8rem; color: var(--muted); }
.node .n-state {
  font-size: .68rem; font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.25);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.node .n-state.run { color: var(--accent2); background: rgba(124,92,255,.12); border-color: rgba(124,92,255,.3); }
/* connector line down the spine */
.node::after {
  content: "";
  position: absolute;
  left: 33px; bottom: -14px;
  width: 2px; height: 14px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  opacity: .55;
}
.node:last-child::after { display: none; }

/* Small inline flow visual used on features page */
.flow-mini {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.flow-mini .fm-node {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-soft);
  border: 1px solid rgba(0,212,255,.25);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: .82rem;
  color: var(--ink);
}
.flow-mini .fm-arrow { color: var(--accent); font-size: 1.1rem; }

/* ---------------------------------------------------------------------
   TRUSTED-BY STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 40px 0; border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 46px;
}
.logo-strip span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: .7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--ease), color var(--ease);
}
.logo-strip span:hover { opacity: 1; color: var(--accent); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad);
  opacity: 0; transition: opacity var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(0,212,255,.3); box-shadow: var(--shadow), 0 0 30px rgba(0,212,255,.15); }
.card:hover::before { opacity: 1; }

.card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid rgba(0,212,255,.22);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list (checks) */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .tick {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  color: #05080f;
  display: grid; place-items: center;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,212,255,.3);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; }

/* ---------------------------------------------------------------------
   ALTERNATING FEATURE BLOCKS (features page)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split + .split { margin-top: 80px; }
.split--reverse .split-visual { order: 2; }
.split-visual {
  border-radius: 22px;
  min-height: 300px;
  background:
    radial-gradient(400px 240px at 70% 20%, rgba(0,212,255,.1), transparent 60%),
    linear-gradient(160deg, var(--surface2), var(--surface));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 30px;
}
.split h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.split .tagline {
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block;
}
.split ul.checks { margin-top: 20px; display: grid; gap: 12px; }
.split ul.checks li { display: flex; gap: 10px; align-items: flex-start; color: #c4cce0; }
.split ul.checks li::before {
  content: "\2713"; color: var(--accent); font-weight: 700; flex: 0 0 auto;
}

/* ---------------------------------------------------------------------
   STEPS (how it works)
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #05080f;
  font-family: var(--font-head);
  font-weight: 700;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .95rem; }

/* ---------------------------------------------------------------------
   STATS BAND
   --------------------------------------------------------------------- */
.stats-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1430, #0a0e1a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; position: relative; z-index: 1; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.5;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #05080f;
  font-family: var(--font-head);
  font-weight: 700;
  background: var(--grad);
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 400px at 90% 10%, rgba(0,212,255,.25), transparent 60%),
    radial-gradient(500px 360px at 0% 100%, rgba(124,92,255,.28), transparent 60%),
    linear-gradient(135deg, #11193a, #0c1124);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4cce0; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 360px at 85% -20%, rgba(0,212,255,.14), transparent 60%),
    radial-gradient(500px 360px at 0% 120%, rgba(124,92,255,.12), transparent 60%),
    var(--bg);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 640px; color: #c4cce0; margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   INTEGRATIONS GRID
   --------------------------------------------------------------------- */
.integrations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.integration {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease);
}
.integration:hover { transform: translateY(-4px); border-color: rgba(0,212,255,.35); }
.integration .i-ic { font-size: 1.8rem; margin-bottom: 10px; }
.integration b { font-family: var(--font-head); color: var(--ink); font-size: .95rem; display: block; }
.integration span { font-size: .8rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   PRICING
   --------------------------------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: rgba(0,212,255,.5);
  box-shadow: var(--shadow), 0 0 40px rgba(0,212,255,.2);
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #05080f;
  font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
}
.price-card .tier { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.price-card .tier-sub { font-size: .92rem; color: var(--muted); margin-bottom: 18px; min-height: 42px; }
.price-card .price {
  font-family: var(--font-head); font-weight: 700; font-size: 3rem; color: var(--ink); line-height: 1;
}
.price-card .price span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-card .price-note { font-size: .85rem; color: var(--muted); margin: 8px 0 22px; }
.price-card .btn { width: 100%; justify-content: center; }
.price-list { margin-top: 24px; display: grid; gap: 13px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: #c4cce0; }
.price-list .ck {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem;
  background: rgba(0,212,255,.15); color: var(--accent);
}
.price-list li.off { color: var(--muted); }
.price-list li.off .ck { background: rgba(255,255,255,.06); color: var(--muted); }

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
}
.faq h3 { font-size: 1.08rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
.faq h3::before { content: "\003F"; color: var(--accent); font-weight: 700; }
.faq p { margin-bottom: 0; color: var(--muted); }

/* ---------------------------------------------------------------------
   USE CASES
   --------------------------------------------------------------------- */
.usecase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.usecase:hover { transform: translateY(-6px); border-color: rgba(124,92,255,.4); box-shadow: var(--shadow), 0 0 30px rgba(124,92,255,.15); }
.usecase .uc-ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--grad-soft); border: 1px solid rgba(124,92,255,.25);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px;
}
.usecase h3 { margin-bottom: 8px; }
.usecase p { color: var(--muted); margin-bottom: 14px; }
.usecase .uc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.usecase .uc-tags span {
  font-family: var(--font-head); font-size: .76rem; font-weight: 500;
  color: var(--accent); background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  padding: 4px 11px; border-radius: 999px;
}

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5d6889; }
.field select { color: var(--ink); }
.field select option { background: var(--surface); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,212,255,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #ff6b81; font-size: .82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff6b81; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.4);
  color: var(--accent);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 12px; background: var(--grad-soft);
  border: 1px solid rgba(0,212,255,.2);
  display: grid; place-items: center; font-size: 1.3rem;
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; }
.info-row span { font-size: .94rem; color: var(--muted); }

/* Map placeholder (pure CSS, no external image) */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(0,212,255,.04), rgba(124,92,255,.04)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: #070a14;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: var(--muted); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--ink);
}
.social a:hover { background: var(--grad); color: #05080f; border-color: transparent; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.no-io .reveal { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .integrations { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .flow { max-width: 480px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { order: -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(10,14,26,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 14px var(--gutter) 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .integrations { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split + .split { margin-top: 56px; }
  .split--reverse .split-visual { order: 0; }
  .stats-grid, .steps { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 26px; }
}

@media (max-width: 460px) {
  .stats-grid, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 22px; }
  .integrations { grid-template-columns: 1fr; }
}
