/* ============================================================
   Save Time — Landing theme (dark cinematic)
   Vanilla CSS, design tokens from the brand charter.
   ============================================================ */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --ink: #0e0e0e;
  --ink-soft: #3a3a3a;
  --ink-muted: #8a8a8a;
  --paper: #f9f7f3;
  --paper-warm: #f2ede4;
  --paper-dark: #ede8de;
  --gold: #c9a84c;
  --gold-light: #e8d49a;
  --gold-dark: #8f6820;
  --accent: #1a3a2a;
  --accent-light: #2d5c42;
  --white: #ffffff;
  --red: #c0392b;

  --bg-0: #0a0a0a;
  --bg-1: #0e0e0e;
  --bg-2: #141414;
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --txt: rgba(255, 255, 255, 0.92);
  --txt-soft: rgba(255, 255, 255, 0.66);
  --txt-muted: rgba(255, 255, 255, 0.42);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1180px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-1);
  color: var(--txt-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---- Helpers ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 820px; }
.section { padding: 6.5rem 0; position: relative; }
.bg-0 { background: var(--bg-0); }
.bg-1 { background: var(--bg-1); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: 6px; font-weight: 600;
}
.skip-link:focus { left: 1rem; top: .6rem; }

.eyebrow {
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 600; color: var(--gold-light); margin: 0;
}
.title { font-size: clamp(1.9rem, 4vw, 3rem); }
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--txt-soft); }
.gold-rule::after {
  content: ''; display: block; width: 3rem; height: 2px; margin-top: 1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-rule--center { text-align: center; }
.gold-rule--center::after { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.text-gold-gradient {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---- Logotype ---- */
.logotype {
  font-family: var(--font-display); font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; line-height: 1; display: inline-flex; align-items: baseline;
}
.logotype .s { color: var(--white); }
.logotype .t { color: var(--gold); }
.logotype--ink .s { color: var(--ink); }

/* ---- Glass ---- */
.glass { background: rgba(255,255,255,0.035); border: 1px solid var(--line); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.glass-hover { transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, background .35s ease, box-shadow .35s ease; }
.glass-hover:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.55); background: rgba(255,255,255,.06); box-shadow: 0 18px 50px -20px rgba(201,168,76,.35); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 9999px; padding: .9rem 1.7rem; font-weight: 600; font-size: .95rem; letter-spacing: .01em; transition: all .25s ease; cursor: pointer; border: 0; }
.btn--primary { background: linear-gradient(120deg, var(--gold-light), var(--gold)); color: var(--ink); box-shadow: 0 10px 30px -10px rgba(201,168,76,.6); }
.btn--primary:hover { box-shadow: 0 14px 40px -8px rgba(201,168,76,.8); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(255,255,255,.03); }
.btn--sm { padding: .65rem 1.2rem; font-size: .9rem; }

/* ---- Header ---- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: all .3s ease; padding: .6rem 0; background: transparent; }
.site-header.is-scrolled { background: rgba(255,255,255,.035); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.nav { display: none; gap: 2rem; }
.nav a { font-size: .9rem; font-weight: 500; color: var(--txt-soft); transition: color .2s; }
.nav a:hover { color: var(--gold-light); }
.header__actions { display: none; align-items: center; gap: 1.25rem; }
.lang-switch { display: inline-flex; align-items: center; gap: .25rem; font-size: .85rem; font-weight: 600; }
.lang-switch a, .lang-switch span.sep { color: var(--txt-muted); text-transform: uppercase; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.is-active { color: var(--white); }
.burger { display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; background: transparent; border: 0; cursor: pointer; }
.burger span { display: block; position: relative; width: 1.5rem; height: 1rem; }
.burger span i { position: absolute; left: 0; height: 2px; width: 1.5rem; background: var(--white); transition: all .3s; }
.burger span i:nth-child(1) { top: 0; }
.burger span i:nth-child(2) { top: .45rem; }
.burger span i:nth-child(3) { top: .9rem; }
.site-header.is-open .burger i:nth-child(1) { top: .45rem; transform: rotate(45deg); }
.site-header.is-open .burger i:nth-child(2) { opacity: 0; }
.site-header.is-open .burger i:nth-child(3) { top: .45rem; transform: rotate(-45deg); }
.mobile-menu { display: none; background: rgba(10,10,10,.96); border-top: 1px solid var(--line); }
.site-header.is-open .mobile-menu { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; padding: 1rem 0; }
.mobile-menu nav a { padding: .65rem .5rem; color: var(--txt-soft); border-radius: 6px; font-weight: 500; }
.mobile-menu nav a:hover { background: rgba(255,255,255,.05); }

/* ---- Hero ---- */
.hero { position: relative; display: flex; align-items: center; min-height: 92vh; overflow: hidden; background: radial-gradient(120% 120% at 80% 0%, #161616 0%, #0a0a0a 55%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding-top: 7rem; padding-bottom: 5rem; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.04; margin-top: 1.25rem; }
.hero__subtitle { margin-top: 1.5rem; max-width: 36rem; }
.hero__cta { margin-top: 2.25rem; display: flex; flex-direction: column; gap: .75rem; }
.hero__stats { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: .75rem 2rem; }
.hero__stats li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--txt-soft); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero__visual { position: relative; display: none; }
.hero__card { position: relative; aspect-ratio: 4/5; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 40px 120px -40px rgba(201,168,76,.45); }
.hero__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero__card-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,.92) 4%, rgba(8,8,8,.15) 42%, transparent 70%); }
.hero__caption { position: absolute; inset: auto 0 0 0; padding: 1.5rem; }
.hero__caption .name { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.hero__caption .role { margin-top: .25rem; font-size: .9rem; }
.hero__badge { position: absolute; right: -1rem; top: 2rem; border-radius: 1rem; padding: .75rem 1rem; text-align: center; }
.hero__badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.hero__badge .sub { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-muted); }
.scroll-hint { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: none; }
.scroll-hint .mouse { width: 1.5rem; height: 2.25rem; border: 1px solid var(--line); border-radius: 9999px; display: flex; justify-content: center; }
.scroll-hint .mouse i { width: 3px; height: .5rem; margin-top: .4rem; background: var(--gold); border-radius: 9999px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity:1 } 50% { transform: translateY(6px); opacity:.4 } }

