/* ============================================================
   ZBUDOWANY po 30 — industrial / plac budowy
   Beton · czerń · sygnałowy pomarańcz · taśma ostrzegawcza
   ============================================================ */

:root {
  --bg:        #0e0f10;
  --bg-2:      #15171a;
  --concrete:  #1c1f22;
  --concrete-2:#23272b;
  --line:      #2c3137;
  --ink:       #ece8e0;   /* warm concrete white */
  --muted:     #8d9299;
  --muted-2:   #62676d;
  --accent:    #ff4d00;   /* signal / BHP orange */
  --accent-2:  #ff6a2b;
  --hazard:    #f7c600;   /* hazard yellow */
  --maxw:      1180px;
  --radius:    2px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .005em;
  overflow-x: hidden;
  /* subtelny beton: ziarno + plamy światła */
  background-image:
    radial-gradient(120% 80% at 80% -10%, rgba(255,77,0,.08), transparent 60%),
    radial-gradient(90% 60% at -10% 10%, rgba(255,255,255,.03), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { color: #fff; font-weight: 700; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #000; padding: 12px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Poświata + smuga za kursorem (comet trail), lekka, GPU ---------- */
.cursor-glow { position: fixed; inset: 0; z-index: 5; pointer-events: none; opacity: 0; transition: opacity .5s ease; }
.cursor-glow.on { opacity: 1; }
.cursor-glow__dot {
  position: absolute; top: 0; left: 0; width: 210px; height: 210px; border-radius: 50%;
  will-change: transform; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(255,95,30,.32), rgba(255,77,0,.09) 45%, transparent 68%);
}
@media (hover: none), (prefers-reduced-motion: reduce) { .cursor-glow { display: none; } }

/* ---------- Typografia pomocnicza ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Saira Stencil One', sans-serif;
  font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--hazard);
}
.eyebrow__dot { width: 9px; height: 9px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent); }

.kicker {
  display: inline-flex; align-items: baseline; gap: 12px;
  font-family: 'Saira Stencil One', sans-serif;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.kicker--center { justify-content: center; width: 100%; }
.kicker__no { font-size: 13px; color: var(--accent); border: 1px solid var(--accent); padding: 3px 7px; }

.accent { color: var(--accent); }
.muted-strike { color: var(--muted-2); }

.section__title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(30px, 5vw, 56px); line-height: .98; letter-spacing: .01em;
  text-transform: uppercase; margin-bottom: 34px;
}
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 14ch; }

.section { padding: clamp(64px, 10vw, 130px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 16px;
  text-transform: uppercase; letter-spacing: .04em;
  padding: var(--pad); border: 2px solid transparent; cursor: pointer;
  border-radius: var(--radius); transition: transform .15s var(--ease), background .2s, box-shadow .2s, color .2s;
  background: none; color: var(--ink);
}
.btn--lg { --pad: 18px 30px; font-size: 17px; }
.btn--block { width: 100%; }
.btn--solid {
  background: var(--accent); color: #0a0a0a; border-color: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,77,0,.5);
}
.btn--solid:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-2px); box-shadow: 0 10px 30px -8px rgba(255,77,0,.55); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn__price { font-family: 'Anton', sans-serif; letter-spacing: .02em; }
.btn:focus-visible { outline: 3px solid var(--hazard); outline-offset: 3px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,16,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand__main { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: .04em; }
.brand__badge {
  font-family: 'Saira Stencil One', sans-serif; font-size: 12px; letter-spacing: .1em;
  color: #0a0a0a; background: var(--accent); padding: 3px 7px; transform: translateY(-1px);
}
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { margin-left: 8px; --pad: 10px 18px; }
.nav__burger { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; width: 40px; height: 32px; padding: 6px; }
.nav__burger span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 6px; padding: 8px 24px 22px; border-bottom: 1px solid var(--line); }
.mobile-nav a { padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav.open { display: flex; }

/* ============ HERO ============ */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 0; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 24px clamp(50px,7vw,90px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center;
}
.hero__copy > * { opacity: 0; transform: translateY(18px); animation: rise .7s var(--ease) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .14s; }
.hero__copy > *:nth-child(3) { animation-delay: .23s; }
.hero__copy > *:nth-child(4) { animation-delay: .32s; }
.hero__copy > *:nth-child(5) { animation-delay: .41s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.eyebrow { margin-bottom: 22px; }
.hero__title { font-family: 'Anton', sans-serif; font-weight: 400; line-height: .9; text-transform: uppercase; margin-bottom: 26px; }
.hero__line { display: block; }
.hero__line.muted-strike { font-size: clamp(28px, 5vw, 52px); position: relative; width: max-content; }
.hero__line.muted-strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%; height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; animation: strike .6s .5s var(--ease) forwards;
}
@keyframes strike { to { transform: scaleX(1); } }
.hero__line.accent { font-size: clamp(58px, 12vw, 132px); color: var(--accent); text-shadow: 0 0 40px rgba(255,77,0,.25); }
.hero__lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 46ch; margin-bottom: 30px; }
.hero__lead strong { color: var(--hazard); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__micro { font-size: 14px; color: var(--muted-2); letter-spacing: .02em; }

.hero__media { position: relative; opacity: 0; animation: rise .8s .3s var(--ease) forwards; }
.frame {
  position: relative; aspect-ratio: 4/5; border: 2px solid var(--line); background: var(--concrete);
  box-shadow: 0 30px 80px -30px #000; overflow: hidden;
}
.frame__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; z-index: 0; }
.frame::before, .frame::after { content: ""; position: absolute; width: 18px; height: 18px; border: 2px solid var(--accent); z-index: 2; }
.frame::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.frame::after { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }
.frame--sm { aspect-ratio: 1/1; }
.frame__placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  color: var(--muted-2); font-family: 'Saira Stencil One', sans-serif; font-size: 14px; letter-spacing: .14em;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 18px, transparent 18px 36px),
    linear-gradient(180deg, var(--concrete-2), var(--concrete));
}
.frame__hint { line-height: 1.7; }
.frame__tag {
  position: absolute; bottom: 0; left: 0; background: var(--accent); color: #0a0a0a; z-index: 2;
  font-family: 'Saira Stencil One', sans-serif; font-size: 12px; letter-spacing: .16em; padding: 6px 12px;
}

