/* Территория Масла — Лендинг.
   Bold-typography web-take on the brand: SF Pro huge,
   ink-on-cream + signature orange, oil-drop motif. */

@import url("./tokens.css");

:root{
  --ink: #0E0E10;
  --ink-soft: #2A2A2E;
  --cream: #F4EFE7;
  --paper: #FAF7F1;
  --orange: var(--tm-orange);
  --orange-deep: #E14E00;
  --line: rgba(14,14,16,0.12);
  --line-soft: rgba(14,14,16,0.06);
}

html, body{ background: var(--paper); color: var(--ink); }
body{
  font-family: var(--tm-font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}
*{ box-sizing: border-box; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: none; border: 0; background: none; }
img{ display: block; max-width: 100%; }

/* — custom oil-drop cursor — */
.cursor{
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  transition: width .25s ease, height .25s ease, background .25s ease;
}
.cursor::before{
  content:""; position:absolute; inset:0;
  background: var(--orange);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-45deg);
  box-shadow: 0 4px 24px rgba(255,89,1,.45);
}
.cursor.hover{ width: 64px; height: 64px; }
@media (hover:none){ body{cursor:auto} button{cursor:auto} .cursor{display:none} }

/* — type ramp tuned for web display — */
.h-mono{ font-feature-settings: "tnum" 1; }
.eyebrow{
  font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
  display:inline-flex; align-items:center; gap: 10px;
}
.eyebrow::before{
  content:""; width: 22px; height: 1px; background: currentColor; opacity: .5;
}

/* — top nav — */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; gap: 24px;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(250,247,241,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-soft);
}
.nav .brand{
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; letter-spacing: -.01em;
}
.nav .brand img{ width: 40px; height: 40px; object-fit: contain; mix-blend-mode: multiply; }
.nav-links{
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; color: var(--ink-soft);
}
.nav-links a{ position: relative; }
.nav-links a:hover{ color: var(--ink); }
.nav-cta{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover{ background: var(--orange); transform: translateY(-1px); }
.nav-cta .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 1.6s ease-in-out infinite;}
@keyframes pulse{ 0%,100%{ opacity:1; transform: scale(1)} 50%{opacity:.4; transform:scale(1.3)} }

/* — generic section — */
.section{
  position: relative;
  padding: 88px 32px;
  max-width: 1440px; margin: 0 auto;
}
.section-tight{ padding: 56px 32px; }
.divider{ height: 1px; background: var(--line); max-width: 1440px; margin: 0 auto; }

