* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d21;
  --muted: #5b6573;
  --accent: #1f6feb;
  --accent-dark: #1546a0;
  --soft: #f3f5f7;
  --soft-2: #eef1f5;
  --dark: #15171c;
  --gold: #f1d28a;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  padding: 26px 0;
  border-bottom: 1px solid #e3e6ea;
  background: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: space-between;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.8rem;
  color: #394150;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: #101216;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.56);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.3rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: #e1e6ef;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
}

.btn.secondary:hover {
  background: #e5e7eb;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.link-inline:hover {
  color: var(--accent-dark);
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section--image,
.section--image-alt {
  background-color: #1b1f27;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section--image::before,
.section--image-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 16, 20, 0.5);
}

.section--image .container,
.section--image-alt .container {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.section--dark p,
.section--image p {
  color: #d4dae5;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.dark {
  background: #1b1f27;
  color: #ffffff;
}

.card.dark p {
  color: #cdd4df;
}

.media-frame {
  border-radius: 16px;
  overflow: hidden;
  background-color: #e2e8f0;
}

.fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--soft-2);
  font-size: 0.85rem;
  color: #394150;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-style: italic;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.form-grid button {
  margin-top: 6px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.footer {
  background: #0f1115;
  color: #d2d6df;
  padding: 46px 0 70px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
}

.small {
  font-size: 0.85rem;
  color: #b8bfcc;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 80px 0;
  background-color: #12161c;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.6);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.2);
  padding: 18px;
  z-index: 12;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.hidden {
  display: none;
}

.spacer {
  height: 18px;
}

.page-index .hero {
  background-image: url("https://images.unsplash.com/photo-1546920120-d60663fd4965?w=1400&q=80");
}

.page-index .section--image {
  background-image: url("https://images.unsplash.com/photo-1676312827534-21947df045ac?w=1400&q=80");
}

.page-index .section--image-alt {
  background-image: url("https://images.unsplash.com/photo-1778828494365-c798ff9cce2c?w=1400&q=80");
}

.page-about .page-hero {
  background-image: url("https://images.unsplash.com/photo-1589955898954-9c8d4bb86823?w=1400&q=80");
}

.page-services .page-hero {
  background-image: url("https://images.unsplash.com/photo-1685633225097-10c8f8e6e889?w=1400&q=80");
}

.page-contact .page-hero {
  background-image: url("https://images.unsplash.com/photo-1689514226984-15f849652eaa?w=1400&q=80");
}

.page-thanks .page-hero {
  background-image: url("https://images.unsplash.com/photo-1702726119680-4e604f92c523?w=1400&q=80");
}

@media (max-width: 900px) {
  .sticky-cta {
    left: 24px;
    right: 24px;
    justify-content: space-between;
  }
}
