/* ═══════════════════════════════════════════════════════════════
   УЛОВ КАТРАНА — styles.css  v1.2.0
   Dark Luxury · Industrial · B2B
═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: #080808;
  color: #ede8df;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Gold palette */
  --g1: #e8c56a;   /* light shimmer  */
  --g2: #C9A84C;   /* base gold      */
  --g3: #a8832e;   /* mid tone       */
  --g4: #7a5e1e;   /* deep           */
  --g5: #3d2e0a;   /* shadow tint    */
  --gold-gradient: linear-gradient(135deg, #b8882a 0%, #e8c56a 45%, #C9A84C 68%, #9a6e22 100%);
  --gold-glow: 0 0 40px rgba(201,168,76,0.18), 0 0 80px rgba(201,168,76,0.08);

  /* Backgrounds — all have a faint warm undertone */
  --bg-0: #080808;
  --bg-1: #0b0b0a;
  --bg-2: #0f0f0d;
  --bg-3: #141412;
  --bg-4: #1a1916;
  --bg-5: #201f1b;

  /* Text */
  --t1: #ede8df;
  --t2: #8a8070;
  --t3: #4a4338;

  /* Borders */
  --b-gold: rgba(201,168,76,0.18);
  --b-dim:  rgba(255,255,255,0.05);
  --b-warm: rgba(255,248,220,0.04);

  /* Shadows */
  --shadow-card:
    0 0 0 1px rgba(255,255,255,0.04),
    0 2px 4px rgba(0,0,0,0.5),
    0 20px 50px rgba(0,0,0,0.4);
  --shadow-card-hover:
    0 0 0 1px rgba(201,168,76,0.14),
    0 4px 8px rgba(0,0,0,0.6),
    0 30px 70px rgba(0,0,0,0.5),
    0 0 60px rgba(201,168,76,0.06);
  --shadow-btn:
    0 2px 8px rgba(0,0,0,0.4),
    0 0 20px rgba(201,168,76,0.15);
  --shadow-btn-hover:
    0 4px 16px rgba(0,0,0,0.5),
    0 0 40px rgba(201,168,76,0.25);

  /* Layout */
  --nav-h:  72px;
  --max-w:  1280px;
  --ease:   0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-o: 0.55s cubic-bezier(0, 0, 0.2, 1);
}

/* ─── FILM GRAIN TEXTURE ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: overlay;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.8rem, 5.8vw, 5.4rem); }
h2 { font-size: clamp(2rem,   3.4vw, 3.2rem); }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.28rem); font-weight: 600; letter-spacing: -0.01em; }

.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--g2);
}

.label-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.label-line::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--g4), transparent);
}

.lead { font-size: 1.06rem; line-height: 1.8;  color: var(--t2); }
.small{ font-size: 0.88rem; line-height: 1.72; color: var(--t2); }

/* Gold gradient text */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.section-head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head .label-line { margin-bottom: 0.9rem; }
.section-head h2 { margin-bottom: 1.2rem; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }
.r.d5 { transition-delay: 0.5s; }
.r.vis { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
}

/* ─── PREMIUM CARD BASE ──────────────────────────────────────── */
.card {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--b-dim);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--b-gold);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  min-height: 48px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  transition: background var(--ease), border-color var(--ease), color var(--ease),
              box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.btn:hover svg { transform: translateX(4px); }

/* Gold primary button */
.btn-gold {
  background: linear-gradient(135deg, #b8882a 0%, #d4a444 40%, #C9A84C 60%, #a8832e 100%);
  color: #0a0a0a;
  box-shadow: var(--shadow-btn);
  border: 1px solid rgba(232,197,106,0.3);
}

/* Shimmer sweep */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #c89530 0%, #e8c56a 40%, #d4a844 60%, #b8882a 100%);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.btn-gold:hover::after {
  left: 140%;
  transition: left 0.65s ease;
}

