* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1d21;
  --muted: #5a5f69;
  --bg: #f6f4ef;
  --paper: #ffffff;
  --accent: #2f6f62;
  --accent-soft: #d8efe8;
  --sand: #efe7da;
  --slate: #eef1f4;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
  background: var(--paper);
  border-bottom: 1px solid #e6e2d9;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  color: #1b3c35;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.compact {
  padding: 50px 0;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 18px 0;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 18px 0;
}

.hero {
  background: #0f1c18;
  color: #fdfcf9;
  padding: 90px 0 80px 0;
}

.bg-context {
  background: linear-gradient(rgba(246, 244, 239, 0.92), rgba(246, 244, 239, 0.92)),
    url("https://images.unsplash.com/photo-1546377791-2e01b4449bf0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-context .panel {
  background: rgba(255, 255, 255, 0.92);
}

.hero .hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #d7d3c7;
  box-shadow: 0 12px 30px var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fdfcf9;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn.dark {
  background: #1c1d21;
  color: #fff;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: var(--paper);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 10px 24px var(--shadow);
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.highlight {
  background: var(--sand);
}

.slate {
  background: var(--slate);
}

.quote-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 240px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px var(--shadow);
}

.pricing-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #1b3c35;
  align-self: flex-start;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 28px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d5cb;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  box-shadow: 0 12px 22px var(--shadow);
}

.footer {
  background: #111615;
  color: #eae7df;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.simple-hero {
  background: var(--slate);
  padding: 60px 0;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 22px var(--shadow);
}

.legal {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 22px var(--shadow);
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .hero {
    padding-top: 70px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .sticky-cta a {
    width: 100%;
  }
}
