/* =========================================================
   AI Advokat — v5
   Clean light SaaS · Pole 1 (Academic minimal, Anthropic-like)
   Vanilla CSS · Inter everywhere · sales-first structure
   ========================================================= */

:root {
  /* Palette — warm off-white + ink + wine accent */
  --paper:        #FAFAFA;
  --paper-2:      #F4F4F5;
  --paper-3:      #ECECEE;
  --line:         #E4E4E7;
  --line-soft:    #EFEFF1;
  --ink:          #0E0E10;
  --ink-2:        #27272A;
  --ink-3:        #3F3F46;
  --ink-mute:     #71717A;
  --ink-faint:    #A1A1AA;
  --wine:         #6B1F1F;
  --wine-2:       #531414;
  --wine-soft:    #8B3535;
  --wine-bg:      #FBF6F6;

  /* Type */
  --ff:           'Inter', system-ui, sans-serif;
  --ff-mono:      'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --container:    1280px;
  --sec-pad-y:    clamp(80px, 10vw, 140px);
  --sec-pad-x:    clamp(24px, 4vw, 56px);

  /* Motion */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:       0.2s;
  --t-base:       0.35s;
  --t-slow:       0.55s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
b, strong { font-weight: 600; color: var(--ink); }
em { font-style: normal; color: var(--wine); font-weight: 600; }
::selection { background: var(--wine); color: var(--paper); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--sec-pad-x);
  padding-right: var(--sec-pad-x);
}
.container--narrow { max-width: 880px; }

/* ========== TYPOGRAPHY PRIMITIVES ========== */
.h1, .h2, .h3 { color: var(--ink); font-family: var(--ff); }

.h1, .hero__title {
  font-size: clamp(40px, 5.8vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}
.h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine);
}

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 680px;
  margin-top: 20px;
}

/* Section head */
.sec-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 880px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  will-change: transform;
  white-space: nowrap;
  text-align: center;
}
.btn__arrow {
  display: inline-block;
  transition: transform var(--t-base) var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 1px 2px rgba(14,14,16,0.18);
}
.btn--ink:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(107,31,31,0.28);
}
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--paper-2);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--paper:hover {
  background: var(--wine);
  color: var(--paper);
  border-color: var(--wine);
  transform: translateY(-1px);
}
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 8px; }
.btn--lg { padding: 16px 26px; font-size: 16px; border-radius: 12px; }
.btn--xl { padding: 22px 34px; font-size: 17px; border-radius: 14px; }
.btn--full { width: 100%; justify-content: space-between; }

/* ========== HEADER ========== */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.hdr.is-scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--line);
}
.hdr__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--sec-pad-x);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.hdr__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hdr__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  letter-spacing: 0;
}
.hdr__nav {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  margin-left: auto;
  margin-right: 8px;
}
.hdr__nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-3);
  padding: 6px 2px;
  position: relative;
  transition: color var(--t-base) var(--ease-out);
}
.hdr__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width var(--t-base) var(--ease-out);
}
.hdr__nav a:hover { color: var(--ink); }
.hdr__nav a:hover::after { width: 100%; }

