/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Raleway, Arial, sans-serif;
  font-size: 16px;
  color: #313131;
  background: #ffffff;
  line-height: 1.7;
}

a {
  color: #0d87ac;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: #0d87ac;
  color: #ffffff;
  padding: 10px 0;
  font-size: 0.85rem;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.banner-left {
  color: #ffffff;
}

.banner-left a {
  color: #ffffff;
  text-decoration: none;
}

.banner-left a:hover {
  text-decoration: underline;
}

.banner-right {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.banner-right:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* ===== NAV ===== */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #313131;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0d87ac;
  text-decoration: none;
}

.nav-cta {
  background: #0d87ac;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.9rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #0a6f8e;
  color: #fff !important;
}

/* ===== MOBILE NAV TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #313131;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 0.78rem;
  }

  .banner-inner {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid #0d87ac;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .nav-cta {
    margin: 12px auto;
    display: inline-block;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d87ac 0%, #0a6f8e 100%);
  color: #ffffff;
  padding: 80px 24px 90px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero .subheadline {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-body {
  max-width: 680px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
  opacity: 0.88;
  line-height: 1.8;
}

.hero-badges {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 16px 28px;
  margin-bottom: 38px;
  text-align: left;
  max-width: 520px;
}

.hero-badges p {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hero-badges p:last-child {
  margin-bottom: 0;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #ffffff;
  color: #0d87ac;
}

.btn-primary:hover {
  background: #e8f6fb;
  color: #0d87ac;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.btn-teal {
  background: #0d87ac;
  color: #ffffff;
}

.btn-teal:hover {
  background: #0a6f8e;
  color: #fff;
}

.btn-outline-teal {
  background: transparent;
  color: #0d87ac;
  border: 2px solid #0d87ac;
}

.btn-outline-teal:hover {
  background: #0d87ac;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: #f4f9fb;
}

.section-teal {
  background: #0d87ac;
  color: #ffffff;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.section-teal h2 {
  color: #ffffff;
}

.section p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 780px;
}

.section-teal p {
  opacity: 0.92;
}

.section-center {
  text-align: center;
}

.section-center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== RISK LIST (What's Going On) ===== */
.risk-list {
  list-style: none;
  margin: 24px 0 28px;
}

.risk-list li {
  font-size: 1.05rem;
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid #e8e8e8;
}

.risk-list li:last-child {
  border-bottom: none;
}

.risk-list li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 10px;
}

.reassurance {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d87ac;
  margin-top: 8px;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  margin: 24px 0 28px;
}

.check-list li {
  font-size: 1.05rem;
  padding: 10px 0 10px 36px;
  position: relative;
}

.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 10px;
}

.section-teal .check-list li {
  color: #fff;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 36px 0;
}

.step-card {
  background: #f4f9fb;
  border-radius: 12px;
  padding: 28px 24px;
  border-top: 4px solid #0d87ac;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: #0d87ac;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: none;
}

/* ===== OFFER BOX ===== */
.offer-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(13,135,172,0.10);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #0d87ac 0%, #0a6f8e 100%);
  color: #ffffff;
  padding: 70px 24px 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT CONTENT ===== */
.about-body {
  max-width: 780px;
  margin: 0 auto;
}

.about-body h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #0d87ac;
}

.about-body p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* No-contract pills */
.trust-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f9fb;
  border: 1px solid #c8e8f2;
  border-radius: 9999px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d87ac;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 50, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 44px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 16px 64px rgba(0,0,0,0.18);
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.modal-close:hover {
  color: #313131;
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal .modal-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  color: #313131;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #0d87ac;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 9999px;
  background: #0d87ac;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #0a6f8e;
}

.form-thank-you {
  display: none;
  text-align: center;
  padding: 20px 0 10px;
}

.form-thank-you .thank-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-thank-you h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #0d87ac;
}

.form-thank-you p {
  color: #555;
  font-size: 0.98rem;
  max-width: none;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a2a30;
  color: #b0bec5;
  padding: 40px 24px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #7ecde0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .offer-box {
    padding: 28px 20px;
  }

  .modal {
    padding: 32px 24px;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }
}
