/* ============================================================
   Autoniq — Business AI Automation
   Brand: deep navy #062141 · slate #39485b · azure→teal accent
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #04132a;
  --navy-900: #062141;
  /* exact wordmark navy */
  --navy-800: #0a2c54;
  --navy-700: #123a66;
  --slate-600: #39485b;
  /* exact mark slate */

  /* Accent */
  --accent: #2b7fff;
  --accent-2: #19d3c5;
  --grad: linear-gradient(120deg, #2b7fff 0%, #19d3c5 100%);
  --grad-soft: linear-gradient(120deg, rgba(43, 127, 255, .12), rgba(25, 211, 197, .12));

  /* Neutrals */
  --ink: #0e1b2e;
  --body: #46566c;
  --muted: #71819a;
  --line: #e6ecf4;
  --line-2: #eef2f8;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-mint: #eef4f3;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(6, 33, 65, .06), 0 1px 3px rgba(6, 33, 65, .05);
  --shadow-md: 0 10px 30px -12px rgba(6, 33, 65, .18);
  --shadow-lg: 0 30px 60px -20px rgba(6, 33, 65, .25);
  --shadow-accent: 0 16px 40px -12px rgba(43, 127, 255, .45);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1380px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-body);
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  letter-spacing: -.01em;
}

.btn .ic {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -12px rgba(43, 127, 255, .55);
}

.btn-secondary {
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: #cfdaec;
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--navy-900);
  padding-inline: 14px;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--navy-900);
  color: #cfe0ff;
  font-size: 14px;
  position: relative;
  z-index: 60;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 40px 9px 0;
  position: relative;
}

.announce p {
  text-align: center;
}

.announce-badge {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-right: 8px;
}

.announce a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 1px;
  transition: border-color .2s;
}

.announce a:hover {
  border-color: #fff;
}

.announce-close {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #9db6e0;
  font-size: 22px;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background .2s, color .2s;
}

.announce-close:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.announce.hide {
  display: none;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(6, 33, 65, .25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 30px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  padding: 9px 14px;
  border-radius: 10px;
  transition: color .2s, background .2s;
  position: relative;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--bg-soft);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

/* mobile toggle */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 33, 65, .4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
  z-index: 45;
  backdrop-filter: blur(2px);
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Generic sections ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--grad-soft);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(43, 127, 255, .15);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--body);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.glow-1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(43, 127, 255, .45), transparent 70%);
  top: -160px;
  right: -120px;
}

.glow-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(25, 211, 197, .4), transparent 70%);
  bottom: -180px;
  left: -140px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 33, 65, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 33, 65, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  font-size: clamp(38px, 5.6vw, 62px);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 19px;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ic-check {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* Hero app mockup */
.hero-app {
  position: relative;
}

.app-window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.app-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-2);
  background: #fbfcfe;
}

.app-dots {
  display: inline-flex;
  gap: 6px;
}

.app-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2e8f2;
}

.app-dots i:nth-child(1) {
  background: #ff7676;
}

.app-dots i:nth-child(2) {
  background: #ffce5a;
}

.app-dots i:nth-child(3) {
  background: #5ed47f;
}

.app-url {
  font-size: 12.5px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line-2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-inline: auto;
}

.app-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 360px;
}

.app-side {
  background: var(--navy-900);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.app-mark {
  width: 26px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
  margin-bottom: 6px;
}

.app-ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.app-ic.is-active {
  background: var(--grad);
  box-shadow: 0 6px 16px -4px rgba(43, 127, 255, .6);
}

.app-main {
  padding: 20px;
}

.app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-eyebrow {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-head h3 {
  font-size: 19px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
}

.pill-live {
  color: #0f9d58;
  background: #e7f7ee;
}

.pill-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0f9d58;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .3;
  }
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.kpi {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kpi-label {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}

.kpi-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.kpi-value small {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.kpi-trend {
  font-size: 11px;
  font-weight: 700;
}

.kpi-trend.up {
  color: #0f9d58;
}

.app-chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 78px;
  padding: 10px 4px 0;
}

.app-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), #7fb4ff);
  border-radius: 6px 6px 3px 3px;
  opacity: .85;
  transform-origin: bottom;
  animation: grow 1s ease both;
}

