* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2b24;
  --muted: #5b6b63;
  --accent: #1e7b4a;
  --accent-dark: #145a35;
  --sand: #f4f1ea;
  --mist: #e8f0ec;
  --soil: #c9b79c;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  color: var(--muted);
}

.hero {
  padding: 40px 0 80px;
}

.hero-wrap {
  display: flex;
  align-items: stretch;
  gap: 28px;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-visual {
  flex: 0.9;
  position: relative;
}

.hero-card {
  background: var(--mist);
  padding: 26px;
  position: absolute;
  bottom: -24px;
  left: -18%;
  width: 68%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  background: var(--soil);
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
  background: var(--accent-dark);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.asym-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.offset-block {
  background: var(--mist);
  padding: 24px;
  margin-top: 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card-image {
  width: 140px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--soil);
}

.card-image img {
  width: 100%;
  height: 100%;
}

.split-band {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.band-panel {
  flex: 1;
  background: var(--mist);
  padding: 26px;
  border-radius: 18px;
}

.band-panel.deep {
  background: var(--accent);
  color: var(--white);
}

.band-panel.deep .btn {
  background: var(--white);
  color: var(--accent);
}

.form-wrapper {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4d9d5;
  font-size: 1rem;
}

.form-status {
  min-height: 20px;
  color: var(--accent-dark);
  font-weight: 600;
}

.image-strip {
  display: flex;
  gap: 18px;
  align-items: center;
}

.image-tile {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  background: var(--soil);
}

.image-tile img {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 50px 0 90px;
  background: var(--ink);
  color: var(--white);
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 60px;
}

.page-hero .hero-image img {
  height: 320px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: var(--mist);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.policy-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-wrap,
  .asym-grid,
  .split-band,
  .image-strip,
  .footer-columns {
    flex-direction: column;
  }

  .hero-card {
    position: static;
    width: 100%;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