/* Outline */
.btn-outline {
  border: 1px solid rgba(201,168,76,0.32);
  color: var(--g2);
  background: transparent;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--g5), transparent 60%);
  opacity: 0;
  transition: opacity var(--ease);
}

.btn-outline:hover {
  border-color: var(--g2);
  color: var(--g1);
  box-shadow: 0 0 20px rgba(201,168,76,0.1), inset 0 0 20px rgba(201,168,76,0.04);
}

.btn-outline:hover::after { opacity: 1; }

/* Ghost */
.btn-ghost {
  border: 1px solid var(--b-dim);
  color: var(--t2);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--b-gold);
  color: var(--t1);
  background: rgba(255,255,255,0.02);
}

/* Submit button */
.btn-submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #b8882a 0%, #d4a444 40%, #C9A84C 60%, #a8832e 100%);
  color: #080808;
  padding: 1rem 2.4rem;
  min-height: 52px;
  font-family: 'Jost', sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(232,197,106,0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: box-shadow var(--ease), transform var(--ease), background var(--ease);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-submit svg {
  width: 14px; height: 14px;
  transition: transform var(--ease);
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #c89530 0%, #e8c56a 40%, #d4a844 60%, #b8882a 100%);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.btn-submit:hover::after {
  left: 140%;
  transition: left 0.65s ease;
}

.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-send-error {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(220, 80, 80, 0.9);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--b-dim);
  transition: background var(--ease), border-color var(--ease),
              box-shadow var(--ease);
}

#nav.scrolled {
  background: rgba(8,8,8,0.94);
  border-bottom-color: rgba(201,168,76,0.12);
  box-shadow: 0 1px 0 rgba(201,168,76,0.06), 0 8px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--t1);
}

.logo-text small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 2.4rem; }

.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t2);
  cursor: pointer;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-gradient);
  transition: width var(--ease-o);
}

.nav-links a:hover          { color: var(--t1); }
.nav-links a:hover::after   { width: 100%; }
.nav-links a.active         { color: var(--t1); }
.nav-links a.active::after  { width: 100%; }

/* Burger — min 44×44px tap target */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0 9px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--t1);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.24s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — slide+fade animation */
.mob-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  /* bottom: 0 — fallback для старых браузеров */
  bottom: 0;
  /* dvh учитывает динамическую панель браузера на iOS/Android */
  height: calc(100dvh - var(--nav-h));
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1.5rem clamp(1.25rem, 6vw, 2.5rem) 2.5rem;
  /* safe-area для iPhone с notch */
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  z-index: 199;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* hidden state */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity    0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.28s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s   linear 0.28s;
}

.mob-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity   0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.mob-menu a {
  display: flex;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--b-dim);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color var(--ease), padding-left var(--ease);
}

.mob-menu a:first-child { border-top: 1px solid var(--b-dim); }
.mob-menu a:active,
.mob-menu a:hover { color: var(--g1); padding-left: 0.4rem; }

.mob-menu .btn {
  margin-top: 2rem;
  justify-content: center;
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   01. HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}

/* Video background */
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.7) saturate(0.85);
}

/* CSS fallback — только когда видео не показывается (мобильный ≤480px) */
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #060c14 0%, #0a1020 25%, #080e1a 50%, #080808 100%);
  z-index: 0;
  opacity: 0; /* скрыт пока работает видео */
}

/* Затемняющий оверлей поверх видео */
.hero-video-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.6) 0%,
      rgba(8,8,8,0.25) 30%,
      rgba(8,8,8,0.3) 65%,
      rgba(8,8,8,0.88) 100%
    );
}

/* Multi-layer premium glow */
.hero-glow {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 75% 35%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 5%  78%, rgba(168,131,46,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 60%);
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* Grid texture */
.hero-grid {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 80%, transparent);
}

