/* ============================================
   СУТКИ. — landing studio
   Editorial dark · cream · amber accent
   ============================================ */

:root {
  --bg:           #0d0c0a;
  --bg-2:         #131210;
  --bg-3:         #1a1814;
  --fg:           #f3ece0;
  --fg-dim:       #b9b1a3;
  --fg-mute:      #7d7669;
  --line:         rgba(243, 236, 224, 0.12);
  --line-strong:  rgba(243, 236, 224, 0.22);
  --accent:       #ff5c1f;
  --accent-2:     #ffb072;
  --shadow-glow:  0 8px 60px -12px rgba(255, 92, 31, 0.45);

  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);

  --container:    1320px;
  --pad-x:        clamp(20px, 4vw, 56px);

  --header-h:     66px;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================
   GRAIN
   ============================================ */
.grain-defs { position: absolute; width: 0; height: 0; }
.grain {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  z-index: 9000;
  opacity: 0.55;
  mix-blend-mode: overlay;
  filter: url(#noiseFilter);
  background: transparent;
}
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  filter: url(#noiseFilter);
}


/* ============================================
   INTRO LOADER
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 1.1s var(--ease), opacity 0.4s ease 0.9s;
}
.intro.is-out {
  transform: translateY(-101%);
  opacity: 0;
}
.intro-mark {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--fg);
  opacity: 0;
  animation: introIn 0.8s var(--ease) 0.15s forwards;
}
.intro-mark span { color: var(--accent); }
.intro-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  animation: introBar 1.1s var(--ease) forwards;
}
@keyframes introIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes introBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px var(--pad-x);
  background: linear-gradient(to bottom, rgba(13,12,10,0.85), rgba(13,12,10,0.0));
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}

.brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg);
  position: relative;
}
.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-dim);
}
.nav-links a {
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-cta:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(120px, 16vh, 180px) 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blob {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 75vw;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  margin-bottom: clamp(28px, 5vh, 44px);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
.dot-pulse {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #4ade80;
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.4; }
  80%  { transform: scale(2);   opacity: 0; }
  100% { transform: scale(2);   opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 16vw, 240px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(28px, 4vh, 44px);
  color: var(--fg);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.04em;
  background: var(--accent);
  opacity: 0.35;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 620px;
  margin: 0 0 clamp(36px, 6vh, 56px);
  font-weight: 300;
}
.hero-sub b {
  color: var(--fg);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(255,92,31,0.25) 60%);
  padding: 0 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(50px, 9vh, 100px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: lowercase;
  white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
  cursor: pointer;
}
.btn span, .btn svg { transition: transform 0.4s var(--ease); pointer-events: none; }

.btn.primary {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
}
.btn.primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
  box-shadow: var(--shadow-glow);
}
.btn.primary:hover svg { transform: translate(2px, -2px); }

.btn.primary.fill {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg);
}
.btn.primary.fill:hover {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg);
  box-shadow: 0 8px 60px -12px rgba(243, 236, 224, 0.25);
}

.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}
.btn.ghost:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ============================================
   HERO META
   ============================================ */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 60px);
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 760px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.08em;
}
.hero-meta-item .value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-meta-item .cap {
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.35;
}

@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
  .hero-meta-item:nth-child(3) { grid-column: span 2; }
}

/* ============================================
   MARQUEE
   ============================================ */
.hero-marquee {
  margin-top: clamp(40px, 8vh, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
          mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--fg-dim);
  letter-spacing: -0.01em;
  animation: marquee 38s linear infinite;
}
.marquee-track i {
  font-style: normal;
  color: var(--accent);
  opacity: 0.7;
  font-size: 0.7em;
  align-self: center;
}
.marquee-track span:hover { color: var(--fg); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
section[data-section] {
  position: relative;
  padding: clamp(60px, 10vh, 140px) 0;
}

.section-head {
  margin-bottom: clamp(48px, 7vh, 80px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: lowercase;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 8.5vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  position: relative;
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  transition: transform 0.6s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
@media (hover: hover) {
  .about-card:hover {
    border-color: var(--line-strong);
    background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  }
}
.about-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.about-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.about-card p {
  margin: 0;
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================
   OFFER
   ============================================ */
.offer {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0907 100%);
  position: relative;
  overflow: hidden;
}
.offer-bg {
  position: absolute;
  top: 0;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 92, 31, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.offer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.offer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 6vh, 70px);
  flex-wrap: wrap;
}
.offer-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(46px, 11vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
}
.offer-title em { font-style: italic; color: var(--accent); }
.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-mono);
  text-align: right;
  white-space: nowrap;
}
.offer-price .from {
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.08em;
}
.offer-price .amount {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 6px 0 4px;
}
.offer-price .unit {
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-list {
  display: flex;
  flex-direction: column;
}
.oitem {
  border-bottom: 1px solid var(--line);
}

.oitem-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.oitem-arrow {
  font-family: var(--font-mono);
  color: var(--fg-mute);
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.3s var(--ease);
}
.oitem-text {
  flex: 1;
}
.oitem-toggle {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--fg-mute);
  line-height: 1;
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
}

@media (hover: hover) {
  .oitem-head:hover { color: var(--fg); }
  .oitem-head:hover .oitem-arrow { color: var(--accent); }
  .oitem-head:hover .oitem-toggle { color: var(--accent); }
}

.oitem-head[aria-expanded="true"] .oitem-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}
.oitem-head[aria-expanded="true"] .oitem-arrow {
  color: var(--accent);
}

