/* applatenmaken.com — v4
   Modern dark-tech, polished. Linear / Vercel niveau.
   Met bento, features, compare-widget, foto-blokken, mock UI, animated counters.
*/

/* ─────────────────────────────────────────────── */
/* TOKENS                                           */
/* ─────────────────────────────────────────────── */

:root {
  --bg:        #08080B;
  --bg-1:      #0E0E12;
  --bg-2:      #131318;
  --bg-3:      #1B1B22;
  --bg-glow:   #2A2A35;

  --fg:        #FAFAFB;
  --fg-2:      #D4D4DA;
  --fg-3:      #8B8B95;
  --fg-4:      #5C5C67;

  --border:    rgba(255, 255, 255, 0.07);
  --border-2:  rgba(255, 255, 255, 0.13);
  --border-3:  rgba(255, 255, 255, 0.22);

  --indigo:    #6366F1;
  --indigo-2:  #818CF8;
  --purple:    #A855F7;
  --pink:      #EC4899;
  --cyan:      #22D3EE;
  --green:     #10B981;
  --green-2:   #6EE7B7;
  --red:       #EF4444;
  --amber:     #F59E0B;

  --accent:        #6366F1;
  --accent-2:      #818CF8;
  --accent-glow:   rgba(99, 102, 241, 0.35);

  --grad-from: #6366F1;
  --grad-mid:  #A855F7;
  --grad-to:   #EC4899;

  --sans: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', 'JetBrains Mono', Consolas, monospace;

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  --container: 1240px;
  --container-tight: 960px;
  --gutter: 32px;

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --r-1: 6px;
  --r-2: 10px;
  --r-3: 14px;
  --r-4: 20px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-2: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-3: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 32px rgba(99,102,241,0.18);
}

