* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2a;
  --muted: #5d6a6a;
  --accent: #2f7d6d;
  --accent-soft: #e6f2ee;
  --sand: #f6f3ef;
  --sun: #ffcd7a;
  --shadow: 0 18px 40px rgba(31, 42, 42, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfbf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 6vw 12px;
  background: #fbfbf9;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-end;
  margin-right: 6vw;
  margin-top: -24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.section--offset {
  background: var(--sand);
}

.section--layered::before {
  content: "";
  position: absolute;
  inset: 18px 10vw auto;
  height: 70%;
  background: var(--accent-soft);
  z-index: 0;
  border-radius: 32px;
}

.section--layered > * {
  position: relative;
  z-index: 1;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.intro-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.intro-media {
  display: flex;
  justify-content: flex-end;
}

.intro-media img {
  border-radius: 26px;
  box-shadow: var(--shadow);
  width: min(520px, 90%);
}

.accent-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.split-card.offset-right {
  margin-left: 8vw;
}

.split-card.offset-left {
  margin-right: 8vw;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card img {
  width: 52px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-item span {
  font-size: 1.2rem;
  font-weight: 600;
}

.highlight-banner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 22px;
  background: var(--sun);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d7d7;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px dashed var(--ink);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #f0f0ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--accent-soft);
  padding: 42px 6vw;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 6vw 64px;
}

.policy-content h2 {
  margin-top: 18px;
}

.thanks-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

@media (min-width: 840px) {
  .intro {
    flex-direction: row;
    align-items: center;
  }

  .intro-panel {
    flex: 1;
  }

  .intro-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split-card {
    flex: 1;
  }

  .grid-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 240px;
  }

  .testimonial-row {
    display: flex;
    gap: 18px;
  }

  .testimonial {
    flex: 1;
  }

  .faq {
    flex-direction: row;
  }

  .faq-item {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-grid {
    display: flex;
    gap: 18px;
  }
}