/* Vignette */
.hero-vignette {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.hero-body {
  position: relative; z-index: 2;
  padding: clamp(4rem, 10vh, 8rem) 0 clamp(3.5rem, 8vh, 7rem);
}

.hero-tag {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-tag-line {
  width: 56px; height: 1px;
  background: linear-gradient(to right, var(--g3), transparent);
}

.hero-h1 { max-width: 900px; margin-bottom: 2rem; }

.hero-h1 em {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 550px;
  font-size: 1.06rem; line-height: 1.82;
  color: var(--t2); margin-bottom: 3rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* Marquee trust bar */
.hero-marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--b-dim);
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(to right,
    rgba(8,8,8,1) 0%,
    rgba(14,14,12,0.8) 5%,
    rgba(14,14,12,0.8) 95%,
    rgba(8,8,8,1) 100%
  );
}

.marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t2);
}

.marquee-item svg {
  width: 14px; height: 14px;
  color: var(--g2); flex-shrink: 0;
}

.marquee-sep {
  width: 1px; height: 20px;
  background: linear-gradient(to bottom, transparent, var(--b-gold), transparent);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 8rem;
  right: clamp(1.25rem, 4vw, 3.5rem);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.65rem;
}

.hero-scroll-label {
  writing-mode: vertical-rl;
  font-size: 0.58rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--t3);
}

.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--g3), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.28; transform: scaleY(0.85); }
  55%      { opacity: 1;   transform: scaleY(1.1);  }
}

@media (prefers-reduced-motion: reduce) { .hero-scroll-line { animation: none; } }

/* Hero stats panel */
.hero-stats {
  position: relative; z-index: 2;
  border-top: 1px solid var(--b-dim);
  display: flex; align-items: stretch;
  background: linear-gradient(to right,
    rgba(14,14,12,0.9),
    rgba(20,20,18,0.9)
  );
}

.hero-stat {
  flex: 1;
  padding: 1.8rem clamp(1rem, 2.5vw, 2.4rem);
  border-right: 1px solid var(--b-dim);
  display: flex; flex-direction: column; gap: 0.4rem;
  position: relative; overflow: hidden;
  transition: background var(--ease);
}

.hero-stat:last-child { border-right: none; }

.hero-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--g3), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.hero-stat:hover { background: rgba(201,168,76,0.03); }
.hero-stat:hover::before { opacity: 1; }

.hero-stat-n {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 700; color: var(--t1); line-height: 1;
}

.hero-stat-n span { color: var(--g2); }
.hero-stat-l { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t3); }

/* ═══════════════════════════════════════════════════════════════
   02. ABOUT
═══════════════════════════════════════════════════════════════ */
#about { background: var(--bg-1); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 8rem); align-items: center;
}

.about-left .label-line { margin-bottom: 0.9rem; }
.about-left h2     { margin-bottom: 1.5rem; }
.about-left .lead  { margin-bottom: 1.3rem; }

.about-left p {
  font-size: 0.95rem; line-height: 1.82; color: var(--t2); margin-bottom: 1rem;
}

.about-left .btn { margin-top: 1.5rem; }

/* Stats grid */
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--b-dim);
  background: var(--b-dim);
  box-shadow: var(--shadow-card);
}

.astat {
  background: linear-gradient(150deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  position: relative; overflow: hidden;
  transition: background var(--ease);
}

.astat::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--g3), transparent 60%);
  opacity: 0; transition: opacity var(--ease);
}

.astat:hover { background: linear-gradient(150deg, var(--bg-4) 0%, var(--bg-3) 100%); }
.astat:hover::after { opacity: 1; }

.astat-n {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 700; line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.astat-l {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t3);
}

/* ═══════════════════════════════════════════════════════════════
   03. SERVICES
═══════════════════════════════════════════════════════════════ */
#services { background: var(--bg-0); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); flex-wrap: wrap;
}

.srv-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--b-dim);
  border: 1px solid var(--b-dim);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.srv--wide { grid-column: span 2; }

