/* ===== GOOGLE FONTS — add to <head> if not already there =====
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap" rel="stylesheet">
===== */

/* ===== TOKENS ===== */
:root {
  --bg:          #060b18;
  --bg2:         #0a1225;
  --card:        rgba(14,22,46,.60);
  --card2:       rgba(14,22,46,.35);
  --text:        #e8eeff;
  --muted:       #8fa0c8;
  --accent:      #34d3ff;
  --accent2:     #38f2c2;
  --line:        rgba(52,211,255,.12);
  --line2:       rgba(36,48,95,.55);
  --shadow:      0 24px 70px rgba(0,0,0,.45);
  --shadow-soft: 0 12px 40px rgba(0,0,0,.28);
  --radius:      20px;
  --radius2:     14px;
  --max:         1140px;
  /* h1 homepage vs inner pages */
  --h1:          clamp(42px, 4.5vw, 64px);
  --h1-inner:    clamp(28px, 3vw, 44px);
  --h2:          clamp(24px, 2.4vw, 34px);
  --body:        16px;
  --lead:        17px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.muted { color: var(--muted); }

/* ===== BACKGROUND GRID + GLOWS ===== */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(52,211,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,211,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% -5%,  rgba(52,211,255,.13), transparent 55%),
    radial-gradient(ellipse 700px 500px at 90% 5%,   rgba(56,242,194,.09), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(52,211,255,.06), transparent 55%);
  pointer-events: none; z-index: 0;
}

/* ===== PROMO TICKER ===== */
.ticker {
  position: relative; z-index: 100;
  background: linear-gradient(90deg, rgba(52,211,255,.18), rgba(56,242,194,.14));
  border-bottom: 1px solid rgba(52,211,255,.22);
  padding: 10px 0;
}
.ticker-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ticker-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.ticker-dot {
  width: 8px; height: 8px; flex-shrink: 0; border-radius: 999px;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: ticker-pulse 2s infinite;
}
@keyframes ticker-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 10px var(--accent); }
  50%      { opacity: .6; box-shadow: 0 0 20px var(--accent); }
}
.ticker-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(231,236,255,.55); flex-shrink: 0;
}
.ticker-marquee { overflow: hidden; flex: 1; min-width: 0; }
.ticker-track   { display: flex; gap: 60px; }
.ticker-msg { font-size: 13px; color: rgba(231,236,255,.90); white-space: nowrap; flex-shrink: 0; }
.ticker-msg b { color: #fff; }
.ticker-actions { display: flex; gap: 8px; flex-shrink: 0; }
.ticker-btn {
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.10);
  color: #fff; cursor: pointer; transition: background .15s;
}
.ticker-btn:hover { background: rgba(255,255,255,.18); }
.ticker-close {
  background: transparent; border: none; color: rgba(231,236,255,.55);
  cursor: pointer; font-size: 16px; padding: 0 4px; transition: color .15s;
}
.ticker-close:hover { color: #fff; }

/* ===== TOPBAR / NAV ===== */
.topbar {
  position: sticky; top: 0; z-index: 900;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(6,11,24,.72); border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.topbar.is-scrolled { background: rgba(6,11,24,.88); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 36px; width: auto; display: block; }
.brand-wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 18px; letter-spacing: .04em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.menu { display: flex; gap: 4px; align-items: center; }
.menu a {
  padding: 8px 12px; border-radius: 10px; color: var(--muted);
  font-size: 14px; font-weight: 500; border: 1px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.menu a:hover { color: var(--text); background: rgba(52,211,255,.07); }
.menu a.active { color: var(--text); }

.menu .cta {
  margin-left: 8px; padding: 9px 18px; border-radius: 12px;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04111c; border: none; transition: filter .15s, transform .15s;
}
.menu .cta:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Dropdown */
.menu-item { position: relative; }
.dropdown-toggle {
  background: transparent; border: 1px solid transparent; color: var(--muted);
  padding: 8px 12px; border-radius: 10px; cursor: pointer; font: inherit;
  font-size: 14px; font-weight: 500; transition: color .15s, background .15s;
}
.dropdown-toggle:hover,
.menu-item.active .dropdown-toggle { color: var(--text); background: rgba(52,211,255,.07); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 220px; padding: 8px; border-radius: 16px;
  border: 1px solid rgba(36,48,95,.65); background: rgba(6,11,24,.96);
  backdrop-filter: blur(14px); box-shadow: var(--shadow);
  display: none; flex-direction: column; gap: 4px; z-index: 1000;
}
.dropdown-menu a {
  display: block; padding: 9px 11px; border-radius: 10px;
  color: var(--text); font-size: 14px; border: 1px solid transparent;
  background: transparent; transition: background .15s, border-color .15s;
}
.dropdown-menu a:hover { background: rgba(14,22,46,.35); border-color: rgba(52,211,255,.18); }
.menu-item:hover .dropdown-menu { display: flex; }

/* Hamburger */
.menu-toggle {
  display: none; background: transparent; border: 1px solid var(--line2);
  border-radius: 10px; padding: 9px; cursor: pointer; color: var(--text);
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; margin: 4px 0;
  background: var(--text); border-radius: 2px;
}

/* ===== HERO ===== */
.hero { position: relative; z-index: 1; padding: 80px 0 50px; }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start;
}

/* Homepage: full large h1 */
.hero--home h1 { font-size: var(--h1); }

/* All inner pages: controlled smaller h1 */
.hero--inner h1,
.hero--product h1,
.hero--works h1,
.hero--pricing h1,
.hero--usecases h1 {
  font-size: var(--h1-inner);
  letter-spacing: -.02em;
  line-height: 1.12;
}

/* ===== EYEBROW / KICKER (all variants unified) ===== */
.eyebrow,
.kicker,
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before,
.kicker::before,
.section-kicker::before {
  content: ""; width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px; opacity: .9;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: var(--h1); font-weight: 800;
  line-height: 1.04; letter-spacing: -.03em; margin-bottom: 20px;
}
h1 .grad, h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: var(--h2); font-weight: 800;
  line-height: 1.15; letter-spacing: -.02em;
}

h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.3;
}

