* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2a35;
  --muted: #5b6b7a;
  --accent: #2e6bff;
  --accent-dark: #1b4ec7;
  --sand: #f5f2ed;
  --mist: #eef2f7;
  --stone: #d9e0e8;
  --pine: #13464a;
  --sun: #f0b429;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.site-header {
  border-bottom: 1px solid var(--stone);
  background: #ffffff;
}

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  max-width: 220px;
}

.hero {
  background: var(--mist);
  position: relative;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.button-outline:hover {
  background: #e6edff;
}

.hero-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ced8e5;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: 30px;
}

.section-muted {
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-visual {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d4dde7;
}

.strip {
  background: var(--sand);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #d8e0ea;
}

.card-title {
  font-weight: 600;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.service-select {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-pill {
  flex: 1 1 220px;
  border-radius: 18px;
  border: 1px solid var(--stone);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
}

.service-pill button {
  align-self: flex-start;
}

.form-wrap {
  background: #f7f9fc;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.testimonials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 260px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.cta-band {
  background: var(--pine);
  color: #ffffff;
  padding: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band .button {
  background: #ffffff;
  color: var(--pine);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 8px 14px;
}

.footer {
  border-top: 1px solid var(--stone);
  padding: 30px 24px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--mist);
}

.page-hero .section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  border-radius: 16px;
  border: 1px solid var(--stone);
  padding: 20px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .hero-inner,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
