* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1a18;
  --muted: #5a5954;
  --soft: #f5f2ee;
  --accent: #2f6b4f;
  --accent-dark: #1f4b37;
  --highlight: #f7d38a;
  --paper: #fffdf9;
  --line: #e2ddd6;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--soft);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.cta-pill {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--soft);
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section h1,
.section h2,
.section h3 {
  line-height: 1.2;
}

.hero {
  background: linear-gradient(120deg, #fff6e6 0%, #f2f7f4 60%);
  position: relative;
}

.hero .hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tagline {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.button.secondary {
  background: var(--highlight);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.badge {
  background: var(--highlight);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
button,
textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

button {
  cursor: pointer;
  border: none;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--soft);
}

.service-option input {
  width: 18px;
  height: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 24px 8vw;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-pill {
    margin-top: 0;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }
}
