@font-face {
  font-family: "Inter Variable";
  src:
    url("./Inter,Ubuntu/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_18pt-Regular.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_24pt-Regular.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_28pt-Regular.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Variable";
  src:
    url("./Inter,Ubuntu/Inter/static/Inter_18pt-Medium.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_24pt-Medium.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_28pt-Medium.ttf") format("truetype");
  font-weight: 500 599;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Variable";
  src:
    url("./Inter,Ubuntu/Inter/static/Inter_18pt-Bold.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_24pt-Bold.ttf") format("truetype"),
    url("./Inter,Ubuntu/Inter/static/Inter_28pt-Bold.ttf") format("truetype");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070c09;
  --bg-soft: #0d1410;
  --surface: rgba(15, 22, 17, 0.84);
  --surface-solid: #111a14;
  --text: #f6f7fb;
  --muted: #b7c0b5;
  --primary: #166534;
  --accent: #22c55e;
  --accent-linear: #39d98a;
  --border: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
  --ui-font-family: "Inter Variable", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --ui-text-color: rgb(208, 214, 224);
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  font-family: var(--ui-font-family);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  background:
    radial-gradient(90rem 50rem at 20% 10%, rgba(22, 101, 52, 0.10), transparent 60%),
    radial-gradient(80rem 50rem at 80% 60%, rgba(14, 72, 38, 0.09), transparent 60%),
    radial-gradient(60rem 30rem at 50% -5%, rgba(22, 101, 52, 0.18), transparent 63%),
    radial-gradient(45rem 20rem at 50% 20%, rgba(34, 197, 94, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(7, 12, 9, 0.92), rgba(7, 12, 9, 0.98)),
    var(--bg);
}

a { color: var(--text); text-decoration: none; }
h1, h2, h3 { margin: 0 0 0.8rem; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 2.15vw, 2.08rem); font-weight: 650; }
ul { margin: 0; padding-left: 1rem; }
li + li { margin-top: 0.38rem; }
p, li {
  font-family: var(--ui-font-family);
  color: #d6ddd4;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.62;
}

.container {
  width: min(1480px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 13, 0.74);
  backdrop-filter: blur(12px) saturate(1.2);
}

.nav-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 0.9rem;
  font-weight: 520;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  background: transparent;
}

.nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.nav a {
  color: var(--ui-text-color);
  font-family: var(--ui-font-family);
  font-size: 13px;
  font-weight: 510;
  line-height: normal;
  padding: 0.34rem 0.55rem;
  border-radius: 8px;
  transition: color .2s, background-color .2s;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero { padding: 5.8rem 0 3rem; }
.hero-interactive {
  position: relative;
  overflow: hidden;
}

.hero-interactive::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -150px;
  height: 520px;
  pointer-events: none;
  background:
    radial-gradient(1200px 260px at 50% 20%, rgba(57, 217, 138, 0.32), transparent 70%),
    radial-gradient(980px 240px at 50% 32%, rgba(57, 217, 138, 0.18), transparent 72%),
    radial-gradient(760px 200px at 50% 42%, rgba(57, 217, 138, 0.10), transparent 74%);
  filter: blur(6px);
  z-index: 0;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(620px 290px at 50% 8%, rgba(255, 255, 255, 0.07), transparent 76%),
    radial-gradient(1100px 180px at 50% 80%, rgba(255, 255, 255, 0.1), transparent 74%);
  z-index: 0;
}

.hero-interactive .container {
  position: relative;
  z-index: 1;
}

