/* ============================================================
   REWIND by Motiontm — shared design system
   Two-page microsite (index.html + editing-extras.html)
   ============================================================ */

/* ---- Design tokens ---------------------------------------- */
:root {
  --bg:          #08080b;   /* page background, near-black      */
  --bg-2:        #0b0b10;   /* alternate section band           */
  --panel:       #111119;   /* raised cards / panels            */
  --panel-2:     #16161f;   /* nested panels                    */
  --line:        rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);

  --purple:        #8b5cf6; /* primary accent                   */
  --purple-bright: #a78bfa; /* highlight text, checks, numbers  */
  --purple-deep:   #7c3aed;
  --purple-glow:   rgba(139,92,246,.35);

  --text:   #ffffff;
  --body:   #b6b6c4;        /* body copy                        */
  --muted:  #8a8a99;        /* small / secondary                */
  --eyebrow:#b7a8e6;        /* letter-spaced eyebrows           */

  --radius:   14px;
  --radius-sm:10px;
  --maxw:     1180px;
  --gutter:   24px;

  --ff-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shadow: 0 24px 60px rgba(0,0,0,.45);
}

/* ---- Reset ------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--ff-display); color: var(--text); margin: 0; line-height: 1.05; letter-spacing: -.01em; }
p { margin: 0; }

/* ---- Layout ------------------------------------------------ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }

/* Eyebrow */
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin: 0 0 18px;
}
.eyebrow .dim { color: var(--muted); }

/* Section heading helper */
.kicker {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 26px;
}
.kicker .right { float: right; color: var(--muted); font-weight: 600; }

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, #9b7cff, #7c4dff);
  color: #fff; box-shadow: 0 10px 30px var(--purple-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px var(--purple-glow); }
.btn--ghost {
  background: rgba(255,255,255,.03); color: var(--text); border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--purple); background: rgba(139,92,246,.08); }
.btn--dark {
  background: var(--panel-2); color: var(--text); border-color: var(--line);
}
.btn--dark:hover { border-color: var(--purple); }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn__ic { display: inline-flex; }

/* ---- Header / nav ------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8,8,11,.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { display: flex; align-items: baseline; gap: 8px; }
.brand__name {
  font-family: var(--ff-display); font-weight: 800; font-size: 22px;
  letter-spacing: .04em; color: #fff; line-height: 1;
}
.brand__sub { display: block; font-size: 11px; letter-spacing: .16em; text-transform: lowercase; color: var(--muted); margin-top: 4px; }
.rw { display: inline-flex; align-items: center; gap: 3px; }  /* ◀◀ rewind glyph */
.rw svg { width: auto; height: 15px; display: block; }
.rw path { fill: var(--purple); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--body);
  position: relative; padding: 6px 0; transition: color .15s ease;
}
.nav__links a:hover { color: #fff; }
.nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--purple); border-radius: 2px;
}
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }

/* ---- Hero -------------------------------------------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(8,8,11,.82) 42%, rgba(8,8,11,.30) 72%, rgba(8,8,11,.55) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(8,8,11,0) 40%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 88px; }
.hero__grid { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: start; gap: 40px; }
.hero__col { max-width: 620px; }
.hero__title {
  font-weight: 800; font-size: clamp(52px, 9vw, 104px); line-height: .92;
  letter-spacing: -.02em; color: #fff; margin: 6px 0 2px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero__title .rw--big { gap: 6px; }
.hero__title .rw--big svg { width: auto; height: clamp(38px,7vw,72px); }
.hero__by { font-family: var(--ff-display); font-weight: 600; font-size: clamp(20px,3vw,30px); color: #fff; margin: 4px 0 26px; }
.hero__lead { font-size: 19px; color: #d7d7e2; max-width: 480px; }
.hero__lead strong { color: #fff; font-weight: 600; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__aside {
  align-self: end; text-align: right; padding-top: 40px;
}
.hero__stamp {
  font-family: var(--ff-body); font-weight: 600; font-size: 13px; letter-spacing: .34em;
  text-transform: uppercase; color: #cfc7ea; line-height: 2.4;
}
.hero__stamp::before { content:""; display:block; width:60px; height:2px; background:var(--purple); margin:0 0 18px auto; }

/* editing hero variant — image sits top-right, text left */
.hero--editing .hero__bg::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(8,8,11,.78) 38%, rgba(8,8,11,.2) 66%, rgba(8,8,11,.4) 100%),
    linear-gradient(0deg, var(--bg) 2%, rgba(8,8,11,0) 46%);
}
.hero__title--stack { flex-direction: column; align-items: flex-start; gap: 0; }
.hero__title--stack .hl { color: var(--purple-bright); }

