/* ============================================================
   SWIFTWY LLC — home.css
   Styles specific to index.html (Home / Landing Page).
   Extracted from the page-home <style> block in the prototype.
   ============================================================ */

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: #1e3a8a;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ann-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.ann-icon {
  width: 22px;
  height: 22px;
  background: #f97316;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── HOME NAVBAR (.hn) ── */
.hn {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.hn-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.hn-logo-box {
  width: 44px;
  height: 44px;
  background: #f97316;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-weight: 900;
}
.hn-logo-right .hn-logo-name {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}
.hn-logo-right .hn-logo-sub {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}
.hn-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.hn-links a {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.hn-links a:hover { color: #f97316; }
.hn-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hn-phone-wrap  { text-align: right; }
.hn-phone-label { color: #94a3b8; font-size: 11px; display: block; }
.hn-phone-num   { color: #2d4cc8; font-weight: 700; font-size: 13px; }
.hn-login-btn {
  padding: 10px 24px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.hn-login-btn:hover { border-color: #2d4cc8; color: #2d4cc8; }
.hn-start-btn {
  padding: 13px 26px;
  background: #1e3a8a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hn-start-btn:hover { background: #2d4cc8; }

/* ── HOME HAMBURGER ── */
.hn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hn-hamburger span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  display: block;
  transition: all 0.3s;
}
.hn-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hn-hamburger.active span:nth-child(2) { opacity: 0; }
.hn-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HOME MOBILE MENU ── */
.hn-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
  padding: 12px 5% 20px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.hn-mobile-menu.open { display: flex; }
.hn-mobile-menu a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  display: block;
}
.hn-mobile-menu a:last-child { border-bottom: none; }
.hn-mobile-menu .hn-mm-login {
  margin-top: 14px;
  text-align: center;
  padding: 13px;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  color: #374151;
}
.hn-mobile-menu .hn-mm-start {
  margin-top: 10px;
  text-align: center;
  padding: 13px;
  background: #1e3a8a;
  border-bottom: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
}

/* ── HERO ── */
.lp-hero {
  background: #0f172a;
  padding: 70px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.tp-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.tp-star-icon { color: #22c55e; font-size: 18px; font-weight: 900; }
.tp-name      { color: #fff; font-weight: 700; font-size: 15px; }
.tp-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.tp-score      { font-size: 20px; font-weight: 900; color: #fff; }
.tp-stars-row  { color: #22c55e; font-size: 18px; letter-spacing: 2px; }
.tp-count      { color: #94a3b8; font-size: 13px; }
.lp-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 14px;
}
.lp-h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 26px;
  font-family: var(--serif);
}
.lp-h1 u {
  text-decoration-color: #f97316;
  text-underline-offset: 4px;
}
.lp-checklist { list-style: none; margin-bottom: 32px; }
.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 13px;
}
.lp-checklist li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 900;
  font-size: 17px;
  flex-shrink: 0;
}
.lp-hero-cta {
  background: #f97316;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 42px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.lp-hero-cta:hover { background: #ea6c00; transform: translateY(-2px); }

/* Hero card */
.lp-hero-card {
  background: #1e293b;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.lhc-avatar  { width: 68px; height: 68px; border-radius: 50%; background: #475569; margin: 0 auto 18px; }
.lhc-title   { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.lhc-num     { font-size: 50px; font-weight: 900; color: #f97316; line-height: 1; margin-bottom: 6px; }
.lhc-label   { font-size: 14px; color: #94a3b8; margin-bottom: 26px; }
.lhc-btn {
  width: 100%;
  background: #2d4cc8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.lhc-btn:hover { background: #1e3a8a; }

/* ── TESTIMONIALS ── */
.lp-testi { background: #f8fafc; padding: 80px 5%; }
.lp-testi-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
}
.lp-quote {
  font-size: 90px;
  color: #d1d5db;
  line-height: 0.7;
  font-family: Georgia, serif;
  margin-bottom: 14px;
}
.lp-testi-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  font-family: var(--serif);
}
.testi-wrap  { overflow: hidden; }
.testi-slide { display: flex; gap: 20px; transition: transform 0.4s ease; }
.tc-new {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  min-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
}
.tc-top-row    { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.tc-avatar-wrap { display: flex; align-items: center; gap: 10px; }
.tc-av         { width: 42px; height: 42px; border-radius: 50%; background: #cbd5e1; flex-shrink: 0; }
.tc-author-name { font-weight: 700; color: #0f172a; font-size: 14px; }
.tc-score       { color: #22c55e; font-weight: 700; font-size: 13px; }
.tc-green-stars { color: #22c55e; font-size: 15px; margin-bottom: 4px; }
.tc-dt          { font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
.tc-quote       { font-size: 14px; color: #374151; line-height: 1.7; }
.testi-controls { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 20px; }
.testi-nav-row  { display: flex; gap: 8px; }
.tns-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.tns-btn:hover { border-color: #2d4cc8; color: #2d4cc8; }
.testi-dots-row { display: flex; gap: 6px; align-items: center; }
.tdot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s;
}
.tdot.active { background: #1e3a8a; width: 26px; border-radius: 4px; }

/* ── QUICK & EASY ── */
.lp-qe { background: #f8fafc; padding: 80px 5%; }
.lp-qe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.filing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.fc-dots { display: flex; gap: 5px; margin-bottom: 18px; }
.fc-dot  { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; }
.fc-dot.act { background: #1e3a8a; width: 22px; border-radius: 4px; }
.fc-title { font-size: 20px; font-weight: 900; color: #0f172a; margin-bottom: 6px; }
.fc-sub   { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.fc-label { font-size: 13px; font-weight: 700; color: #374151; margin-bottom: 10px; }
.fc-checks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 14px; }
.fc-check { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #374151; }
.fc-check::before { content: '✓'; color: #22c55e; font-weight: 900; flex-shrink: 0; }
.fc-divider { height: 1px; background: #f1f5f9; margin: 14px 0; }
.fc-agent   { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #374151; }
.fc-agent::before { content: '✓'; color: #22c55e; font-weight: 900; }
.qe-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; color: #0f172a; line-height: 1.2; margin-bottom: 26px; font-family: var(--serif); }
.qe-title span { color: #2d4cc8; }
.qe-pt { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.qe-ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff5f0;
  border: 2px solid #fed7aa;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.qe-pt-text { font-size: 15px; color: #374151; font-weight: 500; padding-top: 9px; line-height: 1.5; }
.qe-btn {
  background: #1e3a8a;
  color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 15px 38px;
  border-radius: 50px;
  border: none; cursor: pointer;
  margin-top: 16px; transition: all 0.2s;
}
.qe-btn:hover { background: #2d4cc8; }

/* ── WHY FORM AN LLC ── */
.lp-why { background: #3b5bdb; padding: 70px 5%; }
.lp-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-why h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; color: #fff;
  margin-bottom: 26px; line-height: 1.2;
  font-family: var(--serif);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.why-item { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.5; }
.why-item::before { content: '✓'; color: #22c55e; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.why-cta {
  background: #f97316; color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px; border: none; cursor: pointer; transition: all 0.2s;
}
.why-cta:hover { background: #ea6c00; }
.why-video {
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

/* ── STATS BANNER ── */
.lp-stats-banner { background: #3b5bdb; padding: 50px 5%; text-align: center; }
.lp-stat-big { font-size: clamp(70px, 10vw, 110px); font-weight: 900; color: #fff; line-height: 1; }
.lp-stat-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ── INFO SECTION ── */
.lp-info { background: #fff; padding: 80px 5%; }
.lp-info-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.info-ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 14px;
}
.ic-b { background: #2d4cc8; }
.ic-r { background: #ef4444; }
.info-h  { font-size: 24px; font-weight: 900; color: #0f172a; margin-bottom: 6px; font-family: var(--serif); }
.info-ol { width: 48px; height: 3px; background: #f97316; margin-bottom: 14px; }
.info-p  { font-size: 15px; color: #64748b; line-height: 1.8; margin-bottom: 12px; }
.info-rm { color: #2d4cc8; font-weight: 700; font-size: 14px; cursor: pointer; text-decoration: underline; }

/* ── TURNKEY LLC ── */
.lp-tk { background: #eef2ff; padding: 80px 5%; }
.lp-tk-inner { max-width: 900px; margin: 0 auto; }
.tk-h  { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: #0f172a; text-align: center; margin-bottom: 6px; font-family: var(--serif); }
.tk-ol { width: 56px; height: 3px; background: #f97316; margin: 0 auto 14px; }
.tk-sub { font-size: 15px; color: #64748b; text-align: center; margin-bottom: 36px; }
.tk-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.tk-card-h   { font-size: 22px; font-weight: 900; color: #0f172a; text-align: center; margin-bottom: 6px; font-family: var(--serif); }
.tk-card-sub { font-size: 14px; color: #64748b; text-align: center; margin-bottom: 24px; }
.tk-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.tk-item     { display: flex; align-items: flex-start; gap: 10px; padding: 14px 10px; }
.tk-ck {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #22c55e;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 900; flex-shrink: 0;
}
.tk-item-name { font-size: 14px; color: #0f172a; font-weight: 700; }
.tk-item-sub  { font-size: 12px; color: #94a3b8; }
.tk-promise {
  background: #1e3a8a;
  border-radius: 12px;
  padding: 26px 28px;
  text-align: center;
  margin-top: 20px;
}
.tk-promise-h { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.tk-promise-p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.tk-cta {
  display: block;
  background: #f97316; color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 17px 48px;
  border-radius: 50px; border: none; cursor: pointer;
  margin: 28px auto 0; transition: all 0.2s;
}
.tk-cta:hover { background: #ea6c00; }

/* ── BENEFITS ── */
.lp-ben { background: #fff; padding: 80px 5%; }
.lp-ben-inner { max-width: 1100px; margin: 0 auto; }
.ben-h  { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: #0f172a; text-align: center; margin-bottom: 6px; font-family: var(--serif); }
.ben-ol { width: 56px; height: 3px; background: #f97316; margin: 0 auto 14px; }
.ben-sub { font-size: 15px; color: #64748b; text-align: center; max-width: 700px; margin: 0 auto 44px; }
.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.ben-c   { border-radius: 18px; padding: 28px 22px; text-align: center; }
.bc-blue   { background: #eff6ff; }
.bc-green  { background: #f0fdf4; }
.bc-purple { background: #faf5ff; }
.bc-red    { background: #fff1f2; }
.bc-yellow { background: #fffbeb; }
.bc-teal   { background: #f0fdfa; }
.ben-ib {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.bi-blue   { background: #2d4cc8; }
.bi-green  { background: #22c55e; }
.bi-purple { background: #9333ea; }
.bi-red    { background: #ef4444; }
.bi-yellow { background: #d97706; }
.bi-teal   { background: #0891b2; }
.ben-ct { font-size: 17px; font-weight: 900; color: #0f172a; margin-bottom: 8px; }
.ben-cd { font-size: 13px; color: #64748b; line-height: 1.7; }
.adv-section { background: #f8fafc; border-radius: 16px; padding: 36px; }
.adv-h { font-size: 22px; font-weight: 900; color: #0f172a; text-align: center; margin-bottom: 24px; }
.adv-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.adv-i {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; background: #fff; border-radius: 10px;
}
.adv-ck {
  width: 24px; height: 24px; border-radius: 50%;
  background: #22c55e;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 900; flex-shrink: 0;
}
.adv-t { font-size: 13px; color: #374151; font-weight: 500; }
.ben-btn {
  display: block;
  background: #1e3a8a; color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px; border: none; cursor: pointer;
  margin: 32px auto 0; transition: all 0.2s;
}
.ben-btn:hover { background: #2d4cc8; }

/* ── HOME FAQ ── */
.lp-faq { background: #fff; padding: 80px 5%; }
.lp-faq-inner { max-width: 880px; margin: 0 auto; }
.faq-h { font-size: clamp(30px, 4vw, 44px); font-weight: 900; color: #0f172a; text-align: center; margin-bottom: 44px; font-family: var(--serif); }
.faq-grp { margin-bottom: 36px; }
.faq-grp-hd { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.faq-grp-ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: #2d4cc8;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px; flex-shrink: 0;
}
.faq-grp-name { font-size: 20px; font-weight: 900; color: #0f172a; }
.faq-grp-line { width: 38px; height: 3px; background: #f97316; margin-top: 4px; }
.faq-rw { background: #eef2ff; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq-rw-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 18px; cursor: pointer;
}
.faq-rw-qt  { font-size: 15px; color: #0f172a; font-weight: 500; }
.faq-rw-tog {
  width: 30px; height: 30px; border-radius: 50%;
  background: #f97316; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-rw-tog.open { transform: rotate(45deg); }
.faq-rw-a    { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-rw-a.open { max-height: 180px; }
.faq-rw-ai   { padding: 0 18px 16px; font-size: 14px; color: #64748b; line-height: 1.8; }

/* ── HOME FOOTER ── */
.lp-footer { background: #0f172a; padding: 60px 5% 0; }
.lp-fg {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lf-col-h { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.lf-ci    { font-size: 14px; color: #94a3b8; margin-bottom: 8px; line-height: 1.6; }
.lf-lk {
  display: block;
  font-size: 14px; color: #94a3b8;
  margin-bottom: 9px; cursor: pointer;
  transition: color 0.2s; text-decoration: none;
}
.lf-lk:hover { color: #f97316; }
.lp-fb {
  max-width: 1200px; margin: 0 auto;
  padding: 22px 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.lf-logo-row { display: flex; align-items: center; gap: 10px; }
.lf-lb {
  width: 34px; height: 34px;
  background: #f97316; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; font-weight: 900;
}
.lf-lt   { font-size: 13px; font-weight: 700; color: #fff; }
.lf-bl   { display: flex; gap: 18px; }
.lf-blk  { font-size: 13px; color: #94a3b8; cursor: pointer; }
.lf-disc {
  max-width: 1200px; margin: 0 auto;
  padding-bottom: 24px;
  font-size: 12px; color: #475569;
  text-align: center; line-height: 1.7;
}

/* ── HOME RESPONSIVE ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
* { box-sizing: border-box; }

@media (max-width: 900px) {
  .lp-hero         { grid-template-columns: 1fr !important; }
  .lp-hero-card    { display: none !important; }
  .lp-testi-inner  { grid-template-columns: 1fr !important; }
  .lp-quote        { display: none; }
  .lp-qe-inner     { grid-template-columns: 1fr !important; }
  .lp-why-inner    { grid-template-columns: 1fr !important; }
  .lp-info-inner   { grid-template-columns: 1fr !important; }
  .tk-grid         { grid-template-columns: 1fr 1fr !important; }
  .ben-grid        { grid-template-columns: 1fr 1fr !important; }
  .adv-g           { grid-template-columns: 1fr 1fr !important; }
  .lp-fg           { grid-template-columns: 1fr 1fr !important; }
  .ann-bar         { gap: 16px !important; }
  .fc-checks-grid  { grid-template-columns: 1fr !important; }
}
@media (max-width: 580px) {
  .ben-grid  { grid-template-columns: 1fr !important; }
  .adv-g     { grid-template-columns: 1fr !important; }
  .lp-fg     { grid-template-columns: 1fr !important; }
  .tk-grid   { grid-template-columns: 1fr !important; }
  .hn        { padding: 0 16px !important; }
  .hn-links  { display: none !important; }
  .hn-phone-wrap { display: none !important; }
  .hn-right  { display: none !important; }
  .hn-hamburger { display: flex !important; }
  .why-grid  { grid-template-columns: 1fr !important; }
  .tc-new    { min-width: 100% !important; flex: 0 0 100% !important; }
  .lp-hero-cta { width: 100%; }
}

/* Fix 2 + 3 — Testimonial overflow and height */
@media (max-width: 640px) {
  .testi-wrap {
    overflow: hidden;
    width: 100%;
  }
  .testi-slide {
    display: flex;
    width: 100%;
    height: auto !important;
    align-items: flex-start;
  }
  .tc-new {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    box-sizing: border-box;
    padding: 20px 16px;
    height: auto !important;
    min-height: unset !important;
  }
  .tc-quote {
    font-size: 13px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .lp-testi {
    padding: 40px 16px;
    overflow: hidden;
    min-height: unset !important;
    height: auto !important;
  }
  .lp-testi-inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .testi-cards-wrap {
    min-height: unset !important;
    height: auto !important;
  }
}

/* Fix 1 — Announcement bar compact row at ≤480px */
@media (max-width: 480px) {
  .ann-bar {
    flex-direction: row;
    gap: 8px;
    padding: 6px 12px;
  }
  .ann-item {
    font-size: 10px;
  }
}

/* Fix 4 — General mobile layout */
@media (max-width: 640px) {
  .lp-hero {
    grid-template-columns: 1fr !important;
    padding: 40px 16px 50px !important;
  }
  .lp-hero-card { display: none !important; }
  .lp-h1 {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1.2 !important;
  }
  .lp-qe-inner {
    grid-template-columns: 1fr !important;
    padding: 0 16px;
  }
  .lp-why-inner { grid-template-columns: 1fr !important; }
  .why-video    { display: none !important; }
  .ben-grid     { grid-template-columns: 1fr !important; }
  .adv-g        { grid-template-columns: 1fr !important; }
  .lp-fg        { grid-template-columns: 1fr !important; }
  .lp-info-inner { grid-template-columns: 1fr !important; }
  .tk-grid      { grid-template-columns: 1fr 1fr !important; }
  section, .lp-testi, .lp-qe, .lp-why,
  .lp-info, .lp-tk, .lp-ben, .lp-faq {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
