* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1c20;
  --muted: #5a616e;
  --accent: #2b5ad8;
  --accent-soft: #e7edff;
  --sand: #f6f1ec;
  --mist: #eef1f5;
  --night: #111827;
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a.link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
  background: #ffffff;
  border-bottom: 1px solid #e4e7ee;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.top-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.top-nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.section {
  padding: 70px 6vw;
  display: flex;
  gap: 48px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.tint {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.col {
  flex: 1;
  min-width: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 3.5vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #d6dbe6;
}

.image-wrap {
  background: #e6ebf2;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 320px;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tall {
  min-height: 420px;
}

.bg-hero,
.bg-context,
.bg-process,
.bg-trust {
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 420px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=800&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=800&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80");
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
  align-items: center;
}

.service-card img {
  border-radius: 12px;
  width: 120px;
  height: 90px;
  background: #e6ebf2;
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin-top: 6px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.model-card {
  padding: 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
  margin-bottom: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7dce8;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 50px 6vw 80px;
  background: var(--night);
  color: #f3f4f6;
}

.footer a {
  color: #f3f4f6;
}

.footer .meta {
  color: #c3c8d5;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.15);
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.simple-section {
  padding: 70px 6vw;
  background: #ffffff;
}

.simple-section.alt {
  background: var(--mist);
}

.list {
  padding-left: 18px;
}

.notice {
  background: #fff2f0;
  border-radius: 14px;
  padding: 18px;
  color: #7a2f2f;
}

@media (max-width: 960px) {
  .section {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }

  header.site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
