* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1e1f24;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw 8px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  background: #0f1a2b;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1e1f24;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 6vw;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1f24;
  background: #1e1f24;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.alt {
  background: transparent;
  color: #1e1f24;
}

.btn:hover {
  background: #0f1a2b;
  border-color: #0f1a2b;
}

.btn.alt:hover {
  background: #1e1f24;
  color: #fff;
}

.hero-image-wrap {
  flex: 1 1 320px;
  background: #d9d4c7;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 380px;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.section-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(15, 26, 43, 0.08);
}

.offset {
  transform: translateY(-18px);
}

.muted {
  color: #5b606b;
}

.image-card {
  background: #d8e0ea;
  border-radius: 16px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 180px;
}

.highlight-band {
  background: #0f1a2b;
  color: #fff;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-band a {
  color: #fff;
  text-decoration: underline;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(15, 26, 43, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.testimonial img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: #d9d4c7;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 26, 43, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d6dc;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0f1a2b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(15, 26, 43, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  background: #1e1f24;
}

.footer {
  background: #f0efe9;
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  color: #5b606b;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(15, 26, 43, 0.2);
  max-width: 320px;
  z-index: 11;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.banner-image {
  background: #d8e0ea;
  border-radius: 18px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 220px;
}

.legal-image {
  background: #d9d4c7;
  border-radius: 16px;
  overflow: hidden;
}

.legal-image img {
  width: 100%;
  height: 220px;
}

.hero-bg {
  background: #0f1a2b;
  color: #fff;
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-bg .btn {
  border-color: #fff;
}

.hero-bg .btn.alt {
  background: transparent;
  color: #fff;
}

.hero-bg .btn.alt:hover {
  background: #fff;
  color: #0f1a2b;
}

.accent-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
}

.accent-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accent-image {
  flex: 1 1 260px;
  background: #d8e0ea;
  border-radius: 16px;
  overflow: hidden;
}

.accent-image img {
  width: 100%;
  height: 260px;
}

.hero-bg .ad-note {
  background: rgba(15, 26, 43, 0.7);
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 360px;
}

.section-bg {
  background: #e8ebf0;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #fff;
}

.section-bg .section-card {
  background: rgba(255, 255, 255, 0.94);
  color: #1e1f24;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.contact-grid .section-card {
  flex: 1 1 280px;
}

.notice {
  padding: 14px 18px;
  border-radius: 12px;
  background: #f7f0df;
  color: #5b606b;
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