/* ─────────────────────────────────────────────── */
/* RESET                                            */
/* ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--fg); }

/* ─────────────────────────────────────────────── */
/* TYPOGRAPHY                                       */
/* ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
}

h1 { font-size: clamp(44px, 7vw, 96px); letter-spacing: -0.04em; line-height: 0.96; }
h2 { font-size: clamp(34px, 4.5vw, 56px); letter-spacing: -0.035em; line-height: 1.05; }
h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.02em; line-height: 1.2; font-weight: 600; }
h4 { font-size: 16px; letter-spacing: -0.01em; font-weight: 600; line-height: 1.3; }

p { color: var(--fg-2); }
.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--fg-2); font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-3);
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.gradient-text {
  background: linear-gradient(96deg, var(--grad-from) 0%, var(--grad-mid) 50%, var(--grad-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.mono { font-family: var(--mono); font-feature-settings: 'cv11'; }

a:not(.btn):not(.brand) {
  color: var(--fg);
  transition: color .18s var(--ease);
}
a:not(.btn):not(.brand):hover { color: var(--accent-2); }

/* ─────────────────────────────────────────────── */
/* LAYOUT                                           */
/* ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--tight { max-width: var(--container-tight); }

.section { padding-block: var(--s-10); position: relative; }
.section--sm { padding-block: var(--s-9); }
.section--xs { padding-block: var(--s-8); }
@media (max-width: 720px) {
  .section { padding-block: var(--s-9); }
  .section--sm { padding-block: var(--s-8); }
  .section--xs { padding-block: var(--s-7); }
}

.section-header { max-width: 720px; margin-bottom: var(--s-7); }
.section-header__lead { margin-top: var(--s-3); }
.section-header h2 { margin-top: var(--s-3); }

/* ─────────────────────────────────────────────── */
/* BUTTONS                                          */
/* ─────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), transform .12s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn:active { transform: scale(0.985); }

.btn--primary {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 4px 14px rgba(255,255,255,.06);
}
.btn--primary:hover {
  background: #FFF;
  box-shadow: 0 0 0 1px rgba(255,255,255,.4), 0 6px 22px rgba(255,255,255,.12);
}

.btn--secondary {
  background: var(--bg-2);
  color: var(--fg);
  border-color: var(--border-2);
}
.btn--secondary:hover {
  background: var(--bg-3);
  border-color: var(--border-3);
}

.btn--ghost {
  background: transparent;
  color: var(--fg-2);
  padding: 11px 8px;
}
.btn--ghost:hover { color: var(--fg); }

.btn--accent {
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid));
  color: var(--fg);
  box-shadow: 0 0 0 1px rgba(99,102,241,.3), 0 6px 24px rgba(99,102,241,.25);
}
.btn--accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 1px rgba(99,102,241,.5), 0 8px 32px rgba(99,102,241,.4);
}

.btn--lg { padding: 14px 22px; font-size: 15px; }

.btn .arr {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease-out);
}
.btn:hover .arr { transform: translateX(3px); }

/* ─────────────────────────────────────────────── */
/* HEADER                                           */
/* ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 11, 0.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 11, 0.85);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: var(--s-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.brand__logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.brand__name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__by {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 400;
}
.brand__by strong { color: var(--fg-2); font-weight: 500; }

.site-header__nav {
  display: none;
  gap: 4px;
  align-items: center;
}
.site-header__nav a {
  font-size: 14px;
  color: var(--fg-3);
  padding: 8px 14px;
  border-radius: var(--r-1);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.site-header__nav a:hover {
  color: var(--fg);
  background: var(--bg-2);
}
@media (min-width: 980px) {
  .site-header__nav { display: inline-flex; }
}

/* ─────────────────────────────────────────────── */
/* HERO — split with mock UI                        */
/* ─────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-block: var(--s-10) var(--s-9);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(99,102,241,0.18), transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(168,85,247,0.14), transparent 70%),
    radial-gradient(ellipse 30% 30% at 50% 60%, rgba(236,72,153,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero__display {
  margin-top: var(--s-5);
  font-size: clamp(44px, 7.6vw, 104px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 600;
}
.hero__sub {
  margin: var(--s-5) auto 0;
  max-width: 600px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
  font-weight: 400;
}
.hero__cta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero__rating {
  margin-top: var(--s-6);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--fg-3);
}
.hero__rating .stars { color: var(--amber); letter-spacing: 1px; font-size: 14px; }

/* Hero device showcase */
.hero-showcase {
  position: relative;
  z-index: 1;
  margin-top: var(--s-9);
  padding: var(--s-2);
  background: linear-gradient(180deg, var(--border-2), transparent 50%);
  border-radius: var(--r-4);
}
.hero-showcase__inner {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: calc(var(--r-4) - 4px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .hero-showcase__inner { grid-template-columns: 1.4fr 1fr; aspect-ratio: 16 / 8; }
}
.hero-showcase__left {
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(99,102,241,0.1), transparent 60%),
    var(--bg-1);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 880px) {
  .hero-showcase__left { border-bottom: 0; border-right: 1px solid var(--border); }
}
.hero-showcase__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-2);
  font-family: var(--mono);
  letter-spacing: -0.01em;
}
.hero-showcase__h {
  margin-top: var(--s-3);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.hero-showcase__list {
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.45;
}
.hero-showcase__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #34D399);
  display: grid;
  place-items: center;
  color: white;
}
.hero-showcase__check svg { width: 10px; height: 10px; }

.hero-showcase__right {
  padding: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background:
    radial-gradient(ellipse at center, rgba(168,85,247,0.12), transparent 60%);
}