/* ========== HERO ========== */
.hero {
  padding: clamp(128px, 16vh, 180px) 0 clamp(80px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1100px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(107, 31, 31, 0.07) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.hero__col { max-width: 620px; }
.hero__title { margin-bottom: clamp(20px, 2vw, 28px); }
.hero__sub {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__sub b { color: var(--ink); }

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero__bullets li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  font-size: 14.5px;
  color: var(--ink-3);
}
.hero__bullet-num {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 16px;
  color: var(--wine);
  letter-spacing: -0.01em;
}

/* Hero visual — product screenshots */
.hero__visual {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.screen {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 20px 60px -20px rgba(14,14,16,0.18),
    0 8px 24px -8px rgba(14,14,16,0.08);
  transition: transform var(--t-slow) var(--ease-out);
}
.screen:hover { transform: translateY(-4px); }
.screen__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.screen__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper-3);
}
.screen__dot:nth-child(1) { background: #FF5F57; }
.screen__dot:nth-child(2) { background: #FEBC2E; }
.screen__dot:nth-child(3) { background: #28C840; }
.screen__title {
  margin-left: auto;
  margin-right: 8px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  max-height: 480px;
}
.hero__visual .screen:first-child {
  position: absolute;
  top: 0;
  right: -8%;
  width: 100%;
  max-width: 540px;
  transform: rotate(2.2deg);
}
.hero__visual .screen--small {
  position: absolute;
  bottom: -16px;
  left: -10%;
  width: 56%;
  max-width: 320px;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero__visual .screen--small img { max-height: 220px; }
.hero__badge {
  position: absolute;
  top: 56%;
  right: 4%;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 12px;
  box-shadow: 0 12px 36px -8px rgba(14,14,16,0.4);
  transform: rotate(4deg);
}
.hero__badge-num {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.hero__badge-cap {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.7);
  line-height: 1.35;
}

/* ========== NUMBERS ========== */
.numbers {
  padding: clamp(60px, 8vw, 96px) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.numbers__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sec-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numb {
  padding: 24px clamp(16px, 2vw, 32px) 24px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.numb:last-child { border-right: none; }
.numb__cap {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.numb__val {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}
.numb__suffix {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--ink-mute);
  margin-left: 4px;
}
.numb__unit {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.4;
}
.numb--hi .numb__val { color: var(--wine); }
.numb--accent .numb__val { color: var(--wine); }
.numb--accent .numb__unit { color: var(--ink-2); font-weight: 500; }

/* ========== DELIVERABLES (3 cards) ========== */
.deliv {
  padding: var(--sec-pad-y) 0;
}
.deliv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
.card {
  padding: clamp(24px, 2.5vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  position: relative;
}
.card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(14,14,16,0.12);
}
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wine-bg);
  color: var(--wine);
  border-radius: 10px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.card__title {
  font-size: clamp(19px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.card__text {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin-bottom: 4px;
  flex: 1;
}
.card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.card__chips span {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-3);
}

/* ========== METHOD (плоский) ========== */
.method {
  padding: var(--sec-pad-y) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
.method__step {
  background: var(--paper);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.method__step:hover { border-color: var(--ink); transform: translateY(-3px); }
.method__step-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.method__num {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--ink);
  padding: 6px 10px;
  border-radius: 6px;
}
.method__step h3 {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.method__step p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-3);
  flex: 1;
}
.method__tag {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ========== REPORT GALLERY ========== */
.report {
  padding: var(--sec-pad-y) 0;
}
.report__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.2vw, 20px);
}
.report__shot {
  cursor: zoom-in;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.report__shot:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(14,14,16,0.16);
}
.report__shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease-out);
}
.report__shot:hover img { transform: scale(1.03); }
.report__shot figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: rgba(14,14,16,0.85);
  color: var(--paper);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

/* ========== VOICES ========== */
.voices {
  padding: var(--sec-pad-y) 0;
  background: var(--ink);
  color: var(--paper);
}
.voices .h2 { color: var(--paper); }
.voices .eyebrow { color: rgba(250,250,250,0.55); }
.voices .eyebrow .dot { background: var(--wine-soft); }
.voices .lede { color: rgba(250,250,250,0.7); }

.voices__lead {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(40px, 5vw, 64px);
  background: rgba(250,250,250,0.04);
  border: 1px solid rgba(250,250,250,0.1);
  border-radius: 20px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.voices__lead blockquote p:first-child {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 20px;
}
.voices__detail {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(250,250,250,0.7);
}
.voices__lead figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: end;
  padding-top: 20px;
  border-top: 1px solid rgba(250,250,250,0.12);
}
.voices__photo {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(250,250,250,0.2);
}
.voices__name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 2px;
}
.voices__role {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.55);
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.voices__card {
  padding: clamp(24px, 2.5vw, 36px);
  background: rgba(250,250,250,0.03);
  border: 1px solid rgba(250,250,250,0.1);
  border-radius: 16px;
  transition: background var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.voices__card:hover {
  background: rgba(250,250,250,0.06);
  border-color: rgba(250,250,250,0.2);
}
.voices__card blockquote {
  font-size: 17px;
  line-height: 1.45;
  color: var(--paper);
  margin-bottom: 16px;
  font-weight: 500;
}
.voices__card figcaption {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.55);
}

/* ========== SECURITY ========== */
.security { padding: var(--sec-pad-y) 0; }
.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
.sec-card {
  padding: clamp(24px, 2.5vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.sec-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.sec-card__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wine-bg);
  color: var(--wine);
  border-radius: 10px;
}
.sec-card__icon svg { width: 22px; height: 22px; }
.sec-card h3 {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.sec-card p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-3);
}

/* ========== PRICING ========== */
.pricing {
  padding: var(--sec-pad-y) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  align-items: start;
}
.plan {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.plan:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -12px rgba(14,14,16,0.14);
}
.plan--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.plan--featured:hover { border-color: var(--wine); }
.plan__badge {
  position: absolute;
  top: -10px; left: 28px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  background: var(--wine);
  color: var(--paper);
  border-radius: 6px;
}
.plan__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.plan--featured .plan__head { border-bottom-color: rgba(250,250,250,0.12); }
.plan__name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.plan--featured .plan__name { color: var(--paper); }
.plan__note {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.plan--featured .plan__note { color: rgba(250,250,250,0.55); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.plan__from {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.plan--featured .plan__from { color: rgba(250,250,250,0.55); }
.plan__num {
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.plan--featured .plan__num { color: var(--paper); }
.plan__unit {
  font-size: 14px;
  color: var(--ink-mute);
}
.plan--featured .plan__unit { color: rgba(250,250,250,0.6); }
.plan__notes {
  list-style: none;
  display: grid;
  gap: 8px;
  flex: 1;
}
.plan__notes li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-3);
  padding-left: 22px;
  position: relative;
}
.plan__notes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 14px; height: 14px;
  background: var(--wine-bg);
  border-radius: 50%;
}
.plan__notes li::after {
  content: '';
  position: absolute;
  left: 4px; top: 0.65em;
  width: 6px; height: 3px;
  border-left: 1.5px solid var(--wine);
  border-bottom: 1.5px solid var(--wine);
  transform: rotate(-45deg);
}
.plan--featured .plan__notes li { color: rgba(250,250,250,0.85); }
.plan--featured .plan__notes li::before { background: rgba(139, 53, 53, 0.25); }
.plan--featured .plan__notes li::after { border-color: var(--wine-soft); }

/* Pricing dropdown */
.plan__expand { display: flex; flex-direction: column; gap: 0; margin-top: auto; }
.plan__expand[open] .plan__toggle { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.plan__expand summary { list-style: none; cursor: pointer; }
.plan__expand summary::-webkit-details-marker { display: none; }
.plan__toggle { justify-content: space-between; }
.plan__chev {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}
.plan__chev::before, .plan__chev::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
}
.plan__chev::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.plan__chev::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out); }
.plan__expand[open] .plan__chev::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.plan__tiers {
  display: flex;
  flex-direction: column;
  margin-top: -1px;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: var(--paper);
}
.tier {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink) !important;
  transition: background var(--t-fast) var(--ease-out), padding-left var(--t-fast) var(--ease-out);
}
.tier:last-child { border-bottom: none; }
.tier:hover { background: var(--paper-2); padding-left: 22px; }
.tier__label { font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.tier__price {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.tier__price em {
  font-family: var(--ff-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-left: 3px;
}
.plan__tiers--ink {
  background: var(--ink);
  border-color: rgba(250,250,250,0.12);
}
.plan__tiers--ink .tier { border-bottom-color: rgba(250,250,250,0.08); color: var(--paper) !important; }
.plan__tiers--ink .tier:hover { background: rgba(250,250,250,0.06); }
.plan__tiers--ink .tier__label { color: rgba(250,250,250,0.85); }
.plan__tiers--ink .tier__price { color: var(--paper); }
.plan__tiers--ink .tier__price em { color: rgba(250,250,250,0.5); }

/* ========== FAQ ========== */
.faq { padding: var(--sec-pad-y) 0; }
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--t-base) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--wine); }
.faq__plus {
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
}
.faq__plus::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__body { padding-bottom: 24px; }
.faq__body p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 760px;
}

