/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f23;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  object-fit: cover;
}

a {
  color: #1c1f23;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 6vw 80px;
}

header {
  background: #efece6;
  border-bottom: 1px solid #d9d4cb;
}

.nav-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 18px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #4b4f55;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #1c1f23;
  border-radius: 999px;
  background: #fffdf8;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
}

.hero-copy,
.hero-media {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-copy {
  padding: 40px 36px;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  color: #3f444b;
}

.hero-media {
  background: #dbe2ea;
}

.hero-media img {
  height: 100%;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e1ddd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-card img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e1ddd6;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #0f4c5c;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: #0f4c5c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #f0e7d8;
  color: #1c1f23;
  border: 1px solid #cbbfa8;
}

.inline-cta {
  text-decoration: underline;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e1ddd6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: #4b4f55;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bb;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.callout {
  background: #f0e7d8;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #d6c9b4;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e1ddd6;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #0f4c5c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 76, 92, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #0f4c5c;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: #1c1f23;
  color: #f9f7f3;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: #f9f7f3;
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfc7bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #d9d4cb;
  box-shadow: 0 10px 24px rgba(28, 31, 35, 0.15);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.soft-bg {
  background: #fff7e8;
  padding: 26px;
  border-radius: 18px;
}

.image-frame {
  background: #dbe2ea;
  border-radius: 18px;
  overflow: hidden;
}

.list-plain {
  padding-left: 18px;
  margin: 0;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
