/* ============================================================
   BOMAG Scraper Parts — Premium Dark Green + Gold Corporate Design
   US Market B2B — Full SEO Layout
   ============================================================ */

:root {
  --navy:        #0F2419;
  --navy-mid:    #142B1E;
  --navy-light:  #1E4028;
  --navy-card:   #162E1F;
  --amber:       #D4A017;
  --amber-light: #E8B825;
  --amber-dark:  #B8890F;
  --amber-glow:  rgba(212,160,23,0.18);
  --amber-border:rgba(212,160,23,0.28);
  --text-on-dark:#E8F5E9;
  --text-muted-dark:rgba(232,245,233,0.45);
  --text-body:   #2C3E50;
  --text-mid:    #4A6077;
  --text-light:  #6B8098;
  --bg-white:    #FFFFFF;
  --bg-off:      #F4F7FA;
  --bg-gray:     #E8EDF3;
  --border:      #D0DCE8;
  --border-light:#E4EBF2;
  --green:       #10B981;
  --shadow-sm:   0 2px 8px rgba(15,36,25,0.12);
  --shadow-md:   0 8px 24px rgba(15,36,25,0.18);
  --shadow-lg:   0 16px 48px rgba(15,36,25,0.25);
  --shadow-amber:0 4px 22px rgba(212,160,23,0.35);
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
  --radius:      6px;
  --radius-lg:   14px;
  --max-w:       1380px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family:'Inter','Segoe UI',system-ui,-apple-system,sans-serif;
  font-size:16px; line-height:1.75; color:var(--text-body);
  background:var(--bg-white);
}
h1,h2,h3,h4,h5,h6 { font-weight:700; line-height:1.2; color:var(--navy); margin-bottom:0.85rem; }
h1 { font-size:2.6rem; }
h2 { font-size:2rem; }
h3 { font-size:1.45rem; }
h4 { font-size:1.1rem; font-weight:600; }
p  { margin-bottom:1.1rem; color:var(--text-mid); line-height:1.8; }
a  { color:var(--navy-light); text-decoration:none; transition:var(--transition); }
a:hover { color:var(--amber-dark); }
ul,ol { padding-left:1.5rem; margin-bottom:1.1rem; }
li { margin-bottom:0.4rem; color:var(--text-mid); }
strong { color:var(--text-body); font-weight:600; }
img { max-width:100%; height:auto; }

/* ===== ANNOUNCEMENT STRIP ===== */
.announce-bar {
  background: var(--amber);
  padding:0.4rem 1.5rem;
  text-align:center;
  font-size:0.81rem;
  font-weight:600;
  color: var(--navy);
  letter-spacing:0.03em;
}
.announce-bar a { color:var(--navy); text-decoration:underline; }