.hero-stage {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.hero-interactive .hero-copy h1,
.hero-interactive .hero-copy .lead,
.hero-interactive .hero-preview,
.hero-interactive .hero-note {
  will-change: transform, opacity, filter;
}

/* Linear-like hero entrance sequence */
.hero-interactive .hero-copy h1,
.hero-interactive .hero-copy .lead {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
}

.hero-interactive .hero-note {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(10px);
}

.hero-interactive .hero-preview {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(14px);
  box-shadow:
    0 60px 110px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.anim-ready .hero-interactive .hero-copy h1 {
  animation: hero-title-in 1150ms cubic-bezier(.2,.8,.2,1) 140ms both;
}

.anim-ready .hero-interactive .hero-copy .lead {
  animation: hero-lead-in 1150ms cubic-bezier(.2,.8,.2,1) 340ms both;
}

.anim-ready .hero-interactive .hero-preview {
  animation: hero-window-in 1350ms cubic-bezier(.2,.8,.2,1) 820ms both;
}

.anim-ready .hero-interactive .hero-note {
  animation: hero-note-in 950ms cubic-bezier(.2,.8,.2,1) 1480ms both;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(10px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hero-lead-in {
  from { opacity: 0; transform: translateY(10px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hero-note-in {
  from { opacity: 0; transform: translateY(12px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes hero-window-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(14px);
  }
  60% { opacity: 1; filter: blur(2px); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-interactive .hero-copy h1,
  .hero-interactive .hero-copy .lead,
  .hero-interactive .hero-preview,
  .hero-interactive .hero-note {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}

.hero-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 13px;
  color: var(--ui-text-color);
  margin-bottom: 0.95rem;
  font-weight: 510;
  line-height: normal;
}

h1 {
  font-family: "Inter Variable", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: rgb(247, 248, 248);
  font-size: 64px;
  font-weight: 510;
  letter-spacing: -0.03em;
  line-height: 64px;
  max-width: 22ch;
  margin-bottom: 0.7rem;
}

.lead {
  color: #c9d3c7;
  max-width: 50ch;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 450;
}

.hero-note {
  align-self: center;
  display: inline-flex;
  gap: 0.4rem;
  color: #eef2ef;
  font-size: 12px;
  white-space: nowrap;
  margin-top: 2px;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.hero-note span { color: #8f9990; }

.hero-note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 248, 246, 0.92);
  box-shadow: 0 0 0 0 rgba(245, 248, 246, 0.34);
  align-self: center;
  animation: hero-pulse 1400ms ease-out infinite;
}

@keyframes hero-pulse {
  0% { transform: scale(0.82); box-shadow: 0 0 0 0 rgba(245, 248, 246, 0.32); opacity: .92; }
  55% { transform: scale(1); box-shadow: 0 0 0 10px rgba(245, 248, 246, 0); opacity: 1; }
  100% { transform: scale(0.86); box-shadow: 0 0 0 0 rgba(245, 248, 246, 0); opacity: .92; }
}

.hero-note:hover {
  color: rgba(245, 248, 246, 0.98);
  transform: translateY(-1px);
}

.hero-cta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-preview {
  position: relative;
  margin-top: 0.3rem;
  min-height: 500px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, rgba(14, 16, 18, 0.98), rgba(9, 11, 12, 0.98));
  padding: 0;
  overflow: hidden;
}

.linear-ui {
  height: 100%;
  min-height: 500px;
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(255,255,255,0.03), transparent 58%),
    linear-gradient(180deg, rgba(12, 14, 16, 0.98), rgba(8, 10, 11, 0.98));
}

.linear-sidebar {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 14px 12px;
  color: rgba(240, 242, 246, 0.9);
  background: rgba(0,0,0,0.18);
}

.linear-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  padding: 8px 8px;
  border-radius: 10px;
}

.linear-brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245,248,246,0.95);
  box-shadow: 0 0 0 4px rgba(245,248,246,0.10);
}

.linear-nav {
  margin-top: 10px;
  display: grid;
  gap: 2px;
}

.linear-nav a {
  font-size: 12px;
  color: rgba(183, 192, 181, 0.92);
  padding: 8px 10px;
  border-radius: 10px;
}

.linear-nav a.is-active {
  color: rgba(245,248,246,0.95);
  background: rgba(255,255,255,0.05);
}

.linear-sep {
  height: 1px;
  margin: 8px 8px;
  background: rgba(255,255,255,0.08);
}

.linear-main {
  position: relative;
  padding: 12px 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.linear-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 2px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.linear-breadcrumbs {
  font-size: 12px;
  color: rgba(183, 192, 181, 0.9);
}
.linear-breadcrumbs span { opacity: .55; padding: 0 6px; }

.linear-actions {
  display: inline-flex;
  gap: 8px;
}

.pill {
  font-size: 11px;
  color: rgba(245,248,246,0.88);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 4px 8px;
  border-radius: 999px;
}

.linear-content { padding: 14px 4px 0; }

.linear-dash {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dash-card {
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 10px 10px;
  cursor: pointer;
  color: rgba(245,248,246,0.9);
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.dash-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.dash-card.is-active {
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dash-label {
  font-size: 11px;
  color: rgba(183,192,181,0.9);
}

.dash-delta {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  color: rgba(245,248,246,0.85);
}

.dash-delta.up { color: rgba(245,248,246,0.92); }
.dash-delta.good { color: rgba(245,248,246,0.92); }
.dash-delta.neutral { color: rgba(183,192,181,0.92); }

.dash-value {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.dash-sub {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(183,192,181,0.82);
}

.dash-spark {
  margin-top: 8px;
  height: 26px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  align-items: end;
}

.dash-spark span {
  display: block;
  height: 30%;
  border-radius: 6px 6px 2px 2px;
  background: rgba(245,248,246,0.18);
}

.dash-card:nth-child(1) .dash-spark span:nth-child(1) { height: 28%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(2) { height: 42%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(3) { height: 36%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(4) { height: 55%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(5) { height: 62%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(6) { height: 68%; }
.dash-card:nth-child(1) .dash-spark span:nth-child(7) { height: 72%; }

.dash-card:nth-child(2) .dash-spark span:nth-child(1) { height: 22%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(2) { height: 34%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(3) { height: 44%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(4) { height: 58%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(5) { height: 70%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(6) { height: 78%; }
.dash-card:nth-child(2) .dash-spark span:nth-child(7) { height: 82%; }

.dash-mini {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.dash-mini > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dash-mini > div:first-child { border-top: 0; padding-top: 0; }

.dash-mini .k {
  font-size: 11px;
  color: rgba(183,192,181,0.9);
}
.dash-mini .v {
  font-size: 12px;
  font-weight: 650;
  color: rgba(245,248,246,0.9);
}

.linear-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.linear-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 650;
  color: rgba(247, 248, 248, 0.98);
}

.linear-star { opacity: .55; font-size: 13px; }

.linear-desc {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(183, 192, 181, 0.92);
  max-width: 64ch;
}

.linear-section { margin-top: 18px; }
.linear-section-title {
  font-size: 12px;
  color: rgba(245,248,246,0.85);
  font-weight: 650;
  margin-bottom: 10px;
}

.linear-activity { display: grid; gap: 10px; }
.activity-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(245,248,246,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.avatar.alt {
  background: rgba(255,255,255,0.03);
}

.activity-line {
  font-size: 12px;
  color: rgba(214, 221, 212, 0.95);
}
.activity-line strong { color: rgba(245,248,246,0.95); font-weight: 650; }
.time { opacity: .55; }

.activity-sub {
  font-size: 12px;
  color: rgba(183, 192, 181, 0.9);
  margin-top: 2px;
}

.linear-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 10px;
}

.metric-name {
  font-size: 11px;
  color: rgba(183, 192, 181, 0.9);
}
.metric-value {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(245,248,246,0.95);
  letter-spacing: -0.02em;
}
.metric-hint {
  margin-top: 2px;
  font-size: 11px;
  color: rgba(183, 192, 181, 0.82);
}

.linear-right {
  padding: 12px 12px;
  background: rgba(0,0,0,0.18);
}

.right-block {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 10px;
}

.right-block + .right-block { margin-top: 10px; }

.right-title {
  font-size: 11px;
  color: rgba(245,248,246,0.82);
  font-weight: 650;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.right-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(214,221,212,0.92);
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.right-row:first-of-type { border-top: 0; padding-top: 2px; }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,248,246,0.92);
  box-shadow: 0 0 0 4px rgba(245,248,246,0.10);
}

.right-icon { opacity: .7; width: 16px; display: inline-flex; justify-content: center; }

.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.label {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(245,248,246,0.85);
}

.linear-float {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: min(320px, 42%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(16, 18, 20, 0.92);
  box-shadow: 0 28px 90px rgba(0,0,0,0.55);
  overflow: hidden;
}

.float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,248,246,0.9);
  font-size: 12px;
}

.float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,248,246,0.92);
  box-shadow: 0 0 0 4px rgba(245,248,246,0.10);
}

.float-x { opacity: .6; }

.float-body {
  padding: 10px 10px;
  display: grid;
  gap: 10px;
}

.float-item {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 10px;
}

.float-title {
  font-size: 11px;
  color: rgba(245,248,246,0.85);
  font-weight: 650;
  margin-bottom: 4px;
}

.float-text {
  font-size: 12px;
  color: rgba(183, 192, 181, 0.9);
  line-height: 1.45;
}

.float-input {
  padding: 10px 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(183, 192, 181, 0.65);
  font-size: 12px;
}

.hero-preview:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-preview:focus-visible {
  outline: none;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 3px rgba(245, 248, 246, 0.24);
}

.hero-preview::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -36px;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(245, 248, 246, 0.4), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.preview-nav,
.preview-main,
.preview-side {
  padding: 1rem;
}

.preview-nav {
  border-right: 1px solid var(--line);
}

.preview-nav p,
.preview-title {
  color: #f4f7f4;
  font-size: 14px;
  font-weight: 600;
}

.preview-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.preview-nav li {
  font-size: 13px;
  color: #9ca69f;
  margin-bottom: 0.5rem;
}

.preview-main {
  border-right: 1px solid var(--line);
}

.preview-text {
  font-size: 13px;
  color: #9ea7a0;
  max-width: 46ch;
}

.preview-bars {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.45rem;
  height: 120px;
}

.preview-bars span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #2fb561, #166534);
}

.preview-bars span:nth-child(1) { height: 30%; }
.preview-bars span:nth-child(2) { height: 50%; }
.preview-bars span:nth-child(3) { height: 62%; }
.preview-bars span:nth-child(4) { height: 78%; }
.preview-bars span:nth-child(5) { height: 92%; }

.preview-side p {
  font-size: 13px;
  color: #a8b1aa;
  margin: 0 0 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #1f8a48, #166534);
  color: #fff;
  padding: 0.7rem 1.08rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform .2s, filter .2s, background-color .2s;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-small { padding: 0.5rem 0.85rem; font-size: 0.86rem; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text);
}

.section { padding: 3.2rem 0; }
.section .container {
  position: relative;
}
.section .container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1.35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section-text {
  color: var(--muted);
  margin-top: 1.2rem;
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.65;
}

.section-linear .container::before { display: none; }

.section-linear-head {
  max-width: 920px;
  margin-bottom: 2.1rem;
}

.section-linear-head h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  letter-spacing: -0.03em;
}

.section-linear-sub {
  margin: .8rem 0 0;
  color: rgba(183,192,181,0.92);
  font-size: 15px;
  line-height: 1.55;
  max-width: 80ch;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.principles-seamless {
  gap: 0;
  border-top: 0;
  border-bottom: 0;
}

.principle {
  position: relative;
  min-height: 420px;
}

.principle + .principle {
  border-left: 1px solid rgba(255,255,255,0.08);
}

.principle-illus {
  height: 270px;
  padding: 22px 22px 0;
  display: grid;
  place-items: center;
  background: transparent;
}

.principle-illus svg {
  width: min(320px, 100%);
  height: auto;
  opacity: 0.9;
}

.illus-cube,
.illus-blocks,
.illus-steps {
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

.illus-cube {
  filter: drop-shadow(0 0 0 rgba(57, 217, 138, 0));
  animation: illus-cube-spin 10s ease-in-out infinite;
}

@keyframes illus-cube-spin {
  0% {
    transform: rotate(-4deg) translateY(2px) scale(0.995);
    filter: drop-shadow(0 0 0 rgba(57, 217, 138, 0));
  }
  40% {
    transform: rotate(0deg) translateY(-6px) scale(1.01);
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.35));
  }
  55% {
    transform: rotate(4deg) translateY(-7px) scale(1.015);
    filter: drop-shadow(0 0 26px rgba(57, 217, 138, 0.16));
  }
  100% {
    transform: rotate(-4deg) translateY(2px) scale(0.995);
    filter: drop-shadow(0 0 0 rgba(57, 217, 138, 0));
  }
}

.illus-blocks {
  animation: illus-blocks-float 7s ease-in-out infinite;
}

@keyframes illus-blocks-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.accent-link {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: illus-link-draw 3.6s ease-in-out infinite;
}

@keyframes illus-link-draw {
  0% { stroke-dashoffset: 120; opacity: .35; }
  35% { stroke-dashoffset: 0; opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: .85; }
  100% { stroke-dashoffset: -120; opacity: .35; }
}

.illus-steps .step-line {
  transform-box: fill-box;
  transform-origin: 0% 50%;
  animation: illus-step-fold 4.8s ease-in-out infinite;
  opacity: .9;
}

.illus-steps .step-line:nth-of-type(1) { animation-delay: 0ms; }
.illus-steps .step-line:nth-of-type(2) { animation-delay: 140ms; }
.illus-steps .step-line:nth-of-type(3) { animation-delay: 280ms; }
.illus-steps .step-line:nth-of-type(4) { animation-delay: 420ms; }
.illus-steps .step-line:nth-of-type(5) { animation-delay: 560ms; }
.illus-steps .step-line:nth-of-type(6) { animation-delay: 700ms; }

@keyframes illus-step-fold {
  0% { transform: scaleX(0.65) translateX(0); opacity: .55; }
  28% { transform: scaleX(1) translateX(0); opacity: 1; }
  72% { transform: scaleX(1) translateX(0); opacity: 1; }
  100% { transform: scaleX(0.65) translateX(0); opacity: .55; }
}

@media (prefers-reduced-motion: reduce) {
  .illus-cube,
  .illus-blocks,
  .illus-steps .step-line,
  .accent-link {
    animation: none !important;
  }
}

.stroke-main {
  stroke: rgba(245,248,246,0.22);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stroke-accent {
  stroke: rgba(57, 217, 138, 0.38);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-body {
  padding: 20px 22px 22px;
  border-top: 0;
  background: transparent;
}

.principle-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(245,248,246,0.92);
}

.principle-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(183,192,181,0.92);
  max-width: 52ch;
}

.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.hero-preview.card:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .linear-ui { grid-template-columns: 1fr; }
  .linear-sidebar, .linear-right { display: none; }
  .linear-main { border-right: 0; }
  .linear-float { width: min(320px, calc(100% - 24px)); right: 12px; }
  .linear-metrics { grid-template-columns: 1fr; }
  .linear-dash { grid-template-columns: 1fr; }
}

.section-split .container::before,
.section-steps .container::before,
.section-final .container::before {
  display: none;
}

.section-split,
.section-steps,
.section-final {
  padding-top: 4.2rem;
}

.split-head,
.steps-head {
  max-width: 920px;
  margin-bottom: 1.6rem;
}

.split-sub,
.steps-sub {
  margin: .75rem 0 0;
  color: rgba(183,192,181,0.92);
  font-size: 15px;
  line-height: 1.55;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}

.split-col {
  padding-top: 1rem;
}

.split-col + .split-col {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 2rem;
}

.split-title {
  margin: 0 0 .9rem;
  font-size: 14px;
  font-weight: 650;
  color: rgba(245,248,246,0.92);
}

.split-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem;
}

.split-list li {
  font-size: 13px;
  color: rgba(183,192,181,0.92);
  padding-left: 18px;
  position: relative;
}

.split-list-click {
  gap: .45rem;
}

.split-item {
  width: 100%;
  text-align: left;
  font: inherit;
  color: rgba(183,192,181,0.92);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease, opacity .15s ease;
}

.split-item:hover {
  color: rgba(245,248,246,0.94);
  transform: translateY(-1px);
}

.split-item:focus-visible {
  outline: none;
  color: rgba(245,248,246,0.98);
}

.split-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(57, 217, 138, 0.34);
  box-shadow: 0 0 0 4px rgba(57, 217, 138, 0.10);
}

.learn-actions {
  margin-top: 1rem;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 450ms ease;
}

.drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: min(520px, calc(100% - 36px));
  height: auto;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(255,255,255,0.06), transparent 58%),
    linear-gradient(180deg, rgba(12, 14, 16, 0.98), rgba(8, 10, 11, 0.98));
  box-shadow: -28px 0 110px rgba(0,0,0,0.55);
  overflow: hidden;
  transform: translateX(110%) scale(0.97);
  transition: transform 520ms cubic-bezier(.16,1,.3,1), opacity 520ms ease;
  opacity: 0;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.drawer-kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(183,192,181,0.65);
  margin-bottom: 6px;
}

.drawer-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(245,248,246,0.92);
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(245,248,246,0.92);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.drawer-close:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

.drawer-body {
  padding: 14px 14px 18px;
  height: calc(100% - 72px);
  overflow: auto;
}

@media (max-width: 700px) {
  .drawer-panel {
    right: 12px;
    left: 12px;
    width: auto;
    top: 12px;
    bottom: 12px;
    border-radius: 16px;
  }
}

.drawer-content {
  color: rgba(183,192,181,0.92);
  font-size: 13px;
  line-height: 1.65;
}

.drawer-content h3 {
  margin: 16px 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(245,248,246,0.92);
  letter-spacing: -0.01em;
}

.drawer-content p {
  margin: 0 0 10px;
  color: rgba(183,192,181,0.92);
  font-size: 13px;
  line-height: 1.65;
}

.drawer-content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.drawer-content li {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  padding: 10px 10px;
}

.drawer-content li strong {
  display: block;
  color: rgba(245,248,246,0.92);
  font-weight: 700;
  margin-bottom: 4px;
}

.drawer-foot {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.drawer-link {
  color: rgba(245,248,246,0.92);
  font-size: 13px;
  font-weight: 650;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding: .3rem 0;
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}

.drawer-link:hover {
  border-color: rgba(57, 217, 138, 0.28);
  transform: translateY(-1px);
}

.pricing {
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-tier {
  font-size: 13px;
  font-weight: 650;
  color: rgba(245,248,246,0.92);
}

.price-range {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(183,192,181,0.88);
}

.price-num {
  font-size: 14px;
  font-weight: 750;
  color: rgba(245,248,246,0.92);
  letter-spacing: -0.01em;
}

.pricing-note {
  margin: 12px 0 0;
  color: rgba(183,192,181,0.82);
  font-size: 12px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.4rem 0 0;
  position: relative;
}

.step-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 1.2rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(183,192,181,0.8);
  transition: border-color .3s, background .3s, color .3s, box-shadow .3s;
}

.step-icon svg {
  width: 18px;
  height: 18px;
}

.step-icon--accent {
  border-color: rgba(57,217,138,0.35);
  background: rgba(57,217,138,0.07);
  color: rgba(57,217,138,0.9);
  box-shadow: 0 0 18px rgba(57,217,138,0.12);
}

.step:hover .step-icon {
  border-color: rgba(57,217,138,0.4);
  background: rgba(57,217,138,0.06);
  color: rgba(57,217,138,0.9);
  box-shadow: 0 0 20px rgba(57,217,138,0.1);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(57,217,138,0.25), rgba(255,255,255,0.06));
  margin-left: 10px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(57,217,138,0.6);
  margin-bottom: 2px;
}

.step-title {
  font-size: 14px;
  font-weight: 650;
  color: rgba(245,248,246,0.92);
  line-height: 1.4;
  transition: color .25s;
}

.step:hover .step-title {
  color: rgba(245,248,246,1);
}

.step-text {
  font-size: 12.5px;
  color: rgba(183,192,181,0.75);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .step:last-child { border-bottom: 0; }
  .step-left {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    width: auto;
  }
  .step-connector {
    flex: 0;
    width: 1px;
    height: 100%;
    min-height: 30px;
    background: linear-gradient(180deg, rgba(57,217,138,0.25), rgba(255,255,255,0.06));
    margin-left: 0;
    margin-top: 8px;
  }
  .step:last-child .step-connector { display: none; }
}

.section-final {
  padding-bottom: 4.8rem;
}

.final {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

.final-copy p {
  margin: .65rem 0 0;
  color: rgba(183,192,181,0.92);
  font-size: 14px;
  line-height: 1.55;
  max-width: 70ch;
}

.final-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.final-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .55rem 0;
  color: rgba(245,248,246,0.92);
  font-size: 13px;
  font-weight: 650;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}

.final-link:hover {
  color: rgba(245,248,246,0.98);
  border-color: rgba(57, 217, 138, 0.28);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .split-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .split-col + .split-col { border-left: 0; padding-left: 0; }
  .final { flex-direction: column; align-items: flex-start; }
  .principles-seamless { border-bottom: 0; }
  .principle + .principle { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
}

.dashboard {
  padding: 1.3rem;
  background:
    radial-gradient(130% 80% at 15% 0%, rgba(22, 101, 52, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--surface-solid);
}

.dashboard h2 { font-size: 1.18rem; font-weight: 630; margin-bottom: .55rem; }

.dashboard .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 1rem;
}

.dashboard .metrics > div {
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.dashboard .metrics p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.dashboard-feed {
  margin-top: .95rem;
  padding-top: .95rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .5rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #c8cddd;
  font-size: .84rem;
}

.feed-item p {
  margin: 0;
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #53d486, #166534);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.metric {
  font-size: 1.42rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.015em;
}

.muted { color: var(--muted); }
.muted {
  font-family: var(--ui-font-family);
  color: var(--ui-text-color);
  font-size: 13px;
  font-weight: 510;
  line-height: normal;
}

.features-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.features-grid .card,
.timeline .card {
  min-height: 98px;
  display: flex;
  align-items: center;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.price {
  font-size: 2.02rem;
  font-weight: 700;
  margin: .3rem 0 .6rem;
  letter-spacing: -0.02em;
}

.price span {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 500;
}

.badge {
  display: inline-block;
  font-size: .73rem;
  color: #092014;
  background: #78e39f;
  padding: .16rem .5rem;
  border-radius: 999px;
  font-weight: 700;
}

.popular {
  border-color: rgba(34, 197, 94, 0.45);
  background:
    radial-gradient(90% 50% at 0% 0%, rgba(34,197,94,0.14), transparent 42%),
    var(--surface);
}

.cta-card {
  text-align: center;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(22, 101, 52, 0.2), transparent 60%),
    linear-gradient(145deg, rgba(34, 197, 94, 0.08), rgba(22, 101, 52, 0.06)),
    var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: .9rem;
}

.form {
  display: grid;
  gap: .84rem;
}

.form label,
.cf label {
  display: grid;
  gap: .38rem;
  font-family: var(--ui-font-family);
  font-size: 13px;
  font-weight: 510;
  line-height: normal;
  color: var(--ui-text-color);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: .68rem .78rem;
  font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.8);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}



.contact-card p { color: var(--muted); }
.contact-card strong { color: var(--text); }

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.kpi-strip { display: none; }

.kpi-strip.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.kpi-strip-inner {
  margin-top: .45rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(13, 15, 22, 0.88);
  backdrop-filter: blur(10px);
  min-height: 44px;
  padding: .5rem .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: .84rem;
}

.kpi-strip-inner strong { color: var(--text); }

.kpi-strip-inner a {
  color: #9ce7b8;
  font-weight: 600;
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ui-text-color);
  font-family: var(--ui-font-family);
  font-size: 13px;
  font-weight: 510;
  line-height: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-head,
  .hero-preview,
  .cards-3,
  .cards-2,
  .contact-grid,
  .features-grid,
  .timeline,
  .principles {
    grid-template-columns: 1fr;
  }

  .preview-nav,
  .preview-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .container { width: min(1480px, calc(100% - 1.4rem)); }
  .hero { padding-top: 3.5rem; }
  h1 {
    font-size: 42px;
    line-height: 44px;
    max-width: 18ch;
  }
  .section .container::before { top: -1rem; }
  .nav-wrap { flex-wrap: wrap; padding: 0.7rem 0; }
  .nav { order: 3; width: 100%; justify-content: center; }
  .brand-logo { width: 30px; height: 30px; }
  .kpi-strip { top: 118px; }
  .kpi-strip-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    padding-inline: .7rem;
  }
}

/* ─── iPhone mockup ─────────────────────────────────── */
.split-col-iphone {
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 1.5rem;
}

.iphone-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/*
  Мокап 2000×2000px (квадратный).
  Телефон занимает ~55% ширины и ~80% высоты изображения.
  Ширина телефона на изображении ≈ 860px из 2000 → 43%.
  Фиксируем ширину враппера = 340px — телефон будет чётким и крупным.
*/
.iphone-mockup {
  position: relative;
  width: 780px;
  flex-shrink: 0;
  filter: brightness(0.85) saturate(0.8);
}

.iphone-img {
  width: 100%;
  display: block;
  pointer-events: none;
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
}

/*
  Экран телефона внутри мокапа.
  Мокап 2000×2000, телефон центрирован.
  Левый край экрана ≈ 570px → 28.5%
  Правый край ≈ 1430px → right = (2000-1430)/2000 = 28.5%
  Верх экрана (под notch) ≈ 290px → 14.5%
  Низ (home bar) ≈ 1880px → bottom = (2000-1880)/2000 = 6%
*/
.iphone-screen {
  position: absolute;
  top: 6.8%;
  left: 29.75%;
  right: 29.8%;
  bottom: 2.5%;
  border-radius: 36px;
  overflow: hidden;
  z-index: 3;
  background: transparent;
  /* жёсткая обрезка по border-radius во всех браузерах */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

.iphone-slides {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.iphone-slides.slide-1 {
  transform: translateX(-50%);
}

.iphone-slide {
  width: 50%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.iphone-slide-inner {
  padding: 20% 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
}

.iph-section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(57, 217, 138, 1);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.iph-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.iph-list li {
  font-size: 13px;
  color: rgba(214,221,212,0.95);
  line-height: 1.4;
  padding-left: 15px;
  position: relative;
  margin: 0;
}

.iph-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(57, 217, 138, 0.7);
}

.iph-pricing-block {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 10px;
  flex-shrink: 0;
}

.iph-pricing-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(245,248,246,0.55);
  margin-bottom: 7px;
}

.iph-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.iph-price-row:first-of-type { border-top: 0; padding-top: 0; }

.iph-tier {
  font-size: 11px;
  color: rgba(183,192,181,0.9);
  line-height: 1.35;
}

.iph-price {
  font-size: 12px;
  font-weight: 700;
  color: rgba(245,248,246,0.97);
  white-space: nowrap;
}

.iph-note {
  margin-top: 5px;
  font-size: 8px;
  color: rgba(183,192,181,0.5);
  line-height: 1.3;
}

/* dots */
.iphone-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.iphone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.iphone-dot.is-active {
  background: rgba(57, 217, 138, 0.85);
  transform: scale(1.35);
}

@media (max-width: 1400px) {
  .iphone-mockup { width: 620px; }
}

@media (max-width: 1100px) {
  .iphone-mockup { width: 480px; }
  .iphone-screen { border-radius: 26px; }
  .split-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .split-col-iphone { display: none; }
}

/* ─── Knowledge Base ─────────────────────────────────── */

.kb-hero {
  padding-bottom: 0;
}

.kb-hero-inner {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.kb-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 720;
  letter-spacing: -.03em;
  color: rgba(245,248,246,0.96);
  margin: 0 0 .75rem;
}

.kb-subtitle {
  font-size: 16px;
  color: rgba(183,192,181,0.85);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

/* ─── Article cards ─── */
.kb-articles .container {
  display: grid;
  gap: 1.4rem;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.kb-card {
  background:
    radial-gradient(110% 60% at 0% 0%, rgba(57,217,138,0.05), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 2rem 2rem 1.6rem;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .2s;
  outline: none;
}

.kb-card:hover, .kb-card:focus {
  border-color: rgba(57,217,138,0.28);
  background:
    radial-gradient(110% 60% at 0% 0%, rgba(57,217,138,0.09), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  transform: translateY(-2px);
}

.kb-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(57,217,138,0.85);
  background: rgba(57,217,138,0.08);
  border: 1px solid rgba(57,217,138,0.18);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 1rem;
}

.kb-card-title {
  font-size: 1.35rem;
  font-weight: 680;
  color: rgba(245,248,246,0.95);
  margin: 0 0 .85rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.kb-card-excerpt {
  font-size: 14px;
  color: rgba(183,192,181,0.85);
  line-height: 1.65;
  margin: 0 0 1.2rem;
  max-width: 72ch;
}

.kb-card-sections {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}

.kb-card-section {
  font-size: 11.5px;
  color: rgba(183,192,181,0.7);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
}

.kb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
}

.kb-card-read {
  font-size: 12px;
  color: rgba(183,192,181,0.55);
}

.kb-card-link {
  font-size: 13px;
  font-weight: 650;
  color: rgba(57,217,138,0.85);
  text-decoration: none;
  transition: color .2s;
}

.kb-card-link:hover { color: rgba(57,217,138,1); }

/* ─── CTA block ─── */
.kb-cta {
  padding-bottom: 4rem;
}

.kb-cta-inner {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.kb-cta-inner h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 680;
  letter-spacing: -.025em;
}

.kb-cta-inner p {
  margin: 0;
  font-size: 14px;
  color: rgba(183,192,181,0.85);
  line-height: 1.6;
}

.kb-cta-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.3rem;
  background: rgba(57,217,138,0.12);
  border: 1px solid rgba(57,217,138,0.3);
  border-radius: 10px;
  color: rgba(57,217,138,0.95);
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}

.btn-primary:hover {
  background: rgba(57,217,138,0.18);
  border-color: rgba(57,217,138,0.5);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(245,248,246,0.8);
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

/* ─── Article page ─── */
.kb-article-wrap {
  max-width: 760px;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.kb-back {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: rgba(183,192,181,0.7);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color .2s;
}

.kb-back:hover { color: rgba(57,217,138,0.85); }

.kb-article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.kb-article-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 720;
  letter-spacing: -.03em;
  color: rgba(245,248,246,0.97);
  margin: .75rem 0 .85rem;
  line-height: 1.25;
}

.kb-article-lead {
  font-size: 16px;
  color: rgba(183,192,181,0.85);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.kb-article-meta {
  font-size: 12px;
  color: rgba(183,192,181,0.5);
}

.kb-article-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.kb-article-body p {
  font-size: 15px;
  color: rgba(214,221,212,0.88);
  line-height: 1.75;
  margin: 0;
}

.kb-article-body h2 {
  font-size: 1.2rem;
  font-weight: 680;
  color: rgba(245,248,246,0.96);
  letter-spacing: -.02em;
  margin: 1rem 0 0;
}

.kb-callout {
  background: rgba(57,217,138,0.04);
  border: 1px solid rgba(57,217,138,0.14);
  border-left: 3px solid rgba(57,217,138,0.5);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
}

.kb-callout ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.kb-callout li {
  font-size: 14px;
  color: rgba(214,221,212,0.88);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.kb-callout li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(57,217,138,0.6);
}

.kb-table {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
}

.kb-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.kb-table-row:last-child { border-bottom: 0; }

.kb-table-row span {
  padding: .7rem 1rem;
  font-size: 13px;
  color: rgba(183,192,181,0.85);
}

.kb-table-head {
  background: rgba(255,255,255,0.03);
}

.kb-table-head span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(183,192,181,0.6);
}

.kb-table-row span.positive { color: rgba(57,217,138,0.9); }
.kb-table-row span.negative { color: rgba(248,113,113,0.8); }

/* 2-col table (for competition article) */
.kb-table-row:has(span:nth-child(2):last-child) {
  grid-template-columns: 1fr 1fr;
}

.kb-article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: radial-gradient(110% 60% at 0% 0%, rgba(57,217,138,0.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
}

.kb-article-cta h3 {
  font-size: 1.15rem;
  font-weight: 680;
  color: rgba(245,248,246,0.95);
  margin: 0 0 .5rem;
}

.kb-article-cta p {
  font-size: 14px;
  color: rgba(183,192,181,0.8);
  margin: 0 0 1.2rem;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .kb-card { padding: 1.4rem 1.2rem; }
  .kb-card-title { font-size: 1.1rem; }
  .kb-table-row { grid-template-columns: 1fr 1fr; }
  .kb-table-row span:nth-child(3) { display: none; }
  .kb-table-head span:nth-child(3) { display: none; }
}

/* ─── Pricing page ───────────────────────────────────── */
.pricing-hero {
  padding: 2.8rem 0 2.2rem;
}

.pricing-sub {
  font-size: 15px;
  color: rgba(183,192,181,0.75);
  margin-top: .4rem;
}

.pricing-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(57,217,138,0.7);
  margin-bottom: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.5rem;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.pricing-tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(245,248,246,0.95);
  letter-spacing: -.01em;
}

.pricing-tier-desc {
  font-size: 13px;
  margin: 0;
}

.pricing-range-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(183,192,181,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  padding: 3px 10px;
  margin-top: .3rem;
  width: fit-content;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.pricing-features li {
  font-size: 13px;
  color: rgba(214,221,212,0.85);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(57,217,138,0.45);
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1.1rem;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(245,248,246,0.85);
  transition: background .2s, border-color .2s, transform .15s, color .2s;
  margin-top: auto;
}

.pricing-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
  color: rgba(245,248,246,1);
}

.pricing-btn--accent {
  background: rgba(57,217,138,0.1);
  border-color: rgba(57,217,138,0.32);
  color: rgba(57,217,138,0.95);
}

.pricing-btn--accent:hover {
  background: rgba(57,217,138,0.18);
  border-color: rgba(57,217,138,0.52);
  color: rgba(57,217,138,1);
}

.pricing-cta {
  margin-top: 2rem;
}

.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-promo-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(57,217,138,0.85);
  background: rgba(57,217,138,0.08);
  border: 1px solid rgba(57,217,138,0.2);
  border-radius: 6px;
  padding: 2px 9px;
  margin-bottom: .6rem;
}

.promo-code {
  font-family: monospace;
  font-size: 1em;
  background: rgba(57,217,138,0.1);
  border: 1px solid rgba(57,217,138,0.2);
  border-radius: 5px;
  padding: 1px 7px;
  color: rgba(57,217,138,0.95);
}

/* ─── Contact form redesign ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Selected plan banner */
.selected-plan-banner {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(57,217,138,0.07);
  border: 1px solid rgba(57,217,138,0.22);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: 13px;
}

.selected-plan-label {
  color: rgba(183,192,181,0.7);
}

.selected-plan-name {
  font-weight: 700;
  color: rgba(57,217,138,0.95);
  text-transform: capitalize;
}

.selected-plan-change {
  margin-left: auto;
  font-size: 12px;
  color: rgba(183,192,181,0.6);
  text-decoration: none;
  transition: color .2s;
}

.selected-plan-change:hover { color: rgba(57,217,138,0.85); }

/* Form */
.cf {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.cf-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(183,192,181,0.85);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.cf-req { color: rgba(57,217,138,0.7); }

.cf-promo-hint {
  font-size: 11px;
  font-weight: 400;
  color: rgba(183,192,181,0.45);
}

.cf-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(245,248,246,0.92);
  padding: .68rem .85rem;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}

.cf-input::placeholder { color: rgba(183,192,181,0.35); }

.cf-input:focus {
  outline: none;
  border-color: rgba(57,217,138,0.55);
  background: rgba(57,217,138,0.03);
  box-shadow: 0 0 0 3px rgba(57,217,138,0.1);
}

.cf-textarea { resize: vertical; min-height: 90px; }

.cf-input--promo {
  font-family: monospace;
  font-size: 13px;
  letter-spacing: .04em;
}

/* Platform toggle */
.cf-toggle-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.cf-toggle,
.cf-service-opt,
.cf-budget-opt {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.cf-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(183,192,181,0.75);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.cf-toggle svg {
  width: 16px;
  height: 16px;
  opacity: .7;
}

.cf-toggle:hover {
  border-color: rgba(255,255,255,0.2);
  color: rgba(245,248,246,0.9);
}

.cf-toggle.is-active {
  border-color: rgba(57,217,138,0.45);
  background: rgba(57,217,138,0.09);
  color: rgba(57,217,138,0.95);
}

.cf-toggle.is-active svg { opacity: 1; }

/* Service selector */
.cf-service-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: .5rem;
}

.cf-service-opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color .2s, background .2s;
}

.cf-service-opt:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.cf-service-opt.is-active {
  border-color: rgba(57,217,138,0.45);
  background: rgba(57,217,138,0.08);
}

.cf-service-name {
  font-size: 13px;
  font-weight: 650;
  color: rgba(245,248,246,0.9);
}

.cf-service-opt.is-active .cf-service-name { color: rgba(57,217,138,0.95); }

.cf-service-price {
  font-size: 11px;
  color: rgba(183,192,181,0.55);
}

.cf-service-opt.is-active .cf-service-price { color: rgba(57,217,138,0.6); }

/* Budget pills */
.cf-budget-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.cf-budget-opt {
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(183,192,181,0.75);
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  white-space: nowrap;
}

.cf-budget-opt:hover {
  border-color: rgba(255,255,255,0.2);
  color: rgba(245,248,246,0.85);
}

.cf-budget-opt.is-active {
  border-color: rgba(57,217,138,0.45);
  background: rgba(57,217,138,0.09);
  color: rgba(57,217,138,0.95);
}

/* Submit */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.6rem;
  border-radius: 11px;
  border: 1px solid rgba(57,217,138,0.35);
  background: rgba(57,217,138,0.11);
  color: rgba(57,217,138,0.97);
  font-size: 14.5px;
  font-weight: 680;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  margin-top: .3rem;
}

.cf-submit svg {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.cf-submit:hover {
  background: rgba(57,217,138,0.18);
  border-color: rgba(57,217,138,0.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(57,217,138,0.12);
}

.cf-submit:hover svg { transform: translateX(3px); }

.cf-status {
  font-size: 13px;
  color: rgba(57,217,138,0.85);
  min-height: 1.2em;
  text-align: center;
  margin: 0;
}

/* Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 80px;
}

.contact-card { padding: 1.4rem; }
.contact-card h2 {
  font-size: 1rem;
  margin: 0 0 1.1rem;
  color: rgba(245,248,246,0.92);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(57,217,138,0.08);
  border: 1px solid rgba(57,217,138,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(57,217,138,0.8);
}

.contact-info-icon svg { width: 15px; height: 15px; }

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(183,192,181,0.5);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 13.5px;
  color: rgba(245,248,246,0.85);
  text-decoration: none;
  transition: color .2s;
}

a.contact-info-value:hover { color: rgba(57,217,138,0.9); }

.contact-why {
  padding: 1.3rem 1.4rem;
}

.contact-why h3 {
  font-size: .9rem;
  font-weight: 680;
  color: rgba(245,248,246,0.85);
  margin: 0 0 .9rem;
}

.contact-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.contact-why-list li {
  font-size: 13px;
  color: rgba(183,192,181,0.8);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.contact-why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(57,217,138,0.5);
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .cf-row { grid-template-columns: 1fr; }
  .pricing-cta-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .cards-3 { grid-template-columns: 1fr; }
  .cf-service-group { grid-template-columns: 1fr 1fr; }
}

/* ─── Services & Prices redesign ─────────────────────── */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}

/* LEFT tabs */
.sp-tabs {
  display: flex;
  flex-direction: column;
}

.sp-group-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(57,217,138,0.6);
  margin-bottom: .6rem;
}

.sp-tab {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  padding: .55rem .75rem;
  border-radius: 9px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .2s, border-color .2s;
  margin-bottom: .25rem;
  -webkit-appearance: none;
  appearance: none;
}

.sp-tab:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.sp-tab.is-active {
  background: rgba(57,217,138,0.07);
  border-color: rgba(57,217,138,0.22);
}

.sp-tab-icon {
  font-size: 14px;
  flex-shrink: 0;
  opacity: .75;
}

.sp-tab-text {
  font-size: 13.5px;
  color: rgba(214,221,212,0.82);
  flex: 1;
  line-height: 1.35;
}

.sp-tab.is-active .sp-tab-text {
  color: rgba(245,248,246,0.97);
}

.sp-tab-arrow {
  font-size: 12px;
  color: rgba(57,217,138,0.0);
  transition: color .2s, transform .2s;
}

.sp-tab:hover .sp-tab-arrow,
.sp-tab.is-active .sp-tab-arrow {
  color: rgba(57,217,138,0.7);
  transform: translateX(2px);
}

.sp-cta-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.4rem;
  font-size: 13px;
  font-weight: 650;
  color: rgba(57,217,138,0.7);
  text-decoration: none;
  transition: color .2s, gap .2s;
  gap: .3rem;
}

.sp-cta-link:hover {
  color: rgba(57,217,138,1);
  gap: .55rem;
}

/* RIGHT phone */
.sp-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Price accent inside phone */
.iph-price--lo {
  color: rgba(245,248,246,0.85);
}

.iph-price--mid {
  color: rgba(99,235,163,0.9);
  font-weight: 700;
}

.iph-price--best {
  color: rgba(57,217,138,1);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -.01em;
}

.iph-price-row--best {
  background: rgba(57,217,138,0.07);
  border-radius: 6px;
  margin: 2px -4px;
  padding-left: 4px;
  padding-right: 4px;
}

/* Pulse animation on best price */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57,217,138,0.25); }
  50%       { box-shadow: 0 0 0 4px rgba(57,217,138,0); }
}

.iph-price-row--best {
  animation: pulse-green 2.5s ease-in-out infinite;
}

/* Phone slide-in animation on tab click */
.iphone-slides {
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 980px) {
  .sp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sp-phone { display: none; }
}

/* ─── Bubble buttons ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:200,900');

.bubble-btn {
  position: relative;
  padding: 14px 32px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Source Code Pro", monospace;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  z-index: 0;
  overflow: hidden;
  color: #fff;
  transition: box-shadow .3s;
}

.bubble-btn--green {
  background-color: hsl(152, 69%, 35%);
  box-shadow: hsla(152, 60%, 45%, .45) 2px 2px 22px;
  --shadow-color: hsla(152, 60%, 45%, .45);
  --btn-color: hsl(152, 69%, 35%);
  --bg-color: #060d08;
  --text-color: #d1fae5;
}

.bubble-btn--ghost {
  background-color: hsl(210, 12%, 18%);
  box-shadow: hsla(210, 12%, 35%, .35) 2px 2px 22px;
  --shadow-color: hsla(210, 12%, 35%, .35);
  --btn-color: hsl(210, 12%, 18%);
  --bg-color: #0d0f11;
  --text-color: hsla(210, 50%, 85%, 1);
  color: rgba(245,248,246,0.88);
}

.bubble-btn:focus {
  outline-color: transparent;
  box-shadow: var(--btn-color) 2px 2px 22px;
}

.bubble-btn .right::after,
.bubble-btn::after {
  content: var(--content);
  display: block;
  position: absolute;
  white-space: nowrap;
  padding: 40px 40px;
  pointer-events: none;
}

.bubble-btn::after {
  font-weight: 200;
  top: -30px;
  left: -20px;
  color: var(--text-color);
}

.bubble-btn .right,
.bubble-btn .left {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.bubble-btn .right { left: 66%; }
.bubble-btn .left  { right: 66%; }

.bubble-btn .right::after {
  top: -30px;
  left: calc(-66% - 20px);
  background-color: var(--bg-color);
  color: transparent;
  transition: transform .4s ease-out;
  transform: translate(0, -90%) rotate(0deg);
}

.bubble-btn:hover .right::after {
  transform: translate(0, -47%) rotate(0deg);
}

.bubble-btn .right:hover::after {
  transform: translate(0, -50%) rotate(-7deg);
}

.bubble-btn .left:hover ~ .right::after {
  transform: translate(0, -50%) rotate(7deg);
}

/* bubbles */
.bubble-btn::before {
  content: '';
  pointer-events: none;
  opacity: .6;
  background:
    radial-gradient(circle at 20% 35%,  transparent 0, transparent 2px, var(--text-color) 3px, var(--text-color) 4px, transparent 4px),
    radial-gradient(circle at 75% 44%, transparent 0,  transparent 2px, var(--text-color) 3px, var(--text-color) 4px, transparent 4px),
    radial-gradient(circle at 46% 52%, transparent 0, transparent 4px, var(--text-color) 5px, var(--text-color) 6px, transparent 6px);
  width: 100%;
  height: 300%;
  top: 0;
  left: 0;
  position: absolute;
  animation: bubbles 5s linear infinite both;
}

@keyframes bubbles {
  from { transform: translate(0, 0); }
  to   { transform: translate(0, -66.666%); }
}

.final-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Mobile hamburger nav ──────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  order: 2;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .nav-burger { display: flex; }
  .nav-wrap { flex-wrap: nowrap; align-items: center; position: relative; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
    z-index: 100;
    order: unset;
    width: 100%;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.75rem 1.4rem;
    border-radius: 0;
    font-size: 15px;
  }
  .nav a:hover, .nav a[aria-current="page"] {
    background: rgba(255,255,255,0.05);
  }
  .kpi-strip { top: 56px; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES & PRICES — Premium Redesign
═══════════════════════════════════════════════════════ */

.sp-section {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.sp-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(34,197,94,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34,197,94,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.sp-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

/* ── Header ──────────────────────────────────────────── */
.sp-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.sp-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.sp-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent-linear);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(57,217,138,0.7);
  animation: sp-pulse 2.2s ease-in-out infinite;
}

@keyframes sp-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(57,217,138,0.7); }
  50%       { opacity: 0.6; box-shadow: 0 0 18px rgba(57,217,138,0.35); }
}

.sp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-linear);
}

.sp-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
  background: linear-gradient(135deg, #f6f7fb 30%, rgba(57,217,138,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sp-subtitle {
  font-size: 15px;
  color: rgba(183,192,181,0.8);
  margin: 0;
}

/* ── Tabs ────────────────────────────────────────────── */
.sp-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 3.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 5px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.sp-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 11px;
  border: none;
  background: transparent;
  color: rgba(183,192,181,0.7);
  font-family: var(--ui-font-family);
  font-size: 13px;
  font-weight: 520;
  cursor: pointer;
  transition: color 0.22s, background 0.22s;
}

