* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #4e5a61;
  --accent: #2f6d67;
  --accent-dark: #1f4b47;
  --cream: #f5f1ea;
  --sand: #efe7db;
  --fog: #edf2f3;
  --sun: #f3c969;
  --shadow: rgba(16, 24, 32, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 600;
}

.nav a {
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sidebar-cta {
  background: var(--accent);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  text-align: center;
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 48px 120px;
  background: #ffffff;
}

section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 24px;
  box-shadow: 0 10px 25px var(--shadow);
}

.hero {
  background: linear-gradient(120deg, #fef5e6, #f7fbfb);
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 500px;
}

.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(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 0.9;
}

.callout {
  background: var(--sand);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.callout strong {
  font-size: 22px;
}

.insight {
  background: var(--fog);
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.insight div {
  flex: 1;
}

.steps {
  background: #ffffff;
  flex-direction: column;
  gap: 20px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-icon {
  background: var(--accent);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.services {
  background: #ffffff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border-radius: 18px;
  background: var(--fog);
  align-items: center;
}

.service-card h3 {
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.story {
  background: #fff4e6;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.story img {
  width: 220px;
  border-radius: 18px;
}

.form-wrap {
  background: var(--fog);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7dee1;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.trust {
  background: #ffffff;
  flex-direction: row;
  gap: 24px;
}

.trust-card {
  flex: 1;
  background: var(--sand);
  padding: 20px;
  border-radius: 18px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 16px;
  margin-left: auto;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.banner {
  background: #ffffff;
  border: 1px solid #d7dee1;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid #d7dee1;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.reject {
  background: transparent;
  color: var(--accent);
}

.content-block {
  display: flex;
  gap: 24px;
  align-items: center;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.two-column {
  display: flex;
  gap: 24px;
}

.pill {
  background: var(--sun);
  color: #3b2d05;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
}

@media (max-width: 1024px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  main {
    padding: 28px 24px 120px;
  }

  .hero,
  .insight,
  .story,
  .trust,
  .content-block,
  .two-column,
  .callout {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 30px;
  }

  section {
    padding: 22px;
  }
}
