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

:root {
  --white: #FFFFFF;
  --bg: #F0F4FF;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F0F4FF;
  --bg-card: #FFFFFF;
  --bg-nav: #FFFFFF;
  --bg-dark: #0A1628;
  --bg-footer: #0A1628;
  --text: #202124;
  --mid: #5F6368;
  --accent: #1A73E8;
  --accent-secondary: #0057B8;
  --accent-light: #E8F0FE;
  --border: #DADCE0;
  --border-blue: #C5D8F7;
  --hover: #E8F0FE;
  --shadow: 0 1px 2px rgba(26,115,232,0.1), 0 2px 6px rgba(26,115,232,0.08);
  --shadow-lg: 0 4px 12px rgba(26,115,232,0.2);
  --radius: 16px;
  --radius-btn: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(26,115,232,0.06);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}

.logo-mark { display: flex; align-items: center; text-decoration: none; line-height: 0; flex-shrink: 0; }
.logo-mark img { display: block; width: 160px; max-width: 100%; height: auto; object-fit: contain; }

.nav-links {
  display: flex; gap: 4px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 8px 14px; border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); background: var(--hover); }
.nav-links a.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: none; background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; color: var(--mid);
}
.nav-icon-btn:hover { background: var(--hover); }
.nav-icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

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

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.5);
  z-index: 300; opacity: 0; transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; }
.mobile-nav-drawer {
  position: fixed; top: 0; right: -280px; bottom: 0; width: 280px;
  background: var(--bg-nav); z-index: 301; padding: 80px 24px 32px;
  transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(26,115,232,0.1);
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer .nav-links {
  display: flex; flex-direction: column; gap: 4px; position: static; transform: none;
}
.mobile-nav-drawer .nav-links a { padding: 12px 16px; border-radius: 12px; font-size: 16px; }
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: var(--hover); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 28px; border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease; white-space: nowrap; letter-spacing: 0.01em;
}
.btn:hover { transform: scale(1.02); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-secondary); box-shadow: 0 4px 16px rgba(26,115,232,0.35); }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 36px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(26,115,232,0.30);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.btn-hero-primary::after { content: '→'; font-size: 18px; transition: transform 0.2s ease; }
.btn-hero-primary:hover {
  background: var(--accent-secondary);
  box-shadow: 0 8px 32px rgba(26,115,232,0.45);
  transform: translateY(-2px);
}
.btn-hero-primary:hover::after { transform: translateX(4px); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--hover); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-sm { height: 36px; padding: 0 20px; font-size: 13px; border-radius: 18px; }
.btn-sm:hover { transform: none; }