.sp-tab-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.22s;
}

.sp-tab:hover {
  color: var(--text);
}

.sp-tab.is-active {
  background: rgba(34,197,94,0.1);
  color: var(--accent-linear);
  border: 1px solid rgba(34,197,94,0.2);
}

.sp-tab.is-active .sp-tab-icon {
  opacity: 1;
  color: var(--accent-linear);
}

/* ── Panels ──────────────────────────────────────────── */
.sp-panel {
  display: none;
  animation: sp-fadein 0.32s ease;
}
.sp-panel.is-active { display: block; }

@keyframes sp-fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Cards Grid ──────────────────────────────────────── */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.sp-cards--aso {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-inline: auto;
}

/* ── Card ────────────────────────────────────────────── */
.sp-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,22,17,0.55);
  backdrop-filter: blur(24px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
  overflow: hidden;
}

.sp-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}

.sp-card--featured {
  border-color: rgba(34,197,94,0.28);
  background: rgba(15,22,17,0.7);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), 0 20px 48px rgba(0,0,0,0.35);
  transform: translateY(-6px);
}

.sp-card--featured:hover {
  border-color: rgba(34,197,94,0.5);
  transform: translateY(-10px);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.25), 0 32px 64px rgba(0,0,0,0.45), 0 0 60px rgba(34,197,94,0.08);
}

