* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #1f6b5a;
  --accent-soft: #e6f1ee;
  --sand: #f6f3ee;
  --stone: #efe9e1;
  --deep: #0f2c2a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid #e5e0d6;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-weight: 600;
  color: var(--deep);
}

.nav a:hover {
  color: var(--accent);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 20px 80px;
}

.section {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(15, 44, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--stone);
}

.section.dark {
  background: var(--deep);
  color: var(--white);
}

.section.dark a {
  color: var(--white);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ece4d8;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card strong {
  font-size: 1.1rem;
}

.card img {
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  width: fit-content;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list span {
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-step strong {
  background: var(--accent);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-select label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #e1d8c8;
  background: var(--white);
}

.service-select input {
  accent-color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #dcd2c3;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(31, 107, 90, 0.35);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.cookie-actions .btn.secondary {
  border: 1px solid var(--accent);
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 240px;
    min-height: 100vh;
    border-right: 1px solid #e5e0d6;
    border-bottom: none;
  }

  .content {
    padding: 40px 40px 100px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .service-select {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-select label {
    flex: 1 1 calc(50% - 12px);
  }
}