/* ---------- taśma ostrzegawcza ---------- */
.hazard-tape {
  position: relative; overflow: hidden; white-space: nowrap;
  background: var(--hazard); color: #0a0a0a; border-top: 3px solid #0a0a0a; border-bottom: 3px solid #0a0a0a;
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: 15px;
}
.hazard-tape span { display: inline-block; padding: 11px 0; animation: marquee 26s linear infinite; }
.hazard-tape--rev span { animation-direction: reverse; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ============ MITY ============ */
.mit-list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.mit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
  padding: 28px 4px; border-bottom: 1px solid var(--line);
}
.mit__strike { color: var(--muted-2); font-size: clamp(17px,2vw,22px); font-weight: 600; position: relative; }
.mit__strike::after { content:""; position:absolute; left:0; right:8%; top:54%; height:2px; background: var(--muted-2); opacity:.6; }
.mit__truth { color: var(--ink); }
.mit__truth b { color: var(--accent); }

/* ============ ABOUT ============ */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.about__media { position: sticky; top: 90px; display: grid; gap: 18px; }
.stencil-card { border: 2px solid var(--line); background: var(--concrete); padding: 22px; text-align: center; }
.stencil-card__big { display: block; font-family: 'Anton', sans-serif; font-size: clamp(34px,5vw,52px); color: var(--accent); }
.stencil-card__label { display: block; font-size: 14px; color: var(--muted); letter-spacing: .04em; margin-top: 6px; }
.about__copy p { margin-bottom: 18px; color: var(--muted); }
.about__copy p b { color: #fff; }
.about__sign { font-family: 'Saira Stencil One', sans-serif; color: var(--ink) !important; letter-spacing: .1em; font-size: 15px; }

/* ============ CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg-2); padding: 32px 26px; position: relative; transition: background .25s; }
.card:hover { background: var(--concrete); }
.card__no { font-family: 'Saira Stencil One', sans-serif; color: var(--accent); font-size: 20px; }
.card h3 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 20px; margin: 12px 0 10px; color: #fff; }
.card p { color: var(--muted); font-size: 16px; }

/* ============ PROOF ============ */
.proof { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.proof__inner { text-align: center; }
.proof__lead { max-width: 60ch; margin: 0 auto 44px; color: var(--muted); font-size: clamp(17px,1.8vw,20px); }
.proof__lead b { color: #fff; }
.beforeafter { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.ba { position: relative; width: min(320px, 80vw); }
.ba__img { display: block; width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 30%; border: 2px solid var(--line); background: var(--concrete); }
.ba__tag {
  position: absolute; top: 10px; left: 10px; background: var(--concrete-2); color: var(--muted);
  font-family: 'Saira Stencil One', sans-serif; font-size: 12px; letter-spacing: .16em; padding: 5px 10px; border: 1px solid var(--line);
}
.ba__tag--accent { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.ba__arrow { font-family: 'Anton', sans-serif; font-size: 44px; color: var(--accent); }

/* ============ OFERTA ============ */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.plan {
  position: relative; background: var(--bg-2); border: 1px solid var(--line); padding: 38px 32px 34px;
  display: flex; flex-direction: column;
}
.plan--main { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 30px 70px -40px rgba(255,77,0,.5); }
.plan__flag {
  position: absolute; top: 0; left: 32px; transform: translateY(-50%);
  background: var(--accent); color: #0a0a0a; font-family: 'Saira Stencil One', sans-serif;
  font-size: 12px; letter-spacing: .16em; padding: 6px 12px;
}
.plan__flag--ghost { background: var(--concrete-2); color: var(--muted); border: 1px solid var(--line); }
.plan__name { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 14px; color: #fff; }
.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__amount { font-family: 'Anton', sans-serif; font-size: clamp(54px,8vw,76px); line-height: .9; }
.plan--main .plan__amount { color: var(--accent); }
.plan__cur { font-family: 'Anton', sans-serif; font-size: 26px; color: var(--muted); }
.plan__sub { color: var(--muted); font-size: 15px; margin: 4px 0 22px; }
.plan__list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.plan__list li { position: relative; padding-left: 28px; color: var(--ink); font-size: 16px; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan--alt .plan__list li::before { border-color: var(--muted); }
.plan__pay { margin-top: 14px; font-size: 13px; color: var(--muted-2); text-align: center; }
.plan .btn { margin-top: auto; }

/* ============ FAQ ============ */
.faq__inner { max-width: 820px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--ink);
  font-family: 'Barlow', sans-serif; font-weight: 700; font-size: clamp(17px,2vw,20px);
  padding: 22px 40px 22px 0; position: relative; display: flex; justify-content: space-between; align-items: center;
}
.acc__icon { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--accent); transition: transform .25s; }
.acc__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.acc__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc__head[aria-expanded="true"] .acc__icon::after { transform: scaleY(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__body p { padding: 0 40px 24px 0; color: var(--muted); }

/* ============ FINAL ============ */
.final { text-align: center; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.final__inner { display: grid; gap: 30px; place-items: center; padding-bottom: 30px; }
.final__title { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(30px,6vw,68px); line-height: 1; }

/* ============ DISCLAIMER ============ */
.disclaimer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 38px 0; }
.disclaimer .container { max-width: 820px; }
.disclaimer__h { display: inline-block; font-family: 'Saira Stencil One', sans-serif; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--hazard); margin-bottom: 14px; }
.disclaimer p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.disclaimer p b { color: var(--ink); }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 50px 0 34px; background: var(--bg); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.footer__tag { color: var(--muted); font-size: 14px; margin-top: 8px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { max-width: var(--maxw); margin: 30px auto 0; padding: 0 24px; color: var(--muted-2); font-size: 13px; }

/* ============ STRONY PRAWNE ============ */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(48px,7vw,84px) 24px; }
.legal__title { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(30px,5vw,52px); line-height: 1; margin-bottom: 8px; }
.legal__updated { color: var(--muted-2); font-size: 13px; margin-bottom: 38px; font-family: 'Saira Stencil One', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.legal h2 { font-family: 'Barlow', sans-serif; font-weight: 800; font-size: clamp(19px,2.4vw,25px); color: #fff; margin: 36px 0 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal h3 { font-weight: 700; font-size: 17px; color: var(--ink); margin: 20px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal strong { color: #fff; }
.legal__note { background: var(--concrete); border-left: 3px solid var(--hazard); padding: 15px 18px; margin: 22px 0; font-size: 15px; color: var(--ink); }
.legal__todo { color: var(--accent); font-weight: 700; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 42px; }

/* ============ ORDER BUMP MODAL ============ */
.bump { position: fixed; inset: 0; z-index: 300; display: none; }
.bump.open { display: block; }
.bump__backdrop { position: absolute; inset: 0; background: rgba(5,6,7,.82); backdrop-filter: blur(4px); }
.bump__card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(460px, 92vw); max-height: 92vh; overflow-y: auto;
  background: var(--bg-2); border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 40px 100px -30px #000; padding: 36px 30px 26px;
  animation: bumpIn .25s var(--ease);
}
@keyframes bumpIn { from { opacity: 0; transform: translate(-50%,-46%) scale(.96); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.bump__x { position: absolute; top: 10px; right: 14px; background: none; border: 0; color: var(--muted); font-size: 30px; line-height: 1; cursor: pointer; padding: 4px; }
.bump__x:hover { color: #fff; }
.bump__eyebrow { font-family: 'Saira Stencil One', sans-serif; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--hazard); }
.bump__title { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(26px,5vw,36px); line-height: 1; margin: 8px 0 14px; }
.bump__lead { color: var(--muted); margin-bottom: 20px; font-size: 16px; }
.bump__lead b { color: #fff; }
.bump__offer { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line); background: var(--concrete); padding: 14px 16px; margin-bottom: 20px; }
.bump__offer-name { display: block; font-weight: 800; color: #fff; }
.bump__offer-sub { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.bump__offer-price { font-family: 'Anton', sans-serif; font-size: 26px; color: var(--accent); white-space: nowrap; }
.bump__actions { display: grid; gap: 10px; }
.bump__note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 14px; }
@media (prefers-reduced-motion: reduce) { .bump__card { animation: none; } }

/* ============ BANNER COOKIES ============ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 250;
  max-width: 760px; margin: 0 auto; background: var(--bg-2); border: 1px solid var(--accent);
  box-shadow: 0 20px 60px -20px #000; padding: 16px 20px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.cookie[hidden] { display: none; }
.cookie__text { color: var(--muted); font-size: 14px; line-height: 1.5; flex: 1 1 320px; margin: 0; }
.cookie__text a { color: var(--accent); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie__actions .btn { --pad: 11px 18px; font-size: 14px; }
@media (max-width: 560px) {
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { max-width: 420px; }
  .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__media { position: static; grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .mit { grid-template-columns: 1fr; gap: 10px; }
  .mit__strike::after { right: 30%; }
  .plans { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .cards { grid-template-columns: 1fr; }
  .about__media { grid-template-columns: 1fr; }
  .ba__arrow { transform: rotate(90deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__copy > * { opacity: 1; transform: none; }
  .hero__line.muted-strike::after { transform: scaleX(1); }
  .hero__media { opacity: 1; }
}
