* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f1a22;
  --muted: #4f5b66;
  --accent: #0f6b5f;
  --accent-soft: #e1f1ed;
  --sunset: #f7ece5;
  --steel: #1b2a33;
  --paper: #f7f6f4;
  --edge: #d6dde2;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 16px;
  position: relative;
  z-index: 2;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 6vw;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 20%;
  width: 50%;
  height: 60%;
  background: var(--accent-soft);
  border-radius: 32px;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid var(--ink);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.ghost {
  border-color: var(--edge);
  color: var(--muted);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 26, 34, 0.12);
  transform: translateX(8%);
}

.section {
  padding: 5vw 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.alt {
  background: #fff;
}

.section.sunset {
  background: var(--sunset);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(6%);
}

.pull-left {
  transform: translateX(-4%);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.list-check span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--edge);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--edge);
  font-size: 1rem;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--edge);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.footer {
  padding: 4vw 6vw 6vw;
  background: var(--steel);
  color: #e9eef1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner {
    flex: 1;
  }

  .hero-image {
    flex: 1;
    transform: translateX(0);
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 260px;
  }

  .mini-grid {
    flex-direction: row;
  }
}
