/* DomPro — премиальный лендинг (только body.landing) */

.landing {
  --bg-deep: #0a0e1a;
  --bg-mid: #1a1f3a;
  --bg-elevated: #222845;
  --gold: #d4af37;
  --gold-bright: #f4d03f;
  --gold-dim: rgba(212, 175, 55, 0.2);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text-muted: #b8bcc8;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --content-max: 1200px;
  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --header-height: 88px;

  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: #fff;
}

/* ——— Header ——— */
.landing .header-premium {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.landing .header-inner {
  max-width: var(--content-max);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.landing .logo-premium .logo-img {
  width: 52px;
  height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff 0%, #f0e6c8 100%);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.15);
}

.landing .logo-premium .logo-text {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 45%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing .nav-premium {
  justify-self: center;
  margin: 0;
  gap: 2.25rem;
}

.landing .nav-premium a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.landing .nav-premium a:hover {
  color: var(--gold-bright);
}

.landing .header-actions {
  justify-self: end;
}

/* ——— Buttons (landing) ——— */
.landing .btn-primary-premium {
  background: #ffffff;
  color: #0a0e1a;
  border: 1px solid #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.landing .btn-primary-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.12);
  background: #f8f8f8;
}

.landing .btn-gold-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: calc(1rem - 1px) calc(2.5rem - 1px);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.landing .btn-gold-outline:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
}

.landing .btn-ghost {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.landing .btn-ghost:hover {
  color: #fff;
}

/* ——— Hero ——— */
.landing .hero-premium {
  min-height: calc(100vh - var(--header-height));
  padding: 4rem 2rem 6rem;
  align-items: center;
}

.landing .hero-bg {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(26, 31, 58, 0.9), transparent),
    linear-gradient(180deg, #0f1428 0%, #0a0e1a 55%, #0a0e1a 100%);
}

.landing .hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.landing .hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
}

.landing .hero-eyebrow {
  display: inline-block;
  margin-bottom: 1.75rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.06);
}

.landing .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.landing .hero-title-line {
  display: block;
}

.landing .hero-title-gold {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #e8c547 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing .hero-title-sub {
  font-size: 0.72em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 0.15em;
}

.landing .hero-subtitle {
  max-width: 640px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.landing .hero-subtitle strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.landing .hero-cta {
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* ——— Stat cards ——— */
.landing .hero-stats-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
  border: none;
  list-style: none;
}

.landing .stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-dim);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.landing .stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-glow);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.landing .stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-bright);
}

.landing .stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: #fff;
}

.landing .stat-card span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ——— Sections ——— */
.landing .section-premium {
  padding: var(--section-pad) 2rem;
}

.landing .section-dark {
  background: linear-gradient(180deg, #0d1224 0%, #1a1f3a 50%, #0d1224 100%);
  border-block: 1px solid rgba(212, 175, 55, 0.08);
}

.landing .section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.landing .section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.landing .section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}

/* ——— Steps ——— */
.landing .steps-premium li {
  padding: 1.75rem 0;
  border-bottom-color: rgba(212, 175, 55, 0.1);
}

.landing .step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.85;
}

.landing .steps-premium h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ——— Categories ——— */
.landing .category-grid-premium {
  gap: 1.5rem;
}

.landing .category-card-premium {
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.landing .category-card-premium:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.landing .category-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.landing .category-card-premium h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

/* ——— Trust ——— */
.landing .section-trust {
  background: radial-gradient(ellipse at center, rgba(26, 31, 58, 0.6), transparent 70%);
}

.landing .trust-panel-premium {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--gold-dim);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.landing .trust-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.landing .trust-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.landing .trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ——— CTA banner ——— */
.landing .section-cta {
  background: linear-gradient(135deg, #1a1f3a 0%, #0a0e1a 100%);
}

.landing .clients-banner-premium {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--gold-dim);
  background: rgba(212, 175, 55, 0.04);
}

/* ——— Footer ——— */
.landing .footer-premium {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  background: #080b14;
}

.landing .footer-inner {
  max-width: var(--content-max);
}

.landing .footer p {
  color: var(--text-muted);
}

/* ——— Mobile ——— */
@media (max-width: 980px) {
  .landing .header-inner {
    grid-template-columns: 1fr auto;
  }

  .landing .nav-premium {
    display: none;
  }

  .landing .trust-panel-premium {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .landing .header-inner {
    padding: 0 1.25rem;
  }

  .landing .hero-premium {
    padding: 3rem 1.25rem 4rem;
  }

  .landing .hero-title {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .landing .hero-subtitle {
    font-size: 1rem;
  }

  .landing .hero-stats-premium {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .landing .stat-card {
    padding: 1.5rem;
  }

  .landing .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .landing .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .landing .category-grid-premium {
    grid-template-columns: 1fr;
  }

  .landing .clients-banner-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .landing .section-premium {
    padding: 4rem 1.25rem;
  }
}
