* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #0d5cff;
  --accent-soft: #e7f0ff;
  --sand: #f6f3ee;
  --night: #0f172a;
  --line: #e6e1d9;
  --highlight: #ffebc7;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.section.tight {
  padding: 36px 0;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .overlay {
  background: rgba(5, 10, 25, 0.72);
  padding: 72px 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #d5d9e5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 20px rgba(13, 92, 255, 0.24);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost {
  border-color: #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mag-row.reverse {
  flex-direction: column-reverse;
}

.mag-col {
  flex: 1;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.feature-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.highlight {
  background: var(--highlight);
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  background: var(--night);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.stat span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-item strong {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 32px 0 56px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 22px rgba(13, 92, 255, 0.28);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.spacer-sm {
  height: 12px;
}

@media (min-width: 768px) {
  .mag-row {
    flex-direction: row;
  }

  .mag-row.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 calc(50% - 16px);
  }

  .form-shell form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-shell form > div {
    flex: 1 1 calc(50% - 16px);
  }

  .form-shell textarea {
    min-height: 160px;
  }

  .form-shell form .full {
    flex: 1 1 100%;
  }
}
