/* =========================================================
   My Internet Providers — Design Tokens
   ========================================================= */
:root {
  --navy: #0B1F33;
  --blue: #0077CC;
  --blue-light: #EAF6FF;
  --green: #16A34A;
  --green-dark: #128a3e;
  --text-dark: #111827;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 31, 51, 0.10);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-muted); margin: 0 0 12px; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--blue);
  margin: 0 0 10px;
}

.section { padding: 72px 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section h2 { max-width: 640px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 100px; font-weight: 600;
  font-size: 0.98rem; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-cta { background: var(--green); color: var(--white); }
.btn-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(11,31,51,0.08);
  height: var(--header-h);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  display: inline-flex; align-items: flex-end; gap: 3px; height: 26px;
}
.logo-mark .bar { width: 5px; background: var(--blue); border-radius: 2px; }
.logo-mark .bar-1 { height: 10px; }
.logo-mark .bar-2 { height: 18px; background: var(--green); }
.logo-mark .bar-3 { height: 26px; background: var(--navy); }

.logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--navy); letter-spacing: -0.01em;
}
.logo-accent { color: var(--blue); }

.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  color: var(--text-dark); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 6px 0;
}
.main-nav a:hover { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.call-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue-light); border: 1px solid rgba(0,119,204,0.25);
  padding: 8px 16px; border-radius: 100px;
}
.call-btn:hover { background: #dcf0ff; }
.call-icon { font-size: 1.1rem; color: var(--blue); }
.call-text { display: flex; flex-direction: column; line-height: 1.2; }
.call-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.call-number { font-weight: 700; font-size: 0.9rem; color: var(--navy); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 0 auto; transition: 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--bg-light) 100%);
  padding: 64px 0 56px;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-sub { max-width: 520px; font-size: 1.05rem; }

.zip-check {
  display: flex; gap: 10px; margin: 28px 0 8px; max-width: 460px;
}
.zip-check input {
  flex: 1; padding: 14px 18px; border-radius: 100px; border: 2px solid rgba(11,31,51,0.15);
  font-size: 1rem; font-family: var(--font-body); background: var(--white);
}
.zip-check input:focus { border-color: var(--blue); outline: none; }
.zip-msg { min-height: 20px; font-size: 0.88rem; font-weight: 600; color: var(--green); margin: 0 0 20px; }
.zip-msg.error { color: #DC2626; }

.hero-actions { margin-bottom: 24px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags li {
  font-size: 0.78rem; color: var(--navy); background: var(--white);
  border: 1px solid rgba(11,31,51,0.1); padding: 6px 12px; border-radius: 100px;
}

.hero-visual { display: flex; justify-content: center; }
.signal-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 28px; width: 100%; max-width: 340px; box-shadow: var(--shadow-md);
}
.signal-card-head {
  display: flex; align-items: center; gap: 10px; font-size: 0.85rem;
  color: rgba(255,255,255,0.8); margin-bottom: 22px;
}
.signal-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.25);
}
.signal-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-bottom: 24px; }
.signal-bars span { flex: 1; background: var(--blue); border-radius: 4px 4px 0 0; }
.signal-bars span:nth-child(1) { height: 30%; }
.signal-bars span:nth-child(2) { height: 50%; }
.signal-bars span:nth-child(3) { height: 70%; background: var(--green); }
.signal-bars span:nth-child(4) { height: 90%; background: var(--green); }
.signal-bars span:nth-child(5) { height: 100%; background: var(--green); }

.signal-list { display: flex; flex-direction: column; gap: 12px; }
.signal-row {
  display: flex; justify-content: space-between; font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px;
}
.signal-row em { font-style: normal; color: var(--green); font-weight: 600; }

/* =========================================================
   How it works
   ========================================================= */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.step-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light);
  color: var(--blue); font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-family: var(--font-display);
}

/* =========================================================
   Services / Needs Grid
   ========================================================= */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px;
}
.service-card, .need-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--blue);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover, .need-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.need-card { border-top-color: var(--green); }

/* =========================================================
   Why Choose Us
   ========================================================= */
