/* connexusfcu.org v1 — VISUAL MIRROR of connexuscu.org
 * Real Connexus palette (from visual-extract.md):
 *   --cta: #0072CC (primary BLUE)
 *   --accent-green: #0E6854 (secondary green)
 *   --navy-dark: #130F26 (headings)
 *   --text: #323333
 *
 * Anti-fingerprint:
 *   blue #0072CC ≠ orange #FF8300 (AFCU) ≠ green #5cb646 (alliant)
 *   IBM Plex Sans + Open Sans ≠ Inter (AFCU) ≠ Georgia (alliant)
 *   Carousel hero + product-cards ≠ AFCU pattern ≠ alliant pattern
 */

/* NOTE: Google Fonts loaded via preconnect + preload in HTML head (index.html)
 * @import here would render-block. If a page needs fonts and doesn't preload them
 * in head, browser falls back to system sans-serif until stylesheet arrives. */

:root {
  --cta: #00866B;
  --cta-dark: #006955;
  --accent-blue: #0072CC;
  --accent-blue-dark: #005ba5;
  --navy-dark: #130F26;
  --text: #323333;
  --text-muted: #6c7280;
  --white: #fff;
  --bg: #f6f4ee;
  --surface: #fff;
  --border: #DCDBD8;
  --border-light: #e9e9e9;
  --max: 1280px;
  --max-content: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }

a { color: var(--cta); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: 'IBM Plex Sans', sans-serif; color: var(--navy-dark); font-weight: 600; line-height: 1.2; margin: 0 0 14px; }
h1 { font-size: 2.4rem; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 1.6rem; margin-top: 36px; }
h3 { font-size: 1.18rem; margin-top: 24px; }
p { margin: 0 0 14px; }

.container { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER — utility bar + main nav ============ */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 1px 0 var(--border-light); }

/* Utility bar */
.util-bar { background: var(--bg); color: var(--navy-dark); padding: 10px 0; font-size: .82rem; border-bottom: 1px solid var(--border-light); }
.util-bar-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.util-link { color: var(--navy-dark); padding: 4px 12px; font-weight: 500; }
.util-link:hover { color: var(--cta); opacity: 1; text-decoration: none; }
.util-cta { background: var(--cta); color: var(--white); padding: 6px 18px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .78rem; border-radius: 3px; }
.util-cta:hover { background: var(--cta-dark); color: var(--white); text-decoration: none; }

/* Main nav */
.main-nav-row { background: var(--white); padding: 16px 0; }
.main-nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--navy-dark); text-decoration: none; }
.brand-glyph { width: 38px; height: 38px; background: var(--cta); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'IBM Plex Sans'; font-weight: 700; font-size: 1.2rem; }
.brand-wordmark { font-family: 'IBM Plex Sans', sans-serif; font-weight: 700; font-size: 1.18rem; color: var(--navy-dark); line-height: 1.1; }
.brand-wordmark small { display: block; font-size: .7rem; letter-spacing: 0.18em; font-weight: 500; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; }

/* Main nav silos (3 silos: Accounts/Loans/Services) */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav-item { position: relative; padding: 16px 18px; color: var(--navy-dark); font-weight: 600; font-size: .95rem; cursor: pointer; }
.main-nav-item:hover { color: var(--cta); text-decoration: none; }
.main-nav-item:hover .mega-panel { display: block; }
.main-nav-item::after { content: ''; position: absolute; bottom: 0; left: 12px; right: 12px; height: 3px; background: var(--cta); transform: scaleX(0); transition: transform 0.2s; }
.main-nav-item:hover::after { transform: scaleX(1); }

/* Mega panel */
.mega-panel { display: none; position: absolute; top: 100%; left: 0; background: var(--white); width: 600px; box-shadow: 0 10px 30px rgba(19,15,38,0.12); border-top: 3px solid var(--cta); padding: 28px; z-index: 1001; font-weight: 400; font-size: .93rem; border-radius: 0 0 6px 6px; }
.mega-panel h4 { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 10px; }
.mega-panel ul { list-style: none; margin: 0 0 18px; padding: 0; }
.mega-panel li { margin: 6px 0; }
.mega-panel a { color: var(--navy-dark); font-size: .92rem; font-weight: 500; }
.mega-panel a:hover { color: var(--cta); text-decoration: none; }
.mega-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.search-btn { background: transparent; border: 1px solid var(--border); color: var(--navy-dark); padding: 8px 16px; font-size: .85rem; font-weight: 600; border-radius: 4px; cursor: pointer; }
.search-btn:hover { background: var(--bg); }

