*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #16201a;
  --muted: #4b5a51;
  --accent: #1d6b5a;
  --accent-dark: #0f3f35;
  --soft: #f3f5f3;
  --warm: #f7f2ec;
  --sun: #f2d38b;
  --line: #d7ddd8;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--soft);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: rgba(29, 107, 90, 0.12);
}

.sidebar-cta {
  margin-top: auto;
  padding: 14px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 60px 56px 40px;
  background: linear-gradient(115deg, #ffffff 30%, #e6efe9 100%);
  align-items: center;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0;
  line-height: 1.1;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.ghost {
  color: var(--accent-dark);
  background: #ffffff;
}

.hero-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-media img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header h2 {
  margin: 0;
  font-size: 30px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-style: italic;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-card {
  flex: 1;
  min-width: 240px;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice button {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.service-choice button.active {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

label {
  font-weight: 600;
  font-size: 14px;
}

.footer {
  padding: 32px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 22px;
  bottom: 22px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
  z-index: 30;
  display: none;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent-dark);
  color: #ffffff;
}

.small-note {
  font-size: 13px;
  color: var(--muted);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .hero {
    flex-direction: column;
    padding: 50px 28px 30px;
  }

  .section {
    padding: 48px 28px;
  }

  .footer {
    padding: 28px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .cookie-banner {
    left: 14px;
    bottom: 14px;
  }
}
