* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f8f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f7f8f6;
  border-bottom: 1px solid #d7dad6;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5a61;
  background: #e8ece9;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 40px;
  background: #e8ece9;
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #cfd6d2;
  border-radius: 16px;
  overflow: hidden;
}

.hero-media .media-fill {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1f2a2e;
  color: #fefefe;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.cta-outline {
  background: transparent;
  color: #1f2a2e;
  border: 1px solid #1f2a2e;
}

.section {
  padding: 52px 6vw;
}

.split-section {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  max-width: 540px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 280px;
  background-color: #d6dad6;
  border-radius: 16px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 28, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  width: 100%;
  height: 160px;
  background-color: #cfd6d2;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e2e5e1;
  padding-bottom: 12px;
}

.price-row span {
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 28, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d2;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2a2e;
  color: #fefefe;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #1f2a2e;
  color: #f1f4f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.notice {
  font-size: 0.9rem;
  color: #dfe5e2;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  max-width: 320px;
  background: #ffffff;
  color: #1f2a2e;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 28, 0.18);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1f2a2e;
  background: transparent;
  color: #1f2a2e;
}

.cookie-actions .accept {
  background: #1f2a2e;
  color: #ffffff;
}

.subtle {
  color: #55646b;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 28, 0.08);
}

.inline-cta {
  font-weight: 600;
  color: #1f2a2e;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
