* {
  box-sizing: border-box;
}

:root {
  --ink: #0f172a;
  --muted: #4b5563;
  --soft: #eef2f7;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --highlight: #f59e0b;
  --surface: #ffffff;
  --panel: #f8fafc;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--panel);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: rgba(37, 99, 235, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 20px 0 60px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  padding: 24px 0;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 14px;
}

.hero-text p {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  background: #dbeafe;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-media .floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--surface);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  width: 220px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.section {
  padding: 60px 0;
}

.section.light {
  background: var(--surface);
}

.section.bg-image {
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.72),
      rgba(15, 23, 42, 0.72)
    ),
    url("https://images.unsplash.com/photo-1519125323398-675f0ddb6308?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.section.bg-image .panel,
.section.bg-image .step {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-block {
  flex: 1 1 300px;
  background: var(--soft);
  padding: 26px;
  border-radius: 18px;
  margin-top: 20px;
}

.media {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
}

.service-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.panel {
  background: var(--soft);
  border-radius: 20px;
  padding: 24px;
}

.panel.highlight {
  background: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.overlap {
  position: relative;
}

.overlap .panel {
  position: relative;
  z-index: 2;
}

.overlap .media {
  margin-top: -40px;
  margin-left: 40px;
  min-height: 240px;
}

.steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.service-options {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-option {
  background: var(--surface);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
}

.service-option input {
  accent-color: var(--accent);
}

.form-panel {
  flex: 1 1 300px;
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
}

.form-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel textarea,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  margin-bottom: 12px;
  font-family: inherit;
}

.footer {
  padding: 40px 0;
  background: #0b1120;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-note {
  font-size: 13px;
  color: #cbd5f5;
  max-width: 520px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--highlight);
  color: #111827;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-btn {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}

.cookie-btn.reject {
  background: #e2e8f0;
  color: #1f2937;
}

.legal-hero {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.legal-hero .media {
  min-height: 200px;
}

.legal-content {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
}

.page-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.tagline {
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 720px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }
}