.sub {
  font-size: var(--lead); color: var(--muted);
  line-height: 1.65; max-width: 52ch; margin-bottom: 32px;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

small.note {
  display: block; font-size: 12px;
  color: rgba(143,160,200,.60); max-width: 55ch;
}

/* ===== GRADIENT ACCENTS ===== */
.section-accent,
h1 .grad,
h2 .grad,
h2 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 13px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease,
              background .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(0) !important; filter: brightness(.97) !important; }

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #04111c; border: none;
  box-shadow: 0 12px 40px rgba(52,211,255,.20);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(52,211,255,.28);
  filter: brightness(1.04);
}
.btn:not(.primary) {
  border: 1px solid var(--line2); background: rgba(14,22,46,.40);
  color: var(--text); backdrop-filter: blur(8px);
}
.btn:not(.primary):hover {
  border-color: rgba(52,211,255,.28); transform: translateY(-1px);
  background: rgba(14,22,46,.55);
}

/* ===== HERO RHS — homepage card ===== */
.hero-card,
.hero-panel {
  position: relative; border-radius: 24px;
  border: 1px solid rgba(52,211,255,.15);
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(52,211,255,.10), transparent 60%),
    radial-gradient(600px 300px at 90% 0%, rgba(56,242,194,.07), transparent 60%),
    rgba(12,20,44,.70);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden; padding: 24px;
}
.hero-card::before,
.hero-panel::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.40), transparent);
}

.panel-title, .card-heading {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.panel-sub, .card-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.5;
}

/* ===== HERO RHS — inner page side card ===== */
.hero-aside {
  display: flex; justify-content: flex-end; align-items: flex-start;
}

.side-card {
  width: min(440px, 100%); padding: 22px; border-radius: 22px;
  border: 1px solid rgba(52,211,255,.15);
  background:
    radial-gradient(700px 280px at 15% 0%, rgba(52,211,255,.10), transparent 60%),
    radial-gradient(700px 280px at 85% 0%, rgba(56,242,194,.07), transparent 60%),
    rgba(12,20,44,.68);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.side-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.38), transparent);
}
.side-card > * { position: relative; z-index: 1; }

