* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f2a;
  --muted: #5b6375;
  --bg: #f6f4f1;
  --panel: #ffffff;
  --accent: #0f6b5f;
  --accent-dark: #0a4c44;
  --sun: #f8d37a;
  --sand: #efe8dd;
  --shadow: 0 20px 50px rgba(18, 22, 32, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 32px 24px;
  background: var(--panel);
  border-right: 1px solid rgba(27, 31, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--sand);
}

.sidebar-cta {
  background: var(--sand);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta .button {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--contrast {
  background: var(--panel);
}

.section--tint {
  background: var(--sand);
}

.section-title {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(19, 22, 32, 0.08);
}

.card img {
  width: 56px;
  height: 56px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 107, 95, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
}

.stat strong {
  font-size: 1.4rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sun);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(27, 31, 42, 0.08);
}

.price {
  font-size: 1.4rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.form-wrap {
  background: var(--panel);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
  max-width: 720px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 31, 42, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(15, 107, 95, 0.25);
}

.footer {
  padding: 32px 8vw;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(27, 31, 42, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: var(--panel);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--panel);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.page-hero img {
  width: 160px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--panel);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
  }

  .sidebar-cta {
    width: 100%;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: flex-start;
  }
}