/* ========== FINAL CTA ========== */
.final {
  padding: clamp(96px, 14vh, 160px) 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 1200px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(107, 31, 31, 0.35) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final .container { position: relative; z-index: 1; }
.final__title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--paper);
  margin-bottom: 24px;
}
.final__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(250,250,250,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ========== FOOTER ========== */
.ftr {
  padding: clamp(56px, 7vw, 88px) 0 clamp(24px, 3vw, 40px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}
.ftr__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.ftr__lede {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 540px;
}
.ftr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(40px, 5vw, 56px) 0;
}
.ftr__col { display: flex; flex-direction: column; gap: 8px; }
.ftr__h {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.ftr__col a {
  color: var(--ink-2);
  transition: color var(--t-fast) var(--ease-out);
}
.ftr__col a:hover { color: var(--wine); }
.ftr__mail { color: var(--wine) !important; font-weight: 600; }
.ftr__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}

/* ========== LIGHTBOX ========== */
.lbx {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.lbx.is-open { display: flex; }
.lbx__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 16, 0.94);
  backdrop-filter: blur(12px);
}
.lbx__stage {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 88vh;
}
.lbx__img {
  max-width: 95vw;
  max-height: 88vh;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}
.lbx__close, .lbx__nav, .lbx__counter {
  position: absolute;
  z-index: 3;
  background: rgba(250,250,250,0.08);
  border: 1px solid rgba(250,250,250,0.2);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 18px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--t-fast) var(--ease-out);
}
.lbx__close:hover, .lbx__nav:hover { background: rgba(250,250,250,0.18); }
.lbx__close { top: 24px; right: 24px; }
.lbx__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lbx__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lbx__counter {
  bottom: 24px; left: 50%; transform: translateX(-50%);
  width: auto; height: auto;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 100px;
}

