/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #12212f;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #6f7a86;
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin: 0.5rem 0 1rem;
}

.section-text {
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #f35b4b;
  color: #fff;
  box-shadow: 0 12px 25px rgba(243, 91, 75, 0.2);
}

.btn-secondary {
  background: #12212f;
  color: #fff;
}

.btn-outline {
  border-color: #12212f;
  color: #12212f;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.header {
  padding: 1.5rem 0 1rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.hero {
  padding: 2.5rem 0 3rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 24px 40px rgba(18, 33, 47, 0.08);
}

.highlight {
  background: #fff4e6;
}

.dark-panel {
  background: #12212f;
  color: #fff;
}

.soft-panel {
  background: #e7f0f7;
}

.section {
  padding: 3.5rem 0;
}

.section.compact {
  padding: 2.5rem 0;
}

.tagline {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric {
  background: rgba(255, 255, 255, 0.16);
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(18, 33, 47, 0.08);
}

.service-price {
  font-weight: 700;
  color: #f35b4b;
  font-size: 1.1rem;
}

.inline-cta {
  font-weight: 700;
  text-decoration: underline;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(18, 33, 47, 0.1);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-fields label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #c5ccd4;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #6f7a86;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.footer {
  padding: 2rem 0 3rem;
  background: #0c1924;
  color: #fff;
}

.footer a {
  color: #fff;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #12212f;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 15;
}

.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 3rem 0;
}

.info-block {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 32px rgba(18, 33, 47, 0.08);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.05rem;
}

.inline-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(18, 33, 47, 0.12);
}

.section-image {
  border-radius: 18px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

.list li {
  list-style: square;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
