* {
  box-sizing: border-box;
}

:root {
  --ink: #1b2330;
  --muted: #4c5b6b;
  --accent: #0f4c81;
  --accent-2: #c0792e;
  --paper: #f5f2ec;
  --mist: #e8eef4;
  --slate: #25364a;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid #e1e6ee;
  background: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #ffffff;
  background: var(--slate);
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  background: linear-gradient(rgba(16, 22, 35, 0.55), rgba(16, 22, 35, 0.55)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80")
      center/cover no-repeat;
  color: #ffffff;
  padding: 110px 0 90px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #e9edf3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 28px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn.alt {
  background: var(--accent-2);
  color: #fff9f1;
}

.section {
  padding: 70px 0;
}

.section-paper {
  background: var(--paper);
}

.section-mist {
  background: var(--mist);
}

.magazine-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 260px;
}

.col-60 {
  flex: 1.6;
}

.col-40 {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
}

.headline {
  font-size: 1.9rem;
  margin: 10px 0;
}

.img-frame {
  background: #dfe6ee;
  border-radius: 16px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-tall {
  height: 360px;
}

.img-wide {
  height: 260px;
}

.stats-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  flex: 1;
  min-width: 180px;
  box-shadow: 0 10px 24px rgba(30, 40, 60, 0.08);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-width: 240px;
  box-shadow: 0 12px 26px rgba(26, 32, 44, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.note {
  color: var(--muted);
}

.cta-panel {
  background: var(--slate);
  color: #ffffff;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(18, 30, 54, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd7e3;
  font-size: 1rem;
}

.split-callout {
  background: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80")
      center/cover no-repeat,
    var(--paper);
  padding: 70px 0;
  color: #1a2232;
}

.footer {
  background: #101827;
  color: #d5dbe4;
  padding: 60px 0 40px;
}

.footer a {
  color: #d5dbe4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-2);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(18, 30, 54, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button,
.cookie-actions a {
  padding: 8px 12px;
  border-radius: 18px;
  border: none;
  font-weight: 600;
  background: var(--slate);
  color: #ffffff;
}

.cookie-actions .secondary {
  background: #e1e6ee;
  color: var(--slate);
}

.page-hero {
  padding: 70px 0 50px;
  background: var(--mist);
}

.page-hero h1 {
  margin: 0;
}

.page-section {
  padding: 60px 0;
}

.two-tone {
  background: linear-gradient(120deg, #f7f4ef 0%, #ffffff 55%);
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(21, 32, 56, 0.08);
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
}

.no-click {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    padding: 80px 0 70px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
