* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #5b5b5b;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --sand: #f8f5f1;
  --linen: #fffaf3;
  --cloud: #eef2f7;
  --border: #e3e3e3;
  --shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand span {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 0.9;
  background: var(--cloud);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-header p {
  color: var(--muted);
  max-width: 520px;
}

.mag-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.mag-card {
  flex: 1;
  min-width: 240px;
  background: var(--linen);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
}

.mag-card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.split-feature {
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--sand);
  border-radius: 20px;
  padding: 28px;
  flex-wrap: wrap;
}

.split-feature img {
  flex: 1;
  min-width: 240px;
  border-radius: 16px;
  height: 200px;
  object-fit: cover;
}

.split-feature .feature-text {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.pricing-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  align-self: flex-start;
  background: var(--cloud);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--muted);
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--cloud);
  padding: 28px;
  border-radius: 20px;
}

.form-copy {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.testimonial-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 240px;
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 12px;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(420px, 90vw);
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.hidden {
  display: none;
}

.info-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1;
  min-width: 220px;
  background: var(--linen);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.muted {
  color: var(--muted);
}

.wide-banner {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80")
    center/cover;
  border-radius: 24px;
  padding: 42px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wide-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.image-strip img {
  flex: 1;
  min-width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
}

.legal {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
