* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #5c616b;
  --accent: #1f5a9b;
  --accent-soft: #e7f0fb;
  --sand: #f3f1ed;
  --steel: #1e2430;
  --line: #d9dce2;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--steel);
  color: #f6f7fb;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  width: fit-content;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav .cta-link {
  margin-top: 6px;
  padding: 10px 12px;
  background: #f6f7fb;
  color: var(--steel);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  padding: 36px 56px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

header p {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 90px 56px 80px;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fefefe;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 28, 0.65);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  background-color: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
}

.text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.trust-band {
  background-image: url("https://images.unsplash.com/photo-1493238792000-8113da705763?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 72px 56px;
  color: #ffffff;
  position: relative;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 34, 0.68);
}

.trust-band .trust-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.step {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.form-section {
  padding: 0 56px 40px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.form-status {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin-right: 56px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}

footer {
  padding: 40px 56px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-hero {
  padding: 48px 56px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-media {
  background-color: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  max-width: 720px;
}

.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.notice-box {
  padding: 16px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: var(--sand);
  color: var(--ink);
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .content {
    gap: 36px;
  }

  header,
  .section,
  .form-section,
  footer,
  .trust-band,
  .hero,
  .legal-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split,
  .contact-grid {
    flex-direction: column;
  }

  .sticky-cta {
    margin-right: 24px;
  }
}
