* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2329;
  --muted: #5b6670;
  --accent: #0f5fa8;
  --accent-soft: #e4f0fb;
  --bg: #f6f7f9;
  --panel: #ffffff;
  --shadow: 0 16px 40px rgba(10, 20, 30, 0.08);
  --radius: 22px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.header {
  padding: 28px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: #ffe9cf;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #7a4b1d;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 28px 0 48px;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-visual {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.image-frame {
  background-color: #dfe6ea;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame.offset {
  transform: translateY(22px);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.split-section {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.panel.tight {
  padding: 22px;
}

.accent-block {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.form-wrap {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.form-card {
  flex: 1.1;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6dc;
  font-size: 1rem;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #101820;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}

.floating-cta:hover {
  transform: translateY(-2px);
}

.footer {
  margin-top: 60px;
  padding: 40px 0 60px;
  background: #111820;
  color: #e7edf3;
}

.footer a {
  color: #e7edf3;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(420px, 92vw);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.bg-structure {
  background: url("https://images.unsplash.com/photo-1588515603140-81bd9f7d1db0?w=1400&q=80") center/cover no-repeat;
  background-color: #1b2733;
  border-radius: var(--radius);
  padding: 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-structure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 25, 0.62);
}

.bg-structure > * {
  position: relative;
}

.bg-accent {
  background: url("https://images.unsplash.com/photo-1611396000732-f8c9a933424f?w=1400&q=80") center/cover no-repeat;
  background-color: #162331;
  border-radius: var(--radius);
  padding: 30px;
  color: #f7fafc;
  position: relative;
  overflow: hidden;
}

.bg-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.58);
}

.bg-accent > * {
  position: relative;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 0 40px;
}

.page-hero .panel {
  flex: 1.1;
}

.page-hero .image-frame {
  flex: 0.9;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .form-wrap,
  .page-hero {
    flex-direction: column;
  }

  .hero-visual .image-frame.offset {
    transform: none;
  }

  .floating-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
