:root {
  --bg-dark: #0f1b2d;
  --bg-light: #f5f7fb;
  --bg-warm: #fff5eb;
  --accent: #3f6ad8;
  --accent-warm: #f4b34f;
  --accent-soft: #2fb38a;
  --text-dark: #17243a;
  --text-muted: #4c5b72;
  --border: #d7dde8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
}

.hero {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
}

.hero-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(8, 14, 30, 0.45);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--bg-light);
}

.section.warm {
  background: var(--bg-warm);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 720px;
}

.asym-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.asym-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  border: 1px solid var(--border);
}

.asym-card.offset {
  margin-left: auto;
  background: #f8faff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--border);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrapper label {
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 40px 0;
}

.footer .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent-warm);
  color: #1f1f1f;
  box-shadow: 0 16px 40px rgba(23, 36, 58, 0.25);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-hero {
  padding: 60px 0;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

@media (min-width: 900px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .pricing-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 280px;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .badge-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .badge {
    flex: 1 1 220px;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-item {
    flex: 1 1 240px;
  }
}
