* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0e1a1f;
  --muted: #5b6670;
  --accent: #0f6b5f;
  --accent-dark: #0b4d45;
  --sun: #f9c74f;
  --sand: #f5f1ea;
  --mist: #e7eef3;
  --card: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(12, 25, 29, 0.7), rgba(12, 25, 29, 0.1)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
  padding: 90px 0 110px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sun);
  color: #2b2010;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--mist);
}

.section-tight {
  padding: 50px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(14, 26, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 170px;
  object-fit: cover;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.price {
  font-size: 1.9rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.badge {
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  align-self: flex-start;
}

.cta-block {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-block a {
  background: #fff;
  color: var(--accent-dark);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  align-self: flex-start;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 14px 32px rgba(12, 25, 29, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cad5dd;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--sun);
  color: #2b2010;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(14, 26, 31, 0.18);
  z-index: 10;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.page-hero {
  background: var(--mist);
  padding: 70px 0 60px;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #121c20;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--sun);
  color: #2b2010;
}

.cookie-reject {
  background: #fff;
  color: #121c20;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid,
  .stat-row,
  .pricing-grid {
    flex-direction: row;
  }

  .card,
  .stat {
    flex: 1;
  }

  .pricing-grid .card {
    flex: 1;
  }

  .media-row {
    flex-direction: row;
  }
}