.side-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.35;
  color: rgba(231,236,255,.96); margin: 0 0 8px;
}
.side-text {
  font-size: 14px; line-height: 1.65; color: rgba(170,179,214,.90); margin: 0 0 14px;
}
.side-list { list-style: none; padding: 0; margin: 0 0 16px; }
.side-list li {
  position: relative; padding-left: 18px; margin: 9px 0;
  font-size: 14px; line-height: 1.55; color: rgba(231,236,255,.92);
}
.side-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.side-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: rgba(231,236,255,.96);
  padding: 10px 14px; border-radius: 12px;
  border: 1px solid var(--line2); background: rgba(14,22,46,.28);
  transition: transform .18s, background .18s, border-color .18s;
}
.side-link:hover {
  transform: translateY(-2px); background: rgba(14,22,46,.40);
  border-color: rgba(52,211,255,.25);
}

@media (max-width: 980px) {
  .hero-aside { justify-content: flex-start; margin-top: 18px; }
}

/* ===== KPI GRID ===== */
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.kpi {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 11px; border-radius: 12px;
  border: 1px solid rgba(52,211,255,.10); background: rgba(10,16,34,.35);
  font-size: 13px; font-weight: 500; color: rgba(231,236,255,.90); line-height: 1.3;
  transition: border-color .15s, background .15s;
}
.kpi:hover { border-color: rgba(52,211,255,.22); background: rgba(10,16,34,.50); }
.kpi::before {
  content: ""; width: 7px; height: 7px; flex-shrink: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.notice, .card-notice {
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(56,242,194,.18); background: rgba(56,242,194,.06);
  font-size: 13px; color: rgba(231,236,255,.88); line-height: 1.5;
}
.notice b, .card-notice b { color: var(--accent2); }

/* ===== LOGO BAR ===== */
.logobar {
  position: relative; z-index: 1; padding: 32px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.logobar-label {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(143,160,200,.45); margin-bottom: 18px;
}
.logobar-items { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.logobar-chip {
  padding: 7px 18px; font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  color: rgba(143,160,200,.40); border-right: 1px solid var(--line);
  white-space: nowrap; transition: color .2s;
}
.logobar-chip:last-child { border-right: none; }
.logobar-chip:hover { color: rgba(143,160,200,.75); }

/* ===== SHARED SECTION ===== */
.section { position: relative; z-index: 1; padding: 60px 0; }

.section h2 { margin-bottom: 12px; }

p.lead,
.section p.lead,
.section-lead {
  font-size: var(--lead); color: var(--muted);
  max-width: 64ch; margin-bottom: 32px; line-height: 1.65;
}

/* Generic card */
.card {
  background: rgba(12,20,44,.45); border: 1px solid rgba(36,48,95,.65);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.card.pad { padding: 24px; }

/* ===== FEATURE / GRID3 ===== */
.grid3, .feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.feature, .feat-card {
  padding: 20px; border-radius: var(--radius);
  border: 1px solid rgba(36,48,95,.55); background: rgba(12,20,44,.40);
  backdrop-filter: blur(8px); position: relative; overflow: hidden;
  transition: transform .20s ease, border-color .20s ease, background .20s ease;
}
.feature::before, .feat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.0), transparent);
  transition: background .3s ease;
}
.feature:hover, .feat-card:hover {
  transform: translateY(-3px); border-color: rgba(52,211,255,.25);
  background: rgba(12,20,44,.55);
}
.feature:hover::before, .feat-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.50), transparent);
}

.pill, .feat-pill {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(52,211,255,.09); border: 1px solid rgba(52,211,255,.18);
  color: #b9eeff; font-size: 11px; font-weight: 600; margin-bottom: 10px;
}

.feature h3, .feat-card h3 { margin-bottom: 8px; color: rgba(231,236,255,.96); }
.feature p, .feat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ===== SPLIT — 2 column ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start;
}
.split .card.pad h3 { margin-top: 0; }
.list { margin: 0; padding-left: 18px; color: var(--muted); }
.list li { margin: 8px 0; font-size: 14px; }

