/* GondolaFixtures.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: linear-gradient(to right, #2F6DAE 0%, #ffffff 18%, #ffffff 82%, #2F6DAE 100%);
  -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); }
.header-phone {
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent); text-decoration: none; }
.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;
}

/* ════════════════════════════════════════════════════════════════════
   HP HERO — dark navy split layout
════════════════════════════════════════════════════════════════════ */
.hp-hero {
  background: #1a2d4e;
  padding: 80px 0 72px;
}
.hp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hp-hero__headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
}
.hp-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin-bottom: 36px;
}
.hp-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #ffffff;
  background: #4a7fc1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(74,127,193,0.4);
}
.hp-btn-primary:hover {
  background: #3a6faf;
  transform: translateY(-1px);
}
.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-decoration: none;
}
.hp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
/* ── HP Hero Image Link ───────────────────────────────────────────── */
.hp-hero__img-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  transition: box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
}
.hp-hero__img-link:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  opacity: 0.9;
}
.hp-hero__img-link img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ════════════════════════════════════════════════════════════════════
   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: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.config-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  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: 8px;
  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;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  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 { display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s; cursor: pointer; text-decoration: none; color: inherit; }
.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-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.resource-body p  { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.5; }
.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; }

/* ── Resources Hub (knowledge center) ── */
.resources-hub { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.resources-hero { text-align: center; margin-bottom: 48px; }
.resources-hero h1 { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.resources-hero p { font-size: 1rem; color: var(--slate); max-width: 640px; margin: 0 auto; line-height: 1.6; }
.resource-section { margin-bottom: 40px; }
.resource-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--accent-dim); }
.resource-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-cards .resource-card { display: flex; flex-direction: column; background: var(--white, #fff); border: 1px solid var(--border); border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s; text-decoration: none; color: inherit; }
.resource-cards .resource-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); }
.resource-cards .card-label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); margin-bottom: 8px; }
.resource-cards .resource-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0 0 8px; line-height: 1.4; }
.resource-cards .resource-card p { font-size: 0.875rem; color: var(--slate); margin: 0 0 12px; line-height: 1.5; flex: 1; }
.resource-cards .read-time { font-size: 11.5px; color: var(--slate-light); }
@media (max-width: 768px) { .resource-cards { grid-template-columns: 1fr; } }

