.hidden {
  display: none;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --bg-strong: #efe9e2;
  --ink: #1f2328;
  --muted: #4b5563;
  --accent: #1b6d6a;
  --accent-soft: #d9eeec;
  --warm: #c9b8a3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 56px;
}

.hero-visual {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 55%;
  background: #dfe5e4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-copy {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn {
  background: var(--accent);
  color: #fff;
}

.btn:hover {
  background: #165a57;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.section {
  padding: 56px 0;
}

.section.bg-strong {
  background: var(--bg-strong);
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section-intro {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 52%;
  min-width: 280px;
}

.split .visual {
  flex: 1 1 40%;
  min-width: 260px;
  background: #e3e0db;
  border-radius: 16px;
  overflow: hidden;
}

.split .visual img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card .card-image {
  background: #e7e3dd;
  border-radius: 12px;
  overflow: hidden;
}

.card .card-image img {
  width: 100%;
  height: 180px;
}

.pill {
  display: inline-flex;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e6e0d7;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6d1;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 0 60px;
  background: #1f2328;
  color: #e5e7eb;
}

.footer a {
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-header {
  padding: 32px 0;
}

.note {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 12px 14px;
  border-radius: 12px;
}

.mt-18 {
  margin-top: 18px;
}

.legal-block {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
}

@media (max-width: 820px) {
  .hero-visual,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