.sp-featured-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Popular badge */
.sp-popular-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--accent-linear);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  width: fit-content;
}

/* Tier badge */
.sp-tier-badge {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.sp-tier-badge--muted { color: rgba(183,192,181,0.65); }
.sp-tier-badge--accent { color: var(--accent-linear); }

.sp-card-header { margin-bottom: 1.4rem; }

.sp-card-desc {
  font-size: 13.5px;
  color: rgba(183,192,181,0.65);
  line-height: 1.5;
  margin: 0;
}

/* Price */
.sp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.sp-price-from {
  font-size: 13px;
  color: rgba(183,192,181,0.5);
  margin-right: 2px;
}

.sp-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  align-self: flex-start;
  margin-top: 4px;
}
.sp-currency--accent { color: var(--accent-linear); }

.sp-price-num {
  font-size: 3.2rem;
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.sp-price-num--lg { font-size: 3.8rem; }

.sp-price-custom {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.sp-price-unit {
  font-size: 12px;
  color: rgba(183,192,181,0.5);
  align-self: flex-end;
  margin-bottom: 6px;
  max-width: 60px;
  line-height: 1.3;
}

.sp-range {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11.5px;
  font-weight: 520;
  color: rgba(183,192,181,0.6);
  margin-bottom: 1.6rem;
}
.sp-range--accent {
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.18);
  color: rgba(57,217,138,0.85);
}

/* Features */
.sp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(214,221,212,0.85);
  line-height: 1.45;
}

