/* ============================================================
   WITCO Credit Union — SHARED STYLESHEET
   Design System v3 — 100% Wix Light Plan Compatible
   ============================================================

   Wix Light Plan compatibility notes:
   ✓ No @keyframes animations (removed pulse, bounce)
   ✓ No CSS animation/transition on pseudo-elements
   ✓ No backdrop-filter (replaced with solid backgrounds)
   ✓ No CSS filter on images (removed drop-shadow, brightness)
   ✓ No ::before/::after for layout or decoration
   ✓ No JavaScript
   ✓ No <details>/<summary> HTML elements
   ✓ Hover effects use colour/shadow/border changes only
     (replicable with Wix Hover Box widget)
   ✓ Multi-column layouts (max 4 cols — within Wix limits)
   ✓ Background gradients (Wix strips support these)
   ✓ Google Fonts (Inter & Playfair Display in Wix library)
   ============================================================ */

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

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:       #0D1B4B;
  --navy-mid:   #1A237E;
  --blue:       #1565C0;
  --blue-light: #1E88E5;
  --sky:        #BBDEFB;
  --sky-light:  #E8F4FD;
  --gold:       #FFB300;
  --gold-light: #FFC107;
  --white:      #FFFFFF;
  --off-white:  #EBF5FF;
  --surface:    #DBEAFE;
  --text:       #0D1B4B;
  --muted:      #4B6A8B;
  --border:     #BFDBFE;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 3px rgba(13,27,75,.08), 0 1px 2px rgba(13,27,75,.05);
  --shadow-md:  0 4px 16px rgba(13,27,75,.12);
  --shadow-lg:  0 12px 40px rgba(13,27,75,.16);
  --transition: all .25s ease;
  --max-w:      1200px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* Tag label — dashes are typed directly in HTML text, not injected via CSS */
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.heading-xl {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.heading-lg {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
}
.heading-md { font-size: 1.2rem; font-weight: 700; line-height: 1.4; }
.body-lg { font-size: 1.1rem; line-height: 1.75; color: var(--muted); }
.body-md { font-size: .95rem; line-height: 1.7; color: var(--muted); }

/* ── BUTTONS ────────────────────────────────────────────── */
/* All hover effects use colour/shadow changes — replicable with Wix Button hover states */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(255,179,0,.4);
}
/* No backdrop-filter — solid semi-transparent background instead */
.btn-outline {
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.25);
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(13,27,75,.35);
}
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 24px rgba(21,101,192,.35);
}
.btn-ghost {
  color: var(--blue);
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { color: var(--navy); }

/* ── NAVBAR ─────────────────────────────────────────────── */
/* Always solid — Wix "Fix to Top" header is always fully opaque.
   No JavaScript scroll-toggle needed or possible on Light plan. */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,75,.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
/* No CSS filter — image uploaded and displayed as-is in Wix */
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { color: var(--white); }
.nav-logo-text strong { display: block; font-size: 1rem; font-weight: 800; line-height: 1; letter-spacing: -.01em; }
.nav-logo-text span   { font-size: .67rem; font-weight: 400; opacity: .6; letter-spacing: .05em; text-transform: uppercase; }

/* Nav link hover: colour change only — replicable via Wix menu hover settings */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); border-bottom-color: var(--gold); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── HERO ───────────────────────────────────────────────── */
/* Background gradient overlay on image — fully supported in Wix strip settings */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,27,75,.93) 0%, rgba(21,101,192,.78) 60%, rgba(30,136,229,.6) 100%),
    url('https://images.unsplash.com/photo-1560472355-536de3962603?w=1800&q=80') center/cover no-repeat;
}
.hero-content { padding-top: 100px; max-width: 680px; }

/* Hero badge — no animated dot, just a static pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,179,0,.2);
  border: 1px solid rgba(255,179,0,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
/* Static gold dot — no animation (Wix cannot run @keyframes) */
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero .display { color: var(--white); margin-bottom: 24px; }
.hero .display em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 12px; max-width: 520px; }
.hero-tagline { font-size: .92rem; font-style: italic; color: var(--sky); margin-bottom: 36px; letter-spacing: .03em; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.stat-item { padding: 28px 32px; background: var(--navy); text-align: center; }
.stat-number { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .08em; text-transform: uppercase; }

/* ── INTRO SPLIT ────────────────────────────────────────── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-visual { position: relative; }
.intro-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); }

/* Overlapping badge — position absolute is fully supported in Wix (elements can overlap) */
.intro-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}
.intro-img-badge strong { display: block; font-size: 2rem; line-height: 1; }
.intro-img-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.intro-content { padding-right: 20px; }
.intro-content .display { color: var(--navy); margin-bottom: 20px; }

/* Blockquote — blue left border, solid background */
.mission-callout {
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-mid);
  font-style: italic;
}
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: .95rem; font-weight: 500; }
.check-icon {
  width: 22px; height: 22px;
  background: rgba(21,101,192,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: .65rem;
}

/* ── PRODUCTS GRID ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }

/* Product card — border-top replaces ::before animated bar.
   Wix Hover Box: set border-top to transparent in Default state,
   var(--blue) in Hover state.  */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  border-top-color: var(--blue);
}
.product-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  border-top: 4px solid var(--gold);
  color: var(--white);
}
.product-card.featured:hover { box-shadow: var(--shadow-lg); }