/* Phone mock device */
.device {
  position: relative;
  width: 240px;
  aspect-ratio: 9 / 19;
  background: #0A0A0D;
  border: 8px solid #1A1A1F;
  border-radius: 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 2px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  flex-shrink: 0;
}
.device__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.device__screen {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at top, rgba(99,102,241,0.25), transparent 70%),
    var(--bg);
  padding: 32px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.device__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg);
  font-weight: 600;
}
.device__topbar-icons { display: flex; gap: 4px; align-items: center; }
.device__topbar-icons svg { width: 12px; height: 12px; }
.device__greeting {
  margin-top: 16px;
  font-size: 11px;
  color: var(--fg-3);
}
.device__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.device__title em { font-style: normal; color: var(--accent-2); }
.device__cards {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.device__card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 10px 12px;
}
.device__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.device__card-tag {
  display: inline-block;
  padding: 2px 7px;
  font-size: 9px;
  font-family: var(--mono);
  background: rgba(99,102,241,0.15);
  color: var(--accent-2);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.device__card-tag--green { background: rgba(16,185,129,0.15); color: var(--green-2); }
.device__card-tag--purple { background: rgba(168,85,247,0.15); color: #C084FC; }
.device__card-title {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.device__card-meta {
  margin-top: 4px;
  font-size: 10px;
  color: var(--fg-3);
}
.device__progress {
  margin-top: 8px;
  height: 4px;
  background: var(--bg-3);
  border-radius: 999px;
  overflow: hidden;
}
.device__progress-bar {
  height: 100%;
  width: 67%;
  background: linear-gradient(90deg, var(--grad-from), var(--grad-mid));
  border-radius: 999px;
  animation: pulse-bar 2s ease-in-out infinite;
}
@keyframes pulse-bar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.device__bottom {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.device__home {
  width: 80px;
  height: 3px;
  background: var(--fg-3);
  border-radius: 999px;
  opacity: 0.5;
}

/* Floating badges around device */
.float-badge {
  position: absolute;
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2);
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-2);
  font-weight: 500;
  z-index: 3;
}
.float-badge svg { width: 14px; height: 14px; }
.float-badge--top {
  top: 32px;
  right: 5%;
  color: var(--green-2);
  animation: float-1 4s ease-in-out infinite;
}
.float-badge--top svg { color: var(--green); }
.float-badge--bottom {
  bottom: 60px;
  left: 5%;
  color: var(--accent-2);
  animation: float-2 4s ease-in-out infinite;
}
.float-badge--bottom svg { color: var(--accent); }
@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* KPI strip */
.kpi-strip {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
}
@media (min-width: 720px) {
  .kpi-strip { grid-template-columns: repeat(4, 1fr); }
}
.kpi {
  background: var(--bg-1);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kpi__value {
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.kpi__value em {
  font-style: normal;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-to));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kpi__suf { font-size: 0.6em; margin-left: 2px; color: var(--fg-3); font-weight: 500; }
.kpi__label {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 400;
}

/* ─────────────────────────────────────────────── */
/* TECH STACK BAR                                   */
/* ─────────────────────────────────────────────── */

.tech-bar {
  padding-block: var(--s-8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-bar__lead {
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-5);
}
.tech-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
  filter: grayscale(100%) opacity(0.55);
  transition: filter .3s var(--ease);
}
.tech-bar:hover .tech-logos { filter: grayscale(0%) opacity(1); }
.tech-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.tech-logo svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ─────────────────────────────────────────────── */
/* BENTO GRID — capabilities                        */
/* ─────────────────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--s-4);
  }
  .bento__item--lg { grid-column: span 4; }
  .bento__item--md { grid-column: span 3; }
  .bento__item--sm { grid-column: span 2; }
}

.bento__item {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-6);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 280px;
}
.bento__item:hover {
  border-color: var(--border-2);
  background: var(--bg-2);
  transform: translateY(-2px);
}
.bento__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(99,102,241,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.bento__item:hover::before { opacity: 1; }

.bento__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-1);
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.12));
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.bento__icon svg { width: 18px; height: 18px; }

.bento__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: var(--s-2);
}
.bento__desc {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.55;
  flex: 1;
}
.bento__tags {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bento__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: -0.01em;
  color: var(--fg-3);
  padding: 4px 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-1);
}
.bento__visual {
  margin-top: auto;
  padding-top: var(--s-4);
  display: flex;
  justify-content: flex-end;
}

/* ─────────────────────────────────────────────── */
/* FEATURES GRID — 3x3 small items                  */
/* ─────────────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
}
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--bg-1);
  padding: var(--s-6);
  transition: background .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 200px;
}
.feature:hover { background: var(--bg-2); }
.feature__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-1);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--accent-2);
}
.feature__icon svg { width: 16px; height: 16px; }
.feature__title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-top: var(--s-2);
}
.feature__desc {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  flex: 1;
}

/* ─────────────────────────────────────────────── */
/* PROCESS — visual timeline                        */
/* ─────────────────────────────────────────────── */

.process {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 880px) {
  .process {
    grid-template-columns: repeat(5, 1fr);
  }
  .process::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-2) 10%, var(--border-2) 90%, transparent);
    z-index: 0;
  }
}