/* ===== STEPS — 4 column with connector line ===== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.30), rgba(56,242,194,.25), transparent);
  z-index: 0;
}
.step { padding: 0 16px; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 16px;
  border: 1px solid rgba(52,211,255,.25);
  background:
    radial-gradient(circle at 35% 35%, rgba(52,211,255,.18), transparent 65%),
    rgba(10,18,38,.70);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--accent);
  box-shadow: 0 8px 24px rgba(52,211,255,.10);
}
.step h3 { margin-bottom: 12px; color: rgba(231,236,255,.96); text-align: left; }
.step ul { list-style: none; padding: 0; text-align: left; }
.step ul li {
  font-size: 13px; color: var(--muted); padding: 4px 0 4px 14px;
  position: relative; line-height: 1.55;
}
.step ul li::before { content: "›"; position: absolute; left: 0; color: var(--accent2); font-weight: 700; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 8px; }
.faq details, .faq-item {
  border: 1px solid rgba(36,48,95,.55); background: rgba(12,20,44,.35);
  border-radius: var(--radius2); overflow: hidden; transition: border-color .2s ease;
}
.faq details:hover, .faq-item:hover { border-color: rgba(52,211,255,.18); }
.faq summary, .faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  color: rgba(231,236,255,.96);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 400; font-size: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 6px;
  border: 1px solid rgba(52,211,255,.20); background: rgba(52,211,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--accent); transition: transform .2s ease;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq details p, .faq-item p {
  margin: 0; padding: 14px 20px 18px;
  font-size: 14px; color: var(--muted); line-height: 1.65;
  border-top: 1px solid var(--line);
}

/* ===== FINAL CTA BLOCK ===== */
.cta-block {
  position: relative; border-radius: 28px; padding: 60px; overflow: hidden;
  border: 1px solid rgba(52,211,255,.18);
  background:
    radial-gradient(900px 400px at 20% 50%, rgba(52,211,255,.12), transparent 55%),
    radial-gradient(900px 400px at 80% 50%, rgba(56,242,194,.09), transparent 55%),
    rgba(10,18,38,.70);
  text-align: center;
}
.cta-block::before {
  content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,211,255,.55), transparent);
}
.cta-block h2 { margin-bottom: 12px; }
.cta-block p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--line2); margin: 14px 0; border-radius: 999px; }

/* ===== PRICING ===== */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plan {
  padding: 22px; border-radius: var(--radius);
  border: 1px solid rgba(36,48,95,.70); background: rgba(12,20,44,.35);
  display: flex; flex-direction: column; min-height: 520px; box-shadow: var(--shadow-soft);
}
.plan.pop {
  border-color: rgba(52,211,255,.45);
  background:
    radial-gradient(520px 240px at 20% 0%, rgba(52,211,255,.12), transparent 60%),
    radial-gradient(520px 240px at 80% 0%, rgba(56,242,194,.10), transparent 60%),
    rgba(12,20,44,.35);
  box-shadow: 0 18px 60px rgba(52,211,255,.12);
}
.plan h3 { font-size: 18px; font-weight: 700; margin: 0; }
.plan .t { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.plan .tag {
  font-size: 11px; color: #b9eeff; border: 1px solid rgba(52,211,255,.22);
  background: rgba(52,211,255,.09); padding: 4px 8px; border-radius: 999px; white-space: nowrap;
}
.price { margin: 12px 0; font-size: 28px; font-weight: 900; font-family: 'Syne', sans-serif; }
.price span { font-size: 13px; color: var(--muted); font-weight: 500; }
.plan ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); font-size: 14px; flex: 1; }
.plan li { margin: 7px 0; }
.plan .buy { margin-top: 16px; }
.plan .btn { width: 100%; justify-content: center; }

.price-meta { margin-top: 6px; font-size: 13px; color: var(--muted); }
.price-meta .was { text-decoration: line-through; opacity: .65; }
.price-meta .badge-soft {
  margin-left: 8px; padding: 3px 8px; border: 1px solid var(--line2);
  border-radius: 999px; background: rgba(14,22,46,.18); color: rgba(231,236,255,.90);
}
.pricing-konnect {
  background:
    radial-gradient(740px 260px at 20% 0%, rgba(52,211,255,.10), transparent 62%),
    radial-gradient(740px 260px at 80% 0%, rgba(56,242,194,.08), transparent 62%),
    rgba(12,20,44,.40);
}