.why-choose-us { background: var(--navy); }
.why-choose-us .eyebrow { color: #7FD1FF; }
.why-choose-us h2 { color: var(--white); }
.why-list { display: grid; gap: 22px; margin-top: 32px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.why-list h3 { color: var(--white); margin-bottom: 4px; }
.why-list p { color: rgba(255,255,255,0.65); margin: 0; }

/* =========================================================
   Availability Notice
   ========================================================= */
.availability-notice { padding: 0 0 24px; }
.notice-box {
  background: #FFF7ED; border: 1px solid #FED7AA; border-radius: var(--radius-md);
  padding: 20px 24px;
}
.notice-box p { color: #9A5B12; margin: 0; font-size: 0.92rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md); padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--navy); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--blue); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 12px; margin-bottom: 0; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  text-align: center;
}
.final-cta-inner { max-width: 640px; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-top: 60px; }
.footer-top {
  max-width: 1180px; margin: 0 auto; padding: 0 24px 40px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px;
}
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 16px 0; }
.footer-phone a { color: var(--white); font-weight: 600; }
.site-footer h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.site-footer .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.site-footer .footer-col a:hover { color: var(--white); }
.footer-emails li a { word-break: break-word; }

.footer-disclosure {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px;
}
.footer-disclosure p {
  max-width: 1132px; margin: 0 auto; font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 24px;
  text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45);
}

/* =========================================================
   Simple inner pages (contact / legal)
   ========================================================= */
.page-header {
  background: var(--blue-light); padding: 56px 0 40px; text-align: center;
}
.page-header .section-inner { max-width: 780px; }
.page-content {
  max-width: 820px; margin: 0 auto; padding: 56px 24px;
}
.page-content h2 { margin-top: 36px; }
.page-content p, .page-content li { color: var(--text-muted); }
.page-content ul { list-style: disc; padding-left: 22px; }
.page-content ul li { margin-bottom: 8px; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
.contact-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-sm); text-align: center;
}
.contact-card .contact-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.contact-card a, .contact-card span { color: var(--navy); font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .cards-3, .cards-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); transform: translateX(100%);
    transition: transform 0.25s ease; overflow-y: auto; padding: 24px;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 14px 6px; font-size: 1.05rem; border-bottom: 1px solid rgba(11,31,51,0.06); }
  .hamburger { display: flex; }
  .call-text { display: none; }
  .call-btn { padding: 10px; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .cards-3, .cards-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .zip-check { flex-direction: column; }
  .zip-check .btn { width: 100%; }
  .hero { padding: 44px 0 40px; }
}


/* =========================================================
   2026 Home Page Conversion & Visual Upgrade
   ========================================================= */
:root {
  --blue-deep: #005EA8;
  --cyan: #38BDF8;
  --orange: #F97316;
  --ring: rgba(56, 189, 248, 0.28);
  --shadow-lg: 0 24px 60px rgba(11, 31, 51, 0.16);
}

body {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 32rem),
    linear-gradient(180deg, #F8FBFF 0%, #F8FAFC 100%);
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.20);
}
.header-cta:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(22, 163, 74, 0.20), transparent 20rem),
    radial-gradient(circle at 12% 12%, rgba(56, 189, 248, 0.35), transparent 26rem),
    linear-gradient(135deg, #EFF9FF 0%, #FFFFFF 48%, #EAF6FF 100%);
  padding: 76px 0 68px;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 330px;
  height: 330px;
  right: -110px;
  top: -90px;
  background: rgba(0, 119, 204, 0.08);
}
.hero::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: 34px;
  background: rgba(22, 163, 74, 0.10);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  letter-spacing: -0.045em;
  max-width: 680px;
}
.hero-sub {
  color: #415166;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,119,204,0.13);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 8px 20px rgba(11,31,51,0.05);
}
.hero-trust-row span::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
}

.zip-check {
  background: var(--white);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,119,204,0.16);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}
