:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #5b6572;
  --surface: #f5f4f1;
  --surface-deep: #e9e6e0;
  --accent: #1c5b7a;
  --accent-soft: #d7e7ef;
  --line: #d1d6dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1 1 48%;
}

.img-frame {
  background: var(--surface-deep);
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.hero {
  padding: 32px;
  background: var(--surface);
  border-radius: 24px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.15;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.highlight {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
}

.bg-crisis {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 32px;
  border-radius: 22px;
}

.bg-crisis .highlight {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row .service-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-row .price {
  font-weight: 700;
  color: var(--accent);
}

.price {
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.service-row .service-image {
  width: 170px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-deep);
  flex: 0 0 auto;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 16px 20px;
  background: var(--surface);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-steps div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.process-steps span {
  font-weight: 700;
  color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #fff;
  color: var(--accent);
}

.legal-hero {
  padding: 18px 24px;
  border-radius: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .split,
  .split.reverse,
  .service-row {
    flex-direction: column;
  }

  .service-row .service-image {
    width: 100%;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