.step {
  position: relative;
  z-index: 1;
  padding: var(--s-5);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.step:hover { border-color: var(--border-2); background: var(--bg-2); transform: translateY(-2px); }

.step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-mid));
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
}
.step__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.step__body {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  flex: 1;
}
.step__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--accent-2);
  text-transform: uppercase;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ─────────────────────────────────────────────── */
/* GALLERY — team/office photo collage              */
/* ─────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .gallery {
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 540px;
  }
}

.gallery__item {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 16 / 10;
  margin: 0;
}
@media (min-width: 720px) {
  .gallery__item { aspect-ratio: auto; height: auto; }
  .gallery__item--lg { grid-row: span 2; aspect-ratio: auto; }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(1.05);
  transition: transform 0.8s var(--ease-out), filter 0.4s var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: brightness(0.88) saturate(1.1);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,11,0.85));
  pointer-events: none;
}
.gallery__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  z-index: 1;
  color: white;
}
.gallery__lbl {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  margin-bottom: 6px;
  background: rgba(99,102,241,0.2);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(99,102,241,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery__title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1.2;
}

/* ─────────────────────────────────────────────── */
/* CASES                                            */
/* ─────────────────────────────────────────────── */

.cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 880px) {
  .cases { grid-template-columns: repeat(3, 1fr); }
}

.case {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.case:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

.case__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(99,102,241,0.4), rgba(168,85,247,0.3));
}
.case--purple .case__visual {
  background: linear-gradient(135deg, rgba(168,85,247,0.4), rgba(236,72,153,0.3));
}
.case--pink .case__visual {
  background: linear-gradient(135deg, rgba(236,72,153,0.4), rgba(249,115,22,0.3));
}
.case__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.95);
  transition: transform 0.8s var(--ease-out), filter 0.4s var(--ease);
}
.case:hover .case__visual img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1.1);
}
.case__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,8,11,0.85));
  pointer-events: none;
  z-index: 1;
}
.case__visual-overlay {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  z-index: 2;
  color: white;
}
.case__visual-metric {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.case__visual-metric em {
  font-style: normal;
  color: var(--accent-2);
  font-size: 0.6em;
}
.case--purple .case__visual-metric em { color: #C084FC; }
.case--pink .case__visual-metric em { color: #F472B6; }
.case__visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: white;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Mini browser/phone frame inside case */
.case-mock {
  width: 100%;
  max-width: 320px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.case-mock__chrome {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.case-mock__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bg-3);
}
.case-mock__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}
.case-mock__line {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bg-2), var(--bg-3));
}
.case-mock__line--lg { height: 14px; width: 65%; background: linear-gradient(90deg, var(--accent), var(--purple)); opacity: 0.7; }
.case-mock__line--sm { width: 40%; }
.case-mock__row { display: flex; gap: 6px; }
.case-mock__row .case-mock__line { flex: 1; height: 24px; border-radius: 6px; }

.case__body {
  padding: var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.case__sector {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.case__title {
  margin-top: var(--s-3);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: var(--s-3);
}
.case__metric-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
}
.case__metric-num {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.case__metric-num em { font-style: normal; color: var(--accent-2); font-size: 0.7em; }
.case--purple .case__metric-num em { color: #C084FC; }
.case--pink .case__metric-num em { color: #F472B6; }
.case__metric-lbl {
  font-size: 12px;
  color: var(--fg-3);
}
.case__desc {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.55;
  flex: 1;
}
.case__tech {
  margin-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.case__tech span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-3);
  padding: 3px 7px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-1);
}

/* ─────────────────────────────────────────────── */
/* PHOTO BLOCK                                      */
/* ─────────────────────────────────────────────── */

.photo-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: stretch;
}
@media (min-width: 880px) {
  .photo-block { grid-template-columns: 1.3fr 1fr; gap: var(--s-5); }
}

.photo {
  position: relative;
  border-radius: var(--r-3);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  aspect-ratio: 4 / 3;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(1.05);
  transition: transform .8s var(--ease-out), filter .4s var(--ease);
}
.photo:hover img {
  transform: scale(1.02);
  filter: brightness(0.92) saturate(1.1);
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,11,0.85));
  pointer-events: none;
}
.photo__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--s-5) var(--s-6);
  z-index: 1;
}
.photo__lbl {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.photo__title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.2;
}