.srv {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: clamp(2.2rem, 4.5vw, 3.5rem);
  display: flex; flex-direction: column; gap: 1.6rem;
  position: relative; overflow: hidden;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

/* Gold top border slide */
.srv::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ambient glow bottom-right */
.srv::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--ease);
}

.srv:hover {
  background: linear-gradient(160deg, var(--bg-4) 0%, var(--bg-3) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.srv:hover::before { transform: scaleX(1); }
.srv:hover::after  { opacity: 1; }

/* Hover image */
.srv-hover-img {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.srv-hover-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) saturate(0.6);
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-hover-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.78);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv:hover .srv-hover-img img {
  filter: brightness(0.55) saturate(0.8);
}
.srv:hover .srv-hover-img::after {
  opacity: 0.55;
}

/* Поднимаем контент карточки над картинкой */
.srv-icon,
.srv h3,
.srv-desc,
.srv-list {
  position: relative;
  z-index: 1;
}

.srv-icon {
  width: 48px; height: 48px; color: var(--g2);
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.2));
  transition: filter var(--ease);
}

.srv:hover .srv-icon { filter: drop-shadow(0 0 16px rgba(201,168,76,0.35)); }

.srv h3 { color: var(--t1); }

.srv-desc { font-size: 0.92rem; line-height: 1.78; color: var(--t2); flex: 1; }

.srv-list {
  display: flex; flex-direction: column; gap: 0.6rem;
  border-top: 1px solid var(--b-dim); padding-top: 1.5rem; margin-top: 0.4rem;
}

.srv-list li {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.82rem; color: var(--t2);
}

.srv-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--g3); flex-shrink: 0;
  box-shadow: 0 0 4px rgba(201,168,76,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   04. WHY US
═══════════════════════════════════════════════════════════════ */
#why { background: var(--bg-1); }

.why-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 7rem); align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.why-intro-right {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
}

/* Why cards */
.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--b-dim);
  border: 1px solid var(--b-dim);
}

.why-card {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: 2.8rem 2.2rem;
  display: flex; flex-direction: column; gap: 1.3rem;
  position: relative; overflow: hidden;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.why-card:hover {
  background: linear-gradient(160deg, var(--bg-4) 0%, var(--bg-3) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.why-num {
  font-family: 'Bodoni Moda', serif; font-size: 3.2rem;
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.04);
  transition: color var(--ease);
}

.why-card:hover .why-num {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card h3 { color: var(--t1); }
.why-card p  { font-size: 0.88rem; line-height: 1.78; color: var(--t2); }

/* Fact strip */
.why-facts {
  margin-top: 2px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--b-dim);
  border: 1px solid var(--b-dim); border-top: none;
}

.why-fact {
  background: linear-gradient(to bottom, var(--bg-3), var(--bg-2));
  padding: 1.8rem 2rem;
  display: flex; align-items: flex-start; gap: 1.1rem;
  transition: background var(--ease), transform var(--ease);
}

.why-fact:hover {
  background: linear-gradient(to bottom, var(--bg-4), var(--bg-3));
  transform: translateY(-2px);
}

.why-fact svg {
  width: 20px; height: 20px; color: var(--g2); flex-shrink: 0; margin-top: 0.1rem;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.25));
}

.why-fact-body strong {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--t1); margin-bottom: 0.2rem;
}

.why-fact-body span { font-size: 0.8rem; line-height: 1.5; color: var(--t2); }


/* ═══════════════════════════════════════════════════════════════
   06. CASES
═══════════════════════════════════════════════════════════════ */
#cases { background: var(--bg-1); }

.cases-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem); align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--b-dim);
  border: 1px solid var(--b-dim);
}