.app-chart span:last-child {
  background: var(--grad);
  opacity: 1;
}

@keyframes grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.app-flow {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.app-flow li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 9px 12px;
}

.app-flow em {
  margin-left: auto;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.flow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}

.flow-dot.run {
  background: var(--accent);
  animation: pulse 1.4s infinite;
}

.flow-dot.ok {
  background: #0f9d58;
}

/* floating cards */
.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 11px;
  animation: floaty 4.5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.float-card small {
  font-size: 12px;
  color: var(--muted);
}

.fc-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}

.fc-ic svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fc-ic.green {
  background: linear-gradient(135deg, #21c17a, #0f9d58);
}

.fc-ic.blue {
  background: var(--grad);
}

.fc-1 {
  top: 26px;
  left: -28px;
  animation-delay: -1s;
}

.fc-2 {
  bottom: 40px;
  right: -26px;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Logo cloud ---------- */
.cloud {
  padding: 46px 0 30px;
}

.cloud-label {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.cloud-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 52px;
}

.cloud-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #9aa9bf;
  letter-spacing: -.02em;
  filter: grayscale(1);
  transition: color .25s, transform .25s;
}

.cloud-logo:hover {
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* ---------- Stats ---------- */
.stats {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(43, 127, 255, .4), transparent 45%), radial-gradient(circle at 90% 110%, rgba(25, 211, 197, .32), transparent 45%);
}

.stat {
  position: relative;
  z-index: 1;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 46px);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: #aebfd9;
  font-size: 14.5px;
  line-height: 1.45;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--bg-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.b-ic {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad);
  box-shadow: var(--shadow-accent);
  margin-bottom: 22px;
}

.b-ic svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15.5px;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d8e2f0;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.f-ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(43, 127, 255, .18);
  margin-bottom: 20px;
}

.f-ic svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 9px;
}

.feature-card p {
  font-size: 15px;
}

/* ---------- How it works ---------- */
.how {
  background: var(--bg-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.step-line {
  position: absolute;
  top: 34px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c8d6ea 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}

.step-num {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  background: var(--grad);
  box-shadow: var(--shadow-accent);
  border: 5px solid var(--bg-soft);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15.5px;
}

/* ---------- Solutions tabs ---------- */
.tabs {
  max-width: 980px;
  margin: 0 auto;
}

.tab-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto 36px;
}

.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--body);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: color .2s, background .25s, box-shadow .25s;
}

.tab-btn.is-active {
  color: var(--navy-900);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tab-btn:not(.is-active):hover {
  color: var(--navy-900);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tab-panel.is-active {
  display: grid;
  animation: fadeUp .45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.tab-copy h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.tab-copy p {
  font-size: 16.5px;
  margin-bottom: 22px;
}

.ticks {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ticks li {
  position: relative;
  padding-left: 32px;
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--grad-soft), #fff;
  background-blend-mode: normal;
  background-image: var(--grad);
}

.ticks li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.tab-visual {
  display: grid;
  place-items: center;
}

.mini-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}

.mini-row:first-child {
  padding-top: 0;
}

.tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
}

.tag.green {
  color: #0f9d58;
  background: #e7f7ee;
}

.tag.blue {
  color: var(--accent);
  background: rgba(43, 127, 255, .1);
}

.tag.amber {
  color: #c47d09;
  background: #fdf2dc;
}

.mini-bar {
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--line-2);
  margin: 18px 0 10px;
  overflow: hidden;
}

.mini-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--grad);
  border-radius: inherit;
}

.mini-foot {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Integrations ---------- */
.int-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.int-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s, color .25s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.int-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
}

.int-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d2ddee;
  color: var(--accent);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg-soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.quote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: #ffb020;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.quote blockquote {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  background: var(--grad);
  flex: none;
}

.quote figcaption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 15px;
}

