:root {
  color-scheme: light;
  --ink: #1a2430;
  --muted: #4b5b6f;
  --accent: #2d6cdf;
  --accent-dark: #234ea3;
  --surface: #f6f7fb;
  --surface-strong: #eef2f6;
  --line: #d9e0ea;
  --warm: #f3eee7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(1160px, 88vw);
  margin: 0 auto;
}

.hero {
  padding: 60px 0;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.image-frame {
  background: #e7edf5;
  padding: 8px;
  border-radius: 18px;
  overflow: hidden;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-strong);
  font-size: 0.85rem;
}

.form-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 26px;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  box-shadow: 0 14px 30px rgba(22, 36, 54, 0.18);
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 32px 6vw 50px;
  background: #ffffff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a:hover {
  color: var(--accent-dark);
}

.legal-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.background-panel {
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
  background-color: #324056;
  background-size: cover;
  background-position: center;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.bg-credibility {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  z-index: 20;
  box-shadow: 0 18px 30px rgba(22, 36, 54, 0.15);
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.small {
  font-size: 0.9rem;
}

.centered {
  text-align: center;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
