* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f4f1;
  --bg-alt: #ece8e2;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #1f4b5a;
  --accent-soft: #d9e6ea;
  --highlight: #f4b942;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4%;
  background: var(--bg-alt);
}

.nav-left {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-center {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-right {
  font-size: 0.85rem;
  max-width: 260px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 32px 4% 40px;
  background: var(--bg);
}

.hero-text,
.hero-visual {
  flex: 1 1 320px;
}

.hero-visual {
  background: #c9d2d6;
  border-radius: 18px;
  overflow: hidden;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1 1 320px;
}

.visual {
  border-radius: 16px;
  overflow: hidden;
  background: #cdd5d9;
}

.bg-panel {
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
}

.section-accent {
  background: var(--bg-alt);
  padding: 40px 4%;
}

.section-highlight {
  background: var(--accent-soft);
  padding: 40px 4%;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
}

.price-row span {
  font-weight: 600;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5d8;
  font-family: inherit;
}

.footer {
  background: #131617;
  color: #ffffff;
  padding: 32px 4%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #ffffff;
}

.footer small {
  color: #c9ced1;
}

.cta-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #101314;
  color: #ffffff;
  padding: 16px 4%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 40;
}

.hidden {
  display: none;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: #1d1d1d;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    text-align: left;
    max-width: none;
  }
}
