@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

:root {
  --navy-950: #030b24;
  --navy-900: #071638;
  --navy: #0b2a6b;
  --ink: #0b1a3a;
  --blue: #1464e0;
  --blue-2: #3a8bff;
  --aqua: #45d2ff;
  --muted: #5d6b84;
  --line: #e2e9f3;
  --bg: #f3f6fb;
  --card: #ffffff;
  --danger: #e5484d;
  --ok: #10a36a;
  --radius: 22px;
  --shadow: 0 1px 2px rgba(11, 26, 58, .04), 0 12px 32px -12px rgba(11, 26, 58, .14);
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: light;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}
h1, h2, h3 { font-family: Montserrat, Manrope, sans-serif; line-height: 1.08; margin: 0; letter-spacing: -.03em; }
p { margin: 0; }
a { color: var(--blue); }
button { font: inherit; color: inherit; }
svg { display: block; }

/* ---------- Header ---------- */
.topbar {
  position: fixed; z-index: 40; top: 10px; left: 12px; right: 12px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; height: 60px; padding: 0 8px 0 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(3, 11, 36, .35);
  backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4);
  animation: dropIn .9s var(--ease) both;
}
.logo { display: block; line-height: 0; }
.logo img { height: 34px; width: auto; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 10px; border-radius: 14px;
  font-weight: 800; font-size: 14px; letter-spacing: .04em; color: var(--navy); text-decoration: none;
  background: rgba(11, 42, 107, .07); transition: background .2s;
}
.lang-switch:hover { background: rgba(11, 42, 107, .14); }
.call {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-2), var(--navy));
  box-shadow: 0 6px 16px -4px rgba(20, 100, 224, .6);
}
.call svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- Buttons & inputs ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border: 0; border-radius: 16px;
  font-weight: 700; font-size: 16px; text-decoration: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .3s, background .3s, opacity .2s;
}
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.btn:active { transform: scale(.97); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #4d9bff 0%, var(--blue) 45%, #0d3fa8 100%);
  box-shadow: 0 10px 28px -8px rgba(20, 100, 224, .75), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .45) 50%, transparent 65%);
  transform: translateX(-120%); animation: sheen 4.5s ease-in-out 2s infinite;
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { color: #fff; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-lg { min-height: 58px; font-size: 17px; }
.btn[disabled] { opacity: .6; pointer-events: none; }

.input {
  width: 100%; min-height: 52px; padding: 0 16px;
  border: 1.5px solid var(--line); border-radius: 14px; background: #f8fafd;
  font: inherit; font-size: 16px; color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus { border-color: var(--blue-2); background: #fff; box-shadow: 0 0 0 4px rgba(58, 139, 255, .16); }
.input-label { display: block; margin: 16px 0 6px; font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.phone { display: flex; align-items: stretch; }
.phone span { display: grid; place-items: center; padding: 0 14px; border: 1.5px solid var(--line); border-right: 0; border-radius: 14px 0 0 14px; background: #eef3fa; font-weight: 800; }
.phone .input { border-radius: 0 14px 14px 0; letter-spacing: .03em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 96px 20px 40px;
  color: #fff;
  background:
    radial-gradient(60% 45% at 55% 30%, rgba(20, 100, 224, .55), transparent 70%),
    radial-gradient(40% 30% at 25% 50%, rgba(69, 210, 255, .18), transparent 70%),
    linear-gradient(180deg, #06184a, var(--navy-950));
}
#scene { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: 0; transition: opacity 1.4s ease; touch-action: pan-y; }
#scene.ready { opacity: 1; }
.no-3d #scene { display: none; }
.hero-shade { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, rgba(3, 11, 36, 0) 35%, rgba(3, 11, 36, .78) 72%, var(--navy-950) 100%); }
.hero-content { position: relative; max-width: 560px; pointer-events: none; }
.hero-content a, .hero-content button { pointer-events: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; margin-bottom: 18px;
  border-radius: 99px; font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  animation: fadeUp .8s .3s var(--ease) both;
}
.pulse { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #3ee08f; }
.pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #3ee08f; animation: ping 2s ease-out infinite; }

.hero h1 { font-size: clamp(38px, 11vw, 76px); font-weight: 900; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > span { display: inline-block; animation: lineUp 1s var(--ease) both; }
.hero h1 .line:nth-child(1) > span { animation-delay: .45s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .57s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .69s; }
.accent { background: linear-gradient(90deg, #7fdcff, #3a8bff 55%, #9fe8ff); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: lineUp 1s .69s var(--ease) both, shimmer 6s linear 2s infinite !important; }

.lead { margin: 16px 0 26px; max-width: 460px; color: rgba(255, 255, 255, .72); font-size: 16px; animation: fadeUp .8s .85s var(--ease) both; }
.hero-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; animation: fadeUp .8s 1s var(--ease) both; }
.hero-stats {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); margin: 22px 0 0; padding: 0;
  border-radius: 18px; overflow: hidden;
  background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: fadeUp .8s 1.15s var(--ease) both;
}
.hero-stats li { padding: 12px 6px; text-align: center; }
.hero-stats li + li { border-left: 1px solid rgba(255, 255, 255, .1); }
.hero-stats b { display: block; font-family: Montserrat, sans-serif; font-size: 16px; font-weight: 800; }
.hero-stats span { font-size: 12px; color: rgba(255, 255, 255, .6); }

.scroll-hint { display: none; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 16px 0; background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, .06); }
.marquee-track { display: flex; align-items: center; gap: 22px; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: Montserrat, sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 255, 255, .75); white-space: nowrap; }
.marquee i { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); }

/* ---------- Sections ---------- */
.section { padding: 56px 16px 20px; max-width: 1080px; margin: 0 auto; }
.kicker { display: inline-block; margin-bottom: 8px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.section h2 { font-size: clamp(30px, 8vw, 44px); font-weight: 900; margin-bottom: 22px; color: var(--ink); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: s; }
.steps li {
  position: relative; overflow: hidden; display: flex; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
}
.step-ico {
  flex: none; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(145deg, #4d9bff, var(--navy)); box-shadow: 0 8px 20px -8px rgba(20, 100, 224, .7), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.step-ico svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.steps b { display: block; font-size: 17px; }
.steps p { color: var(--muted); font-size: 14px; }
.step-num { position: absolute; right: 14px; top: 10px; font-family: Montserrat, sans-serif; font-weight: 900; font-size: 13px; letter-spacing: .1em; color: #b7c3d6; pointer-events: none; }

/* ---------- Tariffs ---------- */
.tariffs { display: grid; gap: 16px; perspective: 1200px; }
.tariff {
  --rx: 0deg; --ry: 0deg;
  position: relative; border-radius: 26px; padding: 26px 22px 22px;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
  transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .4s;
}
.tariff.tilting { transition: transform .08s linear, box-shadow .4s; }
.tariff.premium {
  color: #fff; border: 0; isolation: isolate;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(69, 210, 255, .28), transparent 60%),
    linear-gradient(160deg, #0d2f7a, var(--navy-950) 75%);
  box-shadow: 0 30px 60px -24px rgba(3, 11, 36, .7);
}
.tariff.premium::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1.5px;
  background: conic-gradient(from var(--angle), transparent 0 60%, #45d2ff 75%, #3a8bff 85%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spinAngle 5s linear infinite;
}
.tariff .badge {
  position: absolute; top: 20px; right: 20px; padding: 5px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 800; color: var(--navy-950); background: linear-gradient(135deg, #bff0ff, #45d2ff);
}
.tariff h3 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .7; transform: translateZ(20px); }
.tariff .price { font-family: Montserrat, sans-serif; font-size: 42px; font-weight: 900; letter-spacing: -.03em; margin: 6px 0 18px; transform: translateZ(40px); }
.tariff .price small { font-size: 16px; font-weight: 700; opacity: .6; letter-spacing: 0; }
.tariff ul { list-style: none; margin: 0 0 22px; padding: 18px 0 0; display: grid; gap: 10px; font-size: 15px; border-top: 1px solid var(--line); }
.tariff.premium ul { border-color: rgba(255, 255, 255, .12); }
.tariff li { display: flex; gap: 10px; align-items: flex-start; }
.tariff li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: rgba(20, 100, 224, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231464e0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.tariff.premium li::before { background-color: rgba(69, 210, 255, .16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2345d2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E"); }
.tariff .btn { width: 100%; transform: translateZ(30px); }
.tariff:not(.premium) .btn { background: #eaf2ff; color: var(--blue); box-shadow: none; }
.tariff:not(.premium) .btn::after { display: none; }

/* ---------- Service area ---------- */
.section-lead { max-width: 560px; margin: -8px 0 18px; color: var(--muted); font-size: 16px; }
.districts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.districts li {
  padding: 9px 14px; border-radius: 99px; font-size: 14px; font-weight: 700;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px; font-weight: 700; font-size: 16px; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 9px; background: #eef4ff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231464e0' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 18px 18px; color: var(--muted); }
.noscript { padding: 14px 16px; margin-bottom: 14px; border-radius: 14px; background: #fff4e5; color: #6b4200; }

/* ---------- Booking form ---------- */
.booking form { max-width: 620px; }
.field { border: 1px solid var(--line); margin: 0 0 14px; padding: 18px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 0; }
.field legend { float: left; width: 100%; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-weight: 800; font-size: 17px; }
.field legend + * { clear: both; }
.num { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: linear-gradient(145deg, #4d9bff, var(--navy)); color: #fff; font-size: 13px; font-weight: 800; }
.field.invalid { animation: shake .4s; border-color: var(--danger); box-shadow: 0 0 0 3px rgba(229, 72, 77, .15), var(--shadow); }
.hint { margin-top: 8px; font-size: 13px; color: var(--muted); }
.hint:empty { display: none; }

.days { display: flex; gap: 8px; overflow-x: auto; margin: 0 -18px 14px; padding: 2px 18px 6px; scroll-snap-type: x proximity; scrollbar-width: none; }
.days::-webkit-scrollbar { display: none; }
.chip {
  flex: none; scroll-snap-align: start; min-width: 92px; padding: 10px 14px; border-radius: 16px;
  border: 1.5px solid var(--line); background: #f8fafd; text-align: left; cursor: pointer; transition: all .2s var(--ease);
}
.chip b { display: block; font-size: 15px; }
.chip span { font-size: 12px; color: var(--muted); }
.chip[aria-checked="true"] { border-color: transparent; background: linear-gradient(145deg, var(--blue), var(--navy)); color: #fff; box-shadow: 0 8px 18px -8px rgba(20, 100, 224, .8); }
.chip[aria-checked="true"] span { color: rgba(255, 255, 255, .75); }
.chip:disabled { opacity: .45; }

.hours { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot {
  min-height: 50px; border-radius: 14px; border: 1.5px solid var(--line); background: #f8fafd;
  font-weight: 700; font-size: 16px; cursor: pointer; transition: all .2s var(--ease);
}
.slot[aria-checked="true"] { border-color: transparent; background: linear-gradient(145deg, var(--blue), var(--navy)); color: #fff; transform: scale(1.04); box-shadow: 0 8px 18px -8px rgba(20, 100, 224, .8); }
.slot:disabled { background: transparent; border-style: dashed; color: #b3bdcb; text-decoration: line-through; cursor: default; }
.hours.loading .slot { animation: skeleton 1.2s ease-in-out infinite; color: transparent; }

.map-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.map { height: 300px; background: #e7eef6; }
.map-placeholder { display: grid; place-items: center; height: 100%; padding: 16px; text-align: center; color: var(--muted); font-size: 14px; }
.map-pin { position: absolute; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; z-index: 5; }
.map-pin span {
  position: absolute; left: -18px; top: -46px; width: 36px; height: 36px;
  background: linear-gradient(145deg, var(--blue-2), var(--navy)); border: 4px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 6px 16px rgba(3, 11, 36, .35); transition: top .2s var(--ease);
}
.map-pin::after { content: ""; position: absolute; left: -5px; top: -3px; width: 10px; height: 6px; border-radius: 50%; background: rgba(0, 0, 0, .3); }
.map-wrap.moving .map-pin span { top: -58px; }
.map-locate {
  position: absolute; left: 10px; bottom: 10px; z-index: 6; display: inline-flex; align-items: center; gap: 6px;
  min-height: 42px; padding: 0 16px; border: 0; border-radius: 99px; background: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 18px rgba(3, 11, 36, .2); cursor: pointer;
}
.map-locate svg { width: 18px; height: 18px; fill: var(--blue); }
.map-locate.busy svg { animation: spin 1s linear infinite; }

.tariff-options { display: grid; gap: 8px; }
.t-opt {
  display: flex; align-items: center; gap: 12px; width: 100%;
  min-height: 64px; padding: 10px 16px; border-radius: 16px; border: 1.5px solid var(--line); background: #f8fafd; text-align: left; cursor: pointer; transition: all .2s var(--ease);
}
.t-opt .radio { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #c9d4e3; background: #fff; transition: all .2s var(--ease); }
.t-opt b { display: block; }
.t-opt small { color: var(--muted); }
.t-opt .t-price { margin-left: auto; font-weight: 800; white-space: nowrap; }
.t-opt[aria-checked="true"] { border-color: var(--blue); background: #eef5ff; }
.t-opt[aria-checked="true"] .radio { border: 7px solid var(--blue); }

.form-error { color: var(--danger); font-weight: 600; text-align: center; min-height: 1.5em; }

/* ---------- Bottom bar ---------- */
.bottom-bar {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 30;
  display: flex; align-items: center; gap: 12px; max-width: 640px; margin: 0 auto;
  padding: 10px 10px 10px 18px; border-radius: 22px;
  color: #fff; background: rgba(3, 11, 36, .88);
  box-shadow: 0 20px 40px -12px rgba(3, 11, 36, .6), inset 0 0 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.bottom-bar.show { transform: none; }
.summary { flex: 1; min-width: 0; line-height: 1.25; }
.summary span { display: block; font-size: 13px; color: rgba(255, 255, 255, .65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.summary b { font-family: Montserrat, sans-serif; font-size: 17px; }
.bottom-bar .btn { flex: none; min-width: 136px; min-height: 50px; }
.bottom-bar.ready .btn { animation: nudge 2.4s ease-in-out infinite; }

/* ---------- Success ---------- */
.overlay { position: fixed; inset: 0; z-index: 50; display: grid; place-items: end center; background: rgba(3, 11, 36, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fade .25s; }
.overlay[hidden] { display: none; }
.success-card {
  width: 100%; max-width: 480px; background: #fff; border-radius: 28px 28px 0 0; padding: 30px 22px calc(22px + env(safe-area-inset-bottom));
  text-align: center; animation: sheetUp .45s var(--ease);
}
.success-card h3 { font-size: 24px; margin: 14px 0 8px; }
.success-card p { margin-bottom: 6px; }
.success-card .btn { width: 100%; margin-top: 18px; }
.muted { color: var(--muted); font-size: 14px; }
.check { display: grid; place-items: center; }
.check svg { width: 80px; height: 80px; fill: none; stroke: var(--ok); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.check circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw .6s .1s forwards; }
.check path { stroke-dasharray: 36; stroke-dashoffset: 36; animation: draw .4s .6s forwards; }

.footer { text-align: center; padding: 40px 16px 16px; color: var(--muted); font-size: 14px; }
.footer p + p { margin-top: 6px; }
.footer a { font-weight: 600; }
.footer-logo { height: 40px; width: auto; margin: 0 auto 10px; display: block; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.tariff.reveal.in { transform: rotateX(var(--rx)) rotateY(var(--ry)); }

@keyframes dropIn { from { opacity: 0; transform: translateY(-20px); } }
@keyframes lineUp { from { transform: translateY(110%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes sheen { 0% { transform: translateX(-120%); } 30%, 100% { transform: translateX(120%); } }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spinAngle { to { --angle: 360deg; } }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
@keyframes skeleton { 50% { background: #e9eef5; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes nudge { 0%, 80%, 100% { transform: none; } 90% { transform: scale(1.05); } }
@keyframes fade { from { opacity: 0; } }
@keyframes sheetUp { from { transform: translateY(100%); } }
@keyframes draw { to { stroke-dashoffset: 0; } }

@media (min-width: 720px) {
  .topbar { top: 16px; left: 24px; right: 24px; }
  .logo img { height: 40px; }
  .hero { justify-content: center; padding: 120px max(40px, calc((100vw - 1080px) / 2)) 80px; }
  .hero-actions { display: flex; }
  .hero-stats { max-width: 480px; }
  .scroll-hint {
    display: block; position: absolute; left: 50%; bottom: 28px; width: 26px; height: 40px; margin-left: -13px;
    border-radius: 14px; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
  }
  .scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: wheel 1.6s ease-in infinite; }
  .hero-shade { background: linear-gradient(90deg, rgba(3, 11, 36, .75) 0%, rgba(3, 11, 36, .2) 55%, transparent 100%), linear-gradient(180deg, transparent 75%, var(--navy-950)); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps li { flex-direction: column; align-items: flex-start; padding: 24px; }
  .tariffs { grid-template-columns: 1fr 1fr; max-width: 820px; }
  .overlay { place-items: center; }
  .success-card { border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; }
}
