﻿:root {
  --bg: #0b0f18;
  --bg-2: #141a2b;
  --ink: #f8f6f1;
  --muted: #b7bdc9;
  --accent: #f59e0b;
  --accent-2: #f97316;
  --stroke: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.06);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.2), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.2), transparent 45%),
    linear-gradient(150deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--ink);
  min-height: 100vh;
}

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

h1, h2, h3 {
  font-family: "Garamond", "Georgia", serif;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
}

p { margin: 0 0 16px; color: var(--muted); }

.container { width: min(1200px, 92vw); margin: 0 auto; }

.section { padding: 90px 0; position: relative; }

.section--alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section--accent {
  background: linear-gradient(120deg, rgba(245, 158, 11, 0.18), rgba(249, 115, 22, 0.1));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 16, 0.85);
  border-bottom: 1px solid var(--stroke);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand { display: flex; flex-direction: column; gap: 4px; }

.logo {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo__tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.6px;
  text-transform: none;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(249, 115, 22, 0.85));
  color: #1a1204;
  font-size: 12px;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.hero { overflow: hidden; position: relative; }

.hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title { position: relative; display: inline-block; }

.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.7));
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  animation: underline 3.2s ease forwards;
}

.lead { font-size: 18px; max-width: 560px; }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.hero__stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero__stats strong {
  display: block;
  font-size: 18px;
  color: var(--ink);
}

.hero__card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero__orbits {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
  animation: orbit 18s linear infinite;
  pointer-events: none;
}

.hero__orbits::before,
.hero__orbits::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.hero__orbits::after {
  inset: 120px;
  border-style: solid;
  opacity: 0.6;
}

.section__head { max-width: 720px; margin-bottom: 32px; }

.section__split {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.cards-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.case,
.offer-card,
.form-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.case__tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  font-size: 12px;
  margin-bottom: 12px;
}

.offer-card__price { font-size: 28px; color: var(--accent); margin-bottom: 10px; }

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.list li::before { content: "-"; margin-right: 10px; color: var(--accent); }

.result-block,
.alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.timeline { display: grid; gap: 18px; }

.timeline__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
}

.timeline__month { font-weight: 700; margin-bottom: 10px; }

.price { margin-top: 16px; font-weight: 700; color: var(--accent-2); }

.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stats-grid strong,
.stats-strip strong {
  display: block;
  font-size: 24px;
  color: var(--accent);
}

.stats-strip {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
}

.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-meta { display: grid; gap: 10px; color: var(--muted); }

.form { display: grid; gap: 12px; }

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(7, 12, 22, 0.7);
  color: var(--ink);
  font-family: inherit;
}

textarea { min-height: 120px; resize: vertical; }

.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 8px;
}

.form__check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.form__success { min-height: 18px; font-size: 12px; color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 30px 0 50px;
  color: var(--muted);
}

.footer__inner { display: grid; gap: 10px; }

.footer__link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #1a1204;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.3);
}

.btn--ghost { border-color: var(--stroke); color: var(--ink); }

.btn--dark { background: rgba(8, 10, 12, 0.8); border-color: var(--stroke); color: var(--ink); }

.btn:hover { transform: translateY(-2px); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes underline {
  0% { transform: scaleX(0); opacity: 0.2; }
  100% { transform: scaleX(1); opacity: 1; }
}

@keyframes orbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 860px) {
  .header__inner { flex-direction: column; align-items: flex-start; }
  .result-block,
  .alert { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orbits,
  .btn,
  .reveal,
  .hero-title::after {
    animation: none;
    transition: none;
  }
}