/* ---- Halos ---- */
.halo { position: absolute; border-radius: 9999px; filter: blur(80px); opacity: .5; pointer-events: none; }
.halo--gold { background: radial-gradient(circle, rgba(201,168,76,.55), transparent 70%); }
.halo--green { background: radial-gradient(circle, rgba(45,92,66,.5), transparent 70%); }
.halo--a { width: 520px; height: 520px; top: -10%; right: -5%; animation: floatHalo 11s ease-in-out infinite; }
.halo--b { width: 460px; height: 460px; bottom: -15%; left: -8%; animation: floatHalo2 13s ease-in-out infinite; }
@keyframes floatHalo { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(30px,-20px) scale(1.08) } }
@keyframes floatHalo2 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(-25px,25px) scale(1.12) } }

/* ---- Marquee ---- */
.band { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-0); padding: 2.5rem 0; }
.band__label { text-align: center; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; color: var(--txt-muted); margin-bottom: 1.5rem; }
.marquee-mask { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee { display: flex; width: max-content; align-items: center; gap: 4rem; animation: marquee 32s linear infinite; }
.marquee--gallery { gap: 1.25rem; animation-duration: 46s; }
.marquee__logo { display: flex; height: 8rem; width: 20rem; align-items: center; justify-content: center; opacity: .6; transition: opacity .3s; }
.marquee__logo:hover { opacity: 1; }
.marquee__logo img { max-height: 7rem; width: auto; object-fit: contain; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ---- Section heading ---- */
.sec-head { max-width: 42rem; }
.sec-head .title { margin-top: .75rem; }
.sec-head .lead { margin-top: 1.5rem; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Services ---- */
.filters { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.filter { border-radius: 9999px; padding: .5rem 1rem; font-size: .85rem; font-weight: 600; color: var(--txt-soft); background: rgba(255,255,255,.035); border: 1px solid var(--line); cursor: pointer; transition: all .25s; }
.filter:hover { border-color: var(--gold); }
.filter.is-active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cards { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card { border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; }
.card__icon { width: 3rem; height: 3rem; border-radius: .75rem; display: inline-flex; align-items: center; justify-content: center; background: rgba(201,168,76,.12); color: var(--gold-light); margin-bottom: 1.25rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; color: var(--white); }
.card__line { display: inline-block; width: 2rem; height: 1px; background: var(--gold); margin: .5rem 0 0; }
.card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .375rem; font-size: .875rem; color: var(--txt-soft); }
.card ul li { display: flex; gap: .5rem; }
.card ul li span.b { color: var(--gold); }
.synergy { margin-top: 3rem; text-align: center; font-size: 1.25rem; font-weight: 500; }
.is-hidden { display: none !important; }

/* ---- Method ---- */
.steps { position: relative; margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
.steps__line { display: none; }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; }
.step h3 { margin-top: 1.25rem; font-size: 1.25rem; color: var(--white); }
.step p { margin-top: .5rem; font-size: .875rem; color: var(--txt-soft); }

/* ---- Pricing ---- */
.plans { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
.plan { position: relative; border-radius: 1.5rem; padding: 1.75rem; display: flex; flex-direction: column; height: 100%; }
.plan--featured { background: linear-gradient(180deg, rgba(201,168,76,.14), rgba(255,255,255,.03)); border: 1px solid rgba(201,168,76,.55); box-shadow: 0 30px 80px -30px rgba(201,168,76,.5); }
.plan__tag { position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink); border-radius: 9999px; padding: .25rem .75rem; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.plan h3 { font-size: 1.5rem; color: var(--white); }
.plan__tagline { margin-top: .5rem; min-height: 2.75rem; font-size: .875rem; color: var(--txt-soft); }
.plan__price { margin-top: 1.25rem; display: flex; align-items: flex-end; gap: .25rem; }
.plan__price .from { font-size: .75rem; color: var(--txt-muted); }
.plan__price .amount { font-family: var(--font-display); font-weight: 800; font-size: 2.75rem; color: var(--white); line-height: 1; }
.plan__price .per { padding-bottom: .25rem; font-size: .875rem; color: var(--txt-muted); }
.plan__price .tbd { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.plan__inc { margin-top: 1.25rem; font-size: .875rem; font-weight: 500; color: var(--gold-light); }
.plan__features { margin-top: 1rem; flex: 1; display: flex; flex-direction: column; gap: .625rem; font-size: .875rem; color: var(--txt-soft); }
.plan__features li { display: flex; gap: .625rem; }
.plan__features svg { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.plan .btn { margin-top: 1.75rem; }
.plan__note { margin: 2rem auto 0; max-width: 42rem; text-align: center; font-size: .75rem; color: var(--txt-muted); }

/* ---- Work ---- */
.work-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.case { border-radius: 1.5rem; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.case__cover { position: relative; height: 13rem; overflow: hidden; }
.case__cover img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.case:hover .case__cover img.bg { transform: scale(1.05); }
.case__cover-grad { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.85), rgba(10,10,10,.15) 55%, rgba(10,10,10,.35)); }
.case__logo { position: absolute; left: 1rem; top: 1rem; height: 2.25rem; }
.case__logo img { height: 100%; width: auto; object-fit: contain; }
.case__sector { position: absolute; right: 1rem; top: 1rem; background: rgba(0,0,0,.55); color: var(--gold-light); border-radius: 9999px; padding: .25rem .75rem; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.case__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.case__body h3 { font-size: 1.5rem; color: var(--white); }
.case__body p { margin-top: .75rem; font-size: .875rem; color: var(--txt-soft); }

/* ---- Gallery ---- */
.gallery-head { margin-top: 5rem; margin-bottom: 1.75rem; max-width: 42rem; }
.gallery-head h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); color: var(--white); }
.gallery-head p { margin-top: .5rem; font-size: .875rem; color: var(--txt-soft); }
.gfig { position: relative; aspect-ratio: 4/5; width: 13rem; flex-shrink: 0; overflow: hidden; border-radius: 1rem; border: 1px solid var(--line); }
.gfig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gfig:hover img { transform: scale(1.05); }
.gfig figcaption { position: absolute; inset: auto 0 0 0; padding: .5rem .75rem; font-size: .75rem; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent); opacity: 0; transition: opacity .3s; }
.gfig:hover figcaption { opacity: 1; }

/* ---- Why ---- */
.why-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
.why-item { border-radius: 1rem; padding: 1.75rem; height: 100%; }
.why-item .n { font-family: var(--font-display); font-weight: 800; font-size: .875rem; }
.why-item h3 { margin-top: .75rem; font-size: 1.125rem; color: var(--white); }
.why-item p { margin-top: .5rem; font-size: .875rem; color: var(--txt-soft); }

/* ---- FAQ ---- */
.faq { margin-top: 3rem; display: flex; flex-direction: column; gap: .75rem; }
.faq__item { border-radius: 1rem; overflow: hidden; }
.faq__item.is-open { border-color: rgba(201,168,76,.4); }
.faq__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; background: transparent; border: 0; cursor: pointer; }
.faq__q span.q { font-family: var(--font-display); font-size: 1.125rem; color: var(--white); }
.faq__q .plus { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; flex-shrink: 0; border-radius: 9999px; border: 1px solid var(--gold); color: var(--gold-light); font-size: 1.125rem; transition: transform .3s; }
.faq__item.is-open .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 1.5rem 1.25rem; font-size: 1rem; color: var(--txt-soft); }

/* ---- Contact ---- */
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact__info h3 { color: var(--white); font-size: 1rem; margin-top: 2.5rem; }
.contact__info ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .75rem; font-size: .875rem; }
.contact__info .lbl { display: block; color: var(--txt-muted); }
.contact__info a, .contact__info .val { color: var(--white); font-weight: 500; }
.contact__info a:hover { color: var(--gold-light); }
.form { border-radius: 1.5rem; padding: 1.5rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-top: 1rem; }
.field:first-child { margin-top: 0; }
.form .row .field { margin-top: 0; } /* fields side-by-side stay top-aligned */
.field label { display: block; margin-bottom: .375rem; font-size: .875rem; font-weight: 500; color: var(--white); }
.field input, .field select, .field textarea {
  width: 100%; border-radius: .75rem; border: 1px solid var(--line); background: rgba(255,255,255,.04);
  padding: .75rem 1rem; color: var(--white); font-family: inherit; font-size: 1rem; outline: none; transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field select option { color: #111; }
.form .btn { margin-top: 1.5rem; width: 100%; }
.form__hint { margin-top: .75rem; text-align: center; font-size: .75rem; color: var(--txt-muted); }
.form__msg { margin-top: 1rem; border-radius: .75rem; padding: .75rem 1rem; font-size: .875rem; }
.form__msg--ok { background: rgba(45,92,66,.2); color: #9fe0bd; }
.form__msg--err { background: rgba(192,57,43,.18); color: #f1a59c; }

/* ---- Footer ---- */
.site-footer { background: var(--bg-0); border-top: 1px solid var(--line-soft); padding: 3.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer__brand p { margin-top: 1rem; max-width: 18rem; font-size: .875rem; color: var(--txt-soft); }
.footer h3 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-light); }
.footer ul { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer a { color: var(--txt-soft); }
.footer a:hover { color: var(--gold); }
.footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .75rem; justify-content: space-between; font-size: .75rem; color: var(--txt-muted); }
.footer__bottom a:hover { color: var(--gold); }

/* ---- Legal pages ---- */
.legal { background: var(--bg-1); }
.legal h1 { font-size: clamp(1.9rem,4vw,3rem); margin-top: .75rem; }
.legal .intro { margin-top: 1.5rem; }
.legal .updated { margin-top: .75rem; font-size: .875rem; color: var(--txt-muted); }
.legal section { margin-top: 2.25rem; }
.legal section h2 { font-size: 1.4rem; color: var(--white); }
.legal section h2 + .rule { display: block; width: 2rem; height: 1px; background: var(--gold); margin-top: .5rem; }
.legal section p { margin-top: 1rem; color: var(--txt-soft); }
.legal-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.035); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%) translateY(150%);
  z-index: 60; width: calc(100% - 2rem); max-width: 720px; border-radius: 1rem;
  padding: 1.1rem 1.35rem; display: none; gap: 1.25rem; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.7); transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.cookie-banner.is-visible { display: flex; transform: translateX(-50%) translateY(0); }
.cookie-banner__text { flex: 1; min-width: 220px; font-size: .85rem; color: var(--txt-soft); }
.cookie-banner__text strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 1rem; margin-bottom: .25rem; }
.cookie-banner__text a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .6rem; flex-shrink: 0; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: row; align-items: center; }
  .form .row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .work-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: block; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; align-items: center; }
}
@media (min-width: 1024px) {
  .nav, .header__actions { display: flex; }
  .burger { display: none; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .steps__line { display: block; position: absolute; left: 0; right: 0; top: 1.75rem; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1.15fr .85fr; }
  .hero__visual { display: block; }
  .contact-grid { grid-template-columns: 1.1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee, .halo, .scroll-hint .mouse i { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
