* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1e22;
  --muted: #5a6672;
  --accent: #2f6d63;
  --accent-soft: #e5f2ef;
  --warm: #f7efe6;
  --cool: #eef3f7;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfb;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #ffffff;
  position: relative;
  z-index: 3;
  box-shadow: 0 6px 24px rgba(16, 24, 40, 0.06);
}

.nav .brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav .brand span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw 80px;
  background: linear-gradient(130deg, #f3f6f4, #ffffff);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 60px;
  width: 320px;
  height: 320px;
  background: var(--accent-soft);
  border-radius: 32px;
  transform: rotate(12deg);
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-visual {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  z-index: 2;
}

.hero-visual img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-visual .float-card {
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section.alt {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.copy h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.copy p {
  color: var(--muted);
}

.insight-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight-card span {
  font-weight: 700;
  color: var(--accent);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric strong {
  font-size: 1.6rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.service-card img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: -12px;
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 50%;
  z-index: 0;
}

.service-card h3,
.service-card p,
.service-card .price {
  position: relative;
  z-index: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.pricing-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0d2f2a;
  color: #fff;
  padding: 32px;
  border-radius: 24px;
}

.cta-strip a {
  color: #fff;
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.timeline-step span {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9e0e6;
  font-size: 15px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-panel .form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 40px 6vw;
  background: #111516;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 14px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #e2e8f0;
  color: var(--ink);
}

.page-header {
  padding: 48px 6vw 32px;
  background: var(--cool);
}

.page-header h1 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
    justify-content: flex-end;
  }

  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .metrics {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }

  .form-panel .form-row.inline {
    flex-direction: row;
    gap: 16px;
  }

  .form-panel .form-row.inline > div {
    flex: 1;
  }
}
