:root {
  --bg: #f7f4f1;
  --text: #1e1e1e;
  --muted: #6b6b6b;
  --accent: #224d8c;
  --accent-dark: #1a3b6e;
  --accent-light: #e6eefb;
  --surface: #ffffff;
  --surface-alt: #efe9e4;
  --line: #ded7d0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  padding: 32px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-mark {
  font-size: 20px;
  font-weight: 700;
}

.brand-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.ad-label {
  background: var(--accent-light);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--accent-dark);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
  border-color: var(--line);
  background: var(--surface-alt);
}

.sidebar-cta {
  display: flex;
}

.sidebar-note {
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 32px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.section-contrast {
  background: var(--surface-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  flex: 1 1 300px;
  min-height: 360px;
  border-radius: 18px;
  background-color: #d7e3ef;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.link-inline:hover,
.link-inline:focus {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent-light);
}

.btn-accent {
  background: #f6d37a;
  color: #3b2a00;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #f1c258;
}

.btn-light {
  background: #ffffff;
  color: var(--accent-dark);
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-text {
  flex: 1 1 320px;
}

.media-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-shell {
  background: #e3e8f3;
  border-radius: 16px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-panel {
  flex: 1 1 260px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.split-panel-highlight {
  background: var(--accent-light);
  border-color: transparent;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-image-bg {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.image-bg-layer {
  position: absolute;
  inset: 0;
  background-color: #1f2a38;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.section-image-bg .section-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-cards .card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

.section-sticky {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sticky-cta {
  flex: 1 1 280px;
  background: var(--accent-light);
  padding: 20px;
  border-radius: 18px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.section-details {
  flex: 1 1 320px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--accent);
}

.section-form .lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #ffffff;
}

.section-footer {
  background: var(--surface-alt);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-hero-alt {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-alt-text {
  flex: 1 1 320px;
}

.section-process {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.process-step {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.section-pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.pricing-meta {
  text-align: right;
}

.pricing-note {
  font-size: 13px;
  color: var(--muted);
}

.section-cta-band .cta-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--accent-light);
  padding: 20px;
  border-radius: 18px;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 16px;
}

.contact-value {
  font-weight: 600;
}

.thank-you-card {
  flex: 1 1 260px;
  background: var(--accent-light);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-legal h2 {
  margin-top: 24px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 24px;
  }

  .pricing-meta {
    text-align: left;
  }

  .sticky-cta {
    position: static;
  }
}
