* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1c1f;
  --muted: #4b5563;
  --sand: #f7f1ea;
  --ocean: #1b6f6b;
  --leaf: #3a7b4a;
  --sun: #f6c766;
  --clay: #d9b49c;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 20, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav-shell {
  display: flex;
  justify-content: flex-end;
  padding: 28px 8vw 0;
}

.nav-card {
  display: flex;
  gap: 22px;
  padding: 18px 26px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-right: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ocean);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 8vw 40px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 320px;
  height: 320px;
  border-radius: 60px;
  background: var(--sand);
  z-index: -1;
  transform: rotate(12deg);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  max-width: 580px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--ocean);
  color: var(--white);
}

.btn.primary:hover {
  background: #165955;
}

.btn.secondary {
  border-color: var(--ink);
  background: var(--white);
}

.btn.secondary:hover {
  border-color: var(--ocean);
  color: var(--ocean);
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section.offset {
  padding-top: 96px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: #182523;
  color: var(--white);
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--leaf);
  margin-bottom: 12px;
}

.section.dark .section-label {
  color: var(--sun);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.highlight-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.highlight-card h3 {
  margin-bottom: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.card .price {
  font-weight: 700;
  color: var(--ocean);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sun);
  margin-top: 6px;
}

.form-shell {
  background: var(--white);
  padding: 28px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d5d9de;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-left: 3px solid var(--leaf);
  background: rgba(255, 255, 255, 0.65);
}

.testimonial strong {
  font-size: 0.95rem;
}

.cta-inline {
  color: var(--ocean);
  font-weight: 600;
}

.floating-sticky {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 10;
}

.floating-sticky a {
  background: var(--leaf);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 40px 8vw 60px;
  background: #101615;
  color: #d3d6d7;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.address {
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .timeline-item {
    align-items: center;
  }
}
