* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a35;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f6f2;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4c5c68;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #ff6b3d;
}

.cta-primary {
  background: #ff6b3d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-secondary {
  border: 1px solid #1f2a35;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-highlight {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(20, 30, 40, 0.08);
}

.section-accent {
  background: #101820;
  color: #f7f6f2;
}

.section-soft {
  background: #fff;
}

.section-slate {
  background: #e7ecef;
}

.tag {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ff6b3d;
  font-weight: 600;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
}

.lead {
  font-size: 18px;
  color: #4c5c68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.feature-list li {
  list-style: disc;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 35px rgba(22, 28, 40, 0.08);
}

.card img {
  border-radius: 14px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-price {
  font-weight: 700;
  color: #ff6b3d;
  font-size: 18px;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 22px 40px rgba(19, 25, 36, 0.08);
}

.form-panel label {
  font-size: 14px;
  color: #334049;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd5db;
  font-size: 15px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  color: #ff6b3d;
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #101820;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(10, 12, 20, 0.2);
}

.footer {
  background: #0f1419;
  color: #cdd6dc;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffb087;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 16px 32px rgba(18, 22, 30, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #ff6b3d;
  color: #fff;
}

.cookie-reject {
  background: #e7ecef;
}

.image-frame {
  border-radius: 28px;
  overflow: hidden;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #54626d;
}

.page-hero {
  background: #e7ecef;
}

.noted {
  font-size: 14px;
  color: #5a6771;
}

.wide-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-quote {
  font-size: 20px;
  font-weight: 600;
  color: #101820;
}

.section-divider {
  height: 2px;
  background: #d7dde2;
  width: 100%;
  margin: 8px 0 16px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.logo-pill {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(20, 28, 38, 0.08);
}

.progress-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b3d;
}

.progress-dot.muted {
  background: #d7dde2;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split-panel {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 220px;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card {
    flex: 1;
    min-width: 240px;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }
}