.photo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  overflow: hidden;
}
.photo-stat {
  background: var(--bg-1);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}
.photo-stat__label {
  font-size: 12px;
  color: var(--fg-3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.photo-stat__value {
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.photo-stat__value em {
  font-style: normal;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-to));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.photo-stat__sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
}
.photo-stat--full {
  grid-column: span 2;
}

/* ─────────────────────────────────────────────── */
/* WHY US — compact cards                           */
/* ─────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 880px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why {
  padding: var(--s-7) var(--s-6) var(--s-6);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.why:hover { border-color: var(--border-2); background: var(--bg-2); }
.why__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-2);
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.12));
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  margin-bottom: var(--s-4);
}
.why__icon svg { width: 18px; height: 18px; }
.why__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: var(--s-3);
}
.why__body {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────── */
/* COMPARE WIDGET                                   */
/* ─────────────────────────────────────────────── */

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) { .compare { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

.compare__col {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-7) var(--s-6);
  overflow: hidden;
  position: relative;
}
.compare__col--us {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(99,102,241,0.10), transparent 60%),
    var(--bg-1);
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.10), 0 0 60px rgba(99,102,241,0.05);
}
.compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s-4);
}
.compare__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.compare__brand-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.04em;
}
.compare__col--others .compare__brand-logo {
  background: var(--bg-3);
  color: var(--fg-3);
}
.compare__brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
.compare__col--others .compare__brand-name { color: var(--fg-3); }

.compare__list { display: flex; flex-direction: column; gap: 12px; }
.compare__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.45;
}
.compare__col--others .compare__item { color: var(--fg-3); }
.compare__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.compare__icon--check {
  background: rgba(16,185,129,0.15);
  color: var(--green-2);
}
.compare__icon--cross {
  background: rgba(239,68,68,0.12);
  color: #FCA5A5;
}
.compare__icon svg { width: 10px; height: 10px; stroke-width: 2.5; }

/* ─────────────────────────────────────────────── */
/* PRICING                                          */
/* ─────────────────────────────────────────────── */

.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 880px) {
  .pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.tier {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.tier:hover { border-color: var(--border-2); }
.tier--featured {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(99,102,241,0.10), transparent 70%),
    var(--bg-2);
  border-color: rgba(99,102,241,0.30);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.20), 0 0 60px rgba(99,102,241,0.10);
}
.tier--featured:hover { transform: translateY(-3px); }
.tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid));
  color: var(--fg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(99,102,241,0.4);
}
.tier__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.tier__price {
  margin-block: var(--s-2);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.tier__amt {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.tier__cur {
  font-size: 18px;
  color: var(--fg-3);
  font-weight: 500;
}
.tier__suffix {
  font-size: 13px;
  color: var(--fg-3);
  margin-left: 6px;
}
.tier__sub {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
  font-family: var(--mono);
}
.tier__desc { font-size: 14px; color: var(--fg-3); line-height: 1.5; }
.tier__features {
  margin-top: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier__features li {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
  position: relative;
  padding-left: 22px;
}
.tier__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-mid));
}
.tier__features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}
.tier__cta {
  margin-top: auto;
  padding-top: var(--s-5);
}
.tier__cta a {
  display: block;
  text-align: center;
  padding: 11px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  transition: background .18s var(--ease), border-color .18s var(--ease);
  text-decoration: none;
}
.tier__cta a:hover { background: var(--bg-3); border-color: var(--border-3); color: var(--fg) !important; }
.tier--featured .tier__cta a {
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid));
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(99,102,241,0.3);
}
.tier--featured .tier__cta a:hover { filter: brightness(1.1); }

