* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1a1c20;
  --muted: #5a6472;
  --accent: #1f4b99;
  --accent-dark: #163a78;
  --bg: #f7f4ef;
  --paper: #ffffff;
  --warm: #f0e7da;
  --shadow: 0 18px 40px rgba(26, 28, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(26, 28, 32, 0.1);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 0 28px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-visual h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-visual p {
  color: var(--muted);
  font-size: 17px;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.outline {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 32px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--warm);
  padding: 18px;
  border-radius: 14px;
}

.stat strong {
  font-size: 22px;
}

.magazine-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.magazine-grid .card {
  flex: 1;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing .card {
  border-left: 4px solid var(--accent);
}

.pricing span {
  color: var(--muted);
  font-size: 14px;
}

.cta-inline {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(26, 28, 32, 0.2);
  font-size: 14px;
}

.form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  border-top: 1px solid rgba(26, 28, 32, 0.1);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 600;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: var(--paper);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 75, 153, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 0;
}

.page-header h1 {
  font-size: 34px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  background: #e8edf8;
  padding: 18px;
  border-radius: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-visual {
    flex: 1.1;
  }

  .hero-image {
    flex: 1;
    min-height: 360px;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row .card,
  .split-row .stat {
    flex: 1;
  }

  .magazine-grid {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .card {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column .card,
  .two-column .note {
    flex: 1;
  }
}
