:root {
  --ink: #1c1f24;
  --muted: #5b6676;
  --paper: #f7f7f4;
  --sand: #ebe7e1;
  --graphite: #2a2f38;
  --accent: #1f6aa5;
  --accent-soft: #e2eef7;
  --warm: #d7c6b4;
  --line: #d5d9e0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 16px;
  background: rgba(247, 247, 244, 0.96);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-disclosure {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 24px;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 30, 0.52);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 6vw 120px;
  color: white;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 320px;
}

.offset-left {
  margin-left: -4vw;
  background: var(--sand);
  padding: 28px;
}

.offset-right {
  margin-right: -4vw;
  background: var(--accent-soft);
  padding: 28px;
}

.img-frame {
  background: #d7dde5;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.inline-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.trust-band {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.trust-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 32, 0.6);
}

.trust-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  padding: 18px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--sand);
  padding: 20px;
  border-radius: 16px;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: var(--graphite);
  color: white;
  border-radius: 24px;
  padding: 26px;
}

.cta-block a {
  color: white;
}

.form-wrap {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  background: #12151a;
  color: #d2d6dd;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #d2d6dd;
}

.disclaimer {
  font-size: 13px;
  color: #aab2bf;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 24px;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  cursor: pointer;
}

.page-simple {
  padding: 60px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-block {
  background: white;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-row > div {
  flex: 1 1 220px;
}

.highlight {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .offset-left,
  .offset-right {
    margin: 0;
  }

  .hero-inner {
    padding: 60px 6vw 90px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