/* ─────────────────────────────────────────────── */
/* FAQ                                              */
/* ─────────────────────────────────────────────── */

.faq {
  display: grid;
  gap: var(--s-2);
}
.faq__item {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-2);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: var(--border-2); }
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-5);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--fg-3);
  transition: transform .25s var(--ease-out), color .2s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  inset: 0;
  margin: auto;
}
.faq__icon::before { width: 14px; height: 1.5px; top: 50%; transform: translateY(-50%); }
.faq__icon::after  { width: 1.5px; height: 14px; left: 50%; transform: translateX(-50%); transition: transform .2s var(--ease-out); }
.faq__item[open] .faq__icon { color: var(--accent-2); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a {
  padding: 0 var(--s-5) var(--s-5);
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-3);
  max-width: 760px;
}
.faq__a p + p { margin-top: var(--s-3); }
.faq__a strong { color: var(--fg-2); font-weight: 500; }

/* ─────────────────────────────────────────────── */
/* CONTACT                                          */
/* ─────────────────────────────────────────────── */

.contact {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(99,102,241,0.10), transparent 70%);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .contact { grid-template-columns: 1fr 1.1fr; }
}

.contact__head {
  padding: var(--s-9) var(--s-7);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 980px) {
  .contact__head {
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
}
.contact__head h2 { margin-top: var(--s-4); font-size: clamp(30px, 3.8vw, 44px); }
.contact__lead {
  margin-top: var(--s-4);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 460px;
}
.contact__points {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.contact__point {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.contact__point svg {
  width: 18px; height: 18px;
  color: var(--accent-2);
  margin-top: 4px;
}
.contact__point-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  display: block;
  margin-bottom: 2px;
}
.contact__point-body {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}

.form { padding: var(--s-7) var(--s-7); }
.form__row { margin-bottom: var(--s-4); }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 540px) { .form__row--split { grid-template-columns: 1fr 1fr; } }

.form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  margin-bottom: 8px;
}
.form__label .req { color: var(--accent-2); margin-left: 2px; }

.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2);
  font-size: 15px;
  color: var(--fg);
  font-family: var(--sans);
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--fg-4); }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form__textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%238B8B95' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='1 1 6 6 11 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}
.form__check input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.form__submit {
  width: 100%;
  margin-top: var(--s-5);
  padding: 14px 24px;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid));
  color: var(--fg);
  border-radius: var(--r-2);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: filter .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.4), 0 6px 24px rgba(99,102,241,0.25);
  cursor: pointer;
}
.form__submit:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.6), 0 8px 32px rgba(99,102,241,0.4);
}
.form__submit[disabled] { opacity: .6; cursor: progress; }
.form__msg {
  margin-top: var(--s-4);
  padding: 12px 14px;
  font-size: 13px;
  border-radius: var(--r-2);
  display: none;
}
.form__msg--err { display: block; background: rgba(239,68,68,0.08); color: #FCA5A5; border: 1px solid rgba(239,68,68,0.3); }
.form__msg--ok  { display: block; background: rgba(16,185,129,0.08); color: var(--green-2); border: 1px solid rgba(16,185,129,0.3); }
.form__assurance {
  margin-top: var(--s-3);
  font-size: 12px;
  color: var(--fg-4);
  text-align: center;
}

/* ─────────────────────────────────────────────── */
/* DISCLOSURE                                       */
/* ─────────────────────────────────────────────── */

.disclosure {
  padding: var(--s-7);
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .disclosure { grid-template-columns: minmax(0, 200px) 1fr auto; gap: var(--s-7); align-items: center; }
}
.disclosure__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.disclosure__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
}
.disclosure__body strong { color: var(--fg); font-weight: 500; }
.disclosure__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--accent-2);
  white-space: nowrap;
}
.disclosure__link svg { width: 14px; height: 14px; transition: transform .2s var(--ease-out); }
.disclosure__link:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────── */
/* FOOTER                                           */
/* ─────────────────────────────────────────────── */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: var(--s-9) var(--s-6);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .site-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}
.site-footer h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: var(--s-4);
}
.site-footer__tag {
  margin-top: var(--s-4);
  font-size: 14px;
  color: var(--fg-3);
  max-width: 320px;
  line-height: 1.5;
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a {
  font-size: 14px;
  color: var(--fg-3);
  transition: color .18s var(--ease);
}
.site-footer__list a:hover { color: var(--fg); }
.site-footer__bottom {
  margin-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 12px;
  color: var(--fg-4);
}

/* ─────────────────────────────────────────────── */
/* PROSE pages                                      */
/* ─────────────────────────────────────────────── */

.prose { max-width: 720px; margin: 0 auto; }
.prose h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: var(--s-4); }
.prose h2 { font-size: clamp(22px, 2vw, 28px); margin-top: var(--s-7); margin-bottom: var(--s-3); }
.prose h3 { font-size: 17px; margin-top: var(--s-6); margin-bottom: var(--s-2); }
.prose p { margin-bottom: var(--s-4); font-size: 16px; line-height: 1.7; color: var(--fg-2); }
.prose ul { margin-bottom: var(--s-4); display: flex; flex-direction: column; gap: 8px; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-from), var(--grad-to));
}
.prose strong { color: var(--fg); font-weight: 500; }
.prose a { color: var(--accent-2); text-decoration: underline; text-decoration-color: var(--border-2); text-underline-offset: 4px; }
.prose a:hover { text-decoration-color: var(--accent); }

