* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #4b5563;
  --accent: #2f6d61;
  --accent-soft: #e7f3ef;
  --sand: #f8f4ef;
  --coal: #1f2937;
  --white: #ffffff;
  --line: #e5e7eb;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1488190211105-8b0e65b80b4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--sand);
}

.section.accent {
  background: var(--accent-soft);
}

.magazine-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.col.narrow {
  flex: 1 1 180px;
}

.col.wide {
  flex: 2 1 420px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.stat-card strong {
  font-size: 1.8rem;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--coal);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list span {
  font-weight: 700;
  color: var(--accent);
}

.pricing-card {
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--coal);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.divider {
  height: 1px;
  background: var(--line);
}

.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--coal);
  color: var(--white);
  padding: 18px;
  border-radius: 14px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--white);
  padding: 8px 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--white);
  color: var(--coal);
}

.mini-hero {
  padding: 70px 0 40px;
  background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  position: relative;
}

.mini-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
}

.mini-hero .hero-content {
  position: relative;
}

@media (min-width: 768px) {
  .top-nav {
    padding: 32px 0;
  }

  .hero {
    padding: 150px 0 110px;
  }

  .footer {
    padding: 40px 0 60px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
