* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111116;
  --muted: #5a5f6d;
  --accent: #1f5ed6;
  --accent-dark: #1547a3;
  --surface: #f5f6f8;
  --surface-alt: #eef1f5;
  --highlight: #e3ecff;
  --border: #d6d9e0;
  --fallback: #dfe4ea;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  min-width: 220px;
  text-align: right;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 220px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: var(--highlight);
  color: var(--accent-dark);
}

.button.ghost:hover {
  background: var(--surface);
}

.hero {
  padding: 40px 0 60px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 10px 0 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.media-card {
  background: var(--fallback);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(17, 17, 22, 0.12);
}

.media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.section.emphasis {
  background: var(--surface-alt);
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--fallback);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 160px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.form-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.is-hidden {
  display: none;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.form-hint {
  font-size: 0.88rem;
  color: var(--muted);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-link {
  font-weight: 600;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-story .card {
  background: rgba(255, 255, 255, 0.95);
}

.bg-cta {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-cta .form-panel {
  background: rgba(255, 255, 255, 0.96);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 17, 22, 0.14);
  padding: 10px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #ffffff;
  padding: 16px 0;
  z-index: 30;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  max-width: 560px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 40px 0;
  background: var(--surface);
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  background: var(--fallback);
}

.muted {
  color: var(--muted);
}

.notice {
  background: var(--highlight);
  border-radius: 16px;
  padding: 16px;
}

.image-frame {
  background: var(--fallback);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-cta {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .cta-sticky {
    right: 16px;
    bottom: 16px;
  }
}
