html {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (min-width: 1200px) {
  html {
    font-size: 0.5vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  line-height: 1.4;
}

/* ====== Home Page Redesign (scoped to .home-page) ====== */
.home-page {
  font-size: 18px;
  background: #f5f7fb;
  color: #2c3e50;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.home-page * {
  box-sizing: border-box;
}

.site-width {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 45%, #3b6ba8 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(26, 58, 82, 0.3);
  border-bottom: 3px solid #4a7ba7;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  color: #ffffff;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
}

.brand__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand__logo svg {
  width: 100%;
  height: 100%;
}

.brand__name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: flex;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0 1rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

@media (max-width: 767px) {
  .main-nav a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00d4ff;
  color: #1a3a52;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

@media (max-width: 767px) {
  .phone-cta {
    display: flex;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.4rem;
  }
}

.phone-cta:hover,
.phone-cta:focus-visible {
  transform: translateY(-2px);
  background: #33e5ff;
  box-shadow: 0 16px 32px rgba(0, 212, 255, 0.4);
}

.hero {
  padding: 5.2rem 0 3.6rem;
  background: linear-gradient(180deg, rgba(42, 82, 122, 0.08) 0%, rgba(245, 247, 251, 0) 50%), #f5f7fb;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__layout-centered {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.hero__media-centered {
  width: 100%;
  max-width: 600px;
  order: -1;
}

.hero__content-centered {
  width: 100%;
  max-width: 700px;
  padding: 0 1rem;
}

.hero__content-centered h1 {
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.2;
  margin: 0.6rem 0 0.8rem;
  background: linear-gradient(135deg, #1a3a52, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content-centered p {
  font-size: 18px;
  margin: 0 0 1.5rem;
  color: #555555;
}

.hero__layout-centered .hero__stats {
  justify-self: center;
}

.hero__layout-centered .eyebrow {
  justify-self: center;
}

.hero__content h1 {
  font-size: clamp(38px, 4.3vw, 56px);
  line-height: 1.2;
  margin: 0.6rem 0 0.8rem;
  background: linear-gradient(135deg, #1a3a52, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__content p {
  font-size: 18px;
  margin: 0 0 1.5rem;
  color: #555555;
}

.hero__media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(26, 58, 82, 0.15);
  object-fit: cover;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: #2c5282;
  background: rgba(42, 82, 122, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.2rem 0 1.2rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 1.4rem;
  }
}

.stat-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(42, 82, 122, 0.1);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #2c5282;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #999999;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
  }
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .primary-button,
  .ghost-button {
    display: flex;
    width: 100%;
    font-size: 1rem;
  }
}

.primary-button {
  background: linear-gradient(135deg, #2c5282, #3b6ba8);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(26, 58, 82, 0.25);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(26, 58, 82, 0.35);
}

.ghost-button {
  border: 2px solid #2c5282;
  color: #2c5282;
  background: transparent;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  background: rgba(42, 82, 122, 0.08);
  transform: translateY(-1px);
}

/* Why Section */
.why-section {
  background: linear-gradient(135deg, #f5f7fb 0%, #eef3f9 100%);
  padding: 4rem 0;
}

.why-section h2 {
  text-align: center;
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 3rem;
  color: #1a3a52;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(42, 82, 122, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(42, 82, 122, 0.15);
}

.why-card__icon {
  font-size: 2.5rem;
  color: #2c5282;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 22px;
  margin: 0.5rem 0;
  color: #1a3a52;
}

.why-card p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}

/* Coverage Section */
.coverage-section {
  background: #ffffff;
  padding: 4.8rem 0;
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section__header h2 {
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #1a3a52, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__header p {
  margin: 0;
  color: #666666;
  font-size: 18px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.coverage-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(42, 82, 122, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(42, 82, 122, 0.2);
}

.coverage-card--primary {
  border-color: #2c5282;
  border-width: 3px;
  background: linear-gradient(135deg, rgba(42, 82, 122, 0.05) 0%, #ffffff 100%);
}

.coverage-card__header {
  text-align: center;
}

.coverage-card__icon {
  font-size: 2.5rem;
  color: #2c5282;
  margin-bottom: 0.5rem;
}

.coverage-card h3 {
  margin: 0;
  font-size: 24px;
  color: #1a3a52;
}

.coverage-card__price {
  margin: 0;
  font-size: 14px;
  color: #2c5282;
  font-weight: 700;
}

.coverage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.coverage-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #333333;
  font-size: 16px;
}

.coverage-card i {
  color: #2c5282;
  margin-top: 0.2rem;
  font-weight: bold;
}

.coverage-card__cta {
  display: inline-block;
  background: linear-gradient(135deg, #2c5282, #3b6ba8);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 8px 16px rgba(26, 58, 82, 0.2);
}

.coverage-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(26, 58, 82, 0.3);
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, #f0f4f9 0%, #eef3f9 100%);
  padding: 4.8rem 0;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1a3a52, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.process-step {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.process-step__number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2c5282, #3b6ba8);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 16px rgba(26, 58, 82, 0.2);
}

.process-step h3 {
  font-size: 22px;
  margin: 0.5rem 0;
  color: #1a3a52;
}

.process-step p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  background: #ffffff;
  padding: 4.8rem 0;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(32px, 3.5vw, 42px);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #1a3a52, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(135deg, #f5f7fb 0%, #eef3f9 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(42, 82, 122, 0.15);
}

.faq-item h3 {
  margin: 0 0 0.75rem;
  font-size: 18px;
  color: #2c5282;
}

.faq-item p {
  margin: 0;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
}

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
  color: #ffffff;
  padding: 3.2rem 0;
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

@media (min-width: 960px) {
  .cta-strip__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1.5rem;
  }
}

.cta-strip__inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.cta-strip__inner p {
  margin: 0;
  font-size: 18px;
  max-width: 560px;
}

/* Footer */
.site-footer {
  background: #0d1f2d;
  color: #e0e8f0;
  padding: 3.2rem 0;
  border-top: 3px solid #2c5282;
}

.site-footer__inner {
  display: grid;
  gap: 1.8rem;
  justify-items: start;
  text-align: left;
}

.site-footer .footer-logo {
  display: inline-flex;
  width: 60px;
  height: 60px;
}

.site-footer .footer-logo svg {
  width: 100%;
  height: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
  font-size: 16px;
}

.footer-links a {
  color: #e0e8f0;
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(42, 82, 122, 0.2);
  background: rgba(42, 82, 122, 0.08);
  transition: transform 0.15s ease, background 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(42, 82, 122, 0.18);
  transform: translateY(-1px);
}

.footer-disclaimer {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #b8c0cc;
  max-width: 78ch;
}

/* Responsive */
@media (max-width: 960px) {
  .site-header__inner {
    flex-wrap: nowrap;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__media {
    order: 2;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__media-card {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    gap: 1rem;
  }

  .brand {
    flex: 1;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    padding: 0;
    display: none;
    border-bottom: 3px solid #4a7ba7;
    z-index: 99;
    width: 100%;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .main-nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .phone-cta {
    order: 3;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    gap: 0.3rem;
  }
}

@media (max-width: 640px) {
  .home-page {
    font-size: 16px;
  }

  .hero {
    padding: 3.6rem 0 2.4rem;
  }

  .phone-cta {
    padding: 0.6rem 0.9rem;
    font-size: 0.8rem;
  }

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

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

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

  .site-footer__inner {
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