.case-card {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: 2.4rem 2.2rem;
  display: flex; flex-direction: column; gap: 1.3rem;
  position: relative; overflow: hidden;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.case-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  background: linear-gradient(160deg, var(--bg-4) 0%, var(--bg-3) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.case-card:hover::after { transform: scaleX(1); }

.case-seg {
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--g2);
}

.case-card h3 { font-size: 1.06rem; color: var(--t1); }
.case-desc    { font-size: 0.87rem; line-height: 1.74; color: var(--t2); flex: 1; }

.case-result {
  padding: 0.9rem 1.1rem;
  background: linear-gradient(to right, rgba(201,168,76,0.05), transparent);
  border-left: 2px solid var(--g4);
  font-size: 0.8rem; line-height: 1.55; color: var(--t2);
  transition: border-color var(--ease);
}

.case-card:hover .case-result { border-left-color: var(--g2); }

.case-result strong {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--t1); margin-bottom: 0.2rem;
}

/* Segments */
.segments {
  margin-top: 2px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--b-dim);
  border: 1px solid var(--b-dim); border-top: none;
}

.segment {
  background: linear-gradient(to bottom, var(--bg-3), var(--bg-2));
  padding: 1.6rem 1.9rem;
  display: flex; align-items: center; gap: 1.1rem;
  transition: background var(--ease), transform var(--ease);
}

.segment:hover {
  background: linear-gradient(to bottom, var(--bg-4), var(--bg-3));
  transform: translateY(-2px);
}

.segment svg {
  width: 22px; height: 22px; color: var(--g2); flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(201,168,76,0.2));
}

.segment strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--t1); margin-bottom: 0.1rem; }
.segment span   { font-size: 0.8rem; line-height: 1.35; color: var(--t2); }

/* ═══════════════════════════════════════════════════════════════
   07. HOW WE WORK
═══════════════════════════════════════════════════════════════ */
#how { background: var(--bg-0); }

.how-intro { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.how-intro .label-line { justify-content: center; }
.how-intro .label-line::after { display: none; }
.how-intro h2    { margin-bottom: 1.1rem; }
.how-intro .lead { max-width: 480px; margin: 0 auto; }


/* ═══════════════════════════════════════════════════════════════
   08. CTA / FORM
═══════════════════════════════════════════════════════════════ */
#cta {
  background: var(--bg-1);
  border-top: 1px solid rgba(201,168,76,0.14);
  position: relative; overflow: hidden;
}

/* Ambient decoration */
#cta::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-form-center {
  display: flex; justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-form-center .form-card { width: 100%; max-width: 680px; }

.cta-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 7rem); align-items: start;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta-copy .label-line { margin-bottom: 0.9rem; }
.cta-copy h2          { margin-bottom: 1.5rem; }
.cta-copy .lead       { margin-bottom: 2rem; }

.cta-points { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }

.cta-point {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 0.9rem; color: var(--t2);
}

.cta-point svg {
  width: 16px; height: 16px; color: var(--g2); flex-shrink: 0; margin-top: 0.22rem;
  filter: drop-shadow(0 0 5px rgba(201,168,76,0.25));
}

.cta-point strong { color: var(--t1); }

/* Form card — premium glass */
.form-card {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--b-dim);
  padding: clamp(2.2rem, 4.5vw, 3.5rem);
  position: relative;
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient);
  opacity: 0.8;
}

.form-title {
  font-family: 'Bodoni Moda', serif; font-size: 1.3rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--t1);
}

.form-subtitle { font-size: 0.82rem; color: var(--t2); margin-bottom: 2rem; }

/* Form fields */
.fg { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }

.fg label {
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--t3);
}

.fg input,
.fg select,
.fg textarea {
  background: var(--bg-0);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--t1); font-family: 'Jost', sans-serif;
  font-size: 0.88rem; padding: 0.85rem 1.1rem;
  outline: none; width: 100%;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
  border-radius: 0; appearance: none; -webkit-appearance: none;
}

.fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(201,168,76,0.45);
  background: rgba(8,8,8,0.9);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06), 0 0 20px rgba(201,168,76,0.08);
}

.fg select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%237a6030' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.4rem;
}

.fg select option { background: var(--bg-3); color: var(--t1); }
.fg textarea      { resize: vertical; min-height: 92px; line-height: 1.6; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.form-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}

