*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #459EC1;
  --navy: #051C4D;
  --green: #56765F;
  --red: #E3170A;
  --yellow: #F1C40F;
  --white: #FFFFFF;
  --light-blue-bg: #F5F8FF;
  --text: #1a1a1a;
  --text-light: #555;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ── Modal / Popup ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.modal p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}
.modal-contact-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.modal-contact-btn:hover { background: var(--navy); }
.modal-form {
  max-width: 600px;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-form h3, .modal-form p { text-align: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  padding: 0 3rem;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
}
.nav-link:hover { opacity: 1; }
.nav-logo img { height: 8.7em; width: auto; }
.nav-quote-btn {
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.nav-quote-btn:hover { background: #e0e0e0; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 1.5rem 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.5) 100%
  );
  z-index: -1;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.61rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }
.btn-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 1rem 3rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-cta:hover { background: var(--navy); transform: translateY(-1px); }
.hero-phone {
  margin-top: 1.25rem;
}
.hero-phone a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.hero-phone a:hover { opacity: 0.85; }
.hero-small {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

/* ── Trust Bar ── */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5,28,77,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-icon {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
  flex-shrink: 0;
}

/* ── Sections ── */
.section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.section-label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.75rem;
}
.section-heading em { font-style: italic; }

/* ── Sound Familiar ── */
.pain-list { list-style: none; margin: 2rem 0; }
.pain-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.pain-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.pain-item strong { font-weight: 700; }
.closing-text {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-top: 1.75rem;
}
.closing-text strong { font-weight: 700; }

.divider {
  border: none;
  height: 1px;
  background: #ddd;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Light blue background section ── */
.section-blue-bg {
  background: var(--light-blue-bg);
  padding: 5rem 2rem;
}
.section-blue-bg .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Comparison Table ── */
.body-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.body-text strong { font-weight: 700; }
.body-text:last-of-type { margin-bottom: 2rem; }

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin: 2.5rem 0;
  background: var(--white);
}
.comparison-col { padding: 1.75rem; }
.comparison-col:first-child { border-right: 1.5px solid #ddd; }
.comparison-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-align: center;
}
.comparison-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  align-items: flex-start;
}
.comparison-item:last-child { margin-bottom: 0; }
.x-icon, .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.x-icon { color: var(--red); }
.check-icon { color: var(--green); }

/* ── CTA Block (inside blue bg section) ── */
.cta-block {
  text-align: center;
  padding: 3.5rem 0 0;
  max-width: 800px;
  margin: 0 auto;
}
.cta-block .section-heading { margin-bottom: 1.75rem; }
.green-italic {
  color: var(--green);
  font-style: italic;
}
.red-italic {
  color: var(--red);
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ── Alert Cards ── */
.alert-card {
  border-left: 4px solid var(--red);
  background: #fef7f7;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.1rem;
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.alert-card strong { font-weight: 700; }

.final-cta {
  text-align: center;
  padding: 3rem 2rem 4.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.final-cta .section-heading { margin-bottom: 1.75rem; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 1.272rem 1.272rem 1.272rem;
  text-align: center;
}
.footer-logo {
  height: 440px;
  width: auto;
  margin-top: -100px;
  margin-bottom: -100px;
}
.footer-contact { margin-bottom: 1.25rem; }
.footer-contact a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact .divider-dot { color: rgba(255,255,255,0.35); margin: 0 0.75rem; }
.footer-text {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}
.footer-text + .footer-text { margin-top: 0.3rem; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .nav-inner { justify-content: center; }
  .nav { height: 70px; }
  .nav-logo img { height: 6.8em; }

  .hero { min-height: 100svh; padding: 80px 1.25rem 80px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .trust-bar {
    gap: 0.5rem 1.25rem;
    padding: 0.75rem 0.75rem;
  }
  .trust-item { font-size: 0.65rem; gap: 0.35rem; }
  .trust-icon { width: 14px; height: 14px; }

  .section { padding: 3.5rem 1.25rem; }
  .section-blue-bg { padding: 3.5rem 1.25rem; }
  .section-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .comparison {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .comparison-col:first-child {
    border-right: none;
    border-bottom: 1.5px solid #ddd;
  }

  .cta-block { padding: 2.5rem 0 0; }
  .final-cta { padding: 2.5rem 1.25rem 3rem; }
  .cta-block .section-heading { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }

  .footer-logo { height: 350px; }
  .footer-contact a { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .trust-bar { gap: 0.3rem 0.65rem; padding: 0.6rem 0.5rem; }
  .trust-item { font-size: 0.55rem; }
  .trust-icon { width: 12px; height: 12px; }
  .pain-item { font-size: 1rem; }
  .body-text { font-size: 1rem; }
  .alert-card { font-size: 0.97rem; padding: 1rem 1.1rem; }
}