.page-header {
  padding-block: var(--s-10) var(--s-7);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.10), transparent 70%);
  pointer-events: none;
}
.page-header__inner { position: relative; max-width: 720px; margin: 0 auto; }
.page-header h1 { margin-top: var(--s-4); font-size: clamp(40px, 5vw, 72px); }

/* ─────────────────────────────────────────────── */
/* UTIL                                             */
/* ─────────────────────────────────────────────── */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────── */
/* MOBILE MENU                                      */
/* ─────────────────────────────────────────────── */

.menu-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-1);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.menu-btn:hover { background: var(--bg-3); border-color: var(--border-3); }
.menu-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease-out);
}
.menu-btn.is-open svg { transform: rotate(90deg); }
@media (min-width: 980px) { .menu-btn { display: none; } }

.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(8, 8, 11, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-size: 17px;
  font-weight: 500;
  color: var(--fg);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu a::after {
  content: "→";
  color: var(--fg-4);
  font-weight: 400;
  font-size: 18px;
}
.mobile-menu__cta {
  margin-top: 16px;
  padding: 14px 20px !important;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid)) !important;
  color: white !important;
  border-radius: var(--r-2) !important;
  border-bottom: 0 !important;
  justify-content: center !important;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
.mobile-menu__cta::after { display: none; }
@media (min-width: 980px) { .mobile-menu { display: none; } }

/* ─────────────────────────────────────────────── */
/* CTA POPUP — scroll-triggered                     */
/* ─────────────────────────────────────────────── */

.cta-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--border-2);
  border-radius: var(--r-3);
  padding: 22px 22px 18px;
  z-index: 60;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(99, 102, 241, 0.20), 0 0 80px rgba(99, 102, 241, 0.18);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease);
}
.cta-popup.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.cta-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid), var(--grad-to));
  border-radius: var(--r-3) var(--r-3) 0 0;
}
.cta-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  color: var(--fg-2);
  border: 0;
  cursor: pointer;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
  z-index: 1;
}
.cta-popup__close:hover {
  background: var(--bg-glow);
  color: var(--fg);
}
.cta-popup__close svg { width: 11px; height: 11px; }
.cta-popup__lbl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: -0.005em;
}
.cta-popup__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.cta-popup__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.3;
  padding-right: 24px;
}
.cta-popup__sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}
.cta-popup__btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(96deg, var(--grad-from), var(--grad-mid));
  color: var(--fg);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: filter 0.15s var(--ease), box-shadow 0.15s var(--ease);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.cta-popup__btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.55);
}
.cta-popup__btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease-out);
}
.cta-popup__btn:hover svg { transform: translateX(3px); }

@media (max-width: 540px) {
  .cta-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 18px 18px 16px;
  }
  .cta-popup__title { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