.sp-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sp-check::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid rgba(183,192,181,0.6);
  border-bottom: 1.5px solid rgba(183,192,181,0.6);
  transform: rotate(-45deg) translateY(-1px);
}

.sp-check--accent {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.3);
}
.sp-check--accent::after {
  border-color: var(--accent-linear);
}

/* CTA button */
.sp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 580;
  font-family: var(--ui-font-family);
  transition: all 0.22s;
  text-align: center;
  margin-top: auto;
}

.sp-cta--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
}
.sp-cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.sp-cta--accent {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--accent-linear);
}
.sp-cta--accent:hover {
  background: rgba(34,197,94,0.24);
  border-color: rgba(34,197,94,0.55);
  box-shadow: 0 0 20px rgba(34,197,94,0.12);
}

/* ── ASO icon ─────────────────────────────────────────── */
.sp-aso-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: rgba(183,192,181,0.7);
}
.sp-aso-icon svg { width: 20px; height: 20px; }
.sp-aso-icon--accent {
  background: rgba(34,197,94,0.09);
  border-color: rgba(34,197,94,0.2);
  color: var(--accent-linear);
}

/* ── Bottom strip ─────────────────────────────────────── */
.sp-bottom {
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sp-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(183,192,181,0.75);
}

.sp-promo svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent-linear);
}