.form-policy { font-size: 0.7rem; color: var(--t3); max-width: 200px; line-height: 1.5; }

/* Success */
.form-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 4rem 2rem; gap: 1.2rem;
}

.form-success svg {
  width: 52px; height: 52px; color: var(--g2);
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

.form-success h3 { font-size: 1.3rem; color: var(--t1); }
.form-success p  { font-size: 0.9rem; color: var(--t2); }

/* ═══════════════════════════════════════════════════════════════
   09. FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-1);
  border-top: 1px solid var(--b-dim);
  padding: clamp(3rem, 5.5vw, 5rem) 0 2.2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.15) 30%, rgba(201,168,76,0.15) 70%, transparent);
}

.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--b-dim); margin-bottom: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.72; color: var(--t2); max-width: 260px; }

.footer-col h4 {
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1.4rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col li {
  font-size: 0.85rem; color: var(--t2); cursor: pointer;
  transition: color var(--ease), padding-left var(--ease);
}

.footer-col li:hover,
.footer-col li:active { color: var(--t1); padding-left: 4px; }

.footer-col address { font-style: normal; }
.footer-col address p { font-size: 0.85rem; color: var(--t2); margin-bottom: 0.55rem; line-height: 1.55; }
.footer-col address a { transition: color var(--ease); }
.footer-col address a:hover { color: var(--g2); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: 0.74rem; color: var(--t3); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.74rem; color: var(--t3); transition: color var(--ease); }
.footer-legal a:hover { color: var(--t2); }
.footer-legal-soon { font-size: 0.74rem; color: var(--t3); opacity: 0.45; cursor: default; }
.footer-legal-link { font-size: 0.74rem; color: var(--t3); opacity: 0.55; transition: opacity 0.2s, color 0.2s; }
.footer-legal-link:hover { color: var(--g2); opacity: 1; }
.footer-legal-sep  { font-size: 0.74rem; color: var(--t3); opacity: 0.3; margin: 0 0.5rem; }
.footer-legal-text { font-size: 0.74rem; color: var(--t3); opacity: 0.45; }

/* ─── FOCUS VISIBLE ─────────────────────────────────────────── */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.btn-submit:focus-visible {
  outline: 2px solid rgba(201,168,76,0.6);
  outline-offset: 3px;
}

/* ─── CURSOR FOLLOWER ────────────────────────────────────────── */
.cursor-fish {
  position: fixed; z-index: 9999;
  pointer-events: none;
  width: 52px; height: auto;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.45));
  will-change: transform, left, top;
}

/* ═══════════════════════════════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════════════════════════════ */
#sticky-bar {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 190;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 0.8rem 0;
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.35s ease;
  pointer-events: none;
  will-change: transform;
}

#sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sticky-left {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.sticky-brand {
  font-family: 'Bodoni Moda', serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.sticky-tagline {
  font-size: 0.68rem;
  color: var(--t3);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}

.sticky-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--t2);
  white-space: nowrap;
  transition: color var(--ease);
}

.sticky-phone:hover { color: var(--g2); }

.sticky-phone svg {
  width: 15px; height: 15px;
  color: var(--g2);
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(201,168,76,0.3));
}

.sticky-right .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE STRIP
═══════════════════════════════════════════════════════════════ */
.guarantee-strip {
  background: linear-gradient(to bottom, var(--bg-1), var(--bg-2));
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid var(--b-dim);
  padding: 2.2rem 0;
  position: relative;
  overflow: hidden;
}

.guarantee-strip::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.14) 30%, rgba(201,168,76,0.14) 70%, transparent);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.6rem 2rem;
}

.guarantee-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-4), var(--bg-3));
  border: 1px solid var(--b-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 17px; height: 17px; color: var(--g2);
  filter: drop-shadow(0 0 5px rgba(201,168,76,0.3));
}

