* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-disclosure {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffe9c6;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 38, 0.55);
}

.hero-content {
  position: relative;
  padding: 90px 0 110px;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 46px;
  margin: 0 0 18px;
  line-height: 1.15;
}

.hero-text p {
  margin: 0 0 22px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.92);
  color: #1f2430;
  padding: 26px;
  border-radius: 22px;
  max-width: 320px;
  align-self: flex-start;
}

.hero-card img {
  width: 100%;
  height: 190px;
  border-radius: 16px;
  background-color: #d9d6cf;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2430;
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.light {
  background: #fef4e6;
  color: #1f2430;
  border-color: #f3d9b4;
}

.btn:hover {
  opacity: 0.9;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset {
  position: relative;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24, 33, 56, 0.08);
  margin-left: -40px;
}

.offset.right {
  margin-left: 0;
  margin-right: -40px;
}

.inline-image {
  width: 100%;
  height: 320px;
  border-radius: 28px;
  background-color: #d2d8df;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #7b8596;
}

.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(27, 33, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background-color: #e4e6eb;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f2430;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(31, 36, 48, 0.2);
}

.floating-cta:hover {
  opacity: 0.9;
}

.quote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 260px;
  background: #fef4e6;
  padding: 18px;
  border-radius: 16px;
}

.form-wrap {
  background: #1f2430;
  color: #fff;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 14px;
}

.form-wrap select,
.form-wrap input {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
}

.form-note {
  flex: 1 1 240px;
}

.image-panel {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 0;
  position: relative;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 21, 31, 0.6);
}

.image-panel .container {
  position: relative;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  background: #141821;
  color: #e7eaf0;
  padding: 50px 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20, 24, 33, 0.18);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f2430;
  background: #1f2430;
  color: #fff;
  cursor: pointer;
}

.cookie-btn.alt {
  background: #fff;
  color: #1f2430;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero img {
  width: 100%;
  height: 280px;
  border-radius: 24px;
  background-color: #d7dbe2;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(24, 31, 44, 0.08);
}

@media (max-width: 900px) {
  .hero-content,
  .split {
    flex-direction: column;
  }

  .offset,
  .offset.right {
    margin: 0;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
