@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1d242b;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e2e2e2;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #f0e6d2;
  color: #4a3b19;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 56px 6vw 40px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #1d242b;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #2b3944;
}

.btn.outline {
  background: transparent;
  border-color: #1d242b;
  color: #1d242b;
}

.image-frame {
  background: #e4e6ea;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  flex: 1 1 280px;
  min-width: 260px;
}

.hero-image .image-frame {
  height: 360px;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.column {
  flex: 1 1 260px;
  min-width: 220px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
}

.service-image {
  flex: 0 0 180px;
  height: 140px;
}

.service-content {
  flex: 1 1 240px;
}

.price {
  font-weight: 700;
  color: #1d242b;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e4e4e4;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd3d7;
  font-family: inherit;
  font-size: 1rem;
}

.cta-band {
  background: #1d242b;
  color: #ffffff;
  padding: 34px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band .btn {
  background: #ffffff;
  color: #1d242b;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e4e4e4;
}

.footer {
  margin-top: auto;
  background: #14191f;
  color: #e9edf1;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c8d0d9;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.sticky-cta a {
  background: #caa25e;
  color: #1d242b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid #1d242b;
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1d242b;
  color: #ffffff;
}

.secondary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 40px 6vw;
}

.page-hero .image-frame {
  flex: 1 1 280px;
  height: 260px;
}

.page-hero .hero-text {
  flex: 1 1 320px;
}

.legal {
  padding: 36px 6vw 60px;
}

.legal h2 {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta a {
    display: flex;
    justify-content: center;
  }
}
