/* GondolaShelving.com — Main Theme CSS v2 */
/* Brand: Navy #1a2d4e | Accent #4a7fc1 | DM Serif Display + DM Sans */

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1a3a6b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Design Tokens ────────────────────────────────────────────────── */
:root {
  /* ── Brand colors — matched to Gondola Shelving logo ── */
  --navy:        #1a3a6b;   /* dark G icon */
  --navy-mid:    #1a4a8a;   /* swoosh blue */
  --accent:      #2a5a9a;   /* mid shelf blue */
  --accent-light:#4a7fc1;   /* shelf highlight blue */
  --accent-dark: #163260;   /* hover state */
  --accent-dim:  #e8f0fa;   /* light blue tint */
  --gray-brand:  #8a9ab0;   /* logo gray / Shelving wordmark */
  --slate:       #5a6a80;   /* refined to match logo gray tone */
  --slate-light: #8a9ab0;   /* logo gray */
  --border:      #dde4ee;
  --border-mid:  #c0cce0;
  --surface:     #f5f8fc;   /* very light blue-white */
  --surface2:    #edf2f8;
  --white:       #ffffff;
  --gold:        #c8922a;
  --gold-dim:    #fdf3e3;
  --green:       #16a34a;
  --green-dim:   #dcfce7;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(26,58,107,0.08), 0 1px 2px rgba(26,58,107,0.05);
  --shadow-md:   0 4px 16px rgba(26,58,107,0.10), 0 2px 6px rgba(26,58,107,0.05);
  --shadow-lg:   0 12px 40px rgba(26,58,107,0.12), 0 4px 12px rgba(26,58,107,0.07);
}

/* ── Utility ──────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

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

/* ════════════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
════════════════════════════════════════════════════════════════════ */
.announce-bar {
  background: #1a3a6b;
  color: rgba(255,255,255,0.9);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: 0.01em;
}
.announce-bar strong { color: #fff; font-weight: 600; }
.announce-bar a { color: #93c5fd; text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 9px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  flex-shrink: 0;

}
.logo-icon span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: width 0.2s;
}
.logo-icon span:nth-child(1) { width: 20px; }
.logo-icon span:nth-child(2) { width: 13px; }
.logo-icon span:nth-child(3) { width: 20px; }
.logo:hover .logo-icon span:nth-child(2) { width: 20px; }
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-text span { color: var(--accent); }

/* Real logo image */
.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.15s;
}
.logo:hover .logo-img { opacity: 0.85; }
.logo-img-white {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand .logo-text-fallback {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-item:hover { color: var(--navy); background: var(--surface); }
.nav-item svg { width: 12px; height: 12px; opacity: 0.5; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 1100;
}
/* JS click-toggle adds .is-open (desktop + mobile) */
.nav-dropdown.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: all 0.12s;
}
.nav-dropdown a:hover { background: var(--surface); color: var(--navy); }
.dd-divider { height: 1px; background: var(--border); margin: 4px 6px; }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.btn-ghost {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: inherit;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-primary {
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-dark); }
.cart-btn {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  width: 17px; height: 17px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════
   HERO — full-width store photo background, fade left to white
════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f0f4f8;
}

/* Hero right-side tint — swap for a real store photo when available */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #1F3A5F 0%, #2F6DAE 30%, #c8dcf0 62%, #f0f4f8 100%);
  z-index: 0;
}
/* Fade overlay — white on left, transparent on right */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 38%,
    rgba(255,255,255,0.85) 52%,
    rgba(255,255,255,0.3) 70%,
    rgba(255,255,255,0) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #1a3a6b;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(26,58,107,0.3);
}
.btn-hero-primary:hover {
  background: #163260;
  transform: translateY(-1px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
}
.btn-hero-secondary:hover { border-color: var(--navy); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 500;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Builder panel embedded in hero ─────────────────────────────── */
.hero-builder {
  position: relative;
  z-index: 0;              /* explicitly below site-header (z-index:1000) */
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.14), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 560px;
  margin-top: 32px;        /* keep widget below the nav dropdown zone */
  display: flex;
  flex-direction: column;
}
.hero-builder iframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
}