/* ===== TOP UTILITY BAR ===== */
.top-bar {
  background: var(--navy);
  padding:0.45rem 1.5rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.top-bar-inner {
  max-width:var(--max-w); margin:0 auto;
  display:flex; justify-content:space-between; align-items:center; gap:1rem;
  font-size:0.8rem; color:var(--text-muted-dark);
}
.top-bar a { color:var(--text-muted-dark); transition:var(--transition); }
.top-bar a:hover { color:var(--amber); }
.top-bar-flags { display:flex; gap:0.6rem; align-items:center; }
.top-bar-contact { display:flex; gap:1.2rem; align-items:center; }

/* ===== MAIN HEADER ===== */
header {
  background: var(--navy-mid);
  padding:0 1.5rem;
  position:sticky; top:0; z-index:1000;
  border-bottom:2px solid var(--amber);
  box-shadow:0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width:var(--max-w); margin:0 auto;
  display:flex; align-items:center;
  justify-content:space-between; gap:2rem; height:72px;
}

/* Logo */
.logo-wrap { display:flex; align-items:center; gap:1rem; text-decoration:none; flex-shrink:0; }
.logo-icon { width:48px; height:48px; flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; line-height:1; }
.brand-name { font-size:1.1rem; font-weight:800; color:#fff; letter-spacing:0.04em; text-transform:uppercase; }
.brand-tag { font-size:0.65rem; color:var(--amber); font-weight:600; letter-spacing:0.12em; text-transform:uppercase; margin-top:0.2rem; }

/* Nav */
.main-nav { display:flex; align-items:stretch; height:72px; }
.nav-item { position:relative; display:flex; align-items:center; }
.nav-link {
  color:rgba(255,255,255,0.78); font-size:0.875rem; font-weight:500;
  padding:0 1rem; height:100%; display:flex; align-items:center;
  border-bottom:3px solid transparent; transition:var(--transition);
  white-space:nowrap;
}
.nav-link:hover, .nav-link.active { color:#fff; border-bottom-color:var(--amber); }

/* Mega dropdown */
.nav-dropdown {
  position:absolute; top:100%; left:0;
  background:var(--navy-mid);
  border:1px solid rgba(245,184,0,0.15);
  border-top:2px solid var(--amber);
  min-width:220px;
  box-shadow:var(--shadow-lg);
  opacity:0; visibility:hidden;
  transform:translateY(-8px);
  transition:var(--transition); z-index:999;
  border-radius:0 0 var(--radius) var(--radius);
}
.nav-item:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a {
  display:block; padding:0.6rem 1.2rem;
  color:rgba(255,255,255,0.72); font-size:0.86rem;
  border-bottom:1px solid rgba(255,255,255,0.04);
  transition:var(--transition);
}
.nav-dropdown a:last-child { border-bottom:none; }
.nav-dropdown a:hover { color:var(--amber); background:rgba(245,184,0,0.08); padding-left:1.5rem; }

/* Header CTA */
.header-cta { display:flex; gap:0.5rem; align-items:center; flex-shrink:0; }
.btn-call {
  display:flex; align-items:center; gap:0.4rem;
  padding:0.48rem 0.9rem; border-radius:var(--radius);
  font-size:0.84rem; font-weight:600; white-space:nowrap;
  background:rgba(255,255,255,0.08); color:#fff;
  border:1px solid rgba(255,255,255,0.12); transition:var(--transition);
}
.btn-call:hover { background:rgba(255,255,255,0.15); color:#fff; }
.btn-wa {
  display:flex; align-items:center; gap:0.4rem;
  padding:0.48rem 0.9rem; border-radius:var(--radius);
  font-size:0.84rem; font-weight:700; white-space:nowrap;
  background:#25D366; color:#fff; transition:var(--transition);
}
.btn-wa:hover { background:#1DB954; color:#fff; box-shadow:0 4px 14px rgba(37,211,102,0.35); }
.btn-icon { width:15px; height:15px; flex-shrink:0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background:var(--bg-off); border-bottom:1px solid var(--border-light);
  padding:0.55rem 1.5rem; font-size:0.81rem;
}
.breadcrumb-inner { max-width:var(--max-w); margin:0 auto; display:flex; align-items:center; gap:0.45rem; flex-wrap:wrap; }
.breadcrumb a { color:var(--text-light); }
.breadcrumb a:hover { color:var(--amber-dark); }
.breadcrumb-sep { color:var(--border); }
.breadcrumb strong { color:var(--text-body); font-weight:500; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0D2640 100%);
  padding:5rem 1.5rem;
  position:relative; overflow:hidden;
}
/* Geometric grid overlay */
.hero::before {
  content:''; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(245,184,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,184,0,0.04) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
/* Diagonal accent line */
.hero::after {
  content:''; position:absolute;
  top:0; right:0; width:45%; height:100%;
  background:linear-gradient(135deg, transparent 40%, rgba(245,184,0,0.04) 100%);
  pointer-events:none;
}
.hero-inner {
  max-width:var(--max-w); margin:0 auto;
  display:grid; grid-template-columns:1fr 380px;
  gap:3rem; align-items:center; position:relative; z-index:1;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:0.6rem;
  background:var(--amber-glow); border:1px solid var(--amber-border);
  color:var(--amber-light); font-size:0.75rem; font-weight:700;
  padding:0.3rem 0.9rem; border-radius:3px; margin-bottom:1.4rem;
  text-transform:uppercase; letter-spacing:0.08em;
}
.hero-eyebrow-dot { width:6px; height:6px; background:var(--amber); border-radius:50%; }
.hero h1 { color:#fff; font-size:2.8rem; line-height:1.12; margin-bottom:1.3rem; }
.hero h1 em { font-style:normal; color:var(--amber); }
.hero-desc { color:rgba(220,232,245,0.72); font-size:1rem; max-width:550px; margin-bottom:2rem; line-height:1.8; }
.hero-stats {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:0; border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius); margin-bottom:2rem; overflow:hidden;
}
.stat-item {
  padding:1rem 0.8rem; text-align:center;
  border-right:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
}
.stat-item:last-child { border-right:none; }
.stat-num { font-size:1.7rem; font-weight:800; color:var(--amber); line-height:1; }
.stat-label { font-size:0.68rem; color:var(--text-muted-dark); text-transform:uppercase; letter-spacing:0.06em; margin-top:0.2rem; }
.hero-actions { display:flex; gap:0.8rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.btn-amber {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:var(--amber); color:var(--navy); font-weight:800; font-size:0.92rem;
  padding:0.85rem 1.8rem; border-radius:var(--radius); text-decoration:none;
  transition:var(--transition); border:2px solid var(--amber); white-space:nowrap;
}
.btn-amber:hover { background:var(--amber-light); color:var(--navy); box-shadow:var(--shadow-amber); transform:translateY(-2px); }
.btn-outline-light {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:transparent; color:rgba(255,255,255,0.85); font-weight:600; font-size:0.92rem;
  padding:0.85rem 1.8rem; border-radius:var(--radius); border:2px solid rgba(255,255,255,0.2);
  text-decoration:none; transition:var(--transition); white-space:nowrap;
}
.btn-outline-light:hover { background:rgba(255,255,255,0.08); color:#fff; border-color:rgba(255,255,255,0.4); }

/* Hero search */
.hero-search { position:relative; max-width:520px; }
.search-label { font-size:0.72rem; color:var(--text-muted-dark); text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.5rem; font-weight:600; }
.search-wrap {
  display:flex; background:rgba(255,255,255,0.08);
  border:1.5px solid rgba(255,255,255,0.18);
  border-radius:4px; overflow:hidden; transition:var(--transition);
}
.search-wrap:focus-within { border-color:var(--amber); background:rgba(255,255,255,0.12); box-shadow:0 0 0 3px rgba(245,184,0,0.12); }
.search-input {
  flex:1; background:transparent; border:none; outline:none;
  padding:0.7rem 1.1rem; color:#fff; font-size:0.9rem;
}
.search-input::placeholder { color:rgba(255,255,255,0.35); }
.search-btn {
  background:var(--amber); border:none; padding:0 1.2rem;
  cursor:pointer; display:flex; align-items:center; gap:0.4rem;
  color:var(--navy); font-size:0.84rem; font-weight:700; transition:var(--transition);
  flex-shrink:0;
}
.search-btn:hover { background:var(--amber-light); }
.search-btn svg { width:16px; height:16px; }
#searchResults {
  position:absolute; top:calc(100% + 4px); left:0; right:0;
  background:var(--navy-mid); border:1px solid var(--amber-border);
  border-radius:var(--radius); max-height:360px; overflow-y:auto;
  box-shadow:var(--shadow-lg); z-index:9000; display:none;
}
.search-result-item {
  display:flex; align-items:center; gap:0.7rem;
  padding:0.65rem 1rem; cursor:pointer; transition:var(--transition);
  border-bottom:1px solid rgba(255,255,255,0.04); text-decoration:none;
}
.search-result-item:last-child { border-bottom:none; }
.search-result-item:hover, .search-result-item.active { background:rgba(245,184,0,0.1); }
.result-sku { font-family:monospace; font-size:0.8rem; color:var(--amber); min-width:115px; font-weight:700; }
.result-name { font-size:0.84rem; color:rgba(255,255,255,0.75); flex:1; }
.result-cat { font-size:0.72rem; color:rgba(255,255,255,0.35); white-space:nowrap; }
.search-no-results { padding:1.2rem; text-align:center; color:rgba(255,255,255,0.35); font-size:0.86rem; }

/* Hero right panel — quick parts */
.hero-panel {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-top:3px solid var(--amber);
  border-radius:var(--radius-lg); padding:1.8rem;
}
.hero-panel-title {
  font-size:0.72rem; color:var(--amber); font-weight:700;
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:1.2rem;
}
.quick-part-list { list-style:none; padding:0; margin:0 0 1.2rem; display:flex; flex-direction:column; gap:0.55rem; }
.quick-part-list li { display:flex; align-items:center; gap:0.7rem; }
.part-num {
  font-family:monospace; font-size:0.77rem; font-weight:700;
  color:var(--amber); background:rgba(245,184,0,0.1);
  border:1px solid rgba(245,184,0,0.2);
  padding:0.18rem 0.55rem; border-radius:3px; min-width:120px; text-align:center;
}
.part-desc { font-size:0.81rem; color:rgba(220,232,245,0.6); }
.hero-panel-cta {
  display:block; text-align:center;
  background:rgba(245,184,0,0.12); color:var(--amber);
  border:1px solid rgba(245,184,0,0.25); padding:0.6rem;
  border-radius:var(--radius); font-size:0.83rem; font-weight:700;
  transition:var(--transition);
}
.hero-panel-cta:hover { background:var(--amber); color:var(--navy); }

/* ===== TRUST RIBBON ===== */
.trust-ribbon {
  background:var(--navy-light);
  border-bottom:1px solid rgba(245,184,0,0.1);
  overflow:hidden;
}
.trust-ribbon-inner {
  max-width:var(--max-w); margin:0 auto;
  display:flex; align-items:center; justify-content:center;
  gap:0; padding:0;
}
.trust-pill {
  display:flex; align-items:center; gap:0.6rem;
  padding:0.9rem 1.8rem; font-size:0.79rem; color:rgba(220,232,245,0.65);
  border-right:1px solid rgba(255,255,255,0.06); white-space:nowrap;
}
.trust-pill:last-child { border-right:none; }
.trust-icon { color:var(--amber); font-size:1rem; flex-shrink:0; }

/* ===== CONTAINER ===== */
.container { max-width:var(--max-w); margin:0 auto; padding:0 1.5rem; }

/* ===== SECTION LABEL ===== */
.sec-label {
  display:inline-block;
  background:transparent; color:var(--amber-dark);
  font-size:0.73rem; font-weight:800; text-transform:uppercase;
  letter-spacing:0.12em; margin-bottom:0.7rem;
  padding-left:1rem; position:relative;
}
.sec-label::before {
  content:''; position:absolute; left:0; top:50%;
  transform:translateY(-50%); width:5px; height:16px;
  background:var(--amber); border-radius:2px;
}
.section-head { text-align:center; margin-bottom:3rem; }
.section-head h2 { color:var(--navy); font-size:2rem; }
.section-head p { color:var(--text-light); max-width:580px; margin:0.5rem auto 0; font-size:0.97rem; }

/* ===== WHY CHOOSE US — HORIZONTAL STRIPS ===== */
.why-section { padding:5rem 1.5rem; background:var(--bg-white); }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; max-width:var(--max-w); margin:0 auto; }
.why-card {
  border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:2rem 1.8rem;
  border-top:4px solid transparent;
  transition:var(--transition); background:var(--bg-white);
}
.why-card:hover { border-top-color:var(--amber); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.why-icon-wrap {
  width:52px; height:52px; margin-bottom:1.2rem;
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
}
.why-card h3 { font-size:1.05rem; color:var(--navy); margin-bottom:0.5rem; }
.why-card p  { font-size:0.87rem; color:var(--text-light); margin:0; line-height:1.7; }

/* ===== PRODUCT CATEGORIES ===== */
.cat-section { padding:5rem 1.5rem; background:var(--bg-off); }
.cat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; max-width:var(--max-w); margin:0 auto; }
.cat-card {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition); display:flex; flex-direction:column;
  text-decoration:none; position:relative;
}
.cat-card:hover { box-shadow:var(--shadow-md); border-color:var(--amber); transform:translateY(-3px); }
.cat-img { height:175px; background:var(--navy); overflow:hidden; position:relative; }
.cat-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.cat-card:hover .cat-img img { transform:scale(1.06); }
.cat-badge {
  position:absolute; top:0.75rem; left:0.75rem;
  background:var(--amber); color:var(--navy);
  font-size:0.7rem; font-weight:800; padding:0.2rem 0.55rem;
  border-radius:3px; text-transform:uppercase; letter-spacing:0.04em;
}
.cat-body { padding:1.4rem; flex:1; display:flex; flex-direction:column; }
.cat-body h3 { font-size:1rem; color:var(--navy); margin-bottom:0.45rem; }
.cat-body p  { font-size:0.85rem; color:var(--text-light); line-height:1.65; flex:1; margin-bottom:0.9rem; }
.cat-link {
  display:flex; align-items:center; gap:0.4rem;
  color:var(--amber-dark); font-size:0.84rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.04em;
}
.cat-link svg { width:14px; height:14px; transition:transform 0.2s; }
.cat-card:hover .cat-link svg { transform:translateX(4px); }

/* ===== PRODUCTS PAGE LAYOUT ===== */
.products-section { padding:3.5rem 1.5rem; }
.products-layout { display:grid; grid-template-columns:240px 1fr; gap:2.5rem; max-width:var(--max-w); margin:0 auto; align-items:start; }
.sidebar { position:sticky; top:82px; }
.filter-card { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:1.2rem; }
.filter-head { background:var(--navy); color:#fff; padding:0.85rem 1.1rem; font-size:0.85rem; font-weight:700; letter-spacing:0.04em; }
.filter-body { padding:0.4rem 0; }
.filter-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:0.58rem 1.1rem; color:var(--text-mid); font-size:0.86rem;
  border-bottom:1px solid var(--border-light); transition:var(--transition);
}
.filter-link:last-child { border-bottom:none; }
.filter-link:hover { background:var(--bg-off); color:var(--amber-dark); padding-left:1.4rem; }
.filter-link.active { color:var(--amber-dark); font-weight:700; background:rgba(245,184,0,0.06); border-left:3px solid var(--amber); }
.filter-count { background:var(--bg-gray); color:var(--text-light); font-size:0.73rem; padding:0.1rem 0.45rem; border-radius:8px; }

/* Product grid */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:1.25rem; }
.product-card {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
  transition:var(--transition);
}
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--amber); }
.product-card > a { text-decoration:none; display:flex; flex-direction:column; height:100%; }
.product-img { height:165px; overflow:hidden; background:var(--bg-off); }
.product-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.product-card:hover .product-img img { transform:scale(1.05); }
.product-body { padding:1.1rem; flex:1; display:flex; flex-direction:column; }
.product-sku { font-family:monospace; font-size:0.77rem; color:var(--amber-dark); font-weight:700; margin-bottom:0.3rem; }
.product-body h3 { font-size:0.95rem; color:var(--navy); margin-bottom:0.4rem; line-height:1.35; }
.product-body p  { font-size:0.83rem; color:var(--text-light); line-height:1.6; flex:1; margin-bottom:0.8rem; }
.product-foot { display:flex; align-items:center; justify-content:space-between; }
.product-cat-tag { font-size:0.71rem; font-weight:600; color:var(--text-light); text-transform:uppercase; letter-spacing:0.04em; }
.product-arrow { color:var(--amber-dark); font-size:1.1rem; font-weight:700; transition:var(--transition); }
.product-card:hover .product-arrow { transform:translateX(4px); }

/* ===== PRODUCT DETAIL PAGE ===== */
.page-banner {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding:3rem 1.5rem; position:relative; overflow:hidden;
}
.page-banner::after {
  content:''; position:absolute; right:0; top:0; bottom:0; width:40%;
  background:linear-gradient(90deg, transparent, rgba(245,184,0,0.04));
  pointer-events:none;
}
.page-banner-inner { max-width:var(--max-w); margin:0 auto; position:relative; z-index:1; }
.page-banner h1 { color:#fff; font-size:1.95rem; margin-bottom:0.5rem; }
.page-banner p { color:rgba(220,232,245,0.65); font-size:0.93rem; max-width:540px; margin:0; }

.product-detail-layout {
  display:grid; grid-template-columns:1fr 300px;
  gap:3rem; max-width:var(--max-w);
  margin:0 auto; padding:3rem 1.5rem; align-items:start;
}
.part-badge {
  display:inline-block; background:var(--navy); color:var(--amber);
  font-family:monospace; font-size:0.97rem; font-weight:700;
  padding:0.38rem 0.9rem; border-radius:4px; margin-bottom:0.75rem;
  border:1px solid rgba(245,184,0,0.2);
}
.product-main h1 { font-size:1.85rem; }
.product-meta { display:flex; gap:0.6rem; flex-wrap:wrap; margin:0.5rem 0 1.5rem; }
.meta-tag {
  font-size:0.77rem; color:var(--text-light); background:var(--bg-off);
  padding:0.2rem 0.6rem; border-radius:20px; border:1px solid var(--border);
}
.product-hero-img {
  border-radius:var(--radius-lg); overflow:hidden; margin-bottom:2rem;
  border:1px solid var(--border); background:var(--bg-off); aspect-ratio:16/9;
}
.product-hero-img img { width:100%; height:100%; object-fit:cover; }
.content-block { margin-bottom:2.5rem; }
.content-block h2 {
  font-size:1.25rem; color:var(--navy);
  padding:0.6rem 1rem 0.6rem 1rem;
  background:var(--bg-off); border-left:4px solid var(--amber);
  margin-bottom:1.1rem; border-radius:0 var(--radius) var(--radius) 0;
}
.content-block h3 { font-size:1.05rem; color:var(--navy-light); margin-bottom:0.7rem; }
.content-block p, .content-block li { font-size:0.93rem; }
.spec-table { width:100%; border-collapse:collapse; font-size:0.88rem; margin-bottom:1.5rem; }
.spec-table thead { background:var(--navy); color:#fff; }
.spec-table th { padding:0.68rem 1rem; text-align:left; font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; }
.spec-table tbody tr { border-bottom:1px solid var(--border-light); }
.spec-table tbody tr:nth-child(even) { background:var(--bg-off); }
.spec-table tbody tr:hover { background:rgba(245,184,0,0.04); }
.spec-table td { padding:0.65rem 1rem; color:var(--text-mid); }
.spec-table td:first-child { font-weight:600; color:var(--text-body); width:36%; }
.faq-item { border:1px solid var(--border); border-radius:var(--radius); margin-bottom:0.65rem; overflow:hidden; }
.faq-q { background:var(--bg-off); padding:0.9rem 1.1rem; font-weight:600; font-size:0.91rem; color:var(--navy); }
.faq-a { padding:0.9rem 1.1rem; font-size:0.87rem; color:var(--text-mid); line-height:1.75; border-top:1px solid var(--border-light); }
.related-block { margin-top:3rem; border-top:2px solid var(--bg-gray); padding-top:2rem; }
.related-block h2 { font-size:1.2rem; margin-bottom:1.25rem; }
.related-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(160px,1fr)); gap:0.75rem; }
.related-item {
  background:var(--bg-off); border:1px solid var(--border); border-radius:var(--radius);
  padding:0.75rem 1rem; text-align:center; color:var(--navy-light);
  font-size:0.84rem; font-weight:600; font-family:monospace; transition:var(--transition);
}
.related-item:hover { background:var(--amber); color:var(--navy); border-color:var(--amber); transform:translateY(-2px); }

/* Product sidebar */
.product-sidebar { position:sticky; top:82px; display:flex; flex-direction:column; gap:1.25rem; }
.sidebar-widget { background:var(--bg-white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.widget-head { background:var(--navy); color:#fff; padding:0.9rem 1.15rem; font-weight:700; font-size:0.86rem; display:flex; align-items:center; gap:0.5rem; }
.widget-body { padding:1.4rem 1.15rem; }
.widget-body p { font-size:0.86rem; color:var(--text-light); margin-bottom:0.9rem; }
.widget-cta {
  display:block; color:#fff; text-align:center;
  padding:0.82rem; border-radius:var(--radius); font-weight:700; font-size:0.91rem;
  transition:var(--transition); margin-bottom:0.65rem;
}
.widget-cta:last-of-type { margin-bottom:0; }
.cta-amber { background:var(--amber); color:var(--navy) !important; }
.cta-amber:hover { background:var(--amber-light); color:var(--navy) !important; box-shadow:var(--shadow-amber); }
.cta-wa { background:#25D366; }
.cta-wa:hover { background:#1DB954; box-shadow:0 4px 14px rgba(37,211,102,0.3); }
.widget-note { font-size:0.77rem; color:var(--text-muted-dark); text-align:center; margin-top:0.5rem; display:block; color:var(--text-light); }
.cert-list { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.5rem; }
.cert-list li { display:flex; align-items:center; gap:0.55rem; font-size:0.83rem; color:var(--text-mid); }
.cert-check { color:var(--green); font-size:0.9rem; flex-shrink:0; }

/* ===== CATEGORY PAGE ===== */
.category-layout { display:grid; grid-template-columns:240px 1fr; gap:2.5rem; max-width:var(--max-w); margin:0 auto; padding:3rem 1.5rem; align-items:start; }
.content-prose h2 { font-size:1.4rem; margin:2.5rem 0 1rem; padding-bottom:0.4rem; border-bottom:2px solid var(--bg-gray); color:var(--navy); }
.content-prose h2:first-child { margin-top:0; }
.content-prose h3 { font-size:1.1rem; color:var(--navy-light); margin:1.6rem 0 0.7rem; }
.content-prose p, .content-prose li { font-size:0.94rem; }
.callout-box {
  background:rgba(245,184,0,0.06); border:1px solid rgba(245,184,0,0.2);
  border-left:4px solid var(--amber); padding:1.2rem 1.5rem;
  border-radius:0 var(--radius) var(--radius) 0; margin:1.5rem 0;
}
.callout-box p { color:var(--text-body); margin:0; font-size:0.93rem; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding:4rem 1.5rem; text-align:center; position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(245,184,0,0.02) 40px, rgba(245,184,0,0.02) 41px);
  pointer-events:none;
}
.cta-strip-inner { position:relative; z-index:1; }
.cta-strip h2 { color:#fff; font-size:1.85rem; margin-bottom:0.7rem; }
.cta-strip p { color:rgba(220,232,245,0.72); font-size:0.96rem; margin-bottom:2rem; }
.btn-cta-amber {
  display:inline-flex; align-items:center; gap:0.5rem;
  background:var(--amber); color:var(--navy); font-weight:800;
  padding:0.95rem 2.2rem; border-radius:var(--radius); font-size:0.97rem;
  transition:var(--transition);
}
.btn-cta-amber:hover { background:var(--amber-light); color:var(--navy); box-shadow:var(--shadow-amber); transform:translateY(-2px); }

/* ===== ARTICLES / GUIDES ===== */
.articles-section { padding:5rem 1.5rem; background:var(--bg-white); }
.articles-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.5rem; max-width:var(--max-w); margin:0 auto 2.5rem; }
.article-card {
  background:var(--bg-white); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.8rem;
  transition:var(--transition); border-top:3px solid transparent;
}
.article-card:hover { box-shadow:var(--shadow-md); border-top-color:var(--amber); transform:translateY(-2px); }
.article-tag { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color:var(--amber-dark); margin-bottom:0.6rem; }
.article-card h3 { font-size:1.05rem; margin-bottom:0.55rem; }
.article-card h3 a { color:var(--navy); }
.article-card h3 a:hover { color:var(--amber-dark); }
.article-card p { font-size:0.86rem; color:var(--text-light); margin-bottom:0.9rem; }
.article-read-more { font-size:0.83rem; color:var(--amber-dark); font-weight:700; }

/* Article page */
.article-layout { display:grid; grid-template-columns:1fr 270px; gap:3rem; max-width:1280px; margin:0 auto; padding:3rem 1.5rem; align-items:start; }
.article-prose h2 { font-size:1.4rem; margin:2.5rem 0 1rem; border-left:4px solid var(--amber); padding-left:0.8rem; color:var(--navy); }
.article-prose h3 { font-size:1.1rem; margin:1.8rem 0 0.75rem; color:var(--navy-light); }
.article-prose p, .article-prose li { font-size:0.95rem; line-height:1.85; }
.article-toc {
  background:var(--bg-off); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:1.5rem; position:sticky; top:82px;
}
.toc-title { font-size:0.75rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-light); margin-bottom:1rem; }
.toc-list { list-style:none; padding:0; }
.toc-list li { margin-bottom:0.4rem; }
.toc-list a { font-size:0.83rem; color:var(--text-mid); display:block; padding-left:0.7rem; border-left:2px solid transparent; transition:var(--transition); }
.toc-list a:hover { color:var(--amber-dark); border-left-color:var(--amber); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding:4rem 1.5rem; }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; max-width:1200px; margin:0 auto; }
.contact-info h2 { font-size:1.75rem; }
.contact-detail { display:flex; gap:1rem; margin-bottom:1.5rem; align-items:flex-start; }
.contact-icon { width:42px; height:42px; background:rgba(245,184,0,0.1); border:1px solid rgba(245,184,0,0.2); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-icon svg { width:18px; height:18px; color:var(--amber-dark); }
.contact-text h4 { font-size:0.78rem; color:var(--text-muted-dark); font-weight:600; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:0.22rem; color:var(--text-light); }
.contact-text a, .contact-text span { font-size:0.97rem; color:var(--text-body); font-weight:600; }
.contact-text a:hover { color:var(--amber-dark); }
.form-wrap { background:var(--bg-off); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.5rem; }
.form-wrap h2 { font-size:1.4rem; }
.form-sub { font-size:0.86rem; color:var(--text-light); margin-bottom:1.8rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-group label { display:block; font-size:0.83rem; font-weight:600; color:var(--text-body); margin-bottom:0.38rem; }
.form-group label .req { color:var(--amber-dark); }
.form-control {
  width:100%; padding:0.7rem 0.95rem; border:1.5px solid var(--border);
  border-radius:var(--radius); font-size:0.89rem; color:var(--text-body);
  background:var(--bg-white); transition:var(--transition); outline:none; font-family:inherit;
}
.form-control:focus { border-color:var(--amber); box-shadow:0 0 0 3px rgba(245,184,0,0.1); }
textarea.form-control { resize:vertical; min-height:115px; }
.form-honeypot { display:none !important; }
.btn-submit {
  width:100%; background:var(--amber); color:var(--navy); border:none;
  border-radius:var(--radius); padding:0.9rem; font-size:0.97rem; font-weight:800;
  cursor:pointer; transition:var(--transition); font-family:inherit;
}
.btn-submit:hover { background:var(--amber-light); box-shadow:var(--shadow-amber); }
.btn-submit:disabled { opacity:0.5; cursor:not-allowed; }
.form-note { font-size:0.77rem; color:var(--text-light); text-align:center; margin-top:0.65rem; }
.alert { padding:0.9rem 1.1rem; border-radius:var(--radius); margin-bottom:0.9rem; font-size:0.88rem; font-weight:500; }
.alert-success { background:rgba(16,185,129,0.08); border:1px solid rgba(16,185,129,0.25); color:#065F46; }
.alert-error { background:rgba(220,38,38,0.07); border:1px solid rgba(220,38,38,0.2); color:#991B1B; }

/* ===== FOOTER ===== */
footer { background:var(--navy); padding:4rem 1.5rem 0; }
.footer-grid {
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1.4fr;
  gap:3rem; max-width:var(--max-w); margin:0 auto 3rem;
}
.footer-brand .logo-wrap { margin-bottom:1.2rem; }
.footer-brand p { color:rgba(220,232,245,0.4); font-size:0.86rem; line-height:1.8; }
.footer-col h4 {
  color:#fff; font-size:0.84rem; font-weight:800; margin-bottom:1.2rem;
  text-transform:uppercase; letter-spacing:0.07em;
  padding-bottom:0.6rem; border-bottom:1px solid rgba(245,184,0,0.2);
}
.footer-col a { display:block; color:rgba(220,232,245,0.45); font-size:0.85rem; margin-bottom:0.5rem; transition:var(--transition); }
.footer-col a:hover { color:var(--amber); padding-left:4px; }
.footer-contact-row { display:flex; gap:0.6rem; margin-bottom:0.9rem; align-items:flex-start; }
.footer-contact-row svg { width:14px; height:14px; color:var(--amber); flex-shrink:0; margin-top:0.2rem; }
.footer-contact-row span, .footer-contact-row a { font-size:0.83rem; color:rgba(220,232,245,0.45); line-height:1.5; }
.footer-contact-row a:hover { color:var(--amber); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06); padding:1.2rem 0;
  max-width:var(--max-w); margin:0 auto;
  display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap;
}
.footer-bottom p { font-size:0.79rem; color:rgba(220,232,245,0.28); margin:0; }
.footer-bottom a { font-size:0.79rem; color:rgba(220,232,245,0.28); }
.footer-bottom a:hover { color:var(--amber); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:9999;
  width:56px; height:56px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 22px rgba(37,211,102,0.45); transition:var(--transition);
}
.wa-float:hover { transform:scale(1.1); background:#1DB954; }
.wa-float svg { width:28px; height:28px; fill:#fff; }

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {
  .products-layout, .category-layout { grid-template-columns:1fr; }
  .sidebar { position:static; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-panel { display:none; }
  .product-detail-layout { grid-template-columns:1fr; }
  .product-sidebar { position:static; }
  .contact-layout { grid-template-columns:1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-toc { display:none; }
  .trust-ribbon-inner { justify-content:flex-start; overflow-x:auto; }
}
@media (max-width:768px) {
  .main-nav { display:none; }
  .top-bar { display:none; }
  .hero { padding:3rem 1.2rem; }
  .hero h1 { font-size:2rem; }
  .hero-stats { grid-template-columns:repeat(3,1fr); }
  .cat-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .form-row { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  h1 { font-size:1.7rem; }
  .product-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
  .hero-actions { flex-direction:column; }
  .header-cta .btn-call { display:none; }
}