.guarantee-text strong {
  display: block;
  font-size: 0.88rem; font-weight: 600; color: var(--t1);
  margin-bottom: 0.2rem;
}

.guarantee-text span {
  font-size: 0.78rem; color: var(--t2); line-height: 1.45;
}

.guarantee-sep {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--b-dim) 30%, var(--b-dim) 70%, transparent);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════════════════════════ */
#trust { background: var(--bg-1); }

.trust-head {
  display: flex;
  flex-direction: column;
  max-width: 580px;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.trust-head .label-line { margin-bottom: 0.9rem; }
.trust-head h2           { margin-bottom: 1.1rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--b-dim);
  border: 1px solid var(--b-dim);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}

.trust-item {
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: clamp(2rem, 3.5vw, 2.8rem);
  position: relative;
  transition: background var(--ease), box-shadow var(--ease);
}

.trust-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover { background: linear-gradient(160deg, var(--bg-4) 0%, var(--bg-3) 100%); }
.trust-item:hover::before { transform: scaleX(1); }

.trust-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem; font-weight: 700;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

.trust-item h3 {
  font-size: 0.96rem; font-weight: 600;
  color: var(--t1); margin-bottom: 0.8rem;
}

.trust-item p {
  font-size: 0.83rem; color: var(--t2); line-height: 1.72;
}

/* Objections */
.objections {
  border: 1px solid var(--b-dim);
  background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}

.objections::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--gold-gradient); opacity: 0.6;
}


