* {
  box-sizing: border-box;
}

:root {
  --ink: #121417;
  --muted: #5b6470;
  --accent: #1d6ff2;
  --accent-dark: #1558bf;
  --sand: #f3f0ea;
  --night: #0f1a24;
  --fog: #e6eaef;
  --soft: #f7f8fa;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.page-header {
  padding: 24px 0 12px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--fog);
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom: 2px solid var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 24px 0 40px;
  border-radius: 26px;
  background: var(--night);
  color: #fff;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 48px 40px;
}

.hero-content {
  flex: 1 1 320px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 14px;
}

.hero p {
  max-width: 520px;
  margin: 0 0 22px;
}

.hero-media {
  flex: 1 1 280px;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #1c2430;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff;
  transform: translateY(-1px);
}

.section {
  padding: 54px 0;
}

.section-muted {
  background: var(--soft);
}

.section-contrast {
  background: var(--sand);
}

.section h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 16px;
}

.asym-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 26, 36, 0.08);
}

.asym-card img {
  border-radius: 16px;
  margin-bottom: 16px;
  width: 100%;
  height: 220px;
  background-color: #dee3e8;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
}

.step-index {
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(15, 26, 36, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background-color: #dee3e8;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  color: var(--accent-dark);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--fog);
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--fog);
  font-size: 15px;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(29, 111, 242, 0.3);
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  background: var(--accent-dark);
}

.page-footer {
  background: var(--night);
  color: #fff;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 13px;
  color: #cfd6de;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(15, 26, 36, 0.15);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--fog);
  color: var(--ink);
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--fog);
}

.spaced-block {
  margin-top: 16px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: #dee3e8;
}

.image-card img {
  width: 100%;
  height: 260px;
  background-color: #dee3e8;
}

.wide-split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.wide-split > div {
  flex: 1 1 300px;
}

@media (max-width: 720px) {
  .hero-inner {
    padding: 36px 24px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
