* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1f2b;
  --muted: #5f6675;
  --surface: #f5f3ef;
  --surface-strong: #ece6dd;
  --accent: #2f5cff;
  --accent-dark: #1f38a6;
  --sage: #dfe7dd;
  --sand: #efe6db;
  --shadow: 0 12px 30px rgba(20, 24, 36, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0 0 80px;
}

.top-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4%;
  background: #ffffff;
  border-bottom: 1px solid #ebeff5;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  max-width: 260px;
  font-size: 13px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 70px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 360px;
}

.split .content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero {
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent);
  color: #ffffff;
}

.media-frame {
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.callout {
  background: var(--surface);
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--sage);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.section-title {
  font-size: 28px;
}

.grid-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
  height: 170px;
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.reveal-section {
  background-color: #131722;
  color: #f7f7f7;
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.reveal-overlay {
  background: rgba(19, 23, 34, 0.78);
  padding: 70px 0;
}

.reveal-section .card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.form-wrap {
  background: var(--surface-strong);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  font-size: 14px;
  color: var(--muted);
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d1df;
  font-size: 15px;
  margin-top: 6px;
}

.service-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-selector button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #c7cedd;
  background: #ffffff;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.service-selector button:hover,
.service-selector button:focus {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.inline-quote {
  padding: 16px 22px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  font-style: italic;
}

.footer {
  border-top: 1px solid #e4e8ef;
  padding: 40px 4% 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta p {
  font-size: 14px;
  color: var(--muted);
}

.page-hero {
  padding: 50px 0 20px;
}

.page-hero h1 {
  font-size: clamp(30px, 3.5vw, 44px);
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
}

.content-block {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.content-block .text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-block .media-frame {
  flex: 1 1 320px;
  min-height: 220px;
}

.notice {
  background: var(--sand);
  padding: 18px 22px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.banner-visible {
  display: flex;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spacer {
  height: 14px;
}

@media (max-width: 860px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 8px;
  }
}