/* ════════════════════════════════════════════════════════════════════
   BRANDS BAR
════════════════════════════════════════════════════════════════════ */
.brands-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.brand-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
}
.brand-pill:last-child { border-right: none; }
.brand-pill:hover .brand-name { color: var(--accent); }
.brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-mid); }
.brand-pill:nth-child(1) .brand-dot { background: #1a3a6e; }
.brand-pill:nth-child(2) .brand-dot { background: #d4341a; }
.brand-pill:nth-child(3) .brand-dot { background: #2a6e3a; }
.brand-name { font-size: 13px; font-weight: 700; color: var(--slate); letter-spacing: 0.04em; transition: color 0.15s; }
.brand-tag  { font-size: 11px; color: var(--slate-light); }

/* ════════════════════════════════════════════════════════════════════
   VALUE PROPS — clean 3-col with dividers, matching mockup
════════════════════════════════════════════════════════════════════ */
.value-strip {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value-item {
  padding: 8px 40px;
  border-right: 1px solid var(--border);
}
.value-item:first-child { padding-left: 0; }
.value-item:last-child  { border-right: none; padding-right: 0; }
.value-icon-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}
.value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 14px;
}
.value-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
════════════════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════════
   CONFIG CARD — stacked card: header / image / body / footer
════════════════════════════════════════════════════════════════════ */
.config-card {
  border: 1px solid #e2e6ea;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.config-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.config-card__header {
  background: #1a2d4e;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.config-card__image {
  padding: 16px;
  text-align: center;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}
.config-card__image img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
}
.config-card__image--placeholder {
  color: #aab;
  font-size: 32px;
  font-weight: 700;
  font-family: 'DM Serif Display', serif;
}
.config-card__body {
  padding: 12px 14px;
  flex: 1;
  font-size: 13px;
  color: #444;
  text-align: center;
  line-height: 1.5;
}
.config-card__footer {
  padding: 12px 14px;
  text-align: center;
}
.config-card__btn {
  display: inline-block;
  background: #4a7fc1;
  color: #fff;
  padding: 8px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.config-card__btn:hover {
  background: #3a6faf;
  color: #fff;
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════════════
   CATEGORIES
════════════════════════════════════════════════════════════════════ */
.categories {
  padding: 64px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-img {
  aspect-ratio: 4/3;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
}
.cat-img svg { width: 64px; height: 64px; opacity: 0.18; }
.cat-body { padding: 16px; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--slate-light); }
.cat-arrow { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; font-size: 12px; font-weight: 500; color: var(--accent); }

/* ════════════════════════════════════════════════════════════════════
   FEATURED PRODUCTS
════════════════════════════════════════════════════════════════════ */
.products {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.product-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 4px; z-index: 1;
}
.badge-new      { background: var(--accent); color: #fff; }
.badge-popular  { background: var(--gold-dim); color: var(--gold); }
.badge-sale     { background: #fef2f2; color: #dc2626; }
.product-img-placeholder {
  width: 100%; height: 180px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.product-img-placeholder svg { opacity: 0.15; }
.product-body { padding: 16px; }
.product-brand { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 5px; }
.product-name  { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 6px; }
.product-spec  { font-size: 12px; color: var(--slate-light); margin-bottom: 12px; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.product-price      { font-size: 20px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.product-price-from { font-size: 11px; color: var(--slate-light); font-weight: 400; }
.product-add {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim); color: var(--accent);
  border: none; cursor: pointer; font-size: 18px; font-weight: 300;
  transition: all 0.15s; flex-shrink: 0;
}
.product-add:hover { background: var(--accent); color: #fff; }

/* ════════════════════════════════════════════════════════════════════
   CAD DESIGN BANNER
════════════════════════════════════════════════════════════════════ */
.cad-banner {
  background: #1a3a6b;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cad-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(74,127,193,0.12);
}
.cad-inner { position: relative; display: grid; grid-template-columns: 1fr; max-width: 680px; }
.cad-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #93c5fd; margin-bottom: 14px; }
.cad-tag::before { content: ''; width: 20px; height: 1px; background: #93c5fd; }
.cad-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 42px); color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.cad-title em { font-style: italic; color: #93c5fd; }
.cad-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cad-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cad-perk { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.cad-perk::before { content: '✓'; width: 20px; height: 20px; background: rgba(74,127,193,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #93c5fd; flex-shrink: 0; }
.btn-cad { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 14px; font-weight: 600; font-family: inherit; color: var(--navy); background: #fff; border: none; border-radius: var(--radius-md); cursor: pointer; transition: all 0.15s; }
.btn-cad:hover { background: var(--accent-dim); transform: translateY(-1px); }

/* ════════════════════════════════════════════════════════════════════
   INDUSTRY VERTICALS
════════════════════════════════════════════════════════════════════ */
.verticals { padding: 64px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.vertical-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; flex-wrap: wrap; }
.vertical-scroll::-webkit-scrollbar { display: none; }
.vertical-pill { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--white); border: 1px solid var(--border); border-radius: 40px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.vertical-pill:hover { border-color: var(--accent); background: var(--accent-dim); }
.vp-icon { font-size: 18px; line-height: 1; }
.vp-label { font-size: 13px; font-weight: 500; color: var(--navy); }
.vertical-pill:hover .vp-label { color: var(--accent); }

/* ════════════════════════════════════════════════════════════════════
   STATS
════════════════════════════════════════════════════════════════════ */
.stats { padding: 52px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { padding: 30px 28px; border-right: 1px solid var(--border); text-align: center; transition: background 0.15s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 40px; color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: 12.5px; color: var(--slate); line-height: 1.4; }

/* ════════════════════════════════════════════════════════════════════
   RESOURCES
════════════════════════════════════════════════════════════════════ */
.resources { padding: 64px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s; cursor: pointer; }
.resource-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.resource-cat-bar { height: 3px; background: var(--accent); }
.resource-body { padding: 22px; }
.resource-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); margin-bottom: 10px; }
.resource-title { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 10px; letter-spacing: -0.01em; }
.resource-excerpt { font-size: 13px; line-height: 1.6; color: var(--slate); margin-bottom: 16px; }
.resource-meta { display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: var(--slate-light); }
.resource-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 500; color: var(--accent); margin-top: 12px; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════ */
.site-footer { background: #1a3a6b; color: rgba(255,255,255,0.7); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: #93c5fd; }
.footer-tagline { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 14px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 34px; height: 34px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.15s; font-size: 12px; }
.social-btn:hover { border-color: #93c5fd; color: #93c5fd; }
.footer-col-title { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.12s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-builder { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  background: transparent;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: width 0.2s;
}
.nav-hamburger:hover { border-color: var(--accent); }
.nav-hamburger:hover span { background: var(--accent); }

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav-hamburger { display: flex; }
  .main-nav { display: none; }
  .main-nav.is-mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 8px; z-index: 1100; }
  .header-inner { height: 68px; }
  .logo-img { height: 56px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 48px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .value-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Content Pages (standard CMS pages) ─────────────────────────────── */
.content-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.content-page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
}
.content-page-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #2d3a4e;
}
.content-page-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  border-bottom: 2px solid var(--accent-dim);
  padding-bottom: 0.4rem;
}
.content-page-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.content-page-body p { margin-bottom: 1.25rem; }
.content-page-body ul, .content-page-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.content-page-body li { margin-bottom: 0.5rem; }
.content-page-body a { color: var(--accent); text-decoration: underline; }
.content-page-body a:hover { color: var(--navy); }
.content-page-body strong { font-weight: 600; color: var(--navy); }
.content-page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}
.content-page-body th {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.content-page-body td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.content-page-body tr:nth-child(even) td { background: var(--surface); }
.content-page-body .page-cta-block {
  background: var(--accent-dim);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 2rem 0;
}
.content-page-body .page-cta-block p { margin-bottom: 0.75rem; }
.content-page-body .page-cta-block p:last-child { margin-bottom: 0; }
.content-page-body .btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.15s;
}
.content-page-body .btn-primary:hover { background: var(--accent); color: #fff; text-decoration: none; }
.content-page-body .contact-form { max-width: 600px; }
.content-page-body .form-row { margin-bottom: 16px; }
.content-page-body .form-row label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 5px; color: var(--navy); }
.content-page-body .form-row input,
.content-page-body .form-row textarea,
.content-page-body .form-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-mid);
  border-radius: 5px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.15s;
}
.content-page-body .form-row input:focus,
.content-page-body .form-row textarea:focus { outline: none; border-color: var(--accent); }
.content-page-body .form-row textarea { min-height: 120px; resize: vertical; }
.content-page-body .form-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.content-page-body .form-submit:hover { background: var(--accent); }
.content-page-body .comparison-table { font-size: 0.9rem; }
.content-page-body .comparison-table th:first-child { background: var(--slate); }
.content-page-body .check-yes { color: #2E7D32; font-weight: 700; }
.content-page-body .check-no  { color: #C0392B; font-weight: 700; }

/* card grid for hub/resource/store-type pages */
.cp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}
.cp-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.cp-card:hover { box-shadow: 0 4px 16px rgba(26,58,107,.12); transform: translateY(-2px); }
.cp-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.cp-card p  { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.5; }
.cp-card-icon { font-size: 1.5rem; margin-bottom: 10px; }
.content-page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 40px 36px;
  margin-bottom: 40px;
}
.content-page-hero h2 { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: #fff; margin: 0 0 10px; border: none; padding: 0; }
.content-page-hero p  { color: rgba(255,255,255,0.88); margin: 0 0 20px; font-size: 1.0625rem; }
.content-page-hero .btn-light {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background 0.15s;
}
.content-page-hero .btn-light:hover { background: var(--accent-dim); }
@media (max-width: 600px) {
  .content-page-wrap { padding: 32px 16px 60px; }
  .content-page-hero { padding: 28px 20px; }
}