/* ===== FORMS ===== */
.form { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%; padding: 12px 14px; border-radius: 13px;
  border: 1px solid var(--line2); background: rgba(6,11,24,.40);
  color: var(--text); outline: none;
  font-family: inherit; font-size: 15px; font-weight: 400; line-height: 1.4;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(52,211,255,.35); box-shadow: 0 0 0 4px rgba(52,211,255,.10);
}
textarea { min-height: 120px; resize: vertical; }
label { font-size: 13px; color: var(--muted); font-weight: 600; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* SelectX */
.selectx { position: relative; }
.selectx > summary {
  list-style: none; cursor: pointer; width: 100%; padding: 12px 14px; border-radius: 13px;
  border: 1px solid var(--line2); background: rgba(6,11,24,.40); color: var(--text); outline: none;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-family: inherit; font-size: 15px; font-weight: 400; line-height: 1.4;
}
.selectx > summary::-webkit-details-marker { display: none; }
.selectx > summary::after { content: "▾"; color: var(--muted); font-size: 14px; }
.selectx[open] > summary { border-color: rgba(52,211,255,.35); box-shadow: 0 0 0 4px rgba(52,211,255,.10); }
.selectx-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 50;
  padding: 8px; border-radius: 16px; border: 1px solid rgba(36,48,95,.65);
  background: rgba(6,11,24,.96); backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.selectx-menu button {
  width: 100%; text-align: left; padding: 10px; border-radius: 12px;
  border: 1px solid transparent; background: transparent; color: rgba(231,236,255,.92);
  cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 500; line-height: 1.4;
  transition: background .16s, border-color .16s, transform .16s;
}
.selectx-menu button:hover { background: rgba(14,22,46,.32); border-color: rgba(52,211,255,.18); transform: translateY(-1px); }
.selectx-menu button.active { background: rgba(52,211,255,.18); border-color: rgba(52,211,255,.30); color: #fff; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1; margin-top: 40px;
  border-top: 1px solid var(--line); background: rgba(4,8,18,.60); padding: 60px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px;
}
.footer-brand-logo { height: 32px; margin-bottom: 16px; }
.footer-brand-wordmark {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: .04em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.footer-callout {
  padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line2);
  background: rgba(14,22,46,.25); margin-bottom: 12px;
}
.footer-callout__title { font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: rgba(143,160,200,.55); margin-bottom: 4px; }
.footer-callout__text { font-size: 12px; color: rgba(143,160,200,.50); line-height: 1.6; }
.footer-keywords { font-size: 11px; color: rgba(143,160,200,.35); line-height: 1.7; margin-top: 12px; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(143,160,200,.50); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin: 9px 0; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px;
}
.footer-details__title, .footer-quick__title {
  font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: rgba(143,160,200,.45); margin-bottom: 6px;
}
.footer-details__text, .footer-quick__text { font-size: 12px; color: rgba(143,160,200,.45); line-height: 1.8; }
.footer-details__text strong { color: rgba(143,160,200,.65); }
.footer-quick__text a { color: rgba(52,211,255,.65); transition: color .15s; }
.footer-quick__text a:hover { color: var(--accent); }
.footer-quick__muted { color: rgba(143,160,200,.35); }
.footer-compliance { margin-top: 6px; }
.footer-rights { font-size: 12px; color: rgba(143,160,200,.30); align-self: flex-end; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 10px; padding: 12px 18px;
  border-radius: 999px; background: #fff; color: #0b1020;
  font-weight: 800; font-size: 13px; border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 8px 32px rgba(0,0,0,.28); transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float img { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.36); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
@media (max-width: 980px) {
  .hero { padding: 60px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .grid3, .feat-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps::before { display: none; }
  .pricing { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .kpis { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .menu {
    display: none; position: absolute; right: 0; top: 64px;
    width: min(300px, calc(100vw - 32px)); padding: 12px; border-radius: 16px;
    flex-direction: column; gap: 6px; z-index: 9999;
    background: rgba(6,11,24,.96); border: 1px solid var(--line2);
    backdrop-filter: blur(14px); box-shadow: var(--shadow);
  }
  .menu.open { display: flex !important; }
  .menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--text); border: 1px solid rgba(36,48,95,.35); background: rgba(14,22,46,.22); }
  .menu .cta { width: 100%; text-align: center; }
  .dropdown-toggle { width: 100%; text-align: left; }
  .dropdown-menu { position: static; display: none; margin-top: 6px; box-shadow: none; }
  .menu-item.open .dropdown-menu { display: flex; }
  .cta-block { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .grid3, .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-block { padding: 32px 20px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 12px; }
  .ticker-label { display: none; }
}

@media (max-width: 480px) {
  .brand-logo { height: 32px; }
}