/* ============ HERO — carousel-style (single slide, big photo + text overlay) ============ */
.hero { background: linear-gradient(180deg, var(--cta) 0%, #006955 100%); color: var(--white); padding: 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: var(--max); margin: 0 auto; min-height: 540px; align-items: stretch; }
.hero-text { padding: 80px 60px 80px 24px; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: inline-block; color: #d4f0e1; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: .82rem; margin-bottom: 14px; }
.hero-title { font-family: 'IBM Plex Sans', sans-serif; font-size: 2.7rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 28px; line-height: 1.5; max-width: 480px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cta { background: var(--white); color: var(--cta-dark); padding: 14px 36px; font-weight: 700; font-size: .95rem; letter-spacing: .03em; border-radius: 4px; display: inline-block; flex: 0 0 auto; }
.hero-cta:hover { background: #f6f4ee; color: var(--cta-dark); text-decoration: none; }
.hero-cta-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 32px; font-weight: 700; font-size: .95rem; border-radius: 4px; display: inline-block; flex: 0 0 auto; }
.hero-cta-secondary:hover { background: var(--white); color: var(--cta-dark); text-decoration: none; }

.hero-photo { position: relative; overflow: hidden; min-height: 540px; aspect-ratio: 900 / 540; }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }


/* ============ CTA STRIP — green band below hero (signature Connexus pattern) ============ */
.cta-strip { background: #006955; color: var(--white); padding: 0; }
.cta-strip-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.cta-strip-item { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 16px; font-weight: 600; font-size: 1rem; color: var(--white); border-right: 1px solid rgba(255,255,255,0.15); text-decoration: none; transition: background 0.15s; }
.cta-strip-item:last-child { border-right: 0; }
.cta-strip-item:hover { background: rgba(255,255,255,0.1); color: var(--white); text-decoration: none; }
.cta-strip-icon { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
@media (max-width: 720px) { .cta-strip-grid { grid-template-columns: 1fr 1fr; } .cta-strip-item:nth-child(2) { border-right: 0; } }

/* ============ LEAD-DEF ============ */
.lead-def { font-size: 1.05rem; line-height: 1.7; color: var(--text); background: var(--bg); border-left: 4px solid var(--cta); padding: 20px 26px; border-radius: 0 4px 4px 0; margin: 24px 0 32px; }
.lead-def strong { color: var(--navy-dark); }

/* ============ CONTENT ============ */
.content { padding: 48px 0; }

/* ============ COMPARISON TABLE (signature pattern Connexus mirror) ============ */
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.compare-table thead { background: var(--navy-dark); color: var(--white); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-light); }
.compare-table th { font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: .92rem; letter-spacing: 0.02em; }
.compare-table tbody tr:nth-child(even) { background: var(--bg); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--navy-dark); }
.compare-table .check { color: var(--cta); font-weight: 700; }
.compare-table .miss { color: var(--text-muted); }

/* ============ PROS/CONS GRID (Bankrate style for review pages) ============ */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.pros-cons > div { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 22px; }
.pros-cons .pros { border-top: 4px solid var(--cta); }
.pros-cons .cons { border-top: 4px solid #b91c1c; }
.pros-cons h3 { margin-top: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pros-cons .pros h3 { color: var(--cta); }
.pros-cons .cons h3 { color: #b91c1c; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li { padding: 6px 0 6px 22px; position: relative; font-size: .95rem; }
.pros-cons .pros li::before { content: '✓'; position: absolute; left: 0; color: var(--cta); font-weight: 700; }
.pros-cons .cons li::before { content: '×'; position: absolute; left: 0; color: #b91c1c; font-weight: 700; font-size: 1.2rem; line-height: 1; }

/* ============ STAT STRIP ============ */
.stat-strip { background: var(--navy-dark); color: var(--white); padding: 42px 0; margin: 40px 0; text-align: center; }
.stat-strip-grid { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-strip-item { padding: 0 12px; }
.stat-strip-num { font-family: 'IBM Plex Sans', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--cta); display: block; line-height: 1; }
.stat-strip-lbl { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; display: block; }

/* ============ KEY-FACTS ============ */
.key-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin: 28px 0; }
.key-fact { background: var(--white); padding: 22px; border-radius: 6px; border-top: 3px solid var(--cta); border-left: 1px solid var(--border-light); border-right: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.key-fact-label { font-family: 'IBM Plex Sans', sans-serif; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 6px; }
.key-fact-value { font-family: 'IBM Plex Sans', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy-dark); line-height: 1.2; margin-bottom: 6px; }
.key-fact-meta { font-size: .85rem; color: var(--text); line-height: 1.45; }

/* ============ NUMBERED LIST ============ */
.num-list { list-style: none; counter-reset: step; padding: 0; margin: 28px 0; }
.num-list li { counter-increment: step; position: relative; padding: 16px 18px 16px 64px; margin-bottom: 12px; background: var(--white); border-radius: 4px; border: 1px solid var(--border-light); border-left: 3px solid var(--cta); }
.num-list li::before { content: counter(step); position: absolute; left: 14px; top: 16px; width: 36px; height: 36px; background: var(--cta); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.num-list li strong { display: block; color: var(--navy-dark); font-size: 1rem; margin-bottom: 4px; }

/* ============ HEADER CTA GROUP — Pay my loan + Log in (mirror original) ============ */
.header-cta-group { display: flex; gap: 12px; align-items: center; }
.header-cta-outline { display: inline-block !important; padding: 10px 22px; background: #ffffff; border: 2px solid var(--cta); color: var(--cta) !important; border-radius: 4px; text-decoration: none !important; font-weight: 700; font-size: .92rem; transition: all .2s; white-space: nowrap; line-height: 1; }
.header-cta-outline:hover { background: var(--cta); color: #ffffff !important; }
.header-cta-solid { display: inline-block !important; padding: 12px 28px; background: var(--cta); border: 2px solid var(--cta); color: #ffffff !important; border-radius: 4px; text-decoration: none !important; font-weight: 700; font-size: .92rem; transition: all .2s; white-space: nowrap; line-height: 1; }
.header-cta-solid:hover { background: var(--cta-dark); border-color: var(--cta-dark); color: #ffffff !important; }
@media (max-width: 900px) {
  .header-cta-outline { display: none; }
}

/* ============ RATE STRIP — 4-up cards (mirror original "Special offers and great rates") ============ */
.rates-section { margin: 50px 0; }
.section-eyebrow { color: var(--cta); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; }
.rate-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 28px 0 16px; }
.rate-strip-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 26px 22px; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; position: relative; display: block; }
.rate-strip-card:hover { box-shadow: 0 4px 18px rgba(19,15,38,0.1); transform: translateY(-2px); }
.rate-strip-card::after { content: '›'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--cta); font-size: 1.6rem; }
.rate-strip-title { font-weight: 700; color: var(--navy-dark); font-size: 1.05rem; margin: 0 0 14px; }
.rate-strip-sub { color: var(--text-muted); font-style: italic; font-size: .85rem; margin: 0 0 4px; }
.rate-strip-num { font-size: 2.4rem; font-weight: 700; color: var(--cta); margin: 0; line-height: 1.1; }
.rate-strip-pct { font-size: 1.4rem; }
.rate-strip-unit { font-size: .65rem; vertical-align: top; color: var(--accent-blue); margin-left: 2px; }
.see-all-rates { text-align: right; margin: 0 0 28px; }
.see-all-rates a { color: var(--cta); font-weight: 700; text-decoration: none; }
.see-all-rates a:hover { text-decoration: underline; }

/* ============ PROMO GRID — 3-up cards (mirror original bottom row) ============ */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 22px 0; }
.promo-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 32px 26px; text-align: center; transition: box-shadow .2s; }
.promo-card:hover { box-shadow: 0 4px 18px rgba(19,15,38,0.1); }
.promo-card-icon { width: 80px; height: 80px; margin: 0 auto 18px; border-radius: 50%; overflow: hidden; background: var(--bg); }
.promo-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.promo-card h3 { margin: 0 0 12px; color: var(--navy-dark); font-size: 1.15rem; }
.promo-card p { color: var(--text-muted); font-size: .92rem; margin: 0 0 18px; min-height: 60px; }
.promo-btn { display: inline-block; padding: 10px 24px; background: #fff; border: 2px solid var(--cta); color: var(--cta); border-radius: 4px; text-decoration: none; font-weight: 700; font-size: .9rem; transition: all .2s; }
.promo-btn:hover { background: var(--cta); color: #fff; }

@media (max-width: 1024px) {
  .rate-strip { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rate-strip { grid-template-columns: 1fr; }
}

/* ============ FEATURED PRODUCT CARDS (cx-featured-product style) ============ */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 40px 0; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s; }
.feature-card:hover { box-shadow: 0 4px 16px rgba(19,15,38,0.1); }
.feature-card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg); }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card-body { padding: 22px; }
.feature-card h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--navy-dark); }
.feature-card p { color: var(--text-muted); font-size: .92rem; margin: 0 0 12px; }
.feature-card a.feature-link { color: var(--cta); font-weight: 700; font-size: .88rem; }
.feature-card a.feature-link::after { content: ' →'; color: var(--accent-blue); }

/* ============ COPILOT BLOCK ============ */
.copilot-block { margin: 40px 0; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 30px; border-left: 4px solid var(--cta); }
.copilot-block h2 { margin-top: 0; color: var(--navy-dark); }
.copilot-block .overview { font-size: 1.02rem; color: var(--text); margin-bottom: 18px; line-height: 1.65; }
.copilot-block ul { padding-left: 22px; margin: 0; }
.copilot-block li { margin-bottom: 8px; line-height: 1.55; color: var(--text); }
.copilot-block li strong { color: var(--navy-dark); }

/* ============ PAA BLOCK ============ */
.paa-block { background: var(--white); border-radius: 6px; padding: 30px; margin: 36px 0; border: 1px solid var(--border); }
.paa-block h2 { margin-top: 0; color: var(--navy-dark); }
.paa-block h3 { font-size: 1.02rem; color: var(--cta); margin-top: 18px; }
.paa-block h3:first-of-type { margin-top: 12px; }
.paa-block p { margin: 4px 0 0; color: var(--text); font-size: .94rem; }

/* ============ FAQ 3-COL GRID (anti-fingerprint vs AFCU 2-col) ============ */
.faq-section { background: var(--bg); padding: 48px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: 24px; }
.faq-card { background: var(--white); border-radius: 6px; padding: 22px; border: 1px solid var(--border); transition: border-color 0.2s; }
.faq-card:hover { border-color: var(--cta); }
.faq-card-icon { width: 36px; height: 36px; background: rgba(0,114,204,0.1); color: var(--cta); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px; }
.faq-card h3 { font-size: 1rem; color: var(--navy-dark); margin: 0 0 6px; }
.faq-card p { font-size: .92rem; color: var(--text); margin: 0; line-height: 1.5; }

/* ============ FOOTER 3-col with newsletter ============ */
.site-footer { background: var(--navy-dark); color: #c8d2e0; padding: 50px 0 20px; }
.footer-grid { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand-col h3 { color: var(--white); font-family: 'IBM Plex Sans', sans-serif; font-size: 1.25rem; margin: 0 0 12px; }
.footer-brand-col p { font-size: .88rem; line-height: 1.55; color: #8c9ab5; margin-bottom: 12px; }
.footer-brand-col .footer-disclaimer { font-size: .76rem; color: #7a8aa3; margin-top: 18px; line-height: 1.5; }
.footer-col h4 { color: var(--white); font-family: 'IBM Plex Sans', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { color: #c8d2e0; font-size: .87rem; font-weight: 400; }
.footer-col a:hover { color: var(--cta); text-decoration: none; }
.footer-newsletter input { width: 100%; padding: 10px 14px; border-radius: 4px; border: 1px solid #2a2541; background: rgba(255,255,255,0.05); color: var(--white); font-size: .9rem; margin-bottom: 10px; }
.footer-newsletter input::placeholder { color: #7a8aa3; }
.footer-newsletter button { background: var(--cta); color: var(--white); padding: 10px 20px; border: 0; border-radius: 4px; font-weight: 600; cursor: pointer; width: 100%; }
.footer-bottom { max-width: var(--max-content); margin: 36px auto 0; padding: 18px 24px 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: .78rem; color: #7a8aa3; }

/* ============ BREADCRUMBS (mobile-visible) ============ */
.breadcrumb-nav { padding: 12px 0; font-size: .9rem; color: var(--text-muted); background: var(--bg); border-bottom: 1px solid var(--border-light); }
.breadcrumb-nav .container { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }
.breadcrumb-list { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb-list li { display: inline-flex; align-items: center; }
.breadcrumb-list li a { color: var(--text-muted); }
.breadcrumb-list li a:hover { color: var(--cta); }
.breadcrumb-list li:not(:last-child)::after { content: "\203A"; margin-left: 8px; color: var(--text-muted); }
.breadcrumb-list li[aria-current="page"] { color: var(--navy-dark); font-weight: 500; }

/* ============ GEO LAYER-1 (AI-citation-ready Top-N block) ============ */
.geo-layer-1 { margin: 24px 0 28px; padding: 20px 24px; background: #f8faf9; border-left: 4px solid var(--cta); border-radius: 4px; }
.geo-layer-1 .lead-def { margin-bottom: 12px; font-size: 1.05rem; }
.geo-layer-1 .top-n-list { margin: 0; padding-left: 22px; }
.geo-layer-1 .top-n-list li { margin-bottom: 8px; line-height: 1.55; }
.geo-layer-1 .top-n-list li strong { color: var(--navy-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 48px 24px; }
  .hero-photo { min-height: 247px; height: 247px; aspect-ratio: 900 / 540; }
  .hero-photo img { width: 100% !important; height: 247px !important; }
  .hero-title { font-size: 2rem; }
  .compare-table { font-size: .9rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .util-bar-inner { flex-wrap: wrap; }
  .main-nav { display: none; }
  .hero-title { font-size: 1.7rem; }
  .feature-cards { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) and (min-width: 641px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
