/* ===== Fonts =====
   Self-hosted so no visitor IP goes to Google's servers (RODO) and so the
   first paint costs no extra DNS + TLS handshake. Subsets are Google's own. */
@font-face {
  font-family: 'Archivo'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(fonts/archivo-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(fonts/archivo-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/archivo-black-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo Black'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/archivo-black-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== Tokens ===== */
:root {
  --ink: #0b0b0c;
  --paper: #f2f0eb;
  --paper-2: #e8e5de;
  --lime: #c9aeeb;
  --lime-dk: #9966cc;
  --muted: #6b6b6e;
  --line: #d6d2c8;
  --line-dk: #2a2a2d;
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --black: 'Archivo Black', var(--font);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 8px 24px -10px rgba(11, 11, 12, .22);
  --shadow-md: 0 18px 44px -16px rgba(11, 11, 12, .28);
  --shadow-lime: 0 18px 44px -14px rgba(153, 102, 204, .5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* sticky nav is 68px — without this every anchor lands underneath it */
  scroll-padding-top: 84px;
  color-scheme: light;
}
::selection { background: var(--lime); color: var(--ink); }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus — visible everywhere, not just on form fields */
:focus-visible {
  outline: 3px solid var(--lime-dk);
  outline-offset: 3px;
  border-radius: 4px;
}
.sec-dark :focus-visible, .foot :focus-visible { outline-color: var(--lime); }

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: var(--paper);
  font-size: .9rem; font-weight: 700; padding: .8rem 1.2rem;
  border-radius: var(--radius-sm); transition: top .18s;
}
.skip:focus { top: 1rem; }

.wrap { width: min(1240px, 100% - 3rem); margin-inline: auto; }
/* narrow column, but starting on the same left edge as every other section */
.wrap-narrow {
  width: min(780px, 100% - 3rem);
  margin-inline: max(1.5rem, calc((100% - 1240px) / 2)) auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-weight: 700; font-size: .95rem; letter-spacing: -.01em; line-height: 1;
  padding: 1.05rem 1.7rem; border: 2px solid var(--ink); background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: background .16s, color .16s, translate .16s, box-shadow .16s;
}
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: var(--shadow-lime); }
.btn-lime:hover { translate: var(--mx, 0) var(--my, -2px); box-shadow: 0 22px 50px -14px rgba(153, 102, 204, .6); }
.btn-lime:active { translate: 0 1px; box-shadow: var(--shadow-sm); }
.btn-magnetic { transition: translate .15s ease, box-shadow .15s ease; }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-full { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: var(--paper); border-bottom: 2px solid var(--ink);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-in {
  width: min(1240px, 100% - 3rem); margin-inline: auto;
  display: flex; align-items: center; gap: 2rem; height: 68px;
}
.logo { font-family: var(--black); font-size: 1.05rem; letter-spacing: -.02em; }
.logo span { color: var(--lime-dk); }
.nav-links { display: flex; gap: 1.75rem; margin-left: auto; font-size: .88rem; font-weight: 600; }
.nav-links a { position: relative; padding: .25rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--ink); transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: .85rem; font-weight: 700; padding: .6rem 1.1rem;
  background: var(--ink); color: var(--paper); transition: background .16s;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--lime); color: var(--ink); }
/* on pages without a menu the CTA carries the right edge on its own */
.nav-cta-solo { margin-left: auto; }
.burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; padding: .5rem; cursor: pointer; margin-left: auto; }
.burger span { width: 22px; height: 2.5px; background: var(--ink); transition: translate .2s, rotate .2s; }
/* open state folds the two bars into an X */
.burger[aria-expanded="true"] span:first-child { translate: 0 3.75px; rotate: 45deg; }
.burger[aria-expanded="true"] span:last-child { translate: 0 -3.75px; rotate: -45deg; }