/* CTA Badges */
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cta-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g3);
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.04);
  padding: 0.35rem 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ── 1100px: large tablet ─────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .why-cards       { grid-template-columns: 1fr 1fr; }
  .why-card--wide  { grid-column: 1 / -1; width: 100%; }
  .why-facts       { grid-template-columns: repeat(5, 1fr); }
  .cta-grid        { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .cases-intro     { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-intro       { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-grid      { grid-template-columns: 1fr 1fr; }
  .cursor-fish     { display: none; }
}

/* ── 860px: tablet portrait ───────────────────────────────── */
@media (max-width: 860px) {
  :root { --nav-h: 64px; }

  .srv-grid          { grid-template-columns: 1fr; }
  .srv--wide         { grid-column: span 1; }
  .cases-grid        { grid-template-columns: 1fr 1fr; }
  .segments          { grid-template-columns: 1fr 1fr; }
  .hero-stats        { flex-wrap: wrap; }
  .hero-stat         { flex-basis: 50%; border-bottom: 1px solid var(--b-dim); }
  .hero-stat:last-child:nth-child(odd) { flex-basis: 100%; border-right: none; }
  .guarantee-grid    { grid-template-columns: 1fr; gap: 0; }
  .guarantee-sep     { width: 100%; height: 1px; margin: 0.4rem 0; }
  .guarantee-item    { padding: 0.8rem 0; }
  .sticky-left       { display: none; }
}

/* ── 768px: phone landscape / small tablet ────────────────── */
@media (max-width: 768px) {
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
  /* Nav */
  .nav-links,
  #nav > .wrap > .btn { display: none; }
  .burger              { display: flex; }

  /* Layout */
  .why-cards     { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal  { flex-direction: column; gap: 0.5rem; }
  .fg-row        { grid-template-columns: 1fr; }
  .why-facts     { grid-template-columns: 1fr 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }

  /* Hide desktop-only decorations */
  .hero-scroll-indicator { display: none; }

  /* Sticky bar: full-width CTA on mobile */
  .sticky-left,
  .sticky-phone          { display: none; }
  .sticky-inner          { justify-content: center; }
  .sticky-right          { width: 100%; }
  .sticky-right .btn     { width: 100%; justify-content: center; padding: 0.85rem 2rem; font-size: 0.75rem; }

  /* Hero: more breathing room */
  .hero-body   { padding: clamp(3rem, 8vh, 6rem) 0 clamp(2.5rem, 6vh, 5rem); }
  .hero-sub    { font-size: 0.96rem; margin-bottom: 2.2rem; }

  /* Hero actions */
  .hero-actions        { flex-direction: column; align-items: stretch; gap: 0.9rem; }
  .hero-actions .btn   { justify-content: center; width: 100%; padding: 1.05rem 2rem; font-size: 0.8rem; }

  /* Guarantee strip */
  .guarantee-item { padding: 1rem 0; gap: 1.2rem; }
  .guarantee-text strong { font-size: 0.92rem; }
  .guarantee-text span   { font-size: 0.8rem; }

  /* Services cards */
  .srv { padding: 2rem 1.8rem; }

  /* Why facts */
  .why-facts { grid-template-columns: 1fr 1fr; }
  .why-fact:last-child:nth-child(odd) { grid-column: 1 / -1; }

  /* Cases */
  .segments { grid-template-columns: 1fr 1fr; }

  /* Form — iOS zoom fix: inputs ≥16px */
  .fg input,
  .fg select,
  .fg textarea { font-size: 1rem; }

  .form-footer          { flex-direction: column; align-items: stretch; }
  .form-policy          { max-width: 100%; text-align: center; }
  .btn-submit           { width: 100%; justify-content: center; padding: 1.1rem 2rem; font-size: 0.8rem; }

  /* Footer */
  .footer-col h4 { margin-bottom: 1rem; }
}

/* ── 520px: phone portrait ────────────────────────────────── */
@media (max-width: 520px) {
  /* Typography */
  html { font-size: 15px; }
  h1   { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  h2   { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  h3   { font-size: clamp(1rem, 4vw, 1.15rem); }
  .lead  { font-size: 0.96rem; }
  .small { font-size: 0.84rem; }

  /* Layout */
  :root { --nav-h: 60px; }
  .section { padding: clamp(3rem, 9vw, 5rem) 0; }

  /* Hero */
  .hero-body { padding: 2.5rem 0 2rem; }
  .hero-tag  { margin-bottom: 1.8rem; }
  .hero-h1   { margin-bottom: 1.4rem; }

  /* Stats */
  .hero-stat         { flex-basis: 50%; }
  .hero-stat:last-child:nth-child(odd) { flex-basis: 100%; }
  .about-stats       { grid-template-columns: 1fr 1fr; }
  .astat             { padding: 1.5rem 1.2rem; }

  /* Why */
  .why-card--wide    { width: 100%; }
  .why-facts         { grid-template-columns: 1fr; }

  /* Segments */
  .segments { grid-template-columns: 1fr; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 1.8rem 1.5rem; }
  .trust-num  { font-size: 1.8rem; margin-bottom: 0.8rem; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; }
  .footer-legal  { flex-direction: column; gap: 0.5rem; }

  /* CTA */
  .cta-badges { gap: 0.4rem; }
  .cta-badge  { font-size: 0.62rem; padding: 0.3rem 0.7rem; }

  /* Sticky bar */
  #sticky-bar { padding: 0.7rem 0; }
}

/* ── Мобильные специфические правила ─────────────────────── */

/* Touch-устройства: усиливаем затемнение чтобы текст был читаем */
@media (hover: none) {
  .srv-hover-img img {
    filter: brightness(0.3) saturate(0.6);
  }
  .srv-hover-img::after {
    background: linear-gradient(
      160deg,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.82) 50%,
      rgba(8,8,8,0.78) 100%
    );
  }
  .srv:active .srv-hover-img img {
    filter: brightness(0.45) saturate(0.75);
  }
}

/* Видео показывается на всех устройствах */

/* Форма: убираем двухколоночный grid на мобильном */
@media (max-width: 640px) {
  .fg-row { grid-template-columns: 1fr; }
  .form-grid .fg-row { grid-template-columns: 1fr; }
}

/* Cases: карточки кейсов на маленьких экранах */
@media (max-width: 520px) {
  .case-card { padding: 2rem 1.5rem; }
  .case-result { padding: 1.2rem; }
}

