/* =====================================================
   COREADDONS.COM — GLOBAL STYLESHEET
   Brand: Navy #043599 | Gold #ddb464 | Blue #0158ff
   Fonts: Poppins (headings) + Sora (body)
   ===================================================== */


/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #043599;
  --navy-dark:  #022470;
  --navy-light: #0a4bbf;
  --gold:       #ddb464;
  --gold-light: #f9b73d;
  --blue:       #0158ff;
  --blue-light: #3e8dff;
  --white:      #ffffff;
  --off-white:  #f8f9ff;
  --light-blue: #e2e7fa;
  --text-dark:  #1a1f36;
  --text-mid:   #4a5468;
  --text-light: #8a94a6;
  --border:     #e4e9f2;
  --shadow-sm:  0 2px 8px rgba(4,53,153,0.08);
  --shadow-md:  0 4px 20px rgba(4,53,153,0.12);
  --shadow-lg:  0 8px 40px rgba(4,53,153,0.16);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: 0.22s ease;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Sora', sans-serif;
  --max-width:  1240px;
  --header-h:   72px;
  --header-top-h: 30px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); line-height: 1.75; }
a  { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark); border-color: var(--navy-dark);
  color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  color: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white); transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; font-family: var(--font-head);
  letter-spacing: 0.03em;
}
.badge-gold    { background: var(--gold); color: var(--navy); }
.badge-navy    { background: var(--navy); color: var(--white); }
.badge-blue    { background: var(--light-blue); color: var(--navy); }
.badge-sale    { background: #e53e3e; color: white; }

/* ── STARS ── */
.stars { display: flex; align-items: center; gap: 3px; }
.star { color: var(--gold); font-size: 0.9rem; }
.stars-text { font-size: 0.85rem; color: var(--text-mid); margin-left: 6px; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: relative; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

/* Top utility bar */
.header-top {
  background: var(--navy);
  padding: 7px 0;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center;
}
.header-top a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.header-top a:hover { color: var(--gold); }
.header-top-left { display: flex; align-items: center; gap: 20px; }
.header-top-right { display: flex; align-items: center; gap: 16px; }
.header-top-divider { color: rgba(255,255,255,0.3); }

/* Main nav bar */
.header-main {
  padding: 0;
  height: var(--header-h);
}
.header-main .container {
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.site-logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.site-logo svg { height: 38px; width: auto; max-width: 180px; display: block; }

/* Search */
.header-search {
  flex: 1; max-width: 380px;
  display: flex; align-items: center;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden; transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--navy); }
.header-search input {
  flex: 1; border: none; background: none; padding: 10px 14px;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--text-dark);
  outline: none;
}
.header-search input::placeholder { color: var(--text-light); }
.header-search button {
  background: var(--navy); border: none; padding: 10px 16px;
  cursor: pointer; color: white; font-size: 0.9rem;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--navy-dark); }

/* Nav links */
.header-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header-nav a {
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  font-family: var(--font-head); color: var(--text-dark); border-radius: 6px;
  transition: all var(--transition); white-space: nowrap;
}
.header-nav a:hover { color: var(--navy); background: var(--light-blue); }
.header-nav a.active { color: var(--navy); font-weight: 600; }