.zip-check input { border: 0; background: transparent; }
.zip-check input:focus { box-shadow: 0 0 0 4px var(--ring); }
.btn-cta {
  background: linear-gradient(135deg, var(--green) 0%, #22C55E 100%);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.24);
}
.btn-outline {
  background: rgba(255,255,255,0.72);
  border-color: rgba(11,31,51,0.20);
  box-shadow: 0 8px 22px rgba(11,31,51,0.06);
}
.btn-ghost {
  color: var(--blue-deep);
  background: rgba(0,119,204,0.08);
  border-color: rgba(0,119,204,0.12);
}
.btn-ghost:hover { background: rgba(0,119,204,0.14); transform: translateY(-1px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.signal-card {
  position: relative;
  max-width: 400px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(11,31,51,0.98), rgba(0,94,168,0.94));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.signal-card::before {
  content: '';
  position: absolute;
  inset: -90px -80px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.16);
}
.signal-card > * { position: relative; z-index: 1; }
.signal-row {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 12px 14px;
}
.signal-row em {
  background: rgba(22,163,74,0.14);
  color: #86EFAC;
  border-radius: 999px;
  padding: 2px 9px;
}
.signal-cta {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.13);
}
.signal-cta strong { display: block; color: var(--white); margin-bottom: 3px; }
.signal-cta span { color: rgba(255,255,255,0.72); font-size: 0.88rem; }

.conversion-strip {
  margin-top: -28px;
  position: relative;
  z-index: 4;
}
.conversion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid rgba(11,31,51,0.08);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.conversion-item { display: flex; align-items: flex-start; gap: 14px; }
.conversion-icon,
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.conversion-item strong { display: block; color: var(--navy); font-family: var(--font-display); margin-bottom: 3px; }
.conversion-item p { margin: 0; font-size: 0.9rem; }

.step-card,
.service-card,
.need-card,
.faq-item,
.contact-card {
  border: 1px solid rgba(11,31,51,0.06);
  box-shadow: 0 12px 28px rgba(11,31,51,0.07);
}
.step-card,
.service-card,
.need-card { position: relative; overflow: hidden; }
.step-card::after,
.service-card::after,
.need-card::after {
  content: '';
  position: absolute;
  inset: auto -34px -46px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(0,119,204,0.06);
}
.step-card:hover,
.service-card:hover,
.need-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card { border-top: 0; }
.service-card .card-icon { margin-bottom: 16px; background: linear-gradient(135deg, var(--blue-light), #F0FDF4); }
.need-card { border-left: 4px solid var(--green); border-top: 0; }

.cta-booster {
  background:
    radial-gradient(circle at 82% 12%, rgba(56,189,248,0.18), transparent 22rem),
    linear-gradient(135deg, #0B1F33 0%, #005EA8 100%);
  color: var(--white);
}
.cta-booster-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.cta-booster h2,
.cta-booster h3 { color: var(--white); }
.cta-booster p { color: rgba(255,255,255,0.76); }
.cta-booster .eyebrow { color: #7FD1FF; }
.cta-booster-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.16);
}
.cta-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #052E16;
  background: #BBF7D0;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-choose-us {
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.15), transparent 24rem),
    var(--navy);
}
.why-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.why-list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}
.why-list li:last-child { grid-column: span 2; }

.notice-box {
  border-radius: 22px;
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%);
  box-shadow: 0 10px 24px rgba(154,91,18,0.08);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(34,197,94,0.24), transparent 18rem),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--navy) 100%);
}
.final-eyebrow { color: #BBF7D0; }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

@media (max-width: 1080px) {
  .header-cta { display: none; }
}

@media (max-width: 960px) {
  .conversion-inner,
  .cta-booster-inner { grid-template-columns: 1fr; }
  .conversion-action { width: 100%; }
  .conversion-action .btn { width: 100%; }
  .why-list { grid-template-columns: 1fr; }
  .why-list li:last-child { grid-column: auto; }
}

@media (max-width: 780px) {
  .main-nav a::after { display: none; }
  .header-cta { display: inline-flex; }
}

@media (max-width: 640px) {
  .hero { padding-top: 50px; }
  .zip-check {
    border-radius: 22px;
    padding: 10px;
  }
  .zip-check input {
    background: #F8FAFC;
    border-radius: 16px;
  }
  .hero-actions .btn,
  .final-actions .btn { width: 100%; }
  .conversion-strip { margin-top: 0; padding: 18px 0 0; }
  .conversion-inner { border-radius: 20px; }
}

/* =========================================================
   Separate Service Sections Upgrade
   ========================================================= */
.section-lead {
  max-width: 760px;
  font-size: 1.02rem;
  color: #4B5B70;
}
.service-overview {
  padding-bottom: 34px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.service-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.service-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0,119,204,0.14);
  box-shadow: 0 8px 22px rgba(11,31,51,0.06);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}
