/* ============================================
   FiberLinks — Shared Stylesheet
   Colors: Navy #0D1B2A | Blue #1E6FFF | Teal #00C6C0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --primary:   #0D1B2A;
  --blue:      #1E6FFF;
  --teal:      #00C6C0;
  --gray-bg:   #F4F6F9;
  --white:     #FFFFFF;
  --footer-bg: #08121E;
  --muted:     #6B7280;
  --border:    #E5E7EB;
  --card-bg:   #FFFFFF;
  --text:      #111827;
  --orange:    #F97316;
  --green:     #22C55E;
  --radius:    10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.1);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-blue { color: var(--blue); }
.text-teal { color: var(--teal); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ── Top Bar ── */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 8px; opacity: .9; }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
  transition: color .2s;
}
.topbar-phone:hover { color: var(--teal); }

/* ── Nav ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow .3s, padding .3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); border-color: transparent; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 22px; font-weight: 900; letter-spacing: -.5px; }
.logo span:first-child { color: var(--primary); }
.logo span:last-child  { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.btn-call {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-call:hover { background: #155de8; transform: translateY(-1px); }

/* Mobile Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 16px 20px;
  flex-direction: column;
  gap: 8px;
  z-index: 89;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  transition: background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--gray-bg); color: var(--blue); }
.mobile-menu .btn-call-mobile {
  margin-top: 8px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 24px rgba(30,111,255,.35);
}
.btn-primary:hover {
  background: #155de8;
  box-shadow: 0 0 36px rgba(30,111,255,.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover { background: #1a2e42; transform: translateY(-2px); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #0f2c4d 60%, #1a3a6e 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
  opacity: .08;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.hero h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Sections ── */
.section { padding: 80px 20px; }
.section-alt { background: var(--gray-bg); }
.section-white { background: var(--white); }
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 52px;
}

