* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #12211d;
  --muted: #5b6c63;
  --accent: #c34a2c;
  --soft: #f3f2ed;
  --leaf: #6c8f5d;
  --sun: #e9b872;
  --deep: #0f1916;
  --paper: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  padding: 28px 20px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: var(--ink);
  font-weight: 600;
}

.sidebar .badge {
  background: var(--sun);
  color: var(--deep);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.main {
  flex: 1;
  padding: 32px 8vw 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(rgba(15, 25, 22, 0.45), rgba(15, 25, 22, 0.7)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1400&q=80");
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn.dark {
  background: var(--deep);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
}

.highlight {
  background: var(--leaf);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  background: var(--soft);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}

.form-wrap {
  background: var(--deep);
  color: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  font-weight: 700;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  margin-top: 20px;
}

.footer {
  background: var(--soft);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-note {
  max-width: 520px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .main {
    padding: 24px 6vw 80px;
  }

  .sticky-cta {
    align-self: stretch;
    text-align: center;
  }
}
