/* ── CLEVER CHAIR — WEBSITE REDESIGN MOCKUP ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1523;
  --gold: #C8A44A;
  --gold-light: #DDB96A;
  --white: #FFFFFF;
  --off-white: #FAF9F6;
  --light-grey: #EDEAE4;
  --mid-grey: #777;
  --text: #1A1A1A;
  --cream: #F3F1EC;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.6; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; box-shadow: 0 1px 0 rgba(0,0,0,0.10);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-text { color: var(--navy); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 22px; border-radius: var(--radius); font-weight: 700 !important; font-size: 13px !important; letter-spacing: 0.5px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Mobile hamburger button (hidden on desktop) */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
nav.open .nav-burger span:nth-child(2) { opacity: 0; }
nav.open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 42px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── SECTION WRAPPERS ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.section-subtitle { font-size: 18px; color: var(--mid-grey); max-width: 600px; line-height: 1.7; }
.section-title.light { color: var(--white); }
.section-subtitle.light { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--off-white);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 70px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200,164,74,0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* Prevent decorative hero overlays from blocking clicks on buttons beneath */
.products-hero::before,
.why-hero::before,
.biz-hero::before,
.gallery-hero::before,
.pdp-hero::before {
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top    visual"
    "bottom visual";
  gap: 16px 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-top { grid-area: top; align-self: end; }
.hero-bottom { grid-area: bottom; align-self: start; }
.hero-visual { grid-area: visual; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; opacity: 0.6; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 52px; line-height: 1.15; color: var(--navy); margin-bottom: 24px; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-body { font-size: 17px; color: #555; line-height: 1.75; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid rgba(27,42,74,0.3); border-radius: var(--radius); padding: 14px 32px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-outline-dark:hover { border-color: var(--navy); background: rgba(27,42,74,0.05); }
.hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid rgba(27,42,74,0.12); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--navy); font-weight: 700; }
.hero-stat-label { font-size: 11px; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 14px; }

/* Hero video panel */
.hero-video-wrap {
  border-radius: 16px; overflow: hidden; width: 100%;
  box-shadow: 0 24px 64px rgba(27,42,74,0.18);
  position: relative; background: var(--navy);
  border: 1px solid rgba(27,42,74,0.10);
}
.hero-video-wrap video { width: 100%; display: block; max-height: 500px; object-fit: cover; }
.hero-video-caption {
  background: var(--navy); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hero-video-caption-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.hero-video-caption-text { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.mini-badge { background: rgba(27,42,74,0.07); border: 1px solid rgba(27,42,74,0.15); color: var(--navy); font-size: 11px; padding: 6px 14px; border-radius: 20px; font-weight: 500; }

/* Keep legacy for other pages */
.badge-cert { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; padding: 6px 10px; border-radius: 20px; letter-spacing: 0.5px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.3px; }
.trust-icon { font-size: 16px; }

/* ── SPLIT CTA ── */
.split-cta { background: var(--off-white); }
.split-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.split-cta-card { padding: 60px 50px; }
.split-cta-card.navy { background: var(--navy); }
.split-cta-card.white { background: var(--white); border: 2px solid var(--light-grey); }
.split-cta-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.icon-gold { background: rgba(212,168,67,0.2); }
.icon-navy { background: rgba(27,42,74,0.08); }
.split-cta-title { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }
.split-cta-title.light { color: var(--white); }
.split-cta-title.dark { color: var(--navy); }
.split-cta-body { font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.split-cta-body.light { color: rgba(255,255,255,0.7); }
.split-cta-body.dark { color: var(--mid-grey); }
.split-cta-list { list-style: none; margin-bottom: 32px; }
.split-cta-list li { font-size: 14px; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.split-cta-list li.light { color: rgba(255,255,255,0.8); }
.split-cta-list li.dark { color: var(--text); }
.check { color: var(--gold); font-weight: 700; }

/* ── FEATURES GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.feature-card { background: var(--white); border-radius: 12px; padding: 40px 32px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(27,42,74,0.06); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 56px; height: 56px; background: rgba(212,168,67,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.feature-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feature-body { font-size: 14px; color: var(--mid-grey); line-height: 1.7; }

/* ── COMPARISON TABLE ── */
.comparison-section { background: var(--navy); }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 48px; border-radius: 12px; overflow: hidden; }
.comparison-table th { padding: 20px 24px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.comparison-table th:first-child { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.comparison-table th.cc-col { background: var(--gold); color: var(--navy); text-align: center; }
.comparison-table th.comp-col { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); text-align: center; }
.comparison-table td { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; }
.comparison-table td:first-child { color: rgba(255,255,255,0.8); font-weight: 500; background: rgba(255,255,255,0.03); }
.comparison-table td.cc-val { background: rgba(212,168,67,0.08); text-align: center; color: var(--gold); font-weight: 600; font-size: 18px; }
.comparison-table td.comp-val { background: transparent; text-align: center; color: rgba(255,255,255,0.35); font-size: 18px; }
.comparison-table tr:last-child td { border-bottom: none; }
.tick { color: #4CAF50; font-size: 20px; }
.cross { color: rgba(255,255,255,0.25); font-size: 20px; }

/* ── PRODUCT PAGE ── */
.product-hero { background: var(--off-white); padding: 140px 0 80px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-img-main {
  grid-column: 1 / -1; height: 380px;
  background: linear-gradient(135deg, var(--navy), #2d4a80);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-thumb {
  height: 160px; background: var(--light-grey);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s;
}
.product-img-thumb:hover { border-color: var(--gold); }
.product-img-thumb.active { border-color: var(--gold); }
.product-details { padding-top: 8px; }
.product-code { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 38px; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.product-tagline { font-size: 17px; color: var(--mid-grey); margin-bottom: 28px; line-height: 1.6; }
.product-price { font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.product-price-note { font-size: 13px; color: var(--mid-grey); margin-bottom: 32px; }
.spec-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.spec-pill { background: rgba(27,42,74,0.07); color: var(--navy); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* ── SPECS TABLE ── */
.specs-section { padding: 80px 0; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.spec-group-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid rgba(212,168,67,0.2); }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--light-grey); }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-size: 14px; color: var(--mid-grey); }
.spec-value { font-size: 14px; font-weight: 600; color: var(--navy); text-align: right; }

/* ── CERT BADGES ── */
.cert-badges { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 48px; }
.cert-badge { background: var(--white); border: 2px solid rgba(27,42,74,0.12); border-radius: 12px; padding: 20px 28px; text-align: center; box-shadow: var(--shadow); }
.cert-badge-icon { font-size: 32px; margin-bottom: 8px; }
.cert-badge-title { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; }
.cert-badge-sub { font-size: 11px; color: var(--mid-grey); margin-top: 2px; }

/* ── GALLERY ── */
.gallery-hero { background: var(--navy); padding: 140px 0 80px; }
.gallery-coming-soon { text-align: center; padding: 100px 0; }
.coming-soon-icon { font-size: 80px; margin-bottom: 32px; opacity: 0.3; }
.gallery-placeholder { background: var(--off-white); border-radius: 16px; padding: 80px; margin-top: 48px; border: 2px dashed rgba(27,42,74,0.2); }
.gallery-grid-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.gallery-thumb-ph { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.gallery-thumb-ph:nth-child(odd) { background: rgba(27,42,74,0.06); }
.gallery-thumb-ph:nth-child(even) { background: rgba(212,168,67,0.1); }
.gallery-thumb-ph.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; font-size: 48px; background: rgba(27,42,74,0.1); }

/* ── WHY PAGE ── */
.why-intro { background: var(--navy); padding: 140px 0 80px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 64px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 40px 36px; }
.why-card-num { font-family: 'Playfair Display', serif; font-size: 56px; color: rgba(212,168,67,0.25); font-weight: 700; line-height: 1; margin-bottom: 16px; }
.why-card-title { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card-body { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.why-highlight { color: var(--gold); font-weight: 600; }

/* ── BUSINESS PAGE ── */
.biz-hero { background: linear-gradient(135deg, var(--navy) 60%, #2d4a80); padding: 140px 0 80px; }
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 48px; }
.benefit-list { list-style: none; margin: 28px 0; }
.benefit-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { width: 44px; height: 44px; background: rgba(212,168,67,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.benefit-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.quote-form-card { background: var(--white); border-radius: 16px; padding: 48px; box-shadow: var(--shadow-lg); }
.form-title { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--navy); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--mid-grey); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid rgba(27,42,74,0.2); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--text); transition: border-color 0.2s; }
.form-input:focus { outline: none; border-color: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-full { grid-column: 1 / -1; }
.form-select { width: 100%; padding: 12px 16px; border: 1px solid rgba(27,42,74,0.2); border-radius: var(--radius); font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); }
.form-textarea { min-height: 100px; resize: vertical; }

/* ── FOOTER (WHITE) ── */
.footer-simple-top { margin-bottom: 40px; }
.footer-brand-col { max-width: 420px; }
.footer-main-row { display:flex; justify-content:space-between; align-items:flex-start; gap:48px; padding-bottom:40px; }
.footer-right-col { display:flex; flex-direction:column; align-items:flex-end; gap:20px; max-width:440px; text-align:right; }
.footer-legal-block { font-size:12px; color:var(--mid-grey); line-height:1.6; }
.footer-legal-block p { margin-bottom:12px; }
.footer-right-col .footer-bottom-links { justify-content:flex-end; }
@media (max-width:768px) { .footer-main-row { flex-direction:column; } .footer-right-col { align-items:flex-start; text-align:left; max-width:100%; } .footer-right-col .footer-bottom-links { justify-content:flex-start; } }
footer {
  background: var(--white);
  color: var(--text);
  padding: 60px 0 32px;
  border-top: 1px solid var(--light-grey);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: var(--mid-grey); margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.social-icon { width: 36px; height: 36px; background: rgba(27,42,74,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--navy); text-decoration: none; transition: background 0.2s, color 0.2s; }
.social-icon:hover { background: var(--gold); color: var(--navy); }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #666; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--light-grey); font-size: 12px; color: var(--mid-grey); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #999; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--navy); }
/* JMA logo in footer — no white bg needed on white footer */
.footer-jma-logo { height: 40px; object-fit: contain; border-radius: 3px; padding: 0; }
/* Footer cert strip (used in inner pages) */
.footer-certs { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--mid-grey); }
/* Inner-page footer text brand */
.footer-brand { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.footer-tagline { font-size: 13px; color: var(--mid-grey); margin-bottom: 12px; line-height: 1.5; }

/* ── THANK YOU POPUP ── */
.popup-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; }
.popup-card { background:var(--white); border-radius:16px; padding:48px 40px 36px; max-width:420px; width:100%; text-align:center; position:relative; box-shadow:0 24px 60px rgba(0,0,0,0.18); animation:popupIn 0.28s ease; }
@keyframes popupIn { from { opacity:0; transform:scale(0.92) translateY(12px); } to { opacity:1; transform:scale(1) translateY(0); } }
.popup-close { position:absolute; top:14px; right:18px; background:none; border:none; font-size:20px; color:var(--mid-grey); cursor:pointer; line-height:1; padding:4px; transition:color 0.15s; }
.popup-close:hover { color:var(--navy); }
.popup-icon { font-size:44px; margin-bottom:16px; line-height:1; }
.popup-card h3 { font-family:'Playfair Display',serif; font-size:1.7rem; color:var(--navy); margin-bottom:10px; }
.popup-card > p { font-size:15px; color:var(--mid-grey); line-height:1.6; margin-bottom:28px; }
.popup-card .btn { min-width:140px; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar { background: var(--navy); padding: 10px 0; text-align: center; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }
.announcement-bar a { color: var(--gold); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(200,164,74,0.4); }


/* ── BREADCRUMB ── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── TESTIMONIAL ── */
.testimonial-section { background: var(--off-white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.testimonial-card { background: var(--white); border-radius: 12px; padding: 32px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; left: 24px; font-family: 'Playfair Display', serif; font-size: 80px; color: rgba(212,168,67,0.15); line-height: 1; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; padding-top: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); font-weight: 700; }
.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-venue { font-size: 12px; color: var(--mid-grey); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 4px; }

/* Utility */
.gold-divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 20px 0; }
.gold-divider.center { margin: 20px auto; }

/* ── MOBILE RESPONSIVE (≤900px) ── */
@media (max-width: 900px) {
  /* ── NAV (hamburger) ── */
  nav {
    padding: 0 14px;
    height: 58px;
    gap: 8px;
    position: fixed;
  }
  .nav-logo img { height: 28px !important; }
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: 0 12px 24px rgba(27,42,74,0.12);
    border-top: 1px solid rgba(27,42,74,0.06);
    transform: translateY(-120%);
    transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
    overflow: visible;
    z-index: 999;
  }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 16px 22px;
    font-size: 16px;
    border-bottom: 1px solid #f0ede5;
    white-space: normal;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin: 12px 22px 0;
    padding: 14px 22px !important;
    font-size: 14px !important;
    text-align: center;
    border-radius: 8px;
  }
  nav.open .nav-links { transform: translateY(0); }

  /* ── LAYOUT PRIMITIVES ── */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-title { font-size: 28px !important; line-height: 1.2; }
  .section-subtitle { font-size: 15px; line-height: 1.6; }
  h1.section-title, .section-title[style*="52px"], .section-title[style*="48px"] {
    font-size: 32px !important;
  }
  .section-title[style*="36px"], .section-title[style*="34px"] {
    font-size: 24px !important;
  }
  .btn-lg { padding: 14px 22px; font-size: 14px; }

  /* ── HERO (homepage) — reorder: title, image, body/CTAs/stats ── */
  .hero { min-height: auto; padding-top: 58px; }
  .hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas: "top" "visual" "bottom" !important;
    gap: 24px !important;
    padding: 32px 0 !important;
  }
  .hero-top { align-self: auto; }
  .hero-bottom { align-self: auto; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 14px; }
  .hero-title { font-size: 34px !important; line-height: 1.15; margin-bottom: 18px; }
  .hero-body { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn, .hero-actions .btn-outline-dark { width: 100%; text-align: center; }
  .hero-stats { gap: 20px; padding-top: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }
  .hero-visual { max-width: 100%; overflow: hidden; }
  .hero-video-wrap video, .hero-video-wrap img { max-height: 320px !important; }
  .hero-video-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }
  .hero-video-caption-text { font-size: 12px; }
  .hero-cert-row { gap: 6px; }
  .mini-badge { font-size: 10px; padding: 4px 10px; }

  /* ── TRUST BAR ── */
  .trust-bar { padding: 12px 0; }
  .trust-bar-inner {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 0 14px;
    justify-content: center;
  }
  .trust-item { font-size: 11px; gap: 6px; }

  /* ── SPLIT CTA ── */
  .split-cta-grid {
    grid-template-columns: 1fr !important;
    border-radius: 12px;
  }
  .split-cta-card { padding: 32px 22px; }
  .split-cta-title { font-size: 22px; }
  .split-cta-body { font-size: 14px; margin-bottom: 20px; }

  /* ── FEATURES / GRIDS ── */
  .features-grid { grid-template-columns: 1fr !important; gap: 16px; margin-top: 32px; }
  .feature-card { padding: 24px; }

  /* ── TESTIMONIALS ── */
  .testimonial-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 14px; padding-top: 20px; }

  /* ── TABLES: horizontal scroll ── */
  .comparison-table,
  .compare-table-full,
  .deep-compare-table,
  .diff-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table th, .comparison-table td,
  .compare-table-full th, .compare-table-full td,
  .deep-compare-table th, .deep-compare-table td,
  .diff-table th, .diff-table td {
    padding: 10px 12px;
  }

  /* ── PRODUCT / GRID LAYOUTS ── */
  .products-grid,
  .product-grid,
  .pdp-grid,
  .specs-grid,
  .biz-grid,
  .biz-hero-grid,
  .pillars-grid,
  .sectors-grid,
  .accessories-grid,
  .includes-grid,
  .preview-grid,
  .phases-grid,
  .proof-grid,
  .anti-grid,
  .downloads-grid,
  .gallery-placeholder-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Certs grid stays 2-col */
  .certs-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .cert-item { padding: 18px 12px; }
  .cert-icon { font-size: 30px; }
  .cert-name { font-size: 13px; }
  .cert-desc { font-size: 12px; }

  /* Product cards */
  .product-card { margin: 0; }
  .product-info { padding: 24px; }
  .product-name { font-size: 22px; }
  .product-specs-mini { grid-template-columns: 1fr 1fr !important; }
  .product-ctas { flex-direction: column; gap: 10px; }
  .product-ctas .btn { width: 100%; text-align: center; }

  /* Install steps */
  .install-steps { grid-template-columns: 1fr 1fr !important; gap: 12px; }

  /* Process steps on for-business */
  .process-steps { flex-direction: column; gap: 20px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }

  /* Problem/Solution */
  .ps-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .ps-col {
    padding: 28px 22px !important;
    border-radius: 12px !important;
  }
  .ps-col.solution { border-left: 1px solid #C4E9D4 !important; }

  /* Gallery */
  .gallery-placeholder:first-child { grid-column: auto !important; aspect-ratio: 16/9 !important; }
  .gallery-placeholder.tall { grid-row: auto !important; aspect-ratio: 1 !important; }
  .filter-bar { gap: 6px; margin-bottom: 28px; }
  .filter-btn { padding: 7px 14px; font-size: 11px; }
  .phase2-card { padding: 0 !important; }
  .phase2-title { font-size: 22px !important; }

  /* Antimicrobial stat on JA-6107 */
  .anti-big-stat { font-size: 40px !important; }
  .anti-stat-label { font-size: 14px; }
  .anti-visual { height: 200px; }

  /* Venue chips */
  .venue-types { gap: 8px; }
  .venue-chip { padding: 7px 14px; font-size: 12px; }

  /* Quote form */
  .quote-form-card { padding: 28px 22px !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .form-radio-group { flex-direction: column; }
  .form-radio-btn { min-width: 0; }
  .form-radio-btn label { text-align: left; }

  /* Inline grid overrides (for sections using inline style= grids) */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 1fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr 1fr"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* PDP image panel */
  .pdp-img-panel { padding: 32px 22px !important; }
  .pdp-name { font-size: 30px !important; }
  .pdp-tagline { font-size: 15px !important; margin-bottom: 22px !important; }
  .pdp-ctas .btn { width: 100%; text-align: center; }

  /* Also Consider (JA-6106 related-card) */
  .related-card + div { padding-left: 0 !important; padding-top: 14px !important; }
  section > .container > div[style*="display:flex;gap:32px"],
  section > .container > div[style*="display:flex;gap: 32px"] {
    flex-direction: column !important;
  }

  /* Timeline */
  .timeline::before { left: 22px; }
  .timeline-item { gap: 20px !important; padding-bottom: 28px !important; }
  .timeline-dot { width: 44px !important; height: 44px !important; font-size: 13px !important; }
  .timeline-title { font-size: 17px !important; }
  .timeline-body { font-size: 14px; }

  /* FAQ */
  .faq-q-text { font-size: 14px; }
  .faq-a { font-size: 14px; padding-bottom: 20px; }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-brand-desc { font-size: 13px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Announcement bar */
  .announcement-bar {
    font-size: 11px;
    padding: 8px 14px;
    line-height: 1.5;
  }


  /* Page hero padding tweaks */
  .products-hero, .why-hero, .biz-hero, .gallery-hero, .pdp-hero {
    padding: 100px 0 50px !important;
  }
  .biz-hero, .biz-hero #quote { scroll-margin-top: 58px; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .section-title { font-size: 24px !important; }
  .hero-title { font-size: 28px !important; }
  .pdp-name { font-size: 26px !important; }
  .phase2-title { font-size: 20px !important; }
  .certs-grid { grid-template-columns: 1fr !important; }
  .install-steps { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-grid > div:first-child { grid-column: auto; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 11px; }
  .nav-cta { padding: 6px 10px !important; font-size: 10px !important; }
  .btn-lg { padding: 12px 18px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — FULL-SCREEN VIDEO BACKGROUND (index.html)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Override the default light hero */
.hero.hero-video {
  background: var(--navy-dark);
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
}
/* Remove default radial gradient */
.hero.hero-video::before { display: none; }

/* Background video element */
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.5;
}
/* Dark gradient overlay */
.hero-bg-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 15, 28, 0.72) 0%,
    rgba(9, 15, 28, 0.86) 100%
  );
}

/* Full-video content wrapper */
.hero-fv-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}
.hero-fv-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Text overrides: dark bg */
.hero.hero-video .hero-eyebrow {
  color: var(--gold);
  opacity: 1;
}
.hero.hero-video .hero-title {
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
}
.hero.hero-video .hero-title em { color: var(--gold); font-style: italic; }
.hero.hero-video .hero-body {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}
.hero.hero-video .hero-actions {
  margin-bottom: 40px;
  justify-content: center;
}

/* Stats row on dark bg */
.hero.hero-video .hero-stats {
  border-color: rgba(255, 255, 255, 0.13);
  gap: 32px;
  padding-top: 28px;
  justify-content: center;
}
.hero.hero-video .hero-stat-num {
  color: var(--white);
  font-size: clamp(24px, 2.5vw, 34px);
}
.hero.hero-video .hero-stat-label { color: rgba(255, 255, 255, 0.5); }

/* Cert strip pinned to bottom of hero */
.hero-cert-strip {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}
.hero-cert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.3px;
}
.hero-cert-strip-inner span { display: flex; align-items: center; gap: 6px; }
.hero-cert-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.5);
  display: inline-block;
}

@media (max-width: 900px) {
  .hero.hero-video { padding-top: 58px; min-height: 100svh; }
  .hero-fv-inner { padding: 48px 0 28px; }
  .hero-fv-content { max-width: 100%; }
  .hero-cert-strip-inner { gap: 16px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   JMA LOGO PLACEMENT — "DISTRIBUTED BY" BADGE
   ═══════════════════════════════════════════════════════════════════════════ */
.jma-distributor-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 20px;
}
.jma-distributor-badge .jma-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-grey);
  white-space: nowrap;
}
.jma-distributor-badge img {
  height: 32px;
  object-fit: contain;
}
/* Dark variant (on navy backgrounds) */
.jma-distributor-badge.dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.jma-distributor-badge.dark .jma-label { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════════════════════
   NAV — SCROLL GLASS TRANSITION
   (enhanced via JS; CSS fallback here)
   ═══════════════════════════════════════════════════════════════════════════ */
nav {
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-LOAD HERO TRANSITIONS (products.html & why.html)
   Children animate in sequentially when the page first loads.
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.products-hero-inner > *,
.why-hero-inner > * {
  animation: heroItemIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.products-hero-inner > *:nth-child(1),
.why-hero-inner > *:nth-child(1) { animation-delay: 0.08s; }
.products-hero-inner > *:nth-child(2),
.why-hero-inner > *:nth-child(2) { animation-delay: 0.22s; }
.products-hero-inner > *:nth-child(3),
.why-hero-inner > *:nth-child(3) { animation-delay: 0.38s; }
.products-hero-inner > *:nth-child(4),
.why-hero-inner > *:nth-child(4) { animation-delay: 0.50s; }

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GUIDE SIGNUP — Footer email capture section
   ═══════════════════════════════════════════════════════════════════════════ */
.guide-signup-section {
  background: var(--navy-dark);
  padding: 72px 0;
}
.guide-signup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.guide-signup-copy { flex: 1; min-width: 0; }
.guide-signup-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.guide-signup-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.guide-signup-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 420px;
}
.guide-signup-form {
  flex: 0 0 auto;
  width: 380px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-signup-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.guide-signup-form input::placeholder { color: rgba(255,255,255,0.35); }
.guide-signup-form input:focus { border-color: var(--gold); }
.guide-signup-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.guide-signup-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.guide-signup-thanks {
  display: none;
  text-align: center;
  padding: 16px 0;
  color: var(--white);
}
.guide-signup-thanks .thanks-icon { font-size: 36px; margin-bottom: 12px; }
.guide-signup-thanks h4 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.guide-signup-thanks p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.guide-signup-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .guide-signup-inner { flex-direction: column; gap: 36px; }
  .guide-signup-form { width: 100%; }
  .guide-signup-title { font-size: 28px; }
}