.service-tabs a:hover {
  transform: translateY(-3px);
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.service-detail {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
}
.service-detail::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  right: -110px;
  top: -110px;
  background: rgba(56,189,248,0.14);
  pointer-events: none;
}
.service-detail-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}
.service-detail-inner.reverse .service-detail-copy { order: 2; }
.service-detail-inner.reverse .service-detail-card { order: 1; }
.service-detail-blue {
  background: linear-gradient(135deg, #EAF6FF 0%, #FFFFFF 100%);
}
.service-detail-light {
  background: #FFFFFF;
}
.service-detail-green {
  background: linear-gradient(135deg, #ECFDF5 0%, #FFFFFF 100%);
}
.service-detail-navy {
  background: radial-gradient(circle at top right, rgba(56,189,248,0.22), transparent 24rem), var(--navy);
}
.service-detail-navy h2,
.service-detail-navy h3,
.service-detail-navy .service-detail-copy p,
.service-detail-navy .service-checklist li { color: #FFFFFF; }
.service-detail-navy .eyebrow { color: #7FD1FF; }
.service-detail-navy .service-kicker { background: rgba(255,255,255,0.12); color: #BBF7D0; }
.service-detail-navy .service-detail-copy p { opacity: 0.78; }
.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0,119,204,0.10);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-detail-copy h2 { max-width: 720px; }
.service-detail-copy p {
  max-width: 680px;
  color: #4B5B70;
  font-size: 1.04rem;
}
.service-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
}
.service-checklist li {
  position: relative;
  padding-left: 32px;
  color: #344256;
  font-weight: 650;
}
.service-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-detail-card {
  border-radius: 30px;
  padding: 34px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(0,119,204,0.12);
  box-shadow: var(--shadow-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-detail-card.dark-card {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}
.service-large-icon {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #DCFCE7);
  font-size: 2.35rem;
  margin-bottom: 22px;
}
.dark-card .service-large-icon { background: rgba(255,255,255,0.14); }
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.mini-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #F1F5F9;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.83rem;
}
.dark-card .mini-tags span { background: rgba(255,255,255,0.14); color: #FFFFFF; }

@media (max-width: 1040px) {
  .service-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
  }
  .service-detail-inner.reverse .service-detail-copy,
  .service-detail-inner.reverse .service-detail-card { order: initial; }
  .service-detail-card { min-height: auto; }
}
@media (max-width: 640px) {
  .service-tabs { grid-template-columns: 1fr; }
  .service-detail { padding: 56px 0; }
  .service-actions .btn { width: 100%; }
}

/* ===============================
   Attractive Header Design
================================ */

.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    z-index: 99999;
    background: #0077cc;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #061b33;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-mark {
    width: 36px;
    height: 42px;
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
}

.logo-mark .bar {
    display: block;
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, #19c37d 0%, #0077cc 100%);
    box-shadow: 0 6px 14px rgba(0, 119, 204, 0.18);
}

.logo-mark .bar-1 {
    height: 16px;
}

.logo-mark .bar-2 {
    height: 27px;
}

.logo-mark .bar-3 {
    height: 38px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: "Sora", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.6px;
}

.logo-small {
    color: #061b33;
}

.logo-text strong {
    font-weight: 800;
    color: #061b33;
}

.logo-accent {
    color: #0077cc !important;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f8fbff;
    border: 1px solid rgba(0, 119, 204, 0.08);
    border-radius: 999px;
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #0f172a;
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.main-nav a:hover {
    color: #0077cc;
    background: #eaf6ff;
}

.main-nav a:focus-visible,
.header-cta:focus-visible,
.call-btn:focus-visible,
.hamburger:focus-visible {
    outline: 3px solid rgba(0, 119, 204, 0.28);
    outline-offset: 3px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cta {
    min-height: 46px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #0077cc 0%, #00a8e8 100%);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(0, 119, 204, 0.24);
    transition: all 0.25s ease;
}

.header-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 119, 204, 0.34);
}

.call-btn {
    min-height: 54px;
    padding: 8px 17px 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #eef8ff;
    border: 1px solid #b9def8;
    color: #063b63;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.25s ease;
}

.call-btn:hover {
    background: #e2f3ff;
    border-color: #8cccf4;
    color: #063b63;
    transform: translateY(-2px);
}

.call-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.call-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
}

.call-number {
    margin-top: 3px;
    font-size: 15px;
    font-weight: 900;
    color: #063b63;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: #eef8ff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.hamburger span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #063b63;
    transition: all 0.25s ease;
}

/* Laptop Adjustment */
@media (max-width: 1180px) {
    .header-inner {
        padding: 10px 18px;
        gap: 14px;
    }

    .main-nav a {
        padding: 0 10px;
        font-size: 13.5px;
    }

    .header-cta {
        padding: 0 15px;
    }

    .call-btn {
        padding-right: 13px;
    }
}

/* Tablet / Mobile */
@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: 70px;
    }

    .main-nav {
        display: none;
        order: 3;
        width: 100%;
        flex: 0 0 100%;
    }

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

    .main-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 12px;
        background: #ffffff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 16px;
        min-height: 48px;
        border-radius: 14px;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-cta,
    .call-btn {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 520px) {
    .header-inner {
        padding: 10px 14px;
    }

    .logo-mark {
        width: 30px;
        height: 36px;
    }

    .logo-mark .bar {
        width: 6px;
    }

    .logo-mark .bar-1 {
        height: 14px;
    }

    .logo-mark .bar-2 {
        height: 23px;
    }

    .logo-mark .bar-3 {
        height: 33px;
    }

    .logo-text {
        font-size: 17px;
    }
}
/* ===============================
   Contact Page Optimized Design
================================ */

.contact-page-header {
    background:
        radial-gradient(circle at top left, rgba(0, 119, 204, 0.16), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #eef8ff 100%);
}

.contact-section {
    padding: 70px 0;
    background: #f5f9fc;
}

.contact-section .section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-intro {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.contact-intro h2 {
    margin: 0 0 14px;
    color: #061b33;
    font-family: "Sora", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.contact-intro p {
    margin: 0;
    color: #526179;
    font-size: 17px;
    line-height: 1.75;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

/* Cards */
.contact-card {
    min-width: 0;
    min-height: 265px;
    padding: 34px 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;
    transition: all 0.25s ease;
    overflow-wrap: anywhere;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 119, 204, 0.22);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.contact-card-featured {
    background:
        radial-gradient(circle at top right, rgba(25, 195, 125, 0.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef8ff 100%);
    border-color: rgba(0, 119, 204, 0.22);
}

/* Centered Icons */
.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0077cc 0%, #00a8e8 100%);
    color: #ffffff;

    display: grid;
    place-items: center;

    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Inter", sans-serif;
    font-size: 24px;
    line-height: 1;
    text-align: center;

    box-shadow: 0 14px 28px rgba(0, 119, 204, 0.22);
    overflow: hidden;
}

.contact-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    transform: translateY(1px);
}

/* Text */
.contact-card h3 {
    margin: 4px 0 0;
    color: #061b33;
    font-family: "Sora", sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.contact-card a,
.contact-info {
    color: #001b33;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    text-decoration: none;
    word-break: break-word;
}

.contact-card a:hover {
    color: #0077cc;
}

.contact-card p {
    max-width: 260px;
    margin: 0;
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.6;
}

/* CTA Box */
.contact-cta-box {
    margin-top: 44px;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(25, 195, 125, 0.18), transparent 32%),
        linear-gradient(135deg, #061b33 0%, #073f72 100%);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    box-shadow: 0 24px 54px rgba(6, 27, 51, 0.22);
}

.contact-cta-box .eyebrow {
    margin: 0 0 8px;
    color: #8ee8ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cta-box h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 800;
    line-height: 1.18;
}

.contact-cta-box p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.contact-cta-btn {
    flex-shrink: 0;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    color: #0077cc;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.25s ease;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    background: #eaf6ff;
    color: #0077cc;
}

/* Reminder */
.contact-reminder {
    margin-top: 36px;
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.contact-reminder h2 {
    margin: 0 0 12px;
    color: #061b33;
    font-family: "Sora", sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.contact-reminder p {
    margin: 0;
    color: #526179;
    font-size: 16px;
    line-height: 1.75;
}

/* Tablet */
@media (max-width: 980px) {
    .contact-section {
        padding: 56px 0;
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .contact-section .section-inner {
        padding: 0 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        min-height: auto;
        padding: 28px 20px;
    }

    .contact-card a,
    .contact-info {
        font-size: 15px;
    }

    .contact-cta-box {
        padding: 28px 22px;
    }

    .contact-cta-btn {
        width: 100%;
    }

    .contact-reminder {
        padding: 24px 20px;
    }
}

/* ===============================
   Footer Logo Color Fix
================================ */

.site-footer .logo {
    color: #ffffff;
}

.site-footer .logo-text {
    color: #ffffff;
}

.site-footer .logo-text,
.site-footer .logo-text span,
.site-footer .logo-text strong {
    color: #ffffff !important;
}

.site-footer .logo-accent {
    color: #0ea5e9 !important;
}