.quote figcaption small {
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Pricing ---------- */
.bill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.bill-opt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bill-opt.is-active {
  color: var(--navy-900);
}

.bill-opt em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  color: #0f9d58;
  background: #e7f7ee;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.switch {
  width: 52px;
  height: 30px;
  border-radius: var(--radius-pill);
  background: #cdd9ea;
  padding: 4px;
  transition: background .25s;
}

.switch span {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s;
}

.switch[aria-checked="true"] {
  background: var(--accent);
}

.switch[aria-checked="true"] span {
  transform: translateX(22px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card.is-featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
  border: 2px solid transparent;
}

.price-card.is-featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-accent);
  letter-spacing: .02em;
}

.price-name {
  font-size: 20px;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 14px;
  color: var(--muted);
  min-height: 40px;
  margin-bottom: 16px;
}

.price-amt {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
  color: var(--ink);
}

.price-amt .cur {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-top: 8px;
}

.price-amt .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  letter-spacing: -.03em;
  transition: opacity .2s;
}

.price-amt .num.custom {
  font-size: 38px;
}

.price-amt .per {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 8px;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.price-card .btn {
  margin-bottom: 24px;
}

.price-card .ticks li {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--body);
}

.price-card .ticks li::after {
  top: 7px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
}

/* ---------- FAQ ---------- */
.faq-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.faq .section-head {
  margin-bottom: 0;
  position: sticky;
  top: 100px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.acc-item.open {
  border-color: #cfdcef;
  box-shadow: var(--shadow-md);
}

.acc-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy-900);
}

.acc-ic {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.acc-ic::before,
.acc-ic::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s;
}

.acc-ic::before {
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
}

.acc-ic::after {
  left: 8px;
  top: 0;
  width: 2px;
  height: 18px;
}

.acc-item.open .acc-ic::after {
  transform: rotate(90deg);
  opacity: 0;
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.acc-a p {
  padding: 0 22px 22px;
  font-size: 15.5px;
  color: var(--body);
}

/* ---------- CTA ---------- */
.cta {
  padding: 30px 0 90px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  background: var(--navy-900);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-bg {
  position: absolute;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(43, 127, 255, .5), transparent 50%), radial-gradient(circle at 85% 120%, rgba(25, 211, 197, .4), transparent 50%);
}

.cta-mark {
  width: 56px;
  height: auto;
  margin: 0 auto 24px;
  position: relative;
  opacity: .95;
}

.cta-inner h2 {
  position: relative;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}

.cta-inner p {
  position: relative;
  color: #b9cae6;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-form {
  position: relative;
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-form input {
  flex: 1;
  min-width: 240px;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

.cta-form input::placeholder {
  color: #91a6c8;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--accent-2);
  background: rgba(255, 255, 255, .14);
}

.cta-fine {
  position: relative;
  color: #8fa4c6;
  font-size: 13.5px;
}

.cta-fine.ok {
  color: #6ee7b7;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: #aebdd6;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.foot-logo {
  height: 28px;
  width: auto;
  margin-bottom: 18px;
}

.foot-brand p {
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 10px;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .06);
  color: #c4d2e8;
  transition: background .2s, color .2s, transform .2s;
}

.soc svg {
  width: 18px;
  height: 18px;
}

.soc:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.foot-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.foot-col a {
  display: block;
  font-size: 14.5px;
  color: #aebdd6;
  padding: 6px 0;
  transition: color .2s, padding-left .2s;
}

.foot-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13.5px;
}

.foot-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: #7e91b3;
  letter-spacing: .02em;
}

.foot-legal {
  display: flex;
  gap: 22px;
}

.foot-legal a:hover {
  color: #fff;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
  cursor: pointer;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: #c4d2e8;
}

.theme-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: absolute;
  transition: opacity .3s ease, transform .4s ease;
}

.icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-icon {
  stroke: #e2e8f2;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

/* ---------- Dark mode ---------- */
[data-theme="dark"] {
  --ink: #edf2f7;
  --body: #a0b0c8;
  --muted: #7a8da8;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .05);
  --bg: #0b1222;
  --bg-soft: #101b2e;
  --bg-mint: #0e1f2a;
  --grad-soft: linear-gradient(120deg, rgba(43, 127, 255, .15), rgba(25, 211, 197, .15));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .2), 0 1px 3px rgba(0, 0, 0, .15);
  --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, .45);
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, .55);
  color-scheme: dark;
}