.oitem-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.oitem-body p {
  margin: 0;
  padding: 0 0 18px 28px;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
}

.offer-side {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 92, 31, 0.06), transparent);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: fit-content;
}
.offer-side-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-mute);
}
.offer-side-row b {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
}
.offer-side .btn { margin-top: 10px; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 26px 24px;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.6s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 92, 31, 0.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
@media (hover: hover) {
  .service-card:hover { border-color: var(--line-strong); background: var(--bg-3); }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover .sc-arrow { transform: translate(2px, -2px); color: var(--accent); }
}

.service-card.highlight {
  background: linear-gradient(180deg, rgba(255, 92, 31, 0.08), transparent);
  border-color: rgba(255, 92, 31, 0.4);
  grid-column: span 1;
}

.sc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.08em;
}
.sc-tag {
  padding: 4px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  color: var(--fg-dim);
}
.service-card.highlight .sc-tag {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 32px);
  line-height: 1.05;
  margin: 14px 0 10px;
  color: var(--fg);
  letter-spacing: -0.015em;
}
.service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
  flex: 1;
}
.sc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.sc-price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--fg);
  font-weight: 500;
}
.service-card.highlight .sc-price { color: var(--accent); }
.sc-arrow {
  font-size: 22px;
  color: var(--fg-dim);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.services-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--fg-mute);
  max-width: 720px;
  line-height: 1.55;
}

/* ============================================
   PROCESS
   ============================================ */
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.7s var(--ease);
}
@media (hover: hover) {
  .step:hover { padding-left: 16px; }
  .step:hover::before { width: 100%; }
}

.step-time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  align-self: start;
  padding-top: 8px;
}
.step-body h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.step-body p {
  margin: 0;
  font-size: 16px;
  color: var(--fg-dim);
  max-width: 640px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-time { font-size: 12px; padding-top: 0; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.stats .kicker { margin-bottom: 50px; display: block; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0907 100%);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 960px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-left .kicker { display: block; margin-bottom: 18px; }
.contact-left .section-title { margin-bottom: 28px; }

.contact-lead {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.55;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-direct-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease), color 0.3s var(--ease);
}
.contact-direct-row:hover:not(.static) {
  padding-left: 12px;
}
.contact-direct-row:hover:not(.static) .cd-value {
  color: var(--accent);
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
  text-transform: lowercase;
}
.cd-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--fg);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.contact-form {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
}
.field label .req { color: var(--accent); }

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 14px 0 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--fg);
  letter-spacing: -0.01em;
  transition: border-color 0.3s var(--ease);
  outline: none;
  border-radius: 0;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--fg-mute);
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent); }

.field textarea {
  resize: vertical;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100px;
}
.field textarea::placeholder { font-style: normal; }

.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px;
}
.select-wrap select option {
  background: var(--bg-2);
  color: var(--fg);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
}
.select-chev {
  position: absolute;
  right: 4px;
  bottom: 18px;
  color: var(--fg-mute);
  pointer-events: none;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-policy {
  font-size: 12px;
  color: var(--fg-mute);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.submit-btn { min-width: 220px; }

.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}
.form-status.success { color: #4ade80; }
.form-status.error   { color: #ff6b6b; }

/* ============================================
   FOOTER
   ============================================ */
.foot {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
  background: var(--bg);
}
.foot-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 760px) {
  .foot-wrap { grid-template-columns: 1fr; gap: 28px; }
}
.foot-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.foot-brand span { color: var(--accent); }
.foot-brand small {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  color: var(--fg-mute);
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.foot-links, .foot-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-dim);
}
.foot-links a:hover, .foot-meta a:hover { color: var(--accent); }
.foot-rights {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
}

/* ============================================
   MOBILE OVERRIDES
   ============================================ */

/* nav — тоньше кнопка на маленьких экранах */
@media (max-width: 480px) {
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .nav-cta svg { display: none; }
}

/* hero — кнопки в колонку, pill переносится */
@media (max-width: 540px) {
  .hero-pill { white-space: normal; line-height: 1.4; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* offer — цену выровнять влево при переносе */
@media (max-width: 640px) {
  .offer-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .offer-price { align-items: flex-start; text-align: left; }
}

/* stats — 1 колонка на маленьких экранах */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-num { font-size: clamp(52px, 14vw, 80px); }
}

/* contact-direct — длинный номер не переносится */
@media (max-width: 480px) {
  .contact-direct-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 0; }
  .cd-value { font-size: clamp(18px, 5vw, 24px); }
}

/* form footer — кнопка и текст в колонку */
@media (max-width: 560px) {
  .form-foot { flex-direction: column; align-items: stretch; }
  .submit-btn { width: 100%; min-width: unset; }
  .form-policy { min-width: unset; }
}

/* service cards — меньший min-height на мобиле */
@media (max-width: 600px) {
  .service-card { min-height: 220px; padding: 22px 20px 20px; }
}

/* about cards — меньше padding на мобиле */
@media (max-width: 600px) {
  .about-card { padding: 26px 22px 22px; }
  .about-card h3 { font-size: 26px; }
}

/* offer side — убрать sticky-feel, нормальный поток */
@media (max-width: 900px) {
  .offer-side { height: auto; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line .rl-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
  will-change: transform;
}
.reveal-line.visible .rl-inner {
  transform: translateY(0);
}

[data-stagger] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: transform, opacity;
}
[data-stagger].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal-line .rl-inner { transform: none !important; }
  [data-stagger] { opacity: 1 !important; transform: none !important; }
  .blob { display: none; }
  .marquee-track { animation: none; }
}