.sp-promo strong {
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.03em;
}

.sp-full-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 560;
  color: var(--accent-linear);
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.06);
  transition: all 0.2s;
  white-space: nowrap;
}
.sp-full-link:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.35);
}
.sp-full-link svg {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.sp-full-link:hover svg { transform: translateX(3px); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 980px) {
  .sp-cards { grid-template-columns: 1fr 1fr; }
  .sp-card--featured { transform: none; }
  .sp-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 640px) {
  .sp-section { padding: 4.5rem 0 3rem; }
  .sp-cards { grid-template-columns: 1fr; }
  .sp-cards--aso { grid-template-columns: 1fr; max-width: 100%; }
  .sp-bottom { flex-direction: column; align-items: flex-start; }
  .sp-tab { padding: 8px 14px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   Language Switcher
═══════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 3px;
  order: 1;
  flex-shrink: 0;
}

.lang-btn {
  padding: 4px 9px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: rgba(183,192,181,0.6);
  font-family: var(--ui-font-family);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.18s, background 0.18s;
  line-height: 1.4;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.lang-btn.is-active {
  background: rgba(34,197,94,0.14);
  color: var(--accent-linear);
  border: 1px solid rgba(34,197,94,0.25);
}

@media (max-width: 700px) {
  .lang-switcher { order: 1; }
  .nav-burger    { order: 2; }
}

/* ─── Subtle ambient glow layers ─────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80vw 40vh at 15% 30%, rgba(20, 90, 45, 0.07), transparent 70%),
    radial-gradient(ellipse 60vw 50vh at 85% 70%, rgba(14, 68, 36, 0.06), transparent 70%);
}

/* ensure content sits above the pseudo glow */
body > * { position: relative; z-index: 1; }

/* ─── New Technology Installs card ──────────────────────── */
.pricing-card--ios-only {
  border-color: rgba(139, 92, 246, 0.35);
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(139, 92, 246, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(14, 11, 24, 0.98), rgba(9, 9, 15, 0.98));
  position: relative;
}

.pricing-ios-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(99, 57, 220, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pricing-ios-bubble::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px #a78bfa;
}

.pricing-range-pill--limit {
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.pricing-feature--warning::before { color: #fbbf24; content: '⚠'; margin-right: 0.4rem; }
.pricing-feature--safe::before    { color: #34d399; content: '✓'; margin-right: 0.4rem; }

.pricing-btn--ios {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  border-color: rgba(139, 92, 246, 0.6);
}
.pricing-btn--ios:hover {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  transform: translateY(-1px);
}

.cards-1 { display: grid; grid-template-columns: 1fr; max-width: 520px; }

/* Disclaimer */
.pricing-disclaimer {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  margin: 2.4rem 0 1.2rem;
  max-width: 680px;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* section label NEW badge */
.pricing-section-label--new {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-section-label--new::after {
  content: 'NEW';
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

/* Contact form — iOS-only service option */
.cf-service-opt--ios {
  border-color: rgba(139, 92, 246, 0.35);
  position: relative;
  overflow: hidden;
}
.cf-service-opt--ios::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.06), transparent);
  pointer-events: none;
}
.cf-service-opt--ios.is-active {
  border-color: rgba(139, 92, 246, 0.7);
  background: rgba(139, 92, 246, 0.12);
}
.cf-service-ios-tag {
  font-size: 0.6rem;
  color: #a78bfa;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}

/* ─── Final CTA buttons — clean replacement for broken bubble-btn ──── */
.final-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.final-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.final-btn--primary {
  background: linear-gradient(135deg, hsl(152, 60%, 32%), hsl(152, 55%, 26%));
  color: #d1fae5;
  box-shadow: 0 0 0 1px rgba(57,217,138,0.2), 0 4px 20px rgba(57,217,138,0.18);
}

.final-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(57,217,138,0.35), 0 8px 28px rgba(57,217,138,0.28);
  background: linear-gradient(135deg, hsl(152, 62%, 36%), hsl(152, 58%, 29%));
  color: #d1fae5;
}

.final-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: rgba(245,248,246,0.82);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.final-btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  color: rgba(245,248,246,0.96);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 6px 20px rgba(0,0,0,0.25);
}

.final-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Pricing page layout overhaul ─────────────────────────────────── */

/* Section labels — cleaner */
.pricing-section-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(57,217,138,0.65);
  margin-bottom: 1.2rem;
  padding-top: 2rem;
  padding-bottom: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: none;
}

/* iOS new tech: full-width spotlight card */
.cards-1 {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-bottom: 0.5rem;
}

/* 3-column install plans — tighter, better proportioned */
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

/* Popular card lifts up */
.pricing-card.popular {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(57,217,138,0.22),
    0 16px 48px rgba(0,0,0,0.45),
    0 0 32px rgba(57,217,138,0.07);
}

/* 2-column ASO services — equal height */
.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

/* Pricing card inner — flex, better spacing */
.pricing-card {
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:not(.popular):hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

/* Bigger, bolder price */
.price {
  font-size: 2.2rem;
  font-weight: 750;
  margin: 0.5rem 0 0.7rem;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price span { font-size: 0.82rem; font-weight: 500; color: var(--muted); }

/* Tier name bigger */
.pricing-tier-name {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Features list — dot is greener */
.pricing-features li::before {
  background: rgba(57,217,138,0.6);
  width: 5px;
  height: 5px;
  top: 7px;
}

/* CTA buttons inside cards — full width, no arrow */
.pricing-btn {
  margin-top: auto;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  padding: 0.65rem 1.1rem;
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .cards-3 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}