/* ========== REVEAL ========== */
[data-reveal] { opacity: 0; transform: translateY(20px); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); transition: opacity 0.55s var(--ease-out), transform 0.65s var(--ease-out); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__col { max-width: none; }
  .hero__visual { min-height: 400px; }
  .hero__visual .screen:first-child { right: 0; max-width: 480px; }
  .hero__visual .screen--small { left: 0; }

  .numbers__inner { grid-template-columns: repeat(2, 1fr); }
  .numb:nth-child(2) { border-right: none; }
  .numb:nth-child(1), .numb:nth-child(2) {
    padding-bottom: 32px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
  }

  .deliv__grid, .method__steps, .security__grid, .report__grid { grid-template-columns: 1fr 1fr; }
  .report__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .voices__lead { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hdr__nav { display: none; }
  .hero__bullets li { grid-template-columns: 72px 1fr; }
  .hero__visual { min-height: 360px; }
  .hero__badge { right: 0; }
  .numbers__inner { grid-template-columns: 1fr; }
  .numb { border-right: none; padding-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .numb:last-child { border-bottom: none; }
  .deliv__grid, .method__steps, .security__grid, .report__grid { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 24px; }
  .ftr__bot { flex-direction: column; gap: 8px; align-items: flex-start; }
  .lbx__close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lbx__nav { top: auto; bottom: 12px; transform: none; width: 38px; height: 38px; }
  .lbx__nav--prev { left: 12px; }
  .lbx__nav--next { right: 12px; }
}

@media (hover: none) {
  .btn:hover, .screen:hover, .card:hover, .method__step:hover, .sec-card:hover, .plan:hover, .report__shot:hover { transform: none; }
  .report__shot:hover img { transform: none; }
}

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