html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1f2937;
  background-color: #ffffff;

  padding-top: 175px;
}

/* FIXED LOGO BAR */
.fixed-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);

  padding-top: 32px;
  padding-bottom: 6px;
  margin-bottom: 20em;

  text-align: center;
}

/* LOGO */
.fixed-logo .site-logo {
  max-width: 620px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0;
}

/* HEADER CONTENT (SCROLLING) */
.site-header {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}

.site-tagline {
  color: #6b7280;
  font-size: 1.05rem;
  margin: 0;
  padding: 0;
}

/* CONTACT */
.top-contact-bar {
  padding: 0.2rem 0;
  margin-top: 0.15rem;
  text-align: center;
}

.top-contact-link {
  display: inline-block;
  color: #374151;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
}

.top-contact-link:hover {
  color: #1800ad;
  text-decoration: none;
}

/* GENERAL */
img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HERO */
.hero-section {
  padding: 3rem 0 5rem;
}

.hero-section-small {
  padding: 3rem 0 3rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #111827;
}

.hero-text {
  max-width: 780px;
  font-size: 1.22rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 0;
}

.hero-pricing-wrap {
  max-width: 860px;
  margin: 0 auto 2rem;
}

.hero-subcta {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin: 0 auto 2rem;
}

/* PRICE BOX */
.price-box {
  max-width: 420px;
  margin: 0 auto 1.25rem;
  padding: 2em 1.5rem;
  border-radius: 1.2rem;
  background: #111827;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.12);
}

.price-main {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.price-minimum {
  font-size: 1.18rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* HIGHLIGHTS */
.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.highlight-item {
  min-width: 220px;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.04);
}

.highlight-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.highlight-item strong {
  font-size: 1.16rem;
  color: #111827;
}

/* SECTIONS */
.content-section {
  padding: 5rem 0;
}

.section-light {
  background-color: #f8f9fa;
  padding-top: 1em;
  padding-bottom: 1em;
}

.section-intro {
  margin-bottom: 1rem;
}

.section-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.section-intro p {
  max-width: 780px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.12rem;
  line-height: 1.75;
}

/* CONTACT */
.contact-cta p {
  max-width: 780px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.12rem;
  line-height: 1.75;
}

/* TEXT BOOST */
.section-intro p,
.contact-cta p,
.hero-text,
.site-tagline {
  font-size: 1.7rem !important;
}

/* MOBILE */
@media (max-width: 767px) {
  body {
    font-size: 1rem;
    padding-top: 125px;
  }

  .fixed-logo .site-logo {
    max-width: 380px;
  }

  .site-tagline {
    font-size: 1rem;
  }

  .top-contact-link {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-section {
    padding: 2.5rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .content-section {
    padding: 4rem 0;
  }
}

/* === DEBUG BORDERS === */
/* 
.fixed-logo {
  border: 3px solid red;
}

.fixed-logo .site-logo {
  border: 3px solid blue;
}

.site-header {
  border: 3px solid green;
}

.site-tagline {
  border: 2px solid purple;
}

.top-contact-bar {
  border: 3px solid orange;
}

.top-contact-link {
  border: 2px solid brown;
}

.hero-section {
  border: 3px solid black;
} */