/* ── Provider Cards ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.provider-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.provider-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.provider-card-bar { height: 5px; width: 100%; }
.bar-fiber  { background: var(--blue); }
.bar-cable  { background: var(--orange); }
.bar-satellite { background: var(--green); }
.bar-cable-fiber { background: linear-gradient(90deg, var(--blue), var(--orange)); }

.provider-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.card-header h3 { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.type-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  background: var(--gray-bg);
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.card-stat { margin-bottom: 16px; }
.card-stat-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.card-stat-value { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.card-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }
.card-speed { font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 6px; }
.card-speed svg { color: var(--blue); }
.card-best { font-size: 13px; color: var(--muted); }
.card-best strong { color: var(--primary); }
.card-cta {
  display: block;
  margin-top: auto;
  padding-top: 20px;
}
.card-btn {
  display: block;
  width: 100%;
  background: var(--gray-bg);
  color: var(--primary);
  text-align: center;
  padding: 12px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: none;
}
.card-btn:hover { background: var(--blue); color: #fff; }

/* ── Feature Icons ── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-item { }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-blue  { background: rgba(30,111,255,.1); }
.icon-teal  { background: rgba(0,198,192,.1); }
.feature-item h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.feature-item p  { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-line {
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(30,111,255,.2);
}
.step-item h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--primary); }
.step-item p  { color: var(--muted); font-size: 1rem; line-height: 1.65; }

/* ── Internet Types ── */
.type-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color .2s;
  height: 100%;
}
.type-card:hover { border-color: var(--blue); }
.type-card svg { width: 40px; height: 40px; margin-bottom: 20px; }
.type-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.type-card p  { color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.type-providers { border-top: 1px solid var(--border); padding-top: 16px; font-size: 13px; font-weight: 600; }
.type-providers strong { color: var(--primary); }

/* ── FAQ Accordion ── */
.faq-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-question.open { color: var(--blue); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--muted);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ── Contact Strip ── */
.contact-strip {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2c4d 50%, #122040 100%);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-strip h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.contact-strip p  { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }
.contact-strip a.highlight { color: var(--teal); font-weight: 700; }
.contact-strip a.highlight:hover { text-decoration: underline; }

/* ── Footer ── */
footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 64px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-logo { font-size: 22px; font-weight: 900; margin-bottom: 16px; }
.footer-logo span:first-child { color: #fff; }
.footer-logo span:last-child  { color: var(--blue); }
.footer-tagline { color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 28px; max-width: 300px; line-height: 1.65; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--blue); }
.footer-contact-icon {
  background: rgba(255,255,255,.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-col h3 { font-size: .95rem; font-weight: 700; margin-bottom: 24px; color: #fff; letter-spacing: .5px; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-links a::before { content: '›'; color: var(--blue); font-size: 1.1rem; transition: transform .2s; }
.footer-links a:hover::before { transform: translateX(3px); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── Providers Page ── */
.filter-bar {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label { font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.filter-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  transition: all .2s;
}
.filter-btn:hover  { background: rgba(30,111,255,.07); border-color: var(--blue); }
.filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 2px 12px rgba(30,111,255,.3); }

.provider-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: box-shadow .2s;
}
.provider-row:hover { box-shadow: var(--shadow); }
.provider-row-bar { height: 5px; }
.provider-row-inner {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
}
.provider-left { text-align: center; }
.provider-initial {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gray-bg);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.provider-left h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.provider-left .type-badge { display: inline-block; margin-bottom: 10px; }
.provider-left .best-for { font-size: 13px; color: var(--muted); }
.provider-left .best-for strong { color: var(--text); }
.provider-mid { border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 0 32px; }
.provider-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.pstat-label { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.pstat-value { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.pstat-value.blue { color: var(--blue); }
.pstat-medium { font-size: 14px; font-weight: 600; }
.provider-pros { list-style: none; }
.provider-pros li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.pros-check { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.provider-right { text-align: center; }
.provider-right p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.provider-cta-btn {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 12px rgba(30,111,255,.3);
}
.provider-cta-btn:hover { background: #155de8; transform: translateY(-1px); }
.provider-number { font-size: 13px; font-weight: 800; color: var(--primary); margin-top: 10px; }

/* ── Compare Page ── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.compare-table th {
  padding: 16px;
  background: var(--gray-bg);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.compare-table th:hover { background: #e8ebf0; }
.compare-table th .sort-icon { display: inline-block; margin-left: 4px; opacity: .5; }
.compare-table td { padding: 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(odd) td  { background: #fff; }
.compare-table tr:nth-child(even) td { background: #f9fafb; }
.compare-table tr:hover td { background: rgba(30,111,255,.04); }
.provider-name-cell { font-weight: 800; color: var(--primary); font-size: 15px; }
.speed-cell { font-weight: 700; display: flex; align-items: center; gap: 6px; }
.quick-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pick-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.pick-card.featured { border-color: var(--blue); box-shadow: var(--shadow); }
.pick-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-bottom-left-radius: 8px;
  letter-spacing: .5px;
}
.pick-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.pick-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pick-name { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.pick-desc { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }
.pick-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}
.check-green { color: var(--green); }

/* ── About Page ── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text h2 { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 24px; }
.story-text p  { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.mission-block {
  background: var(--gray-bg);
  border-left: 6px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px 32px;
}
.mission-block h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.mission-block p  { font-size: 1.1rem; font-style: italic; color: var(--muted); line-height: 1.75; }

.what-we-do-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wwd-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.wwd-card:hover { border-color: var(--blue); }
.wwd-num {
  background: var(--primary);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.wwd-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.wwd-card p  { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: center; }
.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.values-grid h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.values-grid p  { color: var(--muted); font-size: .95rem; line-height: 1.7; }

.partnerships-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.partners-text h2 { font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.partners-text p  { color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.75; margin-bottom: 24px; }
.authorized-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 24px;
}
.authorized-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.authorized-box p  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.65; }
.brand-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.brand-tile {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

/* ── Contact Page ── */
.contact-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: border-color .2s, transform .2s;
  display: block;
}
.contact-card:hover { border-color: var(--blue); transform: translateY(-3px); }
a.contact-card:hover { border-color: var(--blue); }
.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30,111,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-card-icon.gray { background: var(--gray-bg); }
.contact-card h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.contact-card .contact-value { font-size: 1.8rem; font-weight: 900; color: var(--primary); margin-bottom: 12px; transition: color .2s; line-height: 1.2; }
a.contact-card:hover .contact-value { color: var(--blue); }
.contact-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.info-box-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.info-box-header h3 { font-size: 1.3rem; font-weight: 800; }
.ready-list { list-style: none; }
.ready-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.ready-num {
  background: rgba(30,111,255,.1);
  color: var(--blue);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-timeline .step-t { border-left: 3px solid var(--blue); padding: 0 0 24px 20px; margin-bottom: 4px; }
.step-timeline .step-t:last-child { padding-bottom: 0; }
.step-timeline h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.step-timeline p  { color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ── Legal Pages ── */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px;
}
.legal-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--primary); margin-bottom: 8px; }
.legal-date { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; margin-bottom: 40px; display: block; }
.legal-wrap p  { color: #374151; line-height: 1.85; margin-bottom: 16px; font-size: .97rem; }
.legal-wrap h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.legal-wrap h2:first-of-type { border-top: none; margin-top: 20px; }
.legal-wrap ul { padding-left: 8px; margin-bottom: 16px; }
.legal-wrap ul li {
  padding-left: 20px;
  position: relative;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: .97rem;
}
.legal-wrap ul li::before { content: '•'; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.legal-contact { background: var(--gray-bg); border-radius: var(--radius); padding: 24px 28px; margin-top: 8px; font-size: .95rem; line-height: 1.8; }
.legal-contact a { color: var(--blue); font-weight: 600; }
.legal-contact a:hover { text-decoration: underline; }

/* ── Promise Section ── */
.promise-section {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 64px 20px;
  text-align: center;
}
.promise-section h2 { font-size: 2rem; font-weight: 900; color: var(--primary); margin-bottom: 20px; }
.promise-section p  { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.8; }

/* ── SVG Icons (inline) ── */
svg { display: inline-block; vertical-align: middle; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .what-we-do-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-row-inner { grid-template-columns: 1fr 1fr; }
  .provider-right { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 24px; }
  .provider-mid { border-right: none; padding-right: 0; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-2     { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .quick-picks { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 72px 20px; }
  .section { padding: 56px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .partnerships-grid { grid-template-columns: 1fr; }
  .brand-tiles { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .provider-stats { grid-template-columns: 1fr; }
  .provider-row-inner { grid-template-columns: 1fr; }
  .provider-mid { border-left: none; border-right: none; padding: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
}

/* ── Additional Classes (legal, contact-card-main) ── */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-intro {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 5px solid var(--blue);
}
.legal-container h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin: 40px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.legal-container h2:first-of-type { border-top: none; }
.legal-container h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 10px;
}
.legal-container p {
  color: #374151;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: .97rem;
}
.legal-container ul {
  padding-left: 8px;
  margin-bottom: 16px;
}
.legal-container ul li {
  padding-left: 20px;
  position: relative;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 8px;
  font-size: .97rem;
  list-style: none;
}
.legal-container ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.legal-container a { color: var(--blue); font-weight: 600; }
.legal-container a:hover { text-decoration: underline; }
.legal-contact-box {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 8px;
  font-size: .95rem;
  line-height: 2;
}
.legal-contact-box a { color: var(--blue); font-weight: 600; }
.legal-contact-box a:hover { text-decoration: underline; }

/* ── Contact Card Main (contact.html) ── */
.contact-card-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.contact-card-main:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-card-main h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
.contact-card-main p { color: var(--muted); font-size: .97rem; line-height: 1.7; margin-bottom: 16px; }
.contact-card-detail { margin: 16px 0; }
.contact-card-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 20px;
}
.contact-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: all .2s;
  text-decoration: none;
}
.phone-btn {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 14px rgba(30,111,255,.3);
}
.phone-btn:hover { background: #155de8; transform: translateY(-1px); }
.email-btn {
  background: var(--gray-bg);
  color: var(--primary);
  border: 1px solid var(--border);
}
.email-btn:hover { background: var(--primary); color: #fff; }

/* Contact card icon colors */
.icon-phone   { background: var(--blue) !important; }
.icon-email   { background: var(--teal) !important; }
.icon-location{ background: #7C3AED !important; }
.icon-hours   { background: #059669 !important; }
.contact-card-icon { background: var(--gray-bg); }

@media (max-width: 768px) {
  .contact-cards-grid { grid-template-columns: 1fr !important; }
}
