* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1f1d;
  background: #f5f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw;
  border-bottom: 1px solid rgba(27, 31, 29, 0.08);
  background: #f5f4f0;
}

.split-nav .logo-stack {
  display: flex;
  gap: 16px;
  align-items: center;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #1f3f33;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-tagline {
  font-size: 0.85rem;
  color: #53605a;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: #1f3f33;
}

main {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 40px 7vw 80px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15, 35, 28, 0.75);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  line-height: 1.2;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(26, 46, 38, 0.18);
}

.btn-primary {
  background: #1f3f33;
  color: #fff;
}

.btn-secondary {
  background: #9ed3b0;
  color: #1b1f1d;
}

.btn-ghost {
  border: 1px solid #1f3f33;
  color: #1f3f33;
}

.btn-outline {
  border: 1px solid #1f3f33;
  color: #1f3f33;
  background: transparent;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.asymmetric {
  align-items: flex-start;
}

.offset-story {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.story-card {
  flex: 1 1 320px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16, 34, 28, 0.08);
  position: relative;
  top: 30px;
}

.story-image {
  flex: 1 1 320px;
}

.inline-link {
  color: #2b5b4a;
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
}

.trust-band {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 28px;
  background: #e6efe9;
}

.trust-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-metrics {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.metric span {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.layered-panels {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.panel {
  flex: 1 1 320px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
}

.panel ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.panel-right {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.panel-right img {
  border-radius: 0 24px 24px 0;
  height: 100%;
  object-fit: cover;
}

.service-preview {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.service-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 15px 40px rgba(15, 30, 23, 0.08);
}

.service-card.highlighted {
  background: #1f3f33;
  color: #fff;
}

.service-card .price {
  font-weight: 700;
  font-size: 1.2rem;
}

.section-cta {
  display: flex;
  justify-content: flex-start;
}

.case-flow {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.case-text {
  flex: 1 1 320px;
}

.case-image {
  flex: 1 1 320px;
}

.testimonial-slice {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.form-zone {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  background: #1f3f33;
  color: #fff;
  padding: 40px;
  border-radius: 26px;
}

.form-intro {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.contact-form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #f8f8f2;
}

.form-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

.cta-ribbon {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 7vw 60px;
  border-top: 1px solid rgba(27, 31, 29, 0.1);
  background: #f5f4f0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 80;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.page-hero .hero-copy {
  flex: 1 1 320px;
}

.page-hero .hero-image {
  flex: 1 1 320px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  align-items: center;
}

.service-row .price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: auto;
}

.contact-panel {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
  border-radius: 22px;
}

.contact-panel address {
  font-style: normal;
  line-height: 1.7;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 30px;
  border-radius: 22px;
}

.legal-content h2 {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