/* ── Quick Reference (category pages) ── */
.quick-reference { margin: 40px 0; padding: 28px; background: var(--surface, #f5f8fc); border: 1px solid var(--border, #dde4ee); border-radius: 12px; }
.quick-reference h2 { font-family: 'DM Serif Display', serif; font-size: 1.25rem; color: var(--navy); margin: 0 0 16px; }
.quick-reference p { font-size: 0.9rem; line-height: 1.7; color: var(--slate, #5a6a80); margin: 0 0 12px; }
.quick-reference p:last-child { margin-bottom: 0; }

/* ── LinkedIn Posts (homepage) ── */
.linkedin-posts { padding: 64px 0; background: var(--white, #fff); border-top: 1px solid var(--border); }
.linkedin-posts .section-header { text-align: center; margin-bottom: 32px; }
.linkedin-posts .section-title { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: var(--navy); margin-bottom: 8px; }
.linkedin-posts .section-subtitle { font-size: 0.95rem; color: var(--slate); max-width: 500px; margin: 0 auto; }
.linkedin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.linkedin-card { display: flex; flex-direction: column; background: var(--white, #fff); border: 1px solid var(--border); border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.2s; text-decoration: none; color: inherit; }
.linkedin-card:hover { border-color: #0a66c2; box-shadow: 0 4px 16px rgba(10,102,194,0.12); transform: translateY(-2px); }
.linkedin-icon { width: 32px; height: 32px; background: #0a66c2; color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; border-radius: 6px; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.post-excerpt { font-size: 0.9rem; line-height: 1.6; color: var(--navy); margin: 0 0 16px; flex: 1; }
.post-date { font-size: 12px; color: var(--slate-light); margin-bottom: 8px; display: block; }
.read-post { font-size: 13px; font-weight: 500; color: #0a66c2; }
@media (max-width: 768px) { .linkedin-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════════
   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-address { font-style: normal; font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,0.45); margin-top: 18px; }
.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) {
  .hp-hero__inner { grid-template-columns: 1fr; }
  .hp-hero__img-link { display: none; }
  .hero-inner { padding: 80px 60px; }
  .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); }

/* Mobile nav — fires at 900px on all pages (matches homepage.css breakpoint) */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .header-inner { position: relative; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    z-index: 1100;
  }
  .main-nav.is-mobile-open { display: flex; }
  .nav-item--link,
  .nav-item__label {
    padding: 13px 20px;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
    border-radius: 0;
  }
  .nav-item { border-radius: 0; }
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--border) !important;
    border-radius: 0 !important;
    display: none;
    padding: 0 !important;
    background: var(--surface) !important;
    min-width: unset !important;
  }
  .nav-dropdown.is-open { display: block !important; }
  .nav-dropdown a { padding: 11px 32px; font-size: 14px; border-radius: 0; }
  .header-right .btn-quote { display: none; }
  .header-right .header-phone { display: none; }
  .announce-bar { padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 768px) {
  body { background: #ffffff; }
  .container { padding: 0 16px; }
  .header-inner { height: 68px; }
  .logo-img { height: 56px; }
  .hp-hero { padding: 48px 0 40px; }
  .hp-hero__content { text-align: center; }
  .hp-hero__ctas { justify-content: center; }
  .hp-hero__sub { max-width: 100%; }
  .hero-inner { padding: 56px 40px; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: clamp(28px, 6vw, 48px); }
  .hero-sub { font-size: 17px; }

  .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-header {
  background: #1F3A5F;
  color: #fff;
  padding: 32px 32px 28px;
  border-radius: 0 0 12px 12px;
}
.content-page-header .breadcrumb ol {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 12px;
  opacity: 0.65;
}
.content-page-header .breadcrumb li { display: flex; align-items: center; }
.content-page-header .breadcrumb li + li::before {
  content: '/';
  margin: 0 8px;
  opacity: 0.5;
}
.content-page-header .breadcrumb a { color: #fff; text-decoration: none; }
.content-page-header .breadcrumb a:hover { text-decoration: underline; }
.content-page-header h1 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.content-page-intro {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  margin: 0;
  max-width: 680px;
  line-height: 1.5;
}
.content-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 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;
  border-radius: 8px;
  overflow: hidden;
}
.content-page-body th {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.content-page-body thead tr:first-child th:first-child { border-radius: 8px 0 0 0; }
.content-page-body thead tr:first-child th:last-child  { border-radius: 0 8px 0 0; }
.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; }

/* ── PIE Content Block (content pages load main.css only) ─── */
.pie-above {
  padding: 20px 32px 24px;
  border-left: 4px solid #2F6DAE;
  border-radius: 0 10px 10px 0;
  border-top: 1px solid #e8ecf0;
  background: #f8f9fb;
  margin: 24px 0;
}
.pie-intent {
  font-size: 15px;
  font-style: italic;
  color: #2F6DAE;
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 3px solid #2F6DAE;
}
.pie-bullets { margin: 0 0 12px; padding-left: 20px; }
.pie-bullets li { font-size: 14px; line-height: 1.5; margin-bottom: 4px; color: #333; }
.pie-compat, .pie-env { font-size: 13px; color: #555; margin-top: 8px; line-height: 1.5; }
.pie-faqs {
  padding: 24px 32px 32px;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  background: #fff;
  margin: 24px 0;
}
.pie-faqs h3 { font-size: 18px; color: #1F3A5F; margin: 0 0 16px; }
.pie-faq {
  border-bottom: 1px solid #f0f2f5;
  padding: 12px 0;
}
details.pie-faq:last-child { border-bottom: none; }
.pie-faq summary {
  font-size: 14px;
  font-weight: 600;
  color: #1F3A5F;
  cursor: pointer;
  list-style: none;
  padding-right: 24px;
  position: relative;
}
.pie-faq summary::after { content: '+'; position: absolute; right: 0; color: #2F6DAE; }
.pie-faq[open] summary::after { content: '−'; }
.pie-faq p { font-size: 14px; color: #444; margin: 8px 0 4px; line-height: 1.6; }

/* 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; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 48px 20px; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
}

/* ════════════════════════════════════════════════════════════════════
   GONDOLA BUILDER PROMO SECTION
════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.gondola-builder-promo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #020c1b 0%, #071423 55%, #06111f 100%);
  padding: 72px 0 60px;
  font-family: 'DM Sans', Inter, system-ui, -apple-system, sans-serif;
}

/* Blueprint grid texture */
.gondola-builder-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,130,246,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow top-left */
.gbp-bg-glow {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(20,115,255,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow top-right */
.gondola-builder-promo::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Two-column container ── */
.gbp-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: center;
}

/* ── LEFT COLUMN ── */
.gbp-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Badge row */
.gbp-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gbp-badge-pill {
  display: inline-block;
  background: rgba(20,115,255,0.22);
  color: #38bdf8;
  border: 1px solid rgba(56,189,248,0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 11px;
  border-radius: 20px;
}
.gbp-badge-text {
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Headline */
.gbp-headline {
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.gbp-hl-white { color: #ffffff; }
.gbp-hl-blue  { color: #1f7aff; }

/* Body copy */
.gbp-copy {
  color: #94a3b8;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}

/* CTA button */
.gbp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1473ff 0%, #1d5bd6 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(20,115,255,0.45), 0 0 0 1px rgba(20,115,255,0.3);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  width: fit-content;
  white-space: nowrap;
}
.gbp-cta:hover {
  box-shadow: 0 6px 30px rgba(20,115,255,0.60), 0 0 0 1px rgba(20,115,255,0.45);
  transform: translateY(-1px);
  color: #ffffff;
}
.gbp-cta:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

/* "Opens in new window" note */
.gbp-newtab-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #38bdf8;
  font-size: 13px;
  font-style: italic;
  opacity: 0.8;
  margin-top: -6px;
}
.gbp-curved-arrow { flex-shrink: 0; }

/* Compatibility card */
.gbp-compat-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: rgba(5,16,32,0.80);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  max-width: 360px;
}
.gbp-compat-card strong {
  display: block;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}
.gbp-compat-card p {
  color: #64748b;
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

/* ── RIGHT COLUMN ── */
.gbp-right {
  min-width: 0;
}

/* ── BUILDER MOCKUP CARD ── */
.gbp-mockup {
  background: #06111f;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.65),
    0 0 0 1px rgba(59,130,246,0.14),
    0 0 80px rgba(20,115,255,0.07);
}

/* Mockup header */
.gbp-mk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,22,44,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 16px;
  gap: 12px;
}
.gbp-mk-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.gbp-mk-logo-white { color: #e2e8f0; }
.gbp-mk-logo-blue  { color: #38bdf8; }
.gbp-mk-quote-btn {
  display: inline-block;
  background: rgba(20,115,255,0.18);
  color: #38bdf8;
  border: 1px solid rgba(56,189,248,0.3);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 6px;
  cursor: default;
  white-space: nowrap;
}

/* Mockup body: 3-column grid */
.gbp-mk-body {
  display: grid;
  grid-template-columns: 158px 1fr 170px;
  min-height: 390px;
  overflow: hidden;
}

/* ── Mockup left: layout panel ── */
.gbp-mk-layout {
  background: rgba(5,14,28,0.90);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.gbp-mk-panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}
.gbp-mk-panel-label {
  font-size: 9.5px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Type cards */
.gbp-mk-type-cards {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gbp-mk-type-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  cursor: default;
}
.gbp-mk-type-sel {
  background: rgba(20,115,255,0.12);
  border-color: rgba(56,189,248,0.45);
  color: #38bdf8;
  box-shadow: 0 0 12px rgba(20,115,255,0.15);
}

/* Step rows */
.gbp-mk-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 8px;
  margin-top: 2px;
}
.gbp-mk-step {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: #334155;
  font-size: 10px;
}
.gbp-mk-step-done  { color: #475569; }
.gbp-mk-step-active { color: #38bdf8; }
.gbp-mk-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  font-weight: 600;
  color: #475569;
  flex-shrink: 0;
}
.gbp-mk-step-done .gbp-mk-step-num {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: #22c55e;
}
.gbp-mk-step-active .gbp-mk-step-num {
  background: rgba(56,189,248,0.15);
  border-color: rgba(56,189,248,0.5);
  color: #38bdf8;
}
.gbp-mk-step-lbl {
  flex: 1;
  font-size: 10px;
  line-height: 1.3;
}
.gbp-mk-step-active .gbp-mk-step-lbl { color: #38bdf8; }
.gbp-mk-step-done .gbp-mk-step-lbl   { color: #475569; }

/* ── Mockup center: live preview ── */
.gbp-mk-preview {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.gbp-mk-preview-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.gbp-mk-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: #94a3b8;
}
.gbp-mk-live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: gbp-pulse 2s ease-in-out infinite;
}
@keyframes gbp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}
.gbp-mk-view-toggle {
  display: flex;
  gap: 3px;
}
.gbp-mk-view-btn {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: #475569;
  cursor: default;
}
.gbp-mk-view-on {
  background: rgba(20,115,255,0.18);
  border-color: rgba(56,189,248,0.4);
  color: #38bdf8;
}

/* Gondola SVG area */
.gbp-mk-preview-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(20,115,255,0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(56,130,246,0.03) 28px, rgba(56,130,246,0.03) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(56,130,246,0.03) 28px, rgba(56,130,246,0.03) 29px),
    #040e1e;
  padding: 16px 12px;
  min-height: 310px;
}
.gbp-gondola-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

/* ── Mockup right: project summary ── */
.gbp-mk-summary {
  background: rgba(4,12,24,0.90);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
}
.gbp-mk-sum-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}
.gbp-mk-compat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #22c55e;
  font-weight: 500;
}
.gbp-mk-sum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gbp-mk-sum-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 6px;
}
.gbp-mk-sl-k {
  font-size: 9.5px;
  color: #475569;
}
.gbp-mk-sl-v {
  font-size: 9.5px;
  color: #94a3b8;
  font-weight: 500;
  text-align: right;
}
.gbp-mk-total-card {
  background: rgba(20,115,255,0.10);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 2px;
}
.gbp-mk-total-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.gbp-mk-total-sub {
  font-size: 9px;
  color: #475569;
  margin: 1px 0 4px;
}
.gbp-mk-total-price {
  font-size: 20px;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gbp-mk-sum-btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.gbp-mk-sbtn {
  display: block;
  text-align: center;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #64748b;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gbp-mk-sbtn-p {
  background: rgba(20,115,255,0.15);
  border-color: rgba(56,189,248,0.3);
  color: #38bdf8;
}

/* Mockup footer bar */
.gbp-mk-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3,9,20,0.95);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 9px 14px;
}
.gbp-mk-footer-title {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gbp-mk-footer-live {
  font-size: 9px;
  font-weight: 700;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.35);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

/* ── FEATURE STRIP ── */
.gbp-features-wrap {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 40px auto 0;
  padding: 0 40px;
}
.gbp-features-row {
  display: flex;
  align-items: stretch;
  background: rgba(5,16,32,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.gbp-feature {
  flex: 1;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.gbp-feature strong {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e2e8f0;
}
.gbp-feature p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}
.gbp-feature-icon {
  color: #38bdf8;
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.gbp-feature-div {
  width: 1px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  align-self: stretch;
}

/* ── URL PILL ── */
.gbp-url-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 0 40px;
}
.gbp-url-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5,14,28,0.80);
  border: 1px solid rgba(245,158,11,0.45);
  color: #f59e0b;
  font-size: 12px;
  font-weight: 500;
  font-family: 'DM Mono', 'Courier New', monospace;
  padding: 8px 20px;
  border-radius: 24px;
  text-decoration: none;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.gbp-url-pill:hover {
  border-color: rgba(245,158,11,0.75);
  box-shadow: 0 0 16px rgba(245,158,11,0.18);
  color: #fbbf24;
}
.gbp-url-pill:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════════════
   GBP RESPONSIVE
════════════════════════════════════════════════════════════════════ */

/* Tablet: 768–1180px */
@media (max-width: 1180px) {
  .gbp-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gbp-left {
    max-width: 600px;
    margin: 0 auto;
    align-items: flex-start;
  }
  .gbp-copy   { max-width: 100%; }
  .gbp-compat-card { max-width: 100%; }
  .gbp-headline { font-size: clamp(30px, 5vw, 46px); }

  /* mockup inner: collapse right summary panel */
  .gbp-mk-body {
    grid-template-columns: 150px 1fr;
  }
  .gbp-mk-summary { display: none; }

  .gbp-features-row { flex-wrap: wrap; }
  .gbp-feature { flex: 1 1 calc(50% - 1px); min-width: 200px; }
  .gbp-feature-div:nth-child(4),
  .gbp-feature-div:nth-child(8) { display: none; }
}

/* Mobile: under 768px */
@media (max-width: 767px) {
  .gondola-builder-promo { padding: 52px 0 44px; }

  .gbp-container { padding: 0 20px; gap: 28px; }
  .gbp-features-wrap,
  .gbp-url-wrap { padding: 0 20px; }

  .gbp-left { align-items: stretch; }
  .gbp-cta  { width: 100%; justify-content: center; }
  .gbp-headline { font-size: clamp(28px, 8vw, 38px); }

  /* Mockup: simplify to header + preview only */
  .gbp-mk-body {
    grid-template-columns: 1fr;
  }
  .gbp-mk-layout { display: none; }
  .gbp-mk-summary { display: none; }
  .gbp-mk-preview { border-right: none; }
  .gbp-mk-preview-area { min-height: 240px; padding: 12px; }
  .gbp-gondola-svg { max-width: 220px; }

  /* Feature row: single column */
  .gbp-features-row { flex-direction: column; border-radius: 10px; }
  .gbp-feature { padding: 16px; }
  .gbp-feature-div { width: 100%; height: 1px; }

  .gbp-url-pill { font-size: 10px; padding: 7px 14px; word-break: break-all; text-align: center; }
  .gbp-newtab-note { font-size: 12px; }
}

/* Very narrow: under 480px */
@media (max-width: 479px) {
  .gbp-badge-row { flex-wrap: wrap; gap: 6px; }
  .gbp-features-row .gbp-feature-div { display: none; }
}
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1F3A5F 0%, #2F6DAE 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: #93c5fd; }
.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #1F3A5F;
  background: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.btn-hero-primary:hover {
  background: #f0f4f8;
  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: #ffffff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.trust-item svg { color: rgba(255,255,255,0.9); 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;
}

/* ════════════════════════════════════════════════════════════════════
   CLIENT LOGIN / ACCOUNT NAV ITEM
════════════════════════════════════════════════════════════════════ */
.nav-item--account {
  margin-left: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  font-size: 13px;
  transition: background 0.15s, border-color 0.15s;
}
.nav-item--account:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