/* ---- Trust row -------------------------------------------- */
.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.trust__item { display: flex; gap: 14px; align-items: flex-start; }
.trust__ic { color: var(--purple-bright); flex: none; margin-top: 2px; }
.trust__ic svg { width: 30px; height: 30px; }
.trust__t { color: #fff; font-weight: 600; font-size: 15px; }
.trust__d { color: var(--muted); font-size: 13.5px; margin-top: 2px; }

/* ---- Format cards ----------------------------------------- */
.formats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.fcard__img { aspect-ratio: 16/10; }
.fcard__img img { width: 100%; height: 100%; object-fit: cover; }
.fcard__body { padding: 22px 22px 26px; text-align: center; }
.fcard__t { font-size: 20px; color: #fff; margin-bottom: 8px; }
.fcard__d { font-size: 14.5px; color: var(--muted); }
.formats__note { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 22px; }

/* ---- Pricing ----------------------------------------------- */
.pricing {
  background: linear-gradient(135deg, rgba(139,92,246,.10), rgba(139,92,246,.02));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 44px; display: grid; grid-template-columns: minmax(200px,320px) 1fr; gap: 40px; align-items: center;
}
.price__big { font-family: var(--ff-display); font-weight: 800; font-size: 84px; line-height: .9; color: var(--purple-bright); }
.price__unit { font-family: var(--ff-display); font-weight: 700; font-size: 26px; color: #fff; margin-top: 6px; }
.price__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.price__list li { display: flex; align-items: center; gap: 14px; font-size: 17px; color: #e7e7ef; }
.price__list svg { width: 22px; height: 22px; color: var(--purple-bright); flex: none; }
.price__note { color: var(--muted); font-size: 14px; margin-top: 22px; }

/* ---- Editing CTA panel (home) ------------------------------ */
.promo {
  background: var(--panel); border: 1px solid var(--purple); border-radius: var(--radius);
  padding: 34px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
  box-shadow: inset 0 0 0 1px rgba(139,92,246,.12);
}
.promo--stacked { margin-top: 30px; }
.promo__t { font-size: 26px; color: #fff; margin: 10px 0 12px; line-height: 1.15; }
.promo__d { color: var(--body); font-size: 15.5px; margin-bottom: 22px; }
.promo__img { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.promo__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }

/* ---- How it works ------------------------------------------ */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 18px; align-items: start; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step__n { font-family: var(--ff-display); font-weight: 800; font-size: 40px; color: var(--purple-bright); line-height: 1; }
.step__ic { color: #fff; margin-bottom: 8px; }
.step__ic svg { width: 34px; height: 34px; }
.step__t { color: #fff; font-weight: 600; font-size: 16px; }
.step__d { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.step__arrow { align-self: center; color: var(--muted); }
.step__arrow svg { width: 26px; height: 26px; }

/* ---- Service cards (editing) ------------------------------- */
.services { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc { display: flex; flex-direction: column; }
.svc__img { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/11; background: var(--panel); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; }
.svc__img--icon { display: flex; align-items: center; justify-content: center; background: var(--panel); }
.svc__img--icon svg { width: 46px; height: 46px; color: #fff; }
.svc__head { display: flex; align-items: center; gap: 10px; margin: 16px 0 8px; }
.svc__head svg { width: 22px; height: 22px; color: #fff; flex: none; }
.svc__t { font-size: 18px; color: #fff; }
.svc__d { color: var(--muted); font-size: 14.5px; }

/* ---- Before / after slider --------------------------------- */
.restore { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-strong);
  aspect-ratio: 16/10; user-select: none; background: #000;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; width: 50%; overflow: hidden; border-right: 2px solid #fff; }
.ba__before img { width: auto; height: 100%; max-width: none; }
.ba__handle {
  position: absolute; z-index: 3; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(20,20,26,.85);
  border: 2px solid #fff; display: flex; align-items: center; justify-content: center;
}
.ba__grip svg { width: 20px; height: 20px; color: #fff; }
.ba__tag { position: absolute; z-index: 4; bottom: 12px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.5); padding: 4px 10px; border-radius: 20px; }
.ba__tag--b { left: 12px; } .ba__tag--a { right: 12px; }
.restore__t { display: flex; align-items: center; gap: 12px; font-size: 26px; color: #fff; margin: 0 0 14px; }
.restore__t svg { width: 30px; height: 30px; color: var(--purple-bright); }
.restore__d { color: var(--body); font-size: 15.5px; }

/* ---- FAQ --------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; color: #fff; text-align: left;
  font-family: var(--ff-display); font-weight: 600; font-size: 18px; padding: 22px 40px 22px 0;
  position: relative; display: block;
}
.faq__q::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 14px; height: 14px;
  background:
    linear-gradient(var(--purple-bright),var(--purple-bright)) center/14px 2px no-repeat,
    linear-gradient(var(--purple-bright),var(--purple-bright)) center/2px 14px no-repeat;
  transform: translateY(-50%); transition: transform .2s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; color: var(--body); font-size: 15.5px; }
.faq__a p { padding: 0 0 22px; }

/* ---- Callout / contact ------------------------------------- */
.callout { text-align: center; max-width: 760px; margin: 0 auto; }
.callout__t { font-size: clamp(26px,4vw,36px); color: #fff; margin: 12px 0 16px; }
.callout__d { color: var(--body); font-size: 16px; margin-bottom: 26px; }
.contact-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.reel-cta {
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-strong);
  padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.reel-cta__bg { position: absolute; inset: 0; z-index: 0; }
.reel-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.reel-cta__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(8,8,11,.94), rgba(8,8,11,.6)); }
.reel-cta__t { position: relative; z-index: 2; font-size: clamp(26px,3.4vw,34px); color: #fff; max-width: 460px; line-height: 1.15; }
.reel-cta__actions { position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- "Let's create..." scrolling footage strip ------------ */
.strip-cta { padding-bottom: 96px; }
.strip-cta__t { font-size: clamp(26px,3.6vw,36px); color: #fff; margin: 0 0 40px; }
.filmstrip {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.filmstrip__track { display: flex; width: max-content; animation: filmstrip-scroll 45s linear infinite; }
.filmstrip__track img {
  height: 210px; width: auto; aspect-ratio: 16/9; object-fit: cover; flex: none;
  margin-right: 16px; border-radius: 12px; border: 1px solid var(--line);
}
.filmstrip:hover .filmstrip__track { animation-play-state: paused; }
@keyframes filmstrip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .filmstrip__track img { height: 140px; margin-right: 12px; } }
@media (prefers-reduced-motion: reduce) { .filmstrip__track { animation: none; } }

/* ---- Contact form ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: #fff; font-family: inherit; font-size: 15px; padding: 13px 14px; transition: border-color .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--purple); }
.form__status { font-size: 14px; color: var(--purple-bright); min-height: 20px; }
.form-success {
  text-align: center; padding: 40px 26px; border: 1px solid var(--purple);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(139,92,246,.02));
}
.form-success__ic {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,.16); border: 1px solid var(--purple);
}
.form-success__ic svg { width: 28px; height: 28px; color: var(--purple-bright); }
.form-success__t { font-size: 28px; color: #fff; margin: 0 0 10px; }
.form-success__d { color: var(--body); font-size: 15.5px; max-width: 360px; margin: 0 auto; }
.form-success__again {
  margin-top: 18px; background: none; border: 0; cursor: pointer;
  color: var(--purple-bright); font-family: var(--ff-body); font-weight: 600; font-size: 15px;
  padding: 6px; text-decoration: underline;
}
.form-success__again:hover { color: #fff; }

/* ---- Order form -------------------------------------------- */
.order-form { max-width: 700px; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 14.5px; color: var(--body); line-height: 1.5; }
.checkbox input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--purple); flex: none; }
.order-legal { color: var(--muted); font-size: 13px; margin-top: 4px; }

.order-success { max-width: 720px; scroll-margin-top: 96px; }
.order-success__badge { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.order-success__badge svg { width: 34px; height: 34px; color: var(--purple-bright); flex: none; }
.order-num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(24px,4vw,32px); color: #fff; letter-spacing: .02em; }
.order-steps { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 12px; }
.order-steps li { display: flex; gap: 12px; color: var(--body); font-size: 15px; }
.order-steps svg { width: 20px; height: 20px; color: var(--purple-bright); flex: none; margin-top: 2px; }

/* printable packing slip (white so it prints cleanly) */
.slip { background: #fff; color: #111; border-radius: 12px; padding: 30px; margin: 8px 0 22px; }
.slip__brand { font-family: var(--ff-display); font-weight: 800; font-size: 20px; color: #111; letter-spacing: .02em; }
.slip__brand span { color: #6b6b7a; font-weight: 600; font-size: 13px; }
.slip__num { font-family: var(--ff-display); font-weight: 800; font-size: 26px; margin: 12px 0; color: #111; }
.slip__num small { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #777; font-weight: 600; }
.slip__row { display: flex; gap: 10px; font-size: 14px; padding: 6px 0; border-bottom: 1px solid #eee; color: #222; }
.slip__row b { min-width: 130px; color: #111; }
.slip__post { margin-top: 16px; font-size: 14px; color: #111; line-height: 1.5; }
.slip__post b { display: block; margin-bottom: 2px; }

@media print {
  @page { margin: 14mm; }
  html, body { background: #fff !important; }
  body * { visibility: hidden !important; }
  #packingSlip, #packingSlip * { visibility: visible !important; }
  #packingSlip {
    position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 0;
    border-radius: 0;
  }
  .slip__brand { font-size: 15px; }
  .slip__num { font-size: 19px; margin: 6px 0 10px; }
  .slip__num small { font-size: 10px; }
  .slip__row { font-size: 11.5px; padding: 3px 0; }
  .slip__row b { min-width: 108px; }
  .slip__post { font-size: 11.5px; margin-top: 10px; }
}

.contact-alt { display: grid; gap: 16px; }
.contact-alt__card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  display: flex; align-items: center; gap: 16px;
}
.contact-alt__card svg { width: 30px; height: 30px; color: var(--purple-bright); flex: none; }
.contact-alt__t { color: #fff; font-weight: 600; }
.contact-alt__d { color: var(--muted); font-size: 14px; }

/* ---- Footer ------------------------------------------------ */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg-2); }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 22px; }
.footer__links a { font-size: 14px; color: var(--body); }
.footer__links a:hover { color: #fff; }
.footer__note { color: var(--muted); font-size: 13px; text-align: right; line-height: 1.5; }

/* ---- Section intro helper ---------------------------------- */
.intro { max-width: 640px; }
.intro--center { margin: 0 auto; text-align: center; }
.intro__t { font-size: clamp(26px,3.4vw,34px); color: #fff; margin: 0 0 14px; }
.intro__d { color: var(--body); font-size: 16px; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { display: none; }
  .trust { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .formats, .services { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
  .promo { grid-template-columns: 1fr; }
  .promo__img { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .step__arrow { display: none; }
  .restore { grid-template-columns: 1fr; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .nav__links, .nav__right .btn { display: none; }
  .nav__toggle { display: block; }
  .nav--open .nav__links {
    display: flex; position: absolute; left: 0; right: 0; top: 76px; flex-direction: column;
    gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav--open .nav__links a { padding: 14px var(--gutter); width: 100%; }
  .trust, .formats, .services { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .price__big { font-size: 64px; }
  .footer, .reel-cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__note { text-align: left; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