/* ===== Hero ===== */
.hero { border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -220px; left: 50%; translate: -50% 0;
  width: 900px; height: 620px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(153, 102, 204, .28), transparent 55%),
    radial-gradient(circle at 70% 55%, rgba(11, 11, 12, .05), transparent 55%);
  filter: blur(50px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(11, 11, 12, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 12, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 40%, transparent 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  width: min(1240px, 100% - 3rem); margin-inline: auto;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.tag {
  display: inline-block; font-size: .74rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .38rem .8rem; border: 2px solid var(--ink);
  border-radius: 999px;
}
.tag-lime { background: var(--lime); }

h1 {
  font-family: var(--black); font-weight: 400;
  /* capped so "DLA TWOJEJ" never wraps and breaks the three-step stagger */
  font-size: clamp(2.4rem, 7.6vw, 6.1rem); line-height: .85;
  letter-spacing: -.045em; text-transform: uppercase;
  margin: 1.6rem 0 1.8rem;
}
h1 .l1, h1 .l2, h1 .l3 { display: block; white-space: nowrap; }
h1 .l2 { padding-left: clamp(.5rem, 4vw, 3.5rem); }
h1 .l3 {
  padding-left: clamp(1rem, 8vw, 7rem);
  -webkit-text-stroke: 2px var(--ink); color: transparent;
}

.hero-price {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.4rem; border-top: 2px solid var(--ink);
}
.hero-price b { font-family: var(--black); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.03em; }
.hero-price span { font-size: .9rem; color: var(--muted); font-weight: 500; }

.hero-btns { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

.hero-photo {
  border: 2px solid var(--ink); aspect-ratio: 3 / 4; overflow: hidden;
  box-shadow: var(--shadow-lime);
  border-radius: var(--radius);
}
/* focal point kept high so the face survives the 16/9 crop on mobile */
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; filter: grayscale(1) contrast(1.08); }

/* Ticker */
.ticker { border-top: 2px solid var(--ink); background: var(--ink); overflow: hidden; padding: .7rem 0; }
.ticker-row {
  display: flex; white-space: nowrap; width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--black); font-size: .95rem; letter-spacing: .04em; color: var(--paper);
}
.ticker-group { display: flex; align-items: center; gap: 2rem; padding-right: 2rem; flex-shrink: 0; }
.ticker-row i { color: var(--lime); font-style: normal; }
/* 5 identical groups -> shift by exactly one (20%) so the loop is seamless */
@keyframes slide { to { translate: -20% 0; } }

/* ===== Stats ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
  /* line the first figure up with the page gutter, like every other section */
  padding-inline: max(1.5rem, calc((100% - 1240px) / 2));
}
.stat { padding: clamp(1.5rem, 3vw, 2.2rem) 1.5rem; border-right: 2px solid var(--ink); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat b { font-family: var(--black); font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -.04em; display: block; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); font-weight: 500; display: block; margin-top: .5rem; }
.stat-lime { background: var(--lime); }
.stat-lime span { color: #3d2255; }

/* ===== Sections ===== */
.sec { padding: clamp(4rem, 10vw, 8.5rem) 0; border-bottom: 2px solid var(--ink); }
.sec-dark { background: var(--ink); color: var(--paper); }
.sec-lime { background: var(--lime); }
.sec-form { background: var(--paper-2); }

.sec-head { margin-bottom: clamp(3rem, 6vw, 5.5rem); position: relative; }
.sec-num {
  font-family: var(--black); font-size: .8rem; letter-spacing: .1em;
  display: block; margin-bottom: 1rem; opacity: .45;
}
.sec-head h2 {
  font-family: var(--black); font-weight: 400;
  font-size: clamp(2rem, 6vw, 4.2rem); line-height: .9;
  letter-spacing: -.04em; text-transform: uppercase;
}
/* currentColor here would resolve to the element's own `transparent`,
   which made every outlined subtitle invisible — the colour must be explicit */
.sec-head h2 em {
  font-style: normal; -webkit-text-stroke: 2px var(--ink); color: transparent;
}
.sec-dark .sec-head h2 em { -webkit-text-stroke-color: var(--paper); }
.sec-head p { margin-top: 1.2rem; font-size: 1.02rem; color: var(--muted); max-width: 40rem; }
.sec-dark .sec-head p { color: #9a9a9e; }
.sec-lime .sec-head p { color: #3d2255; }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.plan {
  padding: clamp(1.6rem, 2.5vw, 2.2rem) clamp(1.3rem, 2vw, 1.8rem);
  border: 2px solid var(--ink); border-radius: var(--radius);
  display: flex; flex-direction: column;
  position: relative; background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.plan:hover { background: var(--paper-2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-hot { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-lime); }
.plan-hot:hover { background: #17171a; }
.plan-flag {
  position: absolute; top: -2px; left: -2px; right: -2px;
  background: var(--lime); color: var(--ink);
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  text-align: center; padding: .35rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
/* every card reserves the flag's height so prices line up across the three */
.plan-top { display: flex; align-items: baseline; gap: .7rem; margin-top: 1.4rem; }
.plan-idx { font-family: var(--black); font-size: .78rem; opacity: .4; }
.plan h3 { font-family: var(--black); font-weight: 400; font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -.03em; }
.plan-for { font-size: .84rem; color: var(--muted); margin-top: .5rem; min-height: 2.5em; }
.plan-hot .plan-for { color: #9a9a9e; }
.plan-price {
  font-size: .95rem; font-weight: 600; margin-top: 1.3rem;
  padding-top: 1.3rem; border-top: 2px solid currentColor;
}
.plan-price b { font-family: var(--black); font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -.04em; display: inline-block; vertical-align: -.06em; }
.plan-time { font-size: .82rem; color: var(--muted); margin-top: .2rem; }
.plan-hot .plan-time { color: #9a9a9e; }
.plan-list { list-style: none; margin: 1.5rem 0; display: grid; gap: .65rem; flex: 1; }
.plan-list li { position: relative; padding-left: 1.5rem; font-size: .89rem; }
.plan-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime-dk);
}
.plan-hot .plan-list li::before { background: var(--lime); }
.plan-btn {
  font-weight: 700; font-size: .9rem; padding: .85rem 1rem; text-align: center;
  border: 2px solid currentColor; border-radius: var(--radius-sm);
  transition: background .16s, color .16s;
}
.plan-btn:hover { background: var(--ink); color: var(--paper); }
.plan-hot .plan-btn { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.plan-hot .plan-btn:hover { background: transparent; color: var(--lime); }

.promo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; }
.promo-i { display: flex; align-items: baseline; gap: .8rem; padding: 1.1rem 1.3rem; border: 2px solid var(--ink); border-radius: var(--radius-sm); }
.promo-i b { font-family: var(--black); font-size: 1.35rem; letter-spacing: -.03em; white-space: nowrap; }
.promo-i span { font-size: .85rem; color: var(--muted); }

/* ===== Cases ===== */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.case {
  border: 2px solid var(--paper); background: var(--ink);
  border-radius: var(--radius);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: translate .2s, box-shadow .2s;
}
.case:hover { translate: 0 -4px; box-shadow: var(--shadow-lime); }
.case-big { grid-column: span 2; flex-direction: row; }
.case-big .case-img { flex: 1.3; aspect-ratio: auto; }
.case-big .case-info { flex: 1; justify-content: center; }
/* stop the description stretching and leaving a hole above the link */
.case-big .case-info p { flex: 0 1 auto; }
.case-img { aspect-ratio: 16 / 10; overflow: hidden; background: #17171a; }
.case-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: scale .4s; }
.case:hover .case-img img { scale: 1.05; }
.case-info { padding: clamp(1.2rem, 2.5vw, 2rem); display: flex; flex-direction: column; }
.case-tag {
  align-self: flex-start; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--lime); color: var(--ink); padding: .22rem .6rem; margin-bottom: .9rem;
  border-radius: 999px;
}
.case-info h3 { font-family: var(--black); font-weight: 400; font-size: clamp(1.2rem, 2.2vw, 1.7rem); letter-spacing: -.03em; }
.case-info p { font-size: .9rem; color: #9a9a9e; margin: .5rem 0 1.1rem; flex: 1; }
.case-go { font-weight: 700; font-size: .88rem; color: var(--lime); }

/* ===== Feats ===== */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feat {
  padding: clamp(1.8rem, 3.5vw, 2.8rem); border: 2px solid var(--ink);
  border-radius: var(--radius); background: var(--paper);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.feat:hover { background: var(--paper-2); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feat i {
  font-style: normal; font-family: var(--black); font-size: .78rem;
  opacity: .4; display: block; margin-bottom: .8rem;
}
.feat b { font-family: var(--black); font-weight: 400; font-size: 1.08rem; letter-spacing: -.02em; display: block; margin-bottom: .45rem; }
.feat p { font-size: .89rem; color: var(--muted); }

/* ===== Compare ===== */
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 2px solid var(--ink); background: var(--lime); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp-table th, .cmp-table td { padding: .95rem 1.1rem; text-align: left; border-bottom: 2px solid var(--ink); font-size: .93rem; }
.cmp-table thead th { font-family: var(--black); font-weight: 400; font-size: .95rem; letter-spacing: -.02em; }
.cmp-table th.me, .cmp-table td.me { background: var(--ink); color: var(--lime); font-weight: 700; }
.cmp-table tbody td:first-child { font-weight: 600; }
.cmp-table tbody td:nth-child(2) { color: #4a2a66; text-decoration: line-through; text-decoration-thickness: 1.5px; }
.cmp-table tr:last-child th, .cmp-table tr:last-child td { border-bottom: 0; }
.cmp-note { margin-top: 1.3rem; font-size: .9rem; color: #3d2255; max-width: 46rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step {
  padding: clamp(1.4rem, 2.5vw, 2rem) 1.4rem; border: 2px solid var(--line-dk);
  border-radius: var(--radius);
}
.step i {
  font-style: normal; font-family: var(--black); font-size: 1.6rem;
  color: var(--lime); display: block; margin-bottom: .9rem; letter-spacing: -.03em;
}
.step h3 { font-family: var(--black); font-weight: 400; font-size: 1.08rem; letter-spacing: -.02em; margin-bottom: .45rem; }
.step p { font-size: .89rem; color: #9a9a9e; }

/* ===== FAQ ===== */
.faq { display: grid; gap: .8rem; }
.faq details { border: 2px solid var(--ink); border-radius: var(--radius-sm); padding: 1.2rem 1.2rem; }
.faq summary {
  cursor: pointer; font-family: var(--black); font-weight: 400; font-size: 1.02rem;
  letter-spacing: -.02em; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; transition: rotate .2s; line-height: 1; }
.faq details[open] summary::after { rotate: 45deg; }
.faq p { font-size: .93rem; color: var(--muted); margin-top: .8rem; max-width: 44rem; }

/* ===== Form ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-left h2 { font-family: var(--black); font-weight: 400; font-size: clamp(2rem, 5vw, 3.6rem); line-height: .9; letter-spacing: -.04em; text-transform: uppercase; }
.form-left h2 em { font-style: normal; -webkit-text-stroke: 2px var(--ink); color: transparent; }
.form-left p { margin-top: 1.2rem; color: var(--muted); }
.form-photo { margin-top: 2rem; border: 2px solid var(--ink); border-radius: var(--radius); aspect-ratio: 4 / 3; overflow: hidden; box-shadow: var(--shadow-lime); }
.form-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }

.form { display: grid; gap: 1rem; background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: grid; gap: .4rem; font-size: .82rem; font-weight: 700; letter-spacing: .01em; position: relative; }
.field-err {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 5;
  display: flex; align-items: center; gap: .5rem;
  background: var(--ink); color: var(--paper);
  font-size: .8rem; font-weight: 600; letter-spacing: normal; text-transform: none;
  padding: .55rem .8rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  opacity: 0; translate: 0 -4px; pointer-events: none;
  transition: opacity .15s ease, translate .15s ease;
}
.field-err.show { opacity: 1; translate: 0 0; }
.field-err::before {
  content: "!"; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); color: var(--ink); font-family: var(--black); font-size: .68rem;
}
.form input.invalid, .form select.invalid, .form textarea.invalid { box-shadow: 0 0 0 4px rgba(153, 102, 204, .35); }
.opt { font-weight: 500; color: var(--muted); }
.form input, .form select, .form textarea {
  font: inherit; font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: .8rem .9rem; border: 2px solid var(--ink); background: #fff; width: 100%;
  border-radius: var(--radius-sm);
  transition: box-shadow .15s;
}
.form textarea { resize: vertical; min-height: 84px; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; box-shadow: 0 0 0 4px rgba(153, 102, 204, .3); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; line-height: 1.5; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--ink); }
.form-msg { font-size: .92rem; font-weight: 700; text-align: center; display: none; }
.form-msg.ok { display: block; color: #2d7a1f; }
.form-msg.err { display: block; color: #b42318; }

.alt-contact { text-align: center; padding-top: 1rem; border-top: 2px solid var(--line); }
.alt-contact > span { font-size: .82rem; color: var(--muted); }
.alt-links { display: flex; justify-content: center; gap: .6rem; margin-top: .6rem; }
.alt-links a { font-size: .88rem; font-weight: 700; padding: .55rem 1.1rem; border: 2px solid var(--ink); border-radius: var(--radius-sm); transition: background .16s, color .16s; }
.alt-links a:hover { background: var(--ink); color: var(--paper); }

/* ===== 404 ===== */
.err-page { border-bottom: 0; }
.err-code {
  font-family: var(--black); font-weight: 400;
  font-size: clamp(5rem, 20vw, 11rem); line-height: .82;
  letter-spacing: -.05em; margin: .4rem 0 .6rem;
  -webkit-text-stroke: 3px var(--ink); color: transparent;
}
.err-title {
  font-family: var(--black); font-weight: 400;
  font-size: clamp(1.7rem, 5vw, 3rem); line-height: .9;
  letter-spacing: -.04em; text-transform: uppercase;
}
.err-title em { font-style: normal; -webkit-text-stroke: 2px var(--ink); color: transparent; }
.err-text { margin-top: 1.2rem; color: var(--muted); max-width: 34rem; }

/* ===== Legal pages ===== */
.legal { border-bottom: 0; }
.legal-h1 {
  font-family: var(--black); font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.6rem); line-height: .9;
  letter-spacing: -.04em; text-transform: uppercase; margin: 0;
}
.legal-h1 em { font-style: normal; -webkit-text-stroke: 2px var(--ink); color: transparent; }
.legal-lead { margin-top: 1.4rem; font-size: 1.02rem; color: var(--muted); }
.legal h2 {
  font-family: var(--black); font-weight: 400; font-size: 1.15rem;
  letter-spacing: -.02em; margin: 2.6rem 0 .7rem;
  padding-top: 1.6rem; border-top: 2px solid var(--line);
}
.legal p { font-size: .95rem; margin-bottom: .8rem; }
.legal ul { margin: .2rem 0 1rem 1.1rem; display: grid; gap: .35rem; }
.legal li { font-size: .95rem; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal a.btn { text-decoration: none; }
.legal-date { margin-top: 2.4rem; font-size: .85rem; color: var(--muted); }
.legal-back { margin-top: 1.6rem; }

/* ===== Footer ===== */
.foot { background: var(--ink); color: var(--paper); padding: 3rem 0 1.5rem; }
.foot-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 1.8rem; border-bottom: 2px solid #2a2a2d; }
.foot-links { display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: .9rem; font-weight: 600; }
.foot-links a:hover { color: var(--lime); }
.foot-bot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.3rem; font-size: .8rem; color: #8a8a8e; }
.foot-bot-solo { padding-top: 0; }
.foot-bot a:hover { color: var(--lime); }

/* ===== Reveal ===== */
[data-r] { opacity: 0; translate: 0 16px; transition: opacity .5s ease, translate .5s ease; }
[data-r].in { opacity: 1; translate: 0 0; }
[data-d="1"] { transition-delay: .07s; }
[data-d="2"] { transition-delay: .14s; }
[data-d="3"] { transition-delay: .21s; }
[data-d="4"] { transition-delay: .28s; }
[data-d="5"] { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-r] { opacity: 1; translate: none; transition: none; }
  .ticker-row { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo { aspect-ratio: 16 / 9; box-shadow: var(--shadow-lime); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .stat:nth-child(odd) { padding-left: 0; }
  .plans { grid-template-columns: 1fr; }
  .plan-hot { order: -1; }
  .feats, .steps { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-photo { display: none; }
  .case-big { grid-column: span 2; flex-direction: column; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink); padding: 0 1.5rem;
  }
  .nav-links.open a { padding: .95rem 0; border-bottom: 2px solid var(--line); }
  .nav-links.open a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .cases, .promo, .feats, .steps, .f-row { grid-template-columns: 1fr; }
  .case-big { grid-column: span 1; }
  .cmp-table { font-size: .85rem; }
  .cmp-table th, .cmp-table td { padding: .7rem .6rem; }
  h1 .l2, h1 .l3 { padding-left: 0; }
  .form { box-shadow: var(--shadow-sm); }
}