/* — reveal animation — */
[data-reveal]{ opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in{ opacity: 1; transform: none; }
[data-reveal-stagger] > *{
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal-stagger].in > *{ opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(1){ transition-delay: .05s; }
[data-reveal-stagger].in > *:nth-child(2){ transition-delay: .12s; }
[data-reveal-stagger].in > *:nth-child(3){ transition-delay: .19s; }
[data-reveal-stagger].in > *:nth-child(4){ transition-delay: .26s; }
[data-reveal-stagger].in > *:nth-child(5){ transition-delay: .33s; }
[data-reveal-stagger].in > *:nth-child(6){ transition-delay: .40s; }

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 92vh;
  padding: 110px 32px 150px;
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset: 0; pointer-events: none;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background:
    radial-gradient(60% 50% at 80% 80%, rgba(255,89,1,.18), transparent 70%),
    radial-gradient(70% 60% at 0% 10%, rgba(255,89,1,.12), transparent 70%);
}
.hero-grid{
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px);
  background-size: calc(100vw/12) 100%;
}
.hero-meta{
  position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
  display: flex; justify-content: center; align-items: center;
  pointer-events: none;
}
.hero-meta .live{ display:inline-flex; align-items:center; gap:8px; }
.hero-meta .live::before{ content:""; width: 8px; height: 8px; border-radius: 50%; background: #16A34A; animation: pulse 1.6s infinite; }

.hero h1{
  font-size: clamp(72px, 13vw, 220px);
  line-height: .88;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .row{ display: block; overflow: hidden; }
.hero h1 .row span{ display: inline-block; }
.hero h1 .accent{
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}
.hero h1 .drop-inline{
  display: inline-block;
  width: clamp(60px, 11vw, 180px);
  height: clamp(80px, 14vw, 240px);
  vertical-align: -.15em;
  margin: 0 .1em;
  position: relative;
}
.hero-foot{
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: end;
  gap: 32px;
}
.hero-tagline{
  font-size: 18px; line-height: 1.4;
  max-width: 360px; color: var(--ink-soft);
}
.hero-cta{
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 30px;
  background: var(--ink); color: #fff;
  border-radius: 999px;
  font-size: 17px; font-weight: 500;
  transition: background .2s, transform .2s;
}
.hero-cta:hover{ background: var(--orange); transform: translateY(-2px); }
.hero-cta .arrow{
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); display:inline-flex; align-items:center; justify-content:center;
  transition: transform .25s ease;
}
.hero-cta:hover .arrow{ transform: rotate(-45deg); background: #fff; color: var(--orange); }
.hero-stat{ text-align: right; }
.hero-stat .num{
  font-size: clamp(48px, 6vw, 84px); font-weight: 700; line-height: 1;
  letter-spacing: -.03em; color: var(--ink);
}
.hero-stat .lbl{ font-size: 13px; color: var(--ink-soft); margin-top: 6px; letter-spacing: .06em; text-transform: uppercase; }
.hero-scroll{
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after{
  content:""; width: 1px; height: 30px; background: var(--ink); opacity: .3;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line{ 0%,100%{transform: scaleY(0); transform-origin: top} 50%{transform: scaleY(1)}}

/* — sticky oil drop traveling through the page — */
.drop-rail{ position: relative; }
.world-drop{
  position: fixed;
  top: 50%; left: 50%;
  width: 110px; height: 150px;
  pointer-events: none;
  z-index: 50;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.25));
}
.world-drop.show{ opacity: 1; }

/* SVG drop reusable */
.drop-svg{ width: 100%; height: 100%; }

/* ============ MARQUEE ============ */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink); color: #fff;
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track{
  display: flex; gap: 64px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 22px; font-weight: 500; letter-spacing: -.01em;
}
.marquee span{ display:inline-flex; align-items:center; gap: 24px; }
.marquee span::after{ content:""; width: 8px; height: 8px; border-radius:50%; background: var(--orange); }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* ============ ADVANTAGES ============ */
.adv{
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.adv-left h2{
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
  letter-spacing: -.04em;
  font-weight: 700; margin: 24px 0 0;
}
.adv-left h2 em{
  font-style: italic; color: var(--orange); font-weight: 700;
}
.adv-list{
  display: flex; flex-direction: column;
}
.adv-item{
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start; gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  position: relative;
  cursor: none;
  transition: padding .4s cubic-bezier(.2,.7,.2,1);
}
.adv-item:last-child{ border-bottom: 1px solid var(--line); }
.adv-item .num{
  font-size: 14px; color: var(--ink-soft); letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}
.adv-item h3{
  font-size: 32px; font-weight: 600; margin: 0 0 8px; letter-spacing: -.02em;
  transition: color .3s ease;
}
.adv-item .desc{
  font-size: 16px; color: var(--ink-soft); line-height: 1.5;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease, margin .4s ease;
}
.adv-item .plus{
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .4s cubic-bezier(.2,.7,.2,1);
  font-size: 20px; color: var(--ink);
}
.adv-item:hover .plus, .adv-item.open .plus{ background: var(--orange); color: #fff; border-color: var(--orange); }
.adv-item.open .plus{ transform: rotate(45deg); }
.adv-item.open{ padding: 20px 0 28px; }
.adv-item.open h3{ color: var(--orange); }
.adv-item.open .desc{ max-height: 200px; opacity: 1; margin-top: 12px; }

/* ============ PROCESS (sticky scroll) ============ */
.process{
  background: var(--ink);
  color: #fff;
  padding: 0;
  border-radius: 32px;
  margin: 32px;
  position: relative;
}
.process > .process-head{
  border-top-left-radius: 32px; border-top-right-radius: 32px;
}
.process-head{
  padding: 64px 56px 24px;
  display: flex; justify-content: space-between; align-items: end; gap: 48px;
}
.process-head h2{
  font-size: clamp(56px, 7vw, 120px); margin: 0;
  line-height: .9; letter-spacing: -.03em; font-weight: 700;
}
.process-head h2 em{ color: var(--orange); font-style: italic; }
.process-head .timer{
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .6;
}
.process-rail{
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.process-sticky{
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 64px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.process-visual{
  position: relative; width: 100%; height: 70%;
  display: grid; place-items: center;
}
.process-visual img{
  position: absolute; inset: 0; margin: auto;
  width: 80%; height: auto; max-height: 100%; object-fit: contain;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  transform: scale(.92);
  filter: drop-shadow(0 40px 60px rgba(255,89,1,.3));
}
.process-visual img.active{ opacity: 1; transform: scale(1); }
.process-bigstep{
  position: absolute; bottom: 0; right: 0;
  font-size: clamp(180px, 22vw, 380px);
  font-weight: 700; line-height: .8;
  color: rgba(255,89,1,.08);
  letter-spacing: -.05em;
  pointer-events: none;
  transition: color .4s;
}
.process-steps{ padding: 0; }
.process-step{
  min-height: unset;
  padding: 36px 56px;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.process-step:last-child{ border-bottom: 0; }
.process-step .step-tag{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
}
.process-step .step-tag .dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}
.process-step h3{
  font-size: clamp(36px, 4.5vw, 64px); margin: 0 0 24px;
  font-weight: 600; letter-spacing: -.02em; line-height: 1;
}
.process-step p{
  font-size: 18px; line-height: 1.5; max-width: 460px; opacity: .7; margin: 0;
}
.process-step .step-stat{
  margin-top: 40px;
  display: flex; gap: 40px;
  font-variant-numeric: tabular-nums;
}
.process-step .step-stat strong{
  display: block; font-size: 32px; font-weight: 700; letter-spacing: -.02em;
}
.process-step .step-stat span{
  font-size: 13px; opacity: .55; letter-spacing: .06em; text-transform: uppercase;
}

/* ============ SERVICES & PRICES ============ */
.services h2{
  font-size: clamp(56px, 7vw, 120px); margin: 0 0 64px;
  font-weight: 700; line-height: .92; letter-spacing: -.03em;
  max-width: 1100px;
}
.services h2 em{ font-style: italic; color: var(--orange); }
.svc-grid{
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.svc-card{
  position: relative;
  border-radius: 28px;
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, background .3s, color .3s;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
}
.svc-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(14,14,16,.18);
}
.svc-card .label{ font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.svc-card h3{ font-size: 28px; font-weight: 600; margin: 12px 0 0; letter-spacing: -.02em; line-height: 1.1; }
.svc-card .price{
  font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: baseline; justify-content: space-between; margin-top: 20px;
}
.svc-card .price strong{ font-size: 36px; color: var(--ink); font-weight: 700; letter-spacing: -.02em; }
.svc-card.featured{
  background: var(--orange); color: #fff; border-color: var(--orange);
  grid-column: span 6;
}
.svc-card.featured .label, .svc-card.featured .price{ color: rgba(255,255,255,.8); }
.svc-card.featured .price strong{ color: #fff; }
.svc-card.featured h3{ font-size: 56px; line-height: .95; }
.svc-card.span-3{ grid-column: span 3; }
.svc-card.span-4{ grid-column: span 4; }
.svc-card.span-6{ grid-column: span 6; }
.svc-card.span-8{ grid-column: span 8; }
.svc-card .ill{
  position: absolute; right: -20px; bottom: -20px;
  width: 160px; height: 160px;
  opacity: .9;
  pointer-events: none;
}
.svc-card .ill img{ width: 100%; height: 100%; object-fit: contain; }
.svc-card.dark{ background: var(--ink); color: #fff; border-color: var(--ink); }
.svc-card.dark .label, .svc-card.dark .price{ color: rgba(255,255,255,.7); }
.svc-card.dark .price strong{ color: #fff; }

/* ============ COUNTERS / KPI ============ */
.kpi{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kpi-cell{
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.kpi-cell:last-child{ border-right: 0; }
.kpi-cell .num{
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700; line-height: .9;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  display: block;
}
.kpi-cell .num em{ color: var(--orange); font-style: normal; }
.kpi-cell .lbl{
  margin-top: 16px; font-size: 14px; color: var(--ink-soft);
  letter-spacing: .04em;
  max-width: 260px;
  line-height: 1.4;
}

/* ============ MAP / CITIES ============ */
.cities-head{
  display: flex; justify-content: space-between; align-items: end; gap: 48px;
  margin-bottom: 36px;
}
.cities-head h2{
  font-size: clamp(56px, 7vw, 120px); margin: 0; line-height: .92;
  font-weight: 700; letter-spacing: -.03em;
}
.cities-head h2 em{ font-style: italic; color: var(--orange); }
.cities-wrap{
  display: grid; grid-template-columns: 380px 1fr; gap: 24px;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: #fff;
}
.cities-list{
  border-right: 1px solid var(--line);
  padding: 16px 0;
  max-height: 580px; overflow-y: auto;
}
.cities-list .item{
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .2s, color .2s;
  font-size: 16px;
}
.cities-list .item:hover{ background: var(--cream); }
.cities-list .item.active{ background: var(--ink); color: #fff; }
.cities-list .item .meta{
  font-size: 12px; color: var(--ink-soft); letter-spacing: .06em;
}
.cities-list .item.active .meta{ color: rgba(255,255,255,.7); }
.cities-list .item strong{ font-weight: 600; letter-spacing: -.01em; display: block; }
.cities-list .item .count{
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: var(--cream); color: var(--ink-soft);
}
.cities-list .item.active .count{ background: var(--orange); color: #fff; }

.cities-map{
  position: relative;
  background:
    radial-gradient(60% 50% at 30% 50%, rgba(255,89,1,.06), transparent 70%),
    radial-gradient(60% 50% at 70% 50%, rgba(255,89,1,.04), transparent 70%),
    var(--paper);
  background-image:
    linear-gradient(rgba(14,14,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,16,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  min-height: 580px;
  overflow: hidden;
}
.map-pin{
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  cursor: none;
  transition: transform .3s ease;
}
.map-pin::after{
  content:""; position:absolute; inset:-8px; border-radius: 50%;
  border: 1px solid var(--orange); opacity: .4;
  animation: ping 2s ease-out infinite;
}
.map-pin.active{ background: var(--ink); transform: translate(-50%, -50%) scale(1.3); }
.map-pin.active::after{ border-color: var(--ink); }
.map-pin .label{
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  background: #fff; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; white-space: nowrap; box-shadow: var(--tm-shadow-md);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.map-pin:hover .label, .map-pin.active .label{ opacity: 1; }
@keyframes ping{ 0%{transform:scale(1); opacity:.6} 100%{transform:scale(2.6); opacity:0} }

/* ============ BRANDS strip ============ */
.brands h2{
  font-size: clamp(48px, 6vw, 96px); margin: 0 0 48px; max-width: 900px;
  line-height: .92; font-weight: 700; letter-spacing: -.03em;
}
.brands h2 em{ font-style: italic; color: var(--orange); }
.brand-grid{
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: #fff;
}
.brand-cell{
  aspect-ratio: 1.6;
  display: grid; place-items: center;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .25s, color .25s;
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink-soft);
  cursor: none;
}
.brand-cell:nth-child(6n){ border-right: 0; }
.brand-cell:nth-last-child(-n+6){ border-bottom: 0; }
.brand-cell:hover{ background: var(--ink); color: #fff; }
.brand-cell:hover .b-mono{ color: var(--orange); }
.b-mono{ font-family: var(--tm-font-display); font-style: italic; transition: color .25s; }

/* ============ TESTIMONIALS ============ */
.tst{
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.tst-quote{
  font-size: clamp(32px, 4vw, 56px); line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 500;
  text-wrap: balance;
}
.tst-quote em{ color: var(--orange); font-style: italic; }
.tst-meta{
  margin-top: 32px; font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 16px;
}
.tst-meta .ava{
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; display: grid; place-items: center;
  font-weight: 600; font-size: 16px;
}
.tst-meta strong{ color: var(--ink); display: block; font-weight: 600; font-size: 16px; }
.tst-controls{
  display: flex; gap: 12px; margin-top: 40px;
}
.tst-controls button{
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.tst-controls button:hover{ background: var(--ink); color: #fff; border-color: var(--ink); }
.tst-list{
  display: grid; gap: 16px;
}
.tst-mini{
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 24px;
  font-size: 16px; line-height: 1.5; color: var(--ink-soft);
  cursor: none;
  transition: transform .25s ease, border-color .25s;
}
.tst-mini:hover{ transform: translateY(-3px); border-color: var(--orange); }
.tst-mini .top{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-size: 13px; color: var(--ink); font-weight: 600;
}
.tst-mini .stars{ color: var(--orange); letter-spacing: 2px; }

/* ============ APP TEASER ============ */
.app{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  padding: 64px 56px;
  margin: 32px;
  overflow: hidden;
  position: relative;
}
.app::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 20%, rgba(255,89,1,.25), transparent 60%);
  pointer-events: none;
}
.app-copy{ position: relative; }
.app-copy .eyebrow{ color: rgba(255,255,255,.5); }
.app-copy h2{
  font-size: clamp(48px, 5.5vw, 88px); margin: 16px 0 24px;
  font-weight: 700; line-height: .95; letter-spacing: -.03em;
}
.app-copy h2 em{ font-style: italic; color: var(--orange); }
.app-copy p{ font-size: 18px; line-height: 1.5; opacity: .7; max-width: 460px; margin: 0 0 40px; }
.app-stores{ display: flex; gap: 12px; }
.app-store-btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #fff; font-size: 14px;
  border: 1px solid rgba(255,255,255,.16);
  transition: background .2s, border-color .2s;
}
.app-store-btn:hover{ background: var(--orange); border-color: var(--orange); }
.app-phone{
  position: relative; aspect-ratio: 9/16; max-height: 560px; margin: 0 auto;
}
.phone-frame{
  position: absolute; inset: 0;
  border: 12px solid #1a1a1f;
  border-radius: 48px;
  background: linear-gradient(180deg, #FFF 0%, #FFE5D5 100%);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-12deg) rotateX(4deg);
}
.phone-screen{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 32px 20px;
  color: var(--ink);
}
.phone-screen .ps-greet{ font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; }
.phone-screen .ps-name{ font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 4px 0 16px; }
.phone-screen .ps-car{
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; border-radius: 18px; padding: 16px;
  font-size: 13px; min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.phone-screen .ps-car::after{
  content:""; position: absolute; right: -20px; bottom: -20px;
  width: 120px; height: 120px;
  background: url(./assets/car.png) center/contain no-repeat;
  opacity: .9;
}
.phone-screen .ps-car strong{ font-size: 18px; font-weight: 700; }
.phone-screen .ps-tile{
  background: #fff; border-radius: 16px; padding: 12px;
  font-size: 12px; box-shadow: var(--tm-shadow-sm);
  display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: center;
}
.phone-screen .ps-tile .dot{ width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; }
.phone-screen .ps-list{ display: grid; gap: 8px; margin-top: 12px; }
.phone-screen .ps-bar{
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: var(--ink); border-radius: 999px; padding: 12px 16px;
  display: flex; justify-content: space-around;
  color: rgba(255,255,255,.5); font-size: 11px;
}
.phone-screen .ps-bar span.act{ color: var(--orange); }
.app-floating-drop{
  position: absolute; left: -40px; bottom: 40px;
  width: 120px; height: 160px;
  filter: drop-shadow(0 30px 60px rgba(255,89,1,.6));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform: translateY(0) rotate(-6deg);} 50%{ transform: translateY(-20px) rotate(0deg);} }

/* ============ FAQ ============ */
.faq h2{
  font-size: clamp(56px, 7vw, 120px); margin: 0 0 64px;
  line-height: .92; font-weight: 700; letter-spacing: -.03em;
}
.faq h2 em{ font-style: italic; color: var(--orange); }
.faq-list{
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
}
.faq-side{
  position: sticky; top: 120px;
  font-size: 16px; color: var(--ink-soft); line-height: 1.5;
}
.faq-side a{ color: var(--orange); border-bottom: 1px solid currentColor; }
.faq-q{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: none;
}
.faq-q:last-child{ border-bottom: 1px solid var(--line); }
.faq-q .q-row{
  display: flex; justify-content: space-between; align-items: center;
  font-size: 22px; font-weight: 500; letter-spacing: -.01em;
  transition: color .25s;
}
.faq-q .q-row .q-num{ font-size: 13px; color: var(--ink-soft); margin-right: 24px; letter-spacing: .1em; }
.faq-q .q-row .q-text{ flex: 1; }
.faq-q .q-row .q-toggle{
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: transform .3s ease, background .25s, color .25s;
}
.faq-q .q-a{
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1), opacity .3s, margin .3s;
  font-size: 16px; line-height: 1.6; color: var(--ink-soft);
  max-width: 720px;
}
.faq-q.open{ }
.faq-q.open .q-row{ color: var(--orange); }
.faq-q.open .q-row .q-toggle{ background: var(--orange); color: #fff; border-color: var(--orange); transform: rotate(45deg); }
.faq-q.open .q-a{ max-height: 240px; opacity: 1; margin-top: 16px; }

/* ============ FRANCHISE ============ */
.franchise{
  background: var(--orange); color: #fff;
  border-radius: 32px;
  padding: 64px 56px;
  margin: 32px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.franchise::before{
  content: "₽"; position: absolute;
  top: -20%; right: -5%;
  font-size: 50vw; font-weight: 800;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
}
.franchise .eyebrow{ color: rgba(255,255,255,.7); }
.franchise h2{
  font-size: clamp(48px, 6vw, 96px); margin: 16px 0 24px;
  font-weight: 700; line-height: .95; letter-spacing: -.03em;
}
.franchise h2 em{ font-style: italic; }
.franchise p{ font-size: 18px; line-height: 1.5; max-width: 480px; margin: 0 0 40px; opacity: .9; }
.franchise-stats{
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative; z-index: 1;
}
.franchise-stat{
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
}
.franchise-stat .num{ font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -.03em; }
.franchise-stat .lbl{ font-size: 14px; opacity: .8; margin-top: 8px; }
.franchise-cta{
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: #fff;
  padding: 18px 28px; border-radius: 999px;
  font-size: 17px; font-weight: 500;
  transition: transform .2s, background .2s;
}
.franchise-cta:hover{ background: #fff; color: var(--ink); transform: translateY(-2px); }

/* ============ CONTACT FORM ============ */
.contact{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact h2{
  font-size: clamp(48px, 6vw, 96px); margin: 0 0 24px;
  font-weight: 700; line-height: .95; letter-spacing: -.03em;
}
.contact h2 em{ font-style: italic; color: var(--orange); }
.contact-side p{ font-size: 18px; line-height: 1.5; color: var(--ink-soft); }
.contact-channels{
  margin-top: 40px; display: grid; gap: 16px;
}
.contact-channel{
  display: flex; align-items: center; gap: 16px;
  padding: 20px; border-radius: 18px; border: 1px solid var(--line);
  background: #fff; transition: border-color .2s, transform .2s;
}
.contact-channel:hover{ border-color: var(--orange); transform: translateX(4px); }
.contact-channel .ico{
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream);
  display: grid; place-items: center; color: var(--orange);
}
.contact-channel strong{ font-size: 16px; display: block; }
.contact-channel span{ font-size: 13px; color: var(--ink-soft); }

.form{
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: 40px; display: grid; gap: 16px;
}
.form .field{ display: grid; gap: 8px; }
.form label{ font-size: 13px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }
.form input, .form textarea, .form select{
  border: 0; border-bottom: 1px solid var(--line);
  padding: 14px 0; font-size: 16px; font-family: inherit;
  background: none;
  outline: none;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus, .form select:focus{ border-color: var(--orange); }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .submit{
  margin-top: 16px; padding: 18px 28px;
  background: var(--ink); color: #fff;
  border-radius: 999px; font-size: 17px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  transition: background .25s, transform .2s;
}
.form .submit:hover{ background: var(--orange); transform: translateY(-2px); }
.form .submit.sent{ background: #16A34A; }

/* ============ FOOTER ============ */
.foot{
  background: var(--ink); color: #fff;
  padding: 80px 64px 32px;
  margin: 32px;
  border-radius: 32px;
}
.foot-top{
  font-size: clamp(56px, 9vw, 180px);
  font-weight: 700; line-height: .9; letter-spacing: -.04em;
  margin: 0 0 64px;
}
.foot-top em{ color: var(--orange); font-style: italic; }
.foot-grid{
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 48px;
}
.foot-col h4{ font-size: 13px; opacity: .5; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; font-weight: 500; }
.foot-col a{ display: block; font-size: 16px; padding: 6px 0; opacity: .85; transition: color .2s; }
.foot-col a:hover{ color: var(--orange); }
.foot-bottom{
  display: flex; justify-content: space-between;
  margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; opacity: .5;
}

/* ============ STATION PAGE ============ */
.station-hero{
  position: relative;
  padding: 110px 32px 56px;
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end;
  min-height: auto;
}
.station-hero .left .crumbs{
  font-size: 13px; color: var(--ink-soft); letter-spacing: .04em;
  display: flex; gap: 8px; align-items: center; margin-bottom: 32px;
}
.station-hero .left .crumbs a{ color: var(--orange); }
.station-hero h1{
  font-size: clamp(56px, 8vw, 140px);
  line-height: .9; letter-spacing: -.04em; font-weight: 700; margin: 0;
}
.station-hero h1 em{ font-style: italic; color: var(--orange); }
.station-hero .meta{
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.station-hero .meta .item .lbl{
  font-size: 12px; color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase;
}
.station-hero .meta .item .val{ font-size: 18px; font-weight: 600; margin-top: 8px; letter-spacing: -.01em; }
.station-hero .meta .open-now{ display:inline-flex; align-items:center; gap:6px; color: #16A34A; font-size: 13px; margin-top: 4px; font-weight: 500; }
.station-hero .open-now::before{ content:""; width: 8px; height: 8px; border-radius: 50%; background: #16A34A; }

.station-photo{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
}
.station-photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.station-photo .photo-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6));
}
.station-photo .badge{
  position: absolute; top: 24px; left: 24px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  border-radius: 999px; padding: 10px 16px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
}
.station-photo .photo-cap{
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: #fff; font-size: 14px; opacity: .9;
}

/* schedule strip on station */
.schedule{
  display: grid; grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--line); border-radius: 24px;
  background: #fff; overflow: hidden;
}
.schedule .day{
  padding: 24px 20px; border-right: 1px solid var(--line);
  text-align: left;
}
.schedule .day:last-child{ border-right: 0; }
.schedule .day .d{ font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.schedule .day .h{ font-size: 22px; font-weight: 600; margin-top: 8px; letter-spacing: -.01em; }
.schedule .day.today{ background: var(--ink); color: #fff; }
.schedule .day.today .d{ color: var(--orange); }

/* booking widget */
.booking{
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start;
}
.booking-left h2{
  font-size: clamp(48px, 6vw, 96px); margin: 0 0 16px;
  line-height: .95; font-weight: 700; letter-spacing: -.03em;
}
.booking-left h2 em{ font-style: italic; color: var(--orange); }
.booking-left p{ font-size: 18px; color: var(--ink-soft); line-height: 1.5; max-width: 460px; }
.booking-card{
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: 32px;
}
.booking-card h3{ font-size: 22px; font-weight: 600; margin: 0 0 24px; letter-spacing: -.01em; }
.svc-pick{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.svc-pick button{
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 14px; transition: all .2s;
}
.svc-pick button.on{ background: var(--ink); color: #fff; border-color: var(--ink); }
.day-pick{
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 20px;
}
.day-pick button{
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 6px;
  text-align: center;
  transition: all .2s;
}
.day-pick button .wd{ font-size: 11px; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }
.day-pick button .dt{ font-size: 18px; font-weight: 600; margin-top: 4px; letter-spacing: -.01em; }
.day-pick button.on{ background: var(--orange); color: #fff; border-color: var(--orange); }
.day-pick button.on .wd{ color: rgba(255,255,255,.8); }
.time-pick{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px;
}
.time-pick button{
  border: 1px solid var(--line); border-radius: 12px; padding: 12px;
  font-size: 14px; font-variant-numeric: tabular-nums;
  transition: all .2s;
}
.time-pick button.on{ background: var(--ink); color: #fff; border-color: var(--ink); }
.time-pick button[disabled]{ opacity: .35; }
.booking-card .submit{
  width: 100%;
  padding: 18px; border-radius: 999px;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .2s;
}
.booking-card .submit:hover{ background: var(--ink); transform: translateY(-1px); }

/* station map block */
.s-map{
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  background: #fff;
}
.s-map .info{ padding: 48px; }
.s-map .info h3{ font-size: 36px; margin: 0 0 16px; letter-spacing: -.02em; font-weight: 600; }
.s-map .info .row{
  display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.s-map .info .row:first-of-type{ border-top: 0; }
.s-map .info .row .ico{
  width: 32px; height: 32px; border-radius: 50%; background: var(--cream);
  display: grid; place-items: center; color: var(--orange);
}
.s-map .map-vis{
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(255,89,1,.08), transparent 70%),
    var(--paper);
  background-image:
    linear-gradient(rgba(14,14,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,14,16,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 480px;
}
.s-map .road{
  position: absolute; left: 10%; right: 10%; top: 50%;
  height: 40px;
  background: var(--ink-soft);
  border-radius: 4px;
  transform: translateY(-50%);
}
.s-map .road::before{
  content:""; position: absolute; left: 0; right: 0; top: 50%;
  height: 2px; background: repeating-linear-gradient(90deg, #fff 0 24px, transparent 24px 48px);
  transform: translateY(-50%);
}
.s-map .pin-here{
  position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
}
.s-map .pin-here .dot{
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(255,89,1,.4);
}
.s-map .pin-here::after{
  content:""; position: absolute; left: 50%; top: 100%;
  width: 1px; height: 80px; background: var(--orange);
  transform: translateX(-50%);
}
.s-map .pin-here .label{
  position: absolute; left: 36px; top: -8px; white-space: nowrap;
  background: var(--ink); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: 13px;
}
.s-map .arrow-route{
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px;
}

/* ============ Page transition overlay ============ */
.page-trans{
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path .9s cubic-bezier(.85,0,.15,1);
}
.page-trans.go{ clip-path: circle(150% at 50% 50%); pointer-events: all; }
.page-trans .pt-drop{
  width: 200px; height: 280px;
  filter: drop-shadow(0 30px 60px rgba(255,89,1,.5));
  opacity: 0;
  animation: ptDrop 1s .2s ease forwards;
}
@keyframes ptDrop{
  0%{ opacity: 0; transform: scale(.5); }
  100%{ opacity: 1; transform: scale(1); }
}

/* ============ Responsive (basic) ============ */
@media (max-width: 900px){
  .hero{ padding: 100px 20px 120px; min-height: auto; }
  .nav{ padding: 14px 20px; }
  .nav-links{ display: none; }
  .section{ padding: 56px 20px; }
  .adv, .booking, .contact, .tst, .app, .station-hero, .s-map, .cities-wrap, .faq-list{
    grid-template-columns: 1fr; gap: 32px;
  }
  .process{ margin: 16px; }
  .process-rail{ grid-template-columns: 1fr; }
  .process-sticky{ position: relative; height: 60vh; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .process-step{ padding: 36px 32px; min-height: auto; }
  .process-head{ padding: 64px 32px 24px; flex-direction: column; align-items: start; }
  .kpi{ grid-template-columns: 1fr 1fr; }
  .kpi-cell:nth-child(2){ border-right: 0; }
  .kpi-cell:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
  .svc-grid{ grid-template-columns: 1fr 1fr; }
  .svc-card.featured, .svc-card.span-3, .svc-card.span-4, .svc-card.span-6, .svc-card.span-8{ grid-column: span 2; }
  .brand-grid{ grid-template-columns: repeat(3, 1fr); }
  .brand-cell:nth-child(6n){ border-right: 1px solid var(--line); }
  .brand-cell:nth-child(3n){ border-right: 0; }
  .schedule{ grid-template-columns: repeat(2, 1fr); }
  .schedule .day{ border-right: 0; border-bottom: 1px solid var(--line); }
  .franchise, .app, .foot{ padding: 56px 28px; }
  .franchise-stats{ grid-template-columns: 1fr 1fr; }
  .foot-grid{ grid-template-columns: 1fr 1fr; }
  body{ cursor: auto; }
  button{ cursor: pointer; }
  .cursor{ display: none; }
}
