* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 6vw 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffe3c2;
  color: #7a3f00;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 6vw 42px;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #d8dbe2;
  background-size: cover;
  background-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 15, 30, 0.4), rgba(10, 15, 30, 0.1));
}

.hero-card {
  align-self: flex-start;
  max-width: 560px;
  margin-top: -90px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(20, 20, 30, 0.12);
}

.hero-card h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-card p {
  margin-bottom: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #ff9f1c;
  color: #1f2933;
}

.button.secondary {
  background: #f3ede7;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2933;
  color: #f5f7fa;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background-color: #c7d2da;
  min-height: 260px;
}

.offset-panel {
  margin-left: auto;
  background: #fff5ea;
  padding: 22px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(30, 30, 60, 0.08);
}

.card img {
  border-radius: 14px;
  height: 160px;
}

.card .price {
  font-weight: 700;
  color: #0f4c5c;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid #ff9f1c;
  padding: 16px 18px;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(30, 30, 60, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd7e0;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: #0f4c5c;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f2933;
  color: #f5f7fa;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(15, 20, 30, 0.3);
  z-index: 10;
}

.sticky-cta .button {
  background: #ff9f1c;
}

.footer {
  margin-top: auto;
  background: #0f172a;
  color: #e2e8f0;
  padding: 28px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(30, 30, 60, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1;
}

.legal-hero {
  padding: 32px 6vw 18px;
}

.legal-content {
  padding: 20px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-item {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.image-banner {
  min-height: 220px;
  border-radius: 24px;
  background-color: #d2d8df;
  background-size: cover;
  background-position: center;
}

.hero-visual.social {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.banner-insight {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.banner-about {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
}

.banner-services {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.banner-contact {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: #fffaf5;
  padding: 16px 18px;
  border-radius: 14px;
}

.service-row span {
  font-weight: 600;
}

.thanks-box {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  max-width: 640px;
}

@media (max-width: 840px) {
  .hero-card {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
