* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2430;
  --muted: #5b6475;
  --accent: #1f7f5c;
  --accent-dark: #165942;
  --sand: #f4f1ea;
  --cloud: #f7f8fb;
  --sun: #ffcd45;
  --line: #dde2ea;
  --shadow: 0 16px 40px rgba(31, 36, 48, 0.12);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 20px 10px;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.logo {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 30px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 40px;
  width: 160px;
  height: 160px;
  background: var(--sun);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
  margin-left: auto;
  max-width: 320px;
}

.hero-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card strong {
  font-size: 1.4rem;
  display: block;
  margin-top: 6px;
}

.section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-alt {
  background: var(--cloud);
}

.section-sand {
  background: var(--sand);
}

.section-contrast {
  background: #111827;
  color: #f8fafc;
}

.section-contrast p,
.section-contrast a {
  color: #e2e8f0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.section p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.overlap-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlap-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  margin-top: -40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-step span {
  width: 36px;
  height: 36px;
  background: var(--sun);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid var(--sun);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 20px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e2e8f0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #111827;
  color: #f8fafc;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 20px 20px;
  background: var(--cloud);
}

.page-hero h1 {
  font-size: 2rem;
}

.content-wrap {
  padding: 30px 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
}

@media (min-width: 900px) {
  header {
    padding: 40px 70px 10px;
  }

  .nav-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 60px 70px 20px;
    gap: 40px;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-card {
    align-self: flex-end;
  }

  .section {
    padding: 90px 70px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stat-row {
    flex-direction: row;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .overlap-shell {
    flex-direction: row;
    align-items: flex-start;
  }

  .overlap-card {
    margin-top: 60px;
    margin-left: -120px;
    max-width: 360px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .page-hero {
    padding: 60px 70px 30px;
  }

  .content-wrap {
    padding: 40px 70px 70px;
  }

  .info-grid {
    flex-direction: row;
  }
}