/* Body + global text */
[data-theme="dark"] body {
  color: var(--body);
  background: var(--bg);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--ink);
}

/* Smooth transition on theme change */
[data-theme="dark"],
[data-theme="dark"] *,
[data-theme="dark"] *::before,
[data-theme="dark"] *::after {
  transition-duration: .3s;
}

/* Header */
[data-theme="dark"] .header {
  background: rgba(11, 18, 34, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}

[data-theme="dark"] .brand-logo {
  filter: brightness(0) invert(1);
  transition: filter .3s ease;
}

[data-theme="dark"] .header.scrolled {
  border-bottom-color: rgba(255, 255, 255, .06);
  box-shadow: 0 6px 24px -16px rgba(0, 0, 0, .5);
}

[data-theme="dark"] .nav-link {
  color: #c8d5e8;
}

[data-theme="dark"] .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .btn-ghost {
  color: #c8d5e8;
}

[data-theme="dark"] .btn-ghost:hover {
  color: var(--accent);
}

[data-theme="dark"] .btn-secondary {
  color: #e2e8f2;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .btn-secondary:hover {
  border-color: rgba(255, 255, 255, .2);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .menu-toggle span {
  background: #c8d5e8;
}

/* Mobile nav */
[data-theme="dark"] .nav {
  background: #101b2e;
}

[data-theme="dark"] .nav-backdrop {
  background: rgba(0, 0, 0, .55);
}

/* Announcement */
[data-theme="dark"] .announce {
  background: #070d19;
}

/* Hero */
[data-theme="dark"] .grid-lines {
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
}

/* App mockup */
[data-theme="dark"] .app-window {
  background: #131f36;
  border-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .app-bar {
  background: #101a2c;
  border-bottom-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .app-dots i {
  background: rgba(255, 255, 255, .12);
}

[data-theme="dark"] .app-dots i:nth-child(1) {
  background: #ff7676;
}

[data-theme="dark"] .app-dots i:nth-child(2) {
  background: #ffce5a;
}

[data-theme="dark"] .app-dots i:nth-child(3) {
  background: #5ed47f;
}

[data-theme="dark"] .app-url {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .08);
  color: #7a8da8;
}

[data-theme="dark"] .app-main {
  background: #131f36;
}

[data-theme="dark"] .kpi {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .kpi-value {
  color: var(--ink);
}

[data-theme="dark"] .kpi-value small {
  color: #7a8da8;
}

[data-theme="dark"] .app-flow li {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .06);
  color: #c8d5e8;
}

/* Float cards */
[data-theme="dark"] .float-card {
  background: #1a2740;
  border-color: rgba(255, 255, 255, .08);
}

[data-theme="dark"] .float-card strong {
  color: var(--ink);
}

/* Logo cloud */
[data-theme="dark"] .cloud-logo {
  color: #5a6d87;
}

[data-theme="dark"] .cloud-logo:hover {
  color: #c8d5e8;
}

/* Stats — already dark, keep as-is */

/* Benefits */
[data-theme="dark"] .benefits {
  background: var(--bg-soft);
}

[data-theme="dark"] .benefit-card {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .benefit-card:hover {
  box-shadow: var(--shadow-md);
}

/* Features */
[data-theme="dark"] .feature-card {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .feature-card:hover {
  border-color: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .f-ic {
  background: var(--grad-soft);
  border-color: rgba(43, 127, 255, .2);
}

/* How it works */
[data-theme="dark"] .how {
  background: var(--bg-soft);
}

[data-theme="dark"] .step-num {
  border-color: var(--bg-soft);
}

[data-theme="dark"] .step-line {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 8px, transparent 8px 16px);
}

/* Solutions tabs */
[data-theme="dark"] .tab-btns {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .tab-btn {
  color: #7a8da8;
}

[data-theme="dark"] .tab-btn.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .tab-btn:not(.is-active):hover {
  color: #c8d5e8;
}

[data-theme="dark"] .mini-card {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .mini-row {
  border-bottom-color: rgba(255, 255, 255, .05);
  color: #c8d5e8;
}

[data-theme="dark"] .mini-bar {
  background: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .tag.green {
  background: rgba(15, 157, 88, .15);
}

[data-theme="dark"] .tag.blue {
  background: rgba(43, 127, 255, .15);
}

[data-theme="dark"] .tag.amber {
  background: rgba(196, 125, 9, .15);
}

/* Integrations */
[data-theme="dark"] .int-chip {
  background: #131f36;
  border-color: rgba(255, 255, 255, .08);
  color: #c8d5e8;
}

[data-theme="dark"] .int-chip:hover {
  border-color: rgba(255, 255, 255, .16);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

/* Testimonials */
[data-theme="dark"] .testimonials {
  background: var(--bg-soft);
}

[data-theme="dark"] .quote {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .quote:hover {
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .quote blockquote {
  color: #c8d5e8;
}

[data-theme="dark"] .quote figcaption {
  border-top-color: rgba(255, 255, 255, .05);
}

/* Pricing */
[data-theme="dark"] .bill-opt.is-active {
  color: var(--ink);
}

[data-theme="dark"] .switch {
  background: rgba(255, 255, 255, .12);
}

[data-theme="dark"] .switch span {
  background: #c8d5e8;
}

[data-theme="dark"] .price-card {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .price-card:hover {
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .price-card.is-featured {
  background: linear-gradient(#131f36, #131f36) padding-box, var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 40px -10px rgba(43, 127, 255, .25);
}

[data-theme="dark"] .price-amt {
  color: var(--ink);
}

[data-theme="dark"] .trust-strip {
  border-top-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .trust-strip span {
  color: #c8d5e8;
}

/* FAQ */
[data-theme="dark"] .acc-item {
  background: #131f36;
  border-color: rgba(255, 255, 255, .06);
}

[data-theme="dark"] .acc-item.open {
  border-color: rgba(255, 255, 255, .12);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .acc-q {
  color: #c8d5e8;
}

/* CTA */
[data-theme="dark"] .cta-inner {
  background: #070d19;
}

/* Footer — already dark, minor tweaks */
[data-theme="dark"] .footer {
  background: #050a14;
}

[data-theme="dark"] .footer-grid {
  border-bottom-color: rgba(255, 255, 255, .05);
}

/* Scrollbar */
[data-theme="dark"]::-webkit-scrollbar {
  width: 10px;
}

[data-theme="dark"]::-webkit-scrollbar-track {
  background: var(--bg);
}

[data-theme="dark"]::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .12);
  border-radius: 5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-sub {
    max-width: none;
  }

  .fc-1 {
    left: 0;
  }

  .fc-2 {
    right: 0;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq .section-head {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 340px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 90px 24px 32px;
    box-shadow: -20px 0 60px -20px rgba(6, 33, 65, .3);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
    z-index: 48;
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 17px;
    padding: 13px 14px;
  }

  .nav-cta {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    margin-top: 14px;
    gap: 10px;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .benefit-grid,
  .feature-grid,
  .quote-grid,
  .price-grid,
  .steps,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 30px;
    padding: 36px 28px;
  }

  .step-line {
    display: none;
  }

  .tab-panel.is-active {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tab-visual {
    order: -1;
  }

  .price-card.is-featured {
    transform: none;
  }

  .price-card.is-featured:hover {
    transform: translateY(-5px);
  }

  .section {
    padding: 76px 0;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }

  .announce-inner {
    padding-right: 34px;
  }

  .announce p {
    font-size: 12.5px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero-actions .btn {
    flex: 1;
  }

  .app-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .app-kpis .kpi:last-child {
    grid-column: 1 / -1;
  }

  .cloud-logos {
    gap: 16px 30px;
  }

  .cloud-logo {
    font-size: 18px;
  }

  .tab-btns {
    width: 100%;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 13.5px;
  }

  .cta-inner {
    padding: 48px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}