/* ── MOTION PLACEHOLDERS ── */
.motion-placeholder {
  background: var(--bg-secondary);
  border: 2px dashed var(--border-blue);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 32px 24px;
  overflow: hidden; position: relative;
}
.motion-placeholder::before {
  content: '';
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(26,115,232,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.motion-placeholder .mp-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.motion-placeholder .mp-sub {
  font-size: 13px; color: var(--mid); font-weight: 400;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-wrap { padding: 80px 0; }
.section-wrap.grey { background: var(--bg-secondary); }
.section-wrap.dark { background: var(--bg-dark); color: #fff; }

.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: 48px; font-weight: 300; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 48px;
}
.section-sub { font-size: 16px; color: var(--mid); line-height: 1.6; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

/* ── CARDS ── */
.card-g {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card-g:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* ── CATEGORY CARDS (products page) ── */
.cat-card-g {
  display: flex; flex-direction: column;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden; text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.cat-card-g:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-blue); }
.cat-card-g .cat-img { aspect-ratio: 4/3; overflow: hidden; }
.cat-card-g .cat-img .motion-placeholder { width: 100%; height: 100%; border-radius: 0; border: none; border-bottom: 2px dashed var(--border-blue); }
.cat-card-g .cat-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.cat-name { font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.3; }
.cat-desc { font-size: 13px; color: var(--mid); line-height: 1.55; flex: 1; }
.cat-link { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.02em; margin-top: 4px; }

/* ── PRODUCT CARDS ── */
.product-card-g {
  display: flex; flex-direction: column;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.product-card-g:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-blue); }
.product-card-g .prod-img { aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.product-card-g .prod-img .motion-placeholder { width: 100%; height: 100%; border-radius: 0; border: none; border-bottom: 2px dashed var(--border-blue); }
.product-card-g .prod-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.prod-badge { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.prod-name { font-size: 16px; font-weight: 600; color: var(--text); }
.prod-specs { font-size: 13px; color: var(--mid); line-height: 1.5; }
.prod-price { font-size: 15px; font-weight: 600; color: var(--text); margin-top: 4px; }
.prod-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ── FILTER BAR ── */
.filter-bar {
  position: sticky; top: 64px; z-index: 150;
  background: var(--bg-nav); border-bottom: 1px solid var(--border);
  padding: 12px 40px; display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 18px; border-radius: 18px;
  border: 1px solid var(--border); background: var(--bg-card);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--mid); cursor: pointer; white-space: nowrap;
  transition: all 0.2s ease; text-decoration: none;
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.filter-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── STATS BAR ── */
.stats-bar { background: var(--bg-dark); padding: 64px 40px; }
.stats-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 64px; max-width: 900px; margin: 0 auto;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.stat-num { font-size: 52px; font-weight: 300; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.stat-lbl { font-size: 12px; color: #A8C4F0; text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.stat-divider { width: 1px; height: 72px; background: #1A3A6E; flex-shrink: 0; }

/* ── PAGE HERO ── */
.page-hero-g { text-align: center; padding: 88px 40px 72px; background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.page-hero-g .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.page-hero-g h1 { font-size: 48px; font-weight: 300; color: var(--text); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.page-hero-g .sub { font-size: 20px; color: var(--mid); font-weight: 300; }

/* ── DARK SECTION ── */
.dark-g { background: var(--bg-dark); padding: 80px 40px; }
.dark-g-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.dark-g-side { font-size: 56px; font-weight: 700; color: var(--accent); line-height: 1; }
.dark-g-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.dark-g-quote { font-size: 26px; font-weight: 300; color: #fff; line-height: 1.4; margin-bottom: 16px; }
.dark-g-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 24px; }
.dark-g-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dark-g-chip { padding: 6px 14px; border-radius: 16px; border: 1px solid rgba(26,115,232,0.4); font-size: 13px; color: rgba(255,255,255,0.75); }

/* ── CTA BANNER ── */
.cta-g { background: linear-gradient(135deg, #1A73E8, #0057B8); padding: 80px 40px; text-align: center; }
.cta-g h2 { font-size: 36px; font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-g p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-g p a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cta-g .btn-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-g .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.cta-g .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ── CONTACT CARDS ── */
.contact-card-g {
  padding: 32px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.contact-card-g:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--border-blue); }
.contact-icon-g { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.contact-icon-g svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
.contact-title-g { font-size: 20px; font-weight: 600; color: var(--text); }
.contact-value-g { font-size: 15px; color: var(--mid); }
.contact-value-g a { color: var(--accent); text-decoration: none; }
.contact-note-g { font-size: 13px; color: var(--mid); }

/* ── FAQ ── */
.faq-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item-g { padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow 0.2s, border-color 0.2s; }
.faq-item-g:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.faq-q-g { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.faq-a-g { font-size: 14px; color: var(--mid); line-height: 1.65; }
.faq-a-g a { color: var(--accent); text-decoration: none; }

/* ── RETAILER CARDS (dealers) ── */
.retailer-card-g {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 36px 28px 28px;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.retailer-card-g:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-blue); }
.retailer-logo-g { height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.retailer-logo-g svg { max-width: 160px; height: 44px; width: auto; }
.retailer-divider-g { width: 32px; height: 1px; background: var(--border); margin: 0 auto 20px; }
.retailer-desc-g { font-size: 14px; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 24px; }
.retailer-link-g { display: inline-flex; align-items: center; justify-content: center; height: 44px; padding: 0 24px; border-radius: 22px; background: var(--accent); color: #fff; font-size: 14px; font-weight: 500; text-decoration: none; transition: background 0.2s, box-shadow 0.2s; }
.retailer-link-g:hover { background: var(--accent-secondary); box-shadow: 0 4px 12px rgba(26,115,232,0.35); }

/* ── FEATURE CARDS (home why section) ── */
.feature-card-g { padding: 36px 32px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow 0.2s, border-color 0.2s; }
.feature-card-g:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.feature-icon-g { width: 56px; height: 56px; border-radius: 16px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon-g svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-num-g { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.feature-title-g { font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.feature-body-g { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── HERO (text-only typographic) ── */
.hero {
  width: 100%; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.05) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 800px;
}
.hero-eyebrow {
  display: block; font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 32px;
}
.hero-title {
  font-size: 72px; font-weight: 300; color: var(--text);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 20px; color: var(--mid);
  font-weight: 300; line-height: 1.6; margin-bottom: 48px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 28px; border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  background: transparent; color: var(--accent); border: 2px solid var(--accent);
  text-decoration: none; cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn-secondary:hover { background: var(--accent-light); transform: scale(1.02); }


.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--mid); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite; z-index: 3;
}
.scroll-indicator svg { stroke: var(--mid); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── CATEGORIES STRIP ── */
.categories-strip {
  background: #FFFFFF;
  border-top: 1px solid #DADCE0;
  border-bottom: 1px solid #DADCE0;
  overflow-x: auto; white-space: nowrap;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.categories-strip::-webkit-scrollbar { display: none; }
.strip-inner {
  display: flex; justify-content: center;
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
}
.strip-item {
  display: inline-block; padding: 20px 24px;
  font-size: 14px; font-weight: 500; color: #5F6368;
  text-decoration: none; border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease; white-space: nowrap;
}
.strip-item:hover { color: #1A73E8; border-bottom-color: #1A73E8; }

/* ── FEATURED GRID (home page) ── */
.featured-section { padding: 80px 40px; background: #F8F9FF; }
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.featured-card {
  background: #FFFFFF; border-radius: 20px; padding: 40px;
  border: 1px solid #DADCE0; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer; overflow: hidden; position: relative;
  min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,115,232,0.15); border-color: #C5D8F7; }
.featured-large {
  grid-column: span 2;
  background: #FFFFFF;
  min-height: 360px; flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.featured-medium { grid-column: span 1; }
.featured-wide {
  grid-column: span 3;
  background: linear-gradient(135deg, #0A1628 0%, #1A3A6E 100%);
  min-height: 200px; flex-direction: row; align-items: center; justify-content: space-between;
}
.featured-wide .card-text { color: #FFFFFF; }
.featured-wide .card-category { color: #A8C4F0; }
.featured-wide .card-link { color: #A8C4F0; }
.featured-wide h3 { color: #FFFFFF; }
.featured-wide p { color: #C5D8F7; }
.card-text { display: flex; flex-direction: column; }
.featured-has-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
}
.featured-has-image::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.25) 60%, transparent 100%);
}
.card-text-overlay { position: relative; z-index: 1; }
.card-category {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 12px;
}
.featured-card h3 { font-size: 24px; font-weight: 500; color: #202124; margin-bottom: 12px; line-height: 1.3; }
.featured-card p { font-size: 15px; color: #5F6368; margin-bottom: 24px; line-height: 1.5; }
.card-link { font-size: 14px; font-weight: 500; color: var(--accent); text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.card-image-area { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.card-image-area img { max-height: 280px; max-width: 260px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(26,115,232,0.15)); }

/* ── WHY EQUATOR ── */
.why-section { padding: 80px 40px; background: #FFFFFF; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  padding: 36px 28px; background: #FFFFFF;
  border-radius: 20px; border: 1px solid #DADCE0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; gap: 0;
}
.why-card:hover { transform: translateY(-4px); border-color: #C5D8F7; box-shadow: 0 8px 32px rgba(26,115,232,0.10); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.why-card h3 { font-size: 17px; font-weight: 600; color: #202124; margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: 14px; color: #5F6368; line-height: 1.65; }

/* ── FEATURED PRODUCT SECTION ── */
.featured-product { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.featured-product.reverse { direction: rtl; }
.featured-product.reverse > * { direction: ltr; }
.featured-img .motion-placeholder { width: 100%; aspect-ratio: 4/3; }
.featured-text { display: flex; flex-direction: column; gap: 16px; }
.featured-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.featured-name { font-size: 32px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; line-height: 1.2; }
.featured-sub { font-size: 16px; color: var(--mid); line-height: 1.65; }
.featured-specs { display: flex; flex-direction: column; gap: 8px; }
.featured-spec { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--mid); }
.featured-spec::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.featured-price { font-size: 18px; font-weight: 600; color: var(--text); }
.featured-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── VALUE CARDS (about page) ── */
.value-card-g { padding: 36px 32px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); transition: box-shadow 0.2s, border-color 0.2s; }
.value-card-g:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.value-icon-g { width: 56px; height: 56px; border-radius: 16px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon-g svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-title-g { font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.value-body-g { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── AWARDS GRID ── */
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.award-item { padding: 28px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; gap: 12px; transition: box-shadow 0.2s, border-color 0.2s; }
.award-item:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.award-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.award-icon svg { width: 20px; height: 20px; fill: var(--accent); }
.award-name { font-size: 15px; font-weight: 600; color: var(--text); }
.award-body { font-size: 13px; color: var(--mid); line-height: 1.6; }
.award-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.award-text { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4; }

/* ── STAT CARDS (about story) ── */
.info-card-g { padding: 24px 28px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; gap: 16px; align-items: flex-start; }
.info-icon-g { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon-g svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--text); }
.info-sub { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* ── FOOTER ── */
footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  padding: 64px 40px 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 140px; height: auto; }
.footer-tagline { font-size: 14px; color: var(--mid); line-height: 1.6; max-width: 240px; }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--mid); text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-social a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0 32px; border-top: 1px solid var(--border); margin-top: 0; }
.footer-copy { font-size: 13px; color: var(--mid); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── CHAT WIDGET ── */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 1001;
  width: 56px; height: 56px; border-radius: 28px;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26,115,232,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.chat-fab:hover { transform: scale(1.08); background: var(--accent-secondary); box-shadow: 0 6px 28px rgba(26,115,232,0.55); }
.chat-fab svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chat-fab .icon-close { display: none; }
.chat-fab.open { opacity: 0; pointer-events: none; transform: scale(0.8); }

/* Backdrop */
.chat-backdrop {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,22,40,0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.chat-backdrop.open { opacity: 1; pointer-events: all; }

/* Side panel */
.chat-window {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1000;
  width: 420px;
  background: #FFFFFF;
  box-shadow: -8px 0 40px rgba(10,22,40,0.12);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.chat-window.open { transform: translateX(0); }

/* Header */
.chat-head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: #FFFFFF; flex-shrink: 0;
}
.chat-avatar {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.chat-head-info { flex: 1; }
.chat-bot-name { font-size: 15px; font-weight: 600; color: var(--text); }
.chat-bot-status { font-size: 12px; color: var(--mid); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #34A853; display: inline-block; }
.chat-close-btn {
  width: 32px; height: 32px; border-radius: 8px; border: none;
  background: var(--bg-secondary); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0; margin-left: auto;
}
.chat-close-btn:hover { background: var(--hover); }
.chat-close-btn svg { width: 16px; height: 16px; stroke: var(--mid); fill: none; stroke-width: 2; stroke-linecap: round; }

/* Messages */
.chat-msgs {
  flex: 1; overflow-y: auto; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 0; background: #F8F9FF;
}
.chat-msgs::-webkit-scrollbar { width: 4px; }
.chat-msgs::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 4px; }
.msg { display: flex; gap: 10px; align-items: flex-end; }
.msg.user { flex-direction: row-reverse; }
.msg-av {
  width: 30px; height: 30px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}
.msg.user .msg-av { background: var(--border); color: var(--mid); }
.msg-bub {
  max-width: 78%; padding: 12px 16px;
  border-radius: 18px; font-size: 14px; line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.msg.bot .msg-bub { background: #FFFFFF; color: var(--text); border-bottom-left-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.msg.user .msg-bub { background: var(--accent); color: #fff; border-bottom-right-radius: 4px; }
.msg.bot .msg-bub p { margin: 0 0 8px; }
.msg.bot .msg-bub p:last-child { margin-bottom: 0; }
.msg.bot .msg-bub ul { margin: 6px 0 8px; padding-left: 18px; }
.msg.bot .msg-bub li { margin-bottom: 4px; }
.msg.bot .msg-bub strong { font-weight: 600; color: var(--text); }
.chat-link { color: var(--accent); text-decoration: underline; word-break: break-all; }
.chat-link:hover { color: var(--accent-secondary); }

/* Ticket form */
.ticket-form-bub { max-width: 92% !important; }
.ticket-form { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ticket-input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif;
  background: #F8F9FF; color: var(--text); outline: none; box-sizing: border-box;
  transition: border-color 0.2s;
}
.ticket-input:focus { border-color: var(--accent); background: #fff; }
.ticket-textarea { resize: vertical; min-height: 72px; }
.ticket-submit {
  padding: 10px 16px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.ticket-submit:hover { background: var(--accent-secondary); }
.ticket-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ticket-label { font-size: 11px; color: #888; margin: -4px 0 0 2px; }

/* Order options */
.order-options { display: flex; flex-direction: column; gap: 8px; }
.order-option-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border);
  background: #fff; color: var(--text); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif; text-align: left;
}
.order-option-btn:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.order-option-sub { margin-left: auto; font-size: 11px; font-weight: 400; color: #888; white-space: nowrap; }
.order-option-btn:hover .order-option-sub { color: var(--accent); }

/* Order form wizard */
.order-steps { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.order-step { font-size: 11px; font-weight: 600; color: #aaa; transition: color 0.2s; }
.order-step.active { color: var(--accent); }
.order-step-sep { font-size: 11px; color: #ccc; }
.order-step-panel { display: flex; flex-direction: column; gap: 8px; }
.order-step-title { font-size: 13px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.order-confirm-box { background: #F8F9FF; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.confirm-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 12px; border-bottom: 1px solid var(--border); font-size: 13px; }
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: #888; font-weight: 500; flex-shrink: 0; }
.confirm-val { color: var(--text); font-weight: 600; text-align: right; word-break: break-word; }
.ticket-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; padding: 8px 0;
}
.ticket-success p { margin: 0; font-size: 14px; }

/* Quick chips */
.quick-chips { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 20px; background: #F8F9FF; border-top: 1px solid var(--border); }
.chip { padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border-blue); background: #FFFFFF; font-size: 13px; font-weight: 500; color: var(--accent); cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.15s; }
.chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Input */
.chat-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: #FFFFFF; flex-shrink: 0;
}
.chat-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 24px;
  padding: 11px 18px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text); background: var(--bg-secondary); outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--accent); background: #FFFFFF; }
.chat-input::placeholder { color: #9AA0A6; }
.send-btn {
  width: 40px; height: 40px; border-radius: 20px;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0;
}
.send-btn:hover { background: var(--accent-secondary); transform: scale(1.05); }
.send-btn svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Mic button */
.mic-button {
  background: var(--accent); border: none; border-radius: 50%;
  width: 40px; height: 40px; min-width: 44px; min-height: 44px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s; flex-shrink: 0; color: #fff;
}
.mic-button:hover { background: var(--accent-secondary); transform: scale(1.05); }
.mic-button svg { pointer-events: none; }
.mic-button.recording {
  background: #EA4335;
  animation: micPulse 1s infinite;
}
@keyframes micPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(234,67,53,0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(234,67,53,0); }
}
.listening-indicator {
  font-size: 12px; color: #EA4335; text-align: center;
  padding: 2px 20px 0; display: none; font-weight: 500;
}
.listening-indicator.active { display: block; }

/* Typing indicator */
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: typingBounce 1.2s infinite; opacity: 0.5; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%,100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── PRODUCT IMAGES ── */

/* Category card images */
.cat-card-g img {
  width: 100%; height: 200px;
  object-fit: contain;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
  display: block;
}
.cat-card-g:hover img { transform: scale(1.05); }

/* Products page featured banner */
.products-featured-banner {
  width: 100%; max-height: 400px;
  object-fit: contain;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  display: block;
  margin-bottom: 40px;
}

/* Product card image wrapper */
.product-image-wrapper {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  overflow: hidden;
}
.product-image-wrapper img {
  width: 100%; height: 220px;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}
.product-card-g:hover .product-image-wrapper img { transform: scale(1.08); }

/* Products page banner */
.products-banner {
  width: 100%; height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  display: block;
}

/* Family lineup section (legacy) */
.lineup-section { text-align: center; padding: 80px 40px; background: var(--bg-secondary); }
.lineup-section h2 { font-size: 36px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; margin-bottom: 8px; }
.lineup-section img { width: 100%; max-width: 1000px; border-radius: 16px; margin: 32px auto; display: block; box-shadow: var(--shadow-lg); }

/* ── PRODUCT LINEUP CARDS (text-only) ── */
.lineup-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; gap: 16px; flex-wrap: wrap;
}
.lineup-title {
  font-size: 28px; font-weight: 600; color: var(--text);
  letter-spacing: -0.02em; margin: 0;
}
.lineup-shopall {
  font-size: 13px; font-weight: 500; color: var(--accent);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.lineup-shopall:hover { text-decoration: underline; }
.lineup-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.lineup-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 28px 24px;
  background: var(--bg-card); border-radius: 16px;
  border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.lineup-card:hover {
  border-color: var(--border-blue);
  box-shadow: 0 4px 20px rgba(26,115,232,0.10);
  transform: translateY(-3px);
}
.lineup-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.lineup-name {
  font-size: 18px; font-weight: 600; color: var(--text);
  line-height: 1.3;
}
.lineup-desc {
  font-size: 14px; color: var(--mid); line-height: 1.6; flex: 1;
}
.lineup-link {
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-top: 8px;
}
.lineup-labels {
  display: flex; justify-content: space-around;
  max-width: 600px; margin: 0 auto;
  color: var(--accent); font-weight: 600; font-size: 14px;
}

/* Image loading shimmer skeleton */
.img-skeleton {
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--accent-light) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Tablet responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-large { grid-column: span 2; }
  .featured-wide { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .product-image-wrapper img { height: 180px; }
}
@media (max-width: 768px) {
  .lineup-section { padding: 48px 20px; }
  .lineup-section h2 { font-size: 26px; }
  .products-featured-banner { max-height: 240px; padding: 16px; }
  .product-image-wrapper img { height: 160px; }
  .cat-card-g img { height: 160px; }
}

/* ── CTA INNER WRAPPERS ── */
.cta-g-inner { max-width: 640px; margin: 0 auto; }
.cta-g-title { font-size: 36px; font-weight: 600; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-g-sub { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-g-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HERO ACTIONS ── */
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── ABOUT STORY GRID ── */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-story-text { display: flex; flex-direction: column; gap: 0; }
.about-story-media { display: flex; flex-direction: column; gap: 20px; }
.about-image-stats-row { display: flex; gap: 16px; align-items: stretch; }
.about-story-image-wrap { border-radius: 20px; overflow: hidden; flex: 1; min-height: 320px; }
.about-story-image-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-stats-col {
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--bg-dark); border-radius: 20px;
  padding: 28px 20px; flex-shrink: 0; width: 152px;
}
.about-stat-item { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-bottom: 1px solid #1A3A6E; }
.about-stat-item:first-child { padding-top: 0; }
.about-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.about-stat-num { font-size: 30px; font-weight: 300; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.about-stat-lbl { font-size: 10px; color: #A8C4F0; text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.4; }

/* ── LEADERSHIP CARD ── */
.leadership-card {
  max-width: 640px; margin: 0 auto;
  display: flex; gap: 28px; padding: 40px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.leadership-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.leader-avatar {
  width: 72px; height: 72px; border-radius: 36px; flex-shrink: 0;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 600;
}
.leader-body { display: flex; flex-direction: column; gap: 12px; }
.leader-name { font-size: 26px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.leader-role { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.leader-bio { font-size: 14px; color: var(--mid); line-height: 1.75; }
.leader-quote { font-size: 13px; color: var(--mid); border-left: 3px solid var(--accent); padding-left: 14px; font-style: italic; line-height: 1.6; }

/* ── QUICK LINK CARDS (support) ── */
.quick-link-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.quick-link-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-blue); }
.ql-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.ql-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ql-title { font-size: 18px; font-weight: 600; color: var(--text); }
.ql-desc { font-size: 14px; color: var(--mid); line-height: 1.6; flex: 1; }
.ql-link { font-size: 13px; font-weight: 600; color: var(--accent); }

/* ── FAQ GRID (support) ── */
.faq-grid-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .featured-product { gap: 40px; }
  .dark-g-inner { gap: 48px; }
  .awards-grid { grid-template-columns: repeat(2,1fr); }
  .about-story-grid { gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 17px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .scroll-indicator { display: none; }

  .strip-inner { padding: 0 20px; }

  .featured-section { padding: 48px 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-large { grid-column: span 1; flex-direction: column; min-height: 320px; }
  .featured-medium { grid-column: span 1; }
  .featured-wide { grid-column: span 1; flex-direction: column; }
  .card-image-area img { max-height: 200px; max-width: 200px; }

  .why-section { padding: 48px 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-bar { padding: 48px 20px; }
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 40px; }

  .container { padding: 0 20px; }
  .section-wrap { padding: 48px 0; }
  .section-title { font-size: 32px; margin-bottom: 32px; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .page-hero-g { padding: 56px 20px 48px; }
  .page-hero-g h1 { font-size: 36px; }
  .page-hero-g .sub { font-size: 16px; }

  .dark-g { padding: 48px 20px; }
  .dark-g-inner { grid-template-columns: 1fr; gap: 24px; }
  .dark-g-side { font-size: 40px; }
  .dark-g-quote { font-size: 20px; }

  .faq-g { grid-template-columns: 1fr; }
  .faq-grid-g { grid-template-columns: 1fr; }

  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .leadership-card { flex-direction: column; gap: 20px; }

  .featured-product { grid-template-columns: 1fr; gap: 32px; }
  .featured-product.reverse { direction: ltr; }
  .featured-name { font-size: 24px; }

  .filter-bar { padding: 10px 20px; }

  .cta-g { padding: 56px 20px; }
  .cta-g-title { font-size: 28px; }

  .chat-window { width: 100vw; }
  .chat-fab { bottom: 20px; right: 20px; }

  .btn { height: 44px; }
}
