* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #231f20;
  --muted: #6b625d;
  --sand: #f6f2ee;
  --rose: #a4475b;
  --olive: #3e4b3a;
  --sun: #f2c167;
  --paper: #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;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--paper);
  padding: 28px 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 220px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 6vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(164, 71, 91, 0.12), rgba(242, 193, 103, 0.15));
  pointer-events: none;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero p {
  color: var(--muted);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card strong {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(164, 71, 91, 0.1);
  color: var(--rose);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.quote {
  background: var(--rose);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
}

.pricing-reveal {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
}

.form-block {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-block label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  padding: 12px 18px;
  background: var(--sun);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.inline-link {
  color: var(--rose);
  font-weight: 600;
  border-bottom: 1px solid rgba(164, 71, 91, 0.4);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--olive);
}

.footer {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-image {
    max-width: 360px;
  }

  .split {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }
}