.product-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.product-card.featured .product-icon { background: rgba(255,255,255,.1); }
.product-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.product-card.featured h3 { color: var(--white); }
.product-card p { font-size: .9rem; line-height: 1.7; color: var(--muted); margin-bottom: 28px; }
.product-card.featured p { color: rgba(255,255,255,.65); }
.product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.product-feature { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; }
.product-card.featured .product-feature { color: rgba(255,255,255,.8); }
.dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.product-card.featured .btn-ghost { color: var(--gold); }

/* ── WHY WITCO ──────────────────────────────────────────── */
.why-section { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); }
.why-number { font-size: 3rem; font-weight: 900; color: var(--surface); line-height: 1; margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── CTA BAND ───────────────────────────────────────────── */
/* No ::before watermark text — gradient background only (Wix strip gradient) */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { color: var(--white); max-width: 560px; }
.cta-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* ── INFO BAND ──────────────────────────────────────────── */
.info-band { background: var(--navy); padding: 48px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.07); }
.info-item { padding: 32px 36px; background: var(--navy); }
.info-icon { font-size: 1.5rem; margin-bottom: 12px; opacity: .7; }
.info-item h4 { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.info-item p, .info-item a { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.info-item a:hover { color: var(--gold); }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); }
.blog-img {
  height: 200px;
  background: linear-gradient(135deg, var(--surface), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: .78rem; color: var(--muted); margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.blog-meta-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); line-height: 1.45; }
.blog-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: #070E26; color: rgba(255,255,255,.6); }
.footer-main { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
/* No CSS filter — image displayed as-is */
.footer-logo-img { height: 64px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; margin-top: 4px; }
.footer-tagline { font-style: italic; font-size: .85rem; color: var(--sky); margin-bottom: 12px; }
.footer-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }
.regulated-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .75rem;
}
.regulated-badge span { color: var(--gold); font-size: .9rem; }

/* ── PAGE HEADERS ───────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 160px 0 80px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .4; }

/* ── PRODUCTS PAGE DETAIL ───────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.product-detail:last-child { border-bottom: none; }

/* Reversed columns: Wix equivalent is dragging columns into the desired order.
   Using flex row-reverse here so HTML source order stays mobile-friendly. */
.product-detail.reverse { display: flex; flex-direction: row-reverse; gap: 72px; align-items: center; }
.product-detail.reverse > * { min-width: 0; flex: 1; }

.product-detail-visual {
  height: 380px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.product-detail-visual.mortgage { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.product-detail-visual.loan     { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.product-detail-visual.edu      { background: linear-gradient(135deg, #4A148C, #7B1FA2); }

/* Badge — solid semi-transparent background (no backdrop-filter) */
.detail-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
}
.detail-badge strong { display: block; font-size: 1.6rem; font-weight: 900; margin-bottom: 2px; }
.detail-content h2 { color: var(--navy); margin-bottom: 16px; }
.detail-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.feature-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 500;
  border: 1px solid var(--border);
}
.feature-chip .dot { background: var(--blue); }

/* ── ABOUT — TIMELINE ───────────────────────────────────── */
/* Timeline line is a real <div class="timeline-line"> element —
   no ::before pseudo-element (not supported in Wix) */
.timeline { position: relative; padding-left: 32px; }
.timeline-line {
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -39px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}
.timeline-year { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.timeline-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-item p { font-size: .9rem; color: var(--muted); line-height: 1.65; }

.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.board-card {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: var(--transition); background: var(--white);
}
.board-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); }
.board-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 16px;
  color: var(--white); font-weight: 700;
}
.board-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.board-card p { font-size: .8rem; color: var(--muted); }

/* ── JOIN PAGE ──────────────────────────────────────────── */
.join-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.join-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .78rem; color: var(--muted); margin-top: 6px; }
.step-indicators { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem;
}
.step-body h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: .88rem; color: var(--muted); }
.eligibility-box {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 28px; margin-top: 32px; border: 1px solid var(--border);
}
.eligibility-box h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl); padding: 48px; color: var(--white);
}
.contact-info-card h2 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.6); margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,179,0,.15); border: 1px solid rgba(255,179,0,.25);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.contact-item a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.6); }
.hours-row strong { color: rgba(255,255,255,.85); }
.map-placeholder {
  height: 240px; background: rgba(255,255,255,.06);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: .85rem; margin-top: 32px;
  border: 1px dashed rgba(255,255,255,.15); text-align: center; flex-direction: column; gap: 8px;
}
.contact-form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px;
}
.contact-form-card h2 { color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 32px; font-size: .95rem; }

/* ── ACCORDION (replaces <details> — matches Wix Accordion widget output) ── */
/* In Wix: Add Elements → Interactive → Accordion */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.accordion-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; background: var(--white);
  font-weight: 700; color: var(--navy); font-size: .95rem;
  cursor: pointer; text-align: left; font-family: inherit;
  border: none; gap: 12px;
}
.accordion-header:hover { background: var(--off-white); }
.accordion-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--surface); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--blue); font-weight: 700;
  transition: var(--transition);
}
.accordion-item.open .accordion-icon { background: var(--blue); color: var(--white); }
.accordion-body {
  padding: 0 24px 18px;
  font-size: .9rem; color: var(--muted); line-height: 1.65;
  display: none;
}
.accordion-item.open .accordion-body { display: block; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-split, .join-split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-content { padding-right: 0; }
  .intro-img-main { height: 360px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail, .product-detail.reverse { grid-template-columns: 1fr; flex-direction: column; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { width: 100%; justify-content: center; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .join-form-card { padding: 28px; }
  .contact-info-card { padding: 32px; }
  .contact-form-card { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .nav-logo-img { height: 40px; }
  .nav-logo-text strong { font-size: .88rem; }
}