/* Cart icon */
.header-cart {
  position: relative; display: flex; align-items: center;
  padding: 8px 12px; border-radius: 8px; border: 1.5px solid var(--border);
  cursor: pointer; transition: all var(--transition); color: var(--text-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; gap: 7px;
}
.header-cart:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }
.cart-count {
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 700; font-family: var(--font-head);
  padding: 1px 6px; border-radius: 10px; min-width: 18px; text-align: center;
}

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a5cd8 100%);
  padding: 90px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(221,180,100,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-content { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(221,180,100,0.15); border: 1px solid rgba(221,180,100,0.3);
  padding: 6px 14px; border-radius: 20px; font-size: 0.82rem;
  font-family: var(--font-head); font-weight: 500; color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  color: white; margin-bottom: 20px; font-size: clamp(2.2rem,4.5vw,3.2rem);
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.82); font-size: 1.05rem;
  margin-bottom: 32px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: var(--gold);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* Hero illustration placeholder */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-mockup {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px; width: 100%; max-width: 440px;
  backdrop-filter: blur(10px);
}
.hero-mockup-bar {
  display: flex; gap: 6px; margin-bottom: 20px;
}
.hero-mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-mockup-dot:nth-child(1) { background: #ff5f57; }
.hero-mockup-dot:nth-child(2) { background: #febc2e; }
.hero-mockup-dot:nth-child(3) { background: #28c840; }
.hero-mockup-url {
  background: rgba(255,255,255,0.08); border-radius: 6px;
  padding: 6px 14px; color: rgba(255,255,255,0.5);
  font-size: 0.78rem; flex: 1; margin-left: 10px;
  display: flex; align-items: center;
}
.plugin-card-mini {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
}
.plugin-card-mini:last-child { margin-bottom: 0; }
.plugin-icon-mini {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; font-family: var(--font-head);
  color: var(--navy); flex-shrink: 0; letter-spacing: 0; text-align: center;
}
.plugin-mini-name {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  color: white; margin-bottom: 3px;
}
.plugin-mini-price {
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
}
.plugin-mini-stars { display: flex; gap: 2px; margin-top: 4px; }
.plugin-mini-stars span { color: var(--gold); font-size: 0.7rem; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--off-white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 40px 0;
}
.stats-bar .container {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: 0 48px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.02rem; }
.section-header .section-line {
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  margin: 16px auto 0;
}

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--navy);
}
.product-card:hover {
  border-color: var(--navy); border-top-color: var(--gold);
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-category-link {
  font-size: 0.75rem; font-weight: 600; color: var(--blue);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px; display: block;
}
.product-card h3 {
  font-size: 1rem; margin-bottom: 8px; line-height: 1.35;
  transition: color var(--transition);
}
.product-card:hover h3 { color: var(--navy); }
.product-rating {
  display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.rating-num { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.rating-count { font-size: 0.78rem; color: var(--text-light); }
.product-excerpt {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.6;
  flex: 1; margin-bottom: 16px;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-price .price-monthly {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: var(--navy);
}
.product-price .price-annual {
  font-size: 0.75rem; color: var(--text-light); display: block; margin-top: 1px;
}

/* Product icon placeholder */
.plugin-icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: linear-gradient(135deg, var(--navy) 0%, var(--blue-light) 100%);
  flex-shrink: 0;
}
.plugin-icon.gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.plugin-icon.blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%); }
.plugin-icon.teal { background: linear-gradient(135deg, #0a8f72 0%, #14c99d 100%); }
.plugin-icon.purple { background: linear-gradient(135deg, #6c2eb9 0%, #9b59e8 100%); }
.plugin-icon.red { background: linear-gradient(135deg, #c7261c 0%, #f05e54 100%); }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1.5px solid transparent;
}
.why-card:hover {
  border-color: var(--navy); box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head); font-weight: 900; font-size: 0.92rem;
  color: var(--gold); letter-spacing: -0.01em;
}
.why-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.why-card p { font-size: 0.9rem; }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  border-radius: var(--radius-lg); padding: 36px 28px;
  background: var(--white); border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  font-family: var(--font-head); font-weight: 900; font-size: 0.92rem;
  color: var(--gold); letter-spacing: -0.01em;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }

/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners-section { background: var(--off-white); padding: 50px 0; }
.partners-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.partner-logo {
  padding: 14px 28px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.92rem;
  color: var(--text-mid); transition: all var(--transition); display: flex;
  align-items: center; gap: 8px; text-decoration: none;
}
.partner-logo:hover {
  border-color: var(--navy); color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-main { padding: 70px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p {
  color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.75;
  margin: 16px 0 24px;
}
.footer-payment { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.payment-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px; border-radius: 6px; font-size: 0.8rem;
  font-family: var(--font-head); font-weight: 600; color: rgba(255,255,255,0.8);
}
.footer-col h4 {
  color: white; font-family: var(--font-head); font-size: 0.92rem;
  font-weight: 700; margin-bottom: 18px; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--gold); }


/* =====================================================
   CATALOG PAGE
   ===================================================== */
.catalog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
}
.catalog-hero .container {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.catalog-hero h1 { color: white; margin-bottom: 12px; }
.catalog-hero p { color: rgba(255,255,255,0.8); max-width: 520px; }
.catalog-search {
  display: flex; background: white; border-radius: var(--radius);
  overflow: hidden; margin-top: 24px; max-width: 440px;
  box-shadow: var(--shadow-md);
}
.catalog-search input {
  flex: 1; border: none; padding: 13px 18px;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.catalog-search button {
  background: var(--gold); border: none; padding: 13px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  color: var(--navy); cursor: pointer; transition: background var(--transition);
}
.catalog-search button:hover { background: var(--gold-light); }

.catalog-filters {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.catalog-filters .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 18px; border-radius: 20px; font-size: 0.83rem;
  font-family: var(--font-head); font-weight: 500; cursor: pointer;
  border: 1.5px solid var(--border); background: white;
  color: var(--text-mid); transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--navy); background: var(--navy); color: white;
}
.catalog-sort select {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 14px; font-family: var(--font-body); font-size: 0.85rem;
  color: var(--text-mid); background: white; cursor: pointer; outline: none;
}
.catalog-count { font-size: 0.85rem; color: var(--text-light); }

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */
.product-hero { padding: 50px 0 0; }
.product-hero .container { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }

/* At-a-Glance panel (replaces gallery) */
.product-glance {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.product-glance-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
  color: var(--gold); letter-spacing: -0.02em;
}
.product-glance-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-glance-sub {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.product-glance-meta {
  text-align: left;
  margin-bottom: 18px;
}
.glance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.81rem;
  gap: 10px;
}
.glance-row:last-child { border-bottom: none; }
.glance-row span { color: var(--text-mid); flex-shrink: 0; }
.glance-row strong { color: var(--text-dark); font-family: var(--font-head); font-weight: 600; text-align: right; }
.glance-tags {
  display: flex; flex-wrap: wrap; gap: 7px; justify-content: center;
}
.glance-tags span {
  background: var(--light-blue); color: var(--navy);
  font-size: 0.7rem; font-family: var(--font-head); font-weight: 600;
  padding: 4px 11px; border-radius: 20px;
}


.product-breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem;
  color: var(--text-light); margin-bottom: 14px;
}
.product-breadcrumb a { color: var(--blue); }
.product-breadcrumb span { color: var(--text-light); }
.product-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.product-review-bar {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.product-review-link {
  font-size: 0.85rem; color: var(--blue); text-decoration: underline;
  text-underline-offset: 2px;
}
.product-short-desc {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 20px;
}
.product-features-list { list-style: none; margin-bottom: 24px; }
.product-features-list li {
  padding: 5px 0; font-size: 0.88rem; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 10px;
}
.product-features-list li::before {
  content: '✓'; color: var(--navy); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.product-features-list li strong { color: var(--text-dark); }

/* Pricing tiers - Tab switcher style matching reference design */
.pricing-tiers { margin: 24px 0; }
.pricing-label {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mid);
  margin-bottom: 12px;
}

/* Tab row at top */
.tiers-grid {
  display: flex;
  gap: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  border: 2px solid var(--border);
  border-bottom: none;
  background: white;
}
.tier-card {
  flex: 1;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-align: center;
  background: white;
}
.tier-card:last-child { border-right: none; }
.tier-card:hover { background: var(--off-white); }
.tier-card.selected {
  background: white;
  box-shadow: inset 0 -3px 0 0 var(--navy);
}

/* Popular badge — red ribbon top-right like screenshot */
.tier-popular-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #e53e3e;
  color: white;
  font-size: 0.68rem;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 var(--radius) 0 var(--radius);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.tier-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.tier-save {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 700;
  font-family: var(--font-head);
  margin-top: 3px;
}
/* Hide per-card prices in tab view — price shown below in the big display */
.tier-price { display: none; }
.tier-billing { display: none; }

/* Big price display area below tabs */
.pricing-display {
  border: 2px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 28px 24px 24px;
  background: white;
  margin-bottom: 16px;
}
.pricing-display-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-display-price span { font-size: 1.6rem; font-weight: 700; }
.pricing-display-billing {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.pricing-display-billing strong { color: var(--text-dark); }
.pricing-display-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.pricing-includes-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pricing-includes-list { list-style: none; margin: 0 0 20px; }
.pricing-includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pricing-includes-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.pricing-display-divider2 {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 20px;
}
.guarantee-strip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.guarantee-shield {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  flex-shrink: 0;
}
.guarantee-text-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.guarantee-text-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.buy-now-btn { margin-top: 16px; }
.product-includes {
  margin-top: 14px; padding: 14px 16px;
  background: var(--off-white); border-radius: var(--radius);
}
.product-includes p {
  font-size: 0.82rem; color: var(--text-mid); margin: 0;
  display: flex; align-items: center; gap: 8px;
}
.product-includes p::before { content: '✓'; color: var(--navy); font-weight: 700; }
.guarantee-box {
  margin-top: 16px; padding: 14px 18px;
  background: linear-gradient(135deg, #e8f5e9, #f0fff4);
  border: 1px solid #a7d7ac; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
}
.guarantee-box .icon { font-size: 1.6rem; }
.guarantee-box p {
  font-size: 0.83rem; color: #166534; margin: 0; font-weight: 500;
}

/* Product tabs */
.product-tabs {
  border-bottom: 2px solid var(--border); margin-top: 60px;
  display: flex; gap: 0; overflow-x: auto;
}
.product-tab {
  padding: 14px 24px; font-family: var(--font-head); font-size: 0.88rem;
  font-weight: 600; color: var(--text-mid); cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--transition); text-decoration: none; display: block;
}
.product-tab:hover { color: var(--navy); }
.product-tab.active { color: var(--navy); border-bottom-color: var(--navy); }

.product-section { padding: 50px 0; }
.product-section h2 { margin-bottom: 28px; }

/* Feature rows — text only, no image column */
.feature-row {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.feature-row:last-child { border-bottom: none; padding-bottom: 0; }
.feature-row.reverse { direction: ltr; }
.feature-text h3 {
  font-size: 1.25rem; margin-bottom: 14px;
  color: var(--navy); position: relative; padding-left: 18px;
}
.feature-text h3::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px; background: var(--gold); border-radius: 2px;
}
.feature-text p { font-size: 0.92rem; margin-bottom: 14px; }
.feature-text .note {
  font-size: 0.82rem; padding: 10px 14px;
  background: var(--light-blue); border-radius: 6px; color: var(--navy);
}

/* Tech compatibility */
.tech-table { width: 100%; border-collapse: collapse; }
.tech-table tr { border-bottom: 1px solid var(--border); }
.tech-table td {
  padding: 13px 0; font-size: 0.9rem;
}
.tech-table td:first-child { color: var(--text-mid); width: 220px; font-weight: 500; }
.tech-table td:last-child { color: var(--text-dark); font-weight: 600; }

/* FAQs */
.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.faq-question {
  font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question::after {
  content: '+'; font-size: 1.3rem; color: var(--navy); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding-top: 12px; font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.75; display: none;
}
.faq-item.open .faq-answer { display: block; }

/* Reviews */
.reviews-summary {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center;
}
.reviews-overall { text-align: center; }
.reviews-overall .big-score {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.reviews-overall .big-stars { justify-content: center; margin: 8px 0; }
.reviews-overall p { font-size: 0.82rem; color: var(--text-light); }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rating-bar-label { font-size: 0.82rem; color: var(--text-mid); width: 28px; text-align: right; }
.rating-bar-track {
  flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden;
}
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar-pct { font-size: 0.78rem; color: var(--text-light); width: 36px; }

.review-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; margin-bottom: 16px;
}
.review-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: white;
  flex-shrink: 0;
}
.review-meta-name { font-weight: 600; font-size: 0.9rem; font-family: var(--font-head); }
.review-meta-date { font-size: 0.78rem; color: var(--text-light); }
.review-title { font-weight: 600; margin-bottom: 6px; font-family: var(--font-head); font-size: 0.92rem; }
.review-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* =====================================================
   BUNDLES PAGE
   ===================================================== */
.bundles-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
}
.bundles-hero .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.bundles-hero h1 { color: white; margin-bottom: 14px; }
.bundles-hero p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.bundles-hero-ctas { display: flex; gap: 14px; }
.bundle-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.bundle-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: rgba(255,255,255,0.75);
}
.bundle-trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

.bundle-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.bundle-card:hover {
  border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.bundle-card-img {
  aspect-ratio: 16/9; background: linear-gradient(135deg, var(--light-blue) 0%, #c8d8f8 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.bundle-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bundle-card h3 { font-size: 1rem; margin-bottom: 10px; }
.bundle-card p { font-size: 0.85rem; color: var(--text-mid); flex: 1; margin-bottom: 18px; }
.bundle-includes-count {
  font-size: 0.78rem; color: var(--blue); font-weight: 600;
  font-family: var(--font-head); margin-bottom: 14px;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0; text-align: center;
}
.about-hero h1 { color: white; margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.about-section { padding: 80px 0; }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-section.reverse .container { direction: rtl; }
.about-section.reverse .container > * { direction: ltr; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }
.about-content ul { padding-left: 20px; color: var(--text-mid); }
.about-content ul li { margin-bottom: 8px; font-size: 0.92rem; }
.about-img-block {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--light-blue); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.mission-section {
  background: var(--navy); padding: 80px 0; text-align: center;
}
.mission-section h2 { color: white; margin-bottom: 16px; }
.mission-section p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.mission-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px;
}
.mission-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px; text-align: center;
}
.mission-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head); font-weight: 900; font-size: 0.92rem;
  color: var(--gold);
}
.mission-card h4 { color: white; font-size: 1rem; margin-bottom: 8px; }
.mission-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0; text-align: center;
}
.contact-hero h1 { color: white; margin-bottom: 12px; }
.contact-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }
.contact-section { padding: 70px 0; }
.contact-section .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info p { margin-bottom: 24px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--light-blue); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; color: var(--text-light); margin-bottom: 3px; }
.contact-info-value { font-weight: 600; font-size: 0.92rem; font-family: var(--font-head); }
.contact-form-wrap {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-head); color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-dark); background: white; outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
.required { color: #e53e3e; }

/* =====================================================
   DOCUMENTATION PAGE
   ===================================================== */
.docs-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0; text-align: center;
}
.docs-hero h1 { color: white; margin-bottom: 12px; }
.docs-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 28px; }
.docs-search {
  max-width: 500px; margin: 0 auto; display: flex;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.docs-search input {
  flex: 1; border: none; padding: 13px 18px;
  font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.docs-search button {
  background: var(--gold); border: none; padding: 13px 22px;
  font-family: var(--font-head); font-weight: 600;
  color: var(--navy); cursor: pointer;
}
.docs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.doc-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); text-decoration: none; display: block;
}
.doc-card:hover {
  border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.doc-card-icon { display: none; }
.doc-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--text-dark); }
.doc-card p { font-size: 0.85rem; color: var(--text-mid); }
.doc-card-arrow {
  display: inline-block; margin-top: 12px; color: var(--navy);
  font-size: 0.85rem; font-weight: 600; font-family: var(--font-head);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-hero {
  background: var(--off-white); border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.legal-hero h1 { margin-bottom: 10px; }
.legal-hero p { color: var(--text-mid); font-size: 0.9rem; }
.legal-content {
  max-width: 820px; margin: 0 auto; padding: 60px 24px;
}
.legal-content h2 { margin: 40px 0 16px; font-size: 1.3rem; }
.legal-content h3 { margin: 28px 0 12px; font-size: 1.05rem; }
.legal-content p { margin-bottom: 14px; font-size: 0.92rem; }
.legal-content ul { padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; font-size: 0.92rem; color: var(--text-mid); }
.legal-content a { color: var(--blue); text-decoration: underline; }

/* =====================================================
   404 PAGE
   ===================================================== */
.page-404 {
  min-height: 75vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 60px 24px;
}

.page-404-num {
  font-family: var(--font-head); font-size: 8rem; font-weight: 900;
  color: var(--light-blue); line-height: 1; margin-bottom: 10px;
  position: relative;
}
.page-404-num span { color: var(--navy); }
.page-404 h2 { margin-bottom: 14px; }
.page-404 p { margin-bottom: 32px; max-width: 420px; }
.page-404-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-mid); }
.font-head { font-family: var(--font-head); }
.font-bold { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.hidden { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .services-grid, .mission-cards { grid-template-columns: repeat(2,1fr); }
  .docs-grid { grid-template-columns: repeat(2,1fr); }
  .hero .container { gap: 36px; }
  .product-hero .container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; --header-top-h: 0px; }
  .header-top { display: none; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 20px; }
  .stat-item { padding: 0 24px; }
  .stat-number { font-size: 1.6rem; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .catalog-hero .container { grid-template-columns: 1fr; }
  .contact-section .container { grid-template-columns: 1fr; }
  .about-section .container { grid-template-columns: 1fr; }
  .about-section.reverse .container { direction: ltr; }
  .product-hero .container { grid-template-columns: 1fr; }
  .product-glance { position: static; }
  .tiers-grid { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
  .bundles-hero .container { grid-template-columns: 1fr; }
  .page-404-num { font-size: 5rem; }
  .section { padding: 56px 0; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: 0; left: -100%; width: 80%; max-width: 320px;
  height: 100vh; background: white; z-index: 9998;
  box-shadow: var(--shadow-lg); transition: left 0.3s ease;
  overflow-y: auto; padding: 24px;
}
.mobile-nav.open { left: 0; }
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 9997; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none; border: none; font-size: 1.5rem; cursor: pointer;
  color: var(--text-mid); padding: 4px;
}
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--border); }
.mobile-nav-links a {
  display: block; padding: 14px 0; font-family: var(--font-head);
  font-weight: 600; font-size: 0.95rem; color: var(--text-dark);
}
.mobile-nav-links a:hover { color: var(--navy); }
.mobile-nav-footer {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}
.mobile-nav-footer a {
  display: block; padding: 10px 0; font-size: 0.88rem;
  color: var(--text-mid);
}
