/* =============================================
   A.C.P — Air Compressor Products
   Shared Stylesheet
   ============================================= */
:root {
  --ink: #07111f;
  --panel: #0f1d31;
  --teal: #0f8c89;
  --teal-light: #3dd8d2;
  --red: #d74b3d;
  --amber: #f0b94d;
  --text: #1f2a37;
  --muted: #64748b;
  --border: #e5eaf1;
  --bg: #f4f7fb;
  --white: #ffffff;
  --maxw: 1200px;
  --shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', 'IBM Plex Sans', Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, select, input { font-family: inherit; }
h1,h2,h3,h4 { margin: 0; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---- UTILITY BAR ---- */
.utility-bar {
  background: var(--ink);
  color: #ccc;
  font-size: 13px;
  border-bottom: 2px solid var(--teal);
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 6px;
}
.util-left { color: #aaa; }
.util-right { display: flex; gap: 20px; flex-wrap: wrap; }
.util-right a { color: #ccc; display: flex; align-items: center; gap: 5px; }
.util-right a:hover { color: var(--teal-light); }

/* ---- HEADER ---- */
header.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
.logo-block { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-svg { width: 44px; height: 44px; }
.logo-text .top { font-size: 22px; font-weight: 800; letter-spacing: 0.06em; color: var(--ink); line-height: 1; }
.logo-text .sub { font-size: 9.5px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

.search-bar {
  flex: 1;
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.search-bar input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 14px;
  background: var(--bg);
  outline: none;
}
.search-bar button {
  background: var(--ink);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
}
.search-bar button:hover { background: var(--teal); }

.header-call {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-call strong { display: block; font-size: 15px; color: var(--ink); }

.cart-btn {
  position: relative;
  background: none;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.cart-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- NAV ---- */
nav.main-nav {
  background: var(--ink);
  border-bottom: 3px solid var(--teal);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links { display: flex; }
.nav-links a {
  display: block;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.08); }
.nav-phone {
  font-size: 13px;
  color: #aaa;
  padding: 0 20px;
  white-space: nowrap;
}
.nav-phone strong { color: var(--teal-light); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 12px 20px;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  background: var(--ink);
  color: white;
  padding: 60px 0;
  border-bottom: 4px solid var(--teal);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,157,154,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.hero p { font-size: 17px; color: #aaa; margin-bottom: 28px; max-width: 520px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #a93226; }
.btn-outline { border-color: white; color: white; background: transparent; }
.btn-outline:hover { background: white; color: var(--ink); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-light); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---- BRANDS STRIP ---- */
.brands-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.brands-strip .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.brands-strip .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); white-space: nowrap; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  background: white;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-header h2 { font-size: 20px; font-weight: 700; }
.section-header h2 span { color: var(--teal); }
.section-header a { font-size: 13px; color: var(--teal); font-weight: 600; }

.hero-wb { border-bottom: 0; }
.featured-products-section { padding: 32px 0 44px; }
.featured-products-section .section-header { border-bottom: 0; }
.section-header a:hover { text-decoration: underline; }

/* ---- PRODUCT CARDS ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.18s, transform 0.18s;
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-img {
  background: var(--bg);
  height: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.product-image-link { color: inherit; text-decoration: none; }
.product-title-link { color: inherit; text-decoration: none; }
.product-title-link:hover { color: var(--teal); }
.product-brand-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}
.product-icon { color: #bbb; margin-bottom: 8px; }
.part-no-display {
  font-size: 11.5px;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  font-weight: 600;
}
.product-info { padding: 14px; }
.product-info .part-no { font-size: 11.5px; color: var(--muted); font-family: 'Courier New', monospace; margin-bottom: 4px; }
.product-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.price-tag { font-size: 13px; color: var(--muted); font-style: italic; }
.add-cart-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-cart-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.add-cart-btn.added {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

/* ---- PROMO BANNERS ---- */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-card {
  border-radius: 8px;
  overflow: hidden;
  padding: 36px;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.promo-card.dark { background: linear-gradient(135deg, #1a1a1a 60%, #2a2a2a); color: white; }
.promo-card.teal { background: linear-gradient(135deg, #007A78 60%, #009D9A); color: white; }
.promo-card h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--ink);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.promo-card p { font-size: 14.5px; opacity: 0.85; margin-bottom: 20px; }
.promo-gear {
  position: absolute;
  right: 20px;
  top: 20px;
  opacity: 0.06;
}

/* ---- CATEGORIES ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.cat-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(0,157,154,0.15);
}
.cat-card .cat-icon { color: var(--teal); margin: 0 auto 12px; }
.cat-card h4 { font-size: 13.5px; font-weight: 700; }
.cat-card span { font-size: 12px; color: var(--muted); }

/* ---- PRODUCTS PAGE LAYOUT ---- */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 32px 0;
}
.filter-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  align-self: start;
  position: sticky;
  top: 130px;
}
.filter-sidebar h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 10px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 6px 0;
  cursor: pointer;
}
.filter-option input[type=checkbox] { accent-color: var(--teal); width: 15px; height: 15px; cursor: pointer; }
.filter-option:hover { color: var(--teal); }


.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.products-count { font-size: 14px; color: var(--muted); }
.sort-select {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 13.5px;
  background: white;
  cursor: pointer;
}

/* ---- CART PAGE ---- */
.cart-layout { padding: 36px 0; }
.cart-table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  background: var(--bg);
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-name { font-weight: 600; }
.cart-item-part { font-size: 12px; color: var(--muted); font-family: monospace; }
.cart-item-brand { font-size: 12px; background: var(--bg); padding: 2px 8px; border-radius: 3px; display: inline-block; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--muted); padding: 4px; }
.remove-btn:hover { color: var(--red); }
.cart-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  max-width: 380px;
  margin-left: auto;
}
.cart-summary h3 { font-size: 16px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  transition: background 0.15s;
}
.whatsapp-btn:hover { background: #1ebe5e; }
.empty-cart {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-cart h2 { font-size: 24px; margin-bottom: 10px; }

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 40px 0;
}
.contact-info h2 { font-size: 26px; margin-bottom: 14px; }
.contact-info p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic {
  width: 40px; height: 40px;
  background: rgba(0,157,154,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.info-item .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.info-item .v { font-size: 15px; font-weight: 500; }
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}
.contact-form h3 { font-size: 18px; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.15s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
.form-success {
  display: none;
  background: rgba(0,157,154,0.1);
  border: 1.5px solid var(--teal);
  border-radius: 6px;
  padding: 14px;
  color: var(--teal);
  font-size: 14px;
  margin-top: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---- FOOTER ---- */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 54px 0 24px;
  margin-top: 60px;
  border-top: 4px solid var(--teal);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.foot-logo { font-size: 22px; font-weight: 800; color: white; margin-bottom: 12px; }
.foot-logo span { color: var(--teal-light); }
.foot-tagline { font-size: 13.5px; color: #888; margin-bottom: 16px; max-width: 240px; }
.foot-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 700;
  margin-bottom: 16px;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 13.5px;
  color: #ccc;
  margin-bottom: 10px;
}
.foot-col a:hover { color: var(--teal-light); }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid #333;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: border-color 0.15s, color 0.15s;
}
.social-btn:hover { border-color: var(--teal-light); color: var(--teal-light); }
.foot-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- TOAST NOTIFICATION ---- */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border-left: 4px solid var(--teal);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 999;
  pointer-events: none;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ---- PAGE TITLE BAR ---- */
.page-title-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.page-title-bar h1 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.breadcrumb { font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- PREMIUM VISUAL ENHANCEMENTS ---- */
.utility-bar {
  background: linear-gradient(90deg, var(--panel) 0%, #0e1f35 100%);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06);
}
header.main-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
}
.search-bar {
  box-shadow: 0 8px 24px rgba(7, 17, 31, 0.06);
  border-radius: 999px;
}
.search-bar input {
  background: #f8fbff;
  padding-left: 16px;
}
.search-bar button {
  border-radius: 0 999px 999px 0;
}
.cart-btn {
  border-radius: 999px;
  border-color: #dfe7f0;
  box-shadow: 0 8px 18px rgba(7,17,31,0.04);
}
.nav-links a {
  border-radius: 999px;
  margin: 6px 3px;
}
.btn {
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.12);
}
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, #f05b4b 100%);
}
.btn-outline {
  border-color: rgba(255,255,255,0.75);
}
.brands-strip {
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(229,234,241,0.8);
  backdrop-filter: blur(8px);
}
.section-header {
  border-bottom: 1px solid rgba(229,234,241,0.9);
  padding-bottom: 14px;
}
.product-card {
  border: 1px solid rgba(229,234,241,0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.12);
}
.promo-card {
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}
.cat-card {
  border-radius: 16px;
  border: 1px solid rgba(229,234,241,0.95);
  box-shadow: 0 12px 24px rgba(7, 17, 31, 0.05);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(15, 140, 137, 0.14);
}
.contact-form,
.filter-sidebar,
.cart-summary,
.cart-table-wrap {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-wb {
  background: linear-gradient(135deg, #f9fcff 0%, #eef7ff 55%, #f8fbff 100%);
  position: relative;
}
.hero-wb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 140, 137, 0.12), transparent 38%);
  pointer-events: none;
}
.hero-wb-inner {
  position: relative;
  z-index: 1;
}
.trust-section {
  padding: 24px 0 10px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(229,234,241,0.95);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(15, 140, 137, 0.1);
  font-size: 20px;
  margin-bottom: 12px;
}
.trust-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}
.trust-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .search-bar { order: 3; width: 100%; }
  .header-call { display: none; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
  .nav-phone { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 40px 0; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 18px; }
  .featured-products-section { padding-top: 28px; }
}

/* ---- PRODUCT IMAGE / ILLUSTRATION ---- */
.product-img {
  background: linear-gradient(135deg,#f8f8f8,#eeeeee);
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product-image {
  width: 86%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(7, 17, 31, 0.08);
}
.product-img::before {
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 60% 40%,rgba(0,157,154,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.product-brand-badge {
  position:absolute;top:10px;left:10px;
  background:var(--ink);color:white;
  font-size:9.5px;font-weight:700;
  padding:3px 8px;border-radius:3px;letter-spacing:0.06em;z-index:1;
}
.part-no-display {
  font-size:11px;color:var(--muted);
  font-family:'Courier New',monospace;font-weight:600;
  background:white;padding:2px 8px;
  border-radius:3px;border:1px solid var(--border);
  margin-top:4px;
}

/* =============================================
   WINBELL-STYLE HERO
   ============================================= */
.hero-wb {
  background: #ffffff;
  border-bottom: 0;
  padding: 0;
  overflow: hidden;
}
.hero-wb-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  min-height: 340px;
  gap: 0;
}

/* LEFT — text block */
.hero-wb-text {
  padding: 52px 40px 52px 0;
}
.hero-wb-badge {
  display: inline-block;
  background: #F5C842;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero-wb-h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  text-transform: none;
  letter-spacing: -0.01em;
}
.hero-wb-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* RIGHT — truck image + card */
.hero-wb-img-wrap {
  position: relative;
  height: 340px;
  background: white;
  display: flex;
  align-items: flex-end;
}
.hero-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.hero-gallery-thumbs img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 6px 14px rgba(7, 17, 31, 0.08);
}
.hero-wb-card {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  min-width: 200px;
  max-width: 240px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
}
.hero-wb-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.hero-wb-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-wb-card-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11.5px;
  color: var(--text);
  line-height: 1.4;
}
.hero-wb-card-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.hero-wb-card-item span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.hwc-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* No truck image fallback — show gradient placeholder */
.hero-wb-img-wrap:not(:has(img[src])) {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

/* ---- PRODUCT ACTION BUTTONS (WhatsApp + Email + Cart) ---- */
.product-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 6px 0 10px;
  line-height: 1.5;
  min-height: 36px;
}
.product-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}
.pact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.13s, opacity 0.13s;
  text-decoration: none;
  white-space: nowrap;
}
.pact-btn:hover { transform: translateY(-1px); opacity: 0.88; }
.pact-wa {
  background: #25D366;
  color: white;
  flex: 1;
  justify-content: center;
}
.pact-email {
  background: var(--teal);
  color: white;
  flex: 1;
  justify-content: center;
}
.pact-cart {
  background: white;
  border-color: var(--border);
  color: var(--muted);
  padding: 7px 10px;
  flex-shrink: 0;
}
.pact-cart:hover { border-color: var(--red); color: var(--red); }
.pact-cart.added { background: var(--teal); border-color: var(--teal); color: white; }

/* Compact catalogue style, inspired by the clean WinBell product listing. */
.catalogue-card .product-img { height: 240px; background: #fff; }
.catalogue-card .product-img .real-photo { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.catalogue-card .product-info { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.catalogue-card .product-info h3 { margin-bottom: 0; line-height: 1.35; }
.catalogue-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 15px; }
.catalogue-details-link { color: var(--muted); font-size: 12px; font-weight: 600; text-decoration: none; }
.catalogue-details-link:hover { color: var(--teal); }
.catalogue-cart { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; background: white; color: #a0a6a8; border: 1px solid transparent; border-radius: 4px; cursor: pointer; }
.catalogue-cart:hover { color: var(--red); border-color: var(--border); }
.catalogue-cart.added { background: var(--teal); border-color: var(--teal); color: white; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-wb-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-wb-text {
    padding: 36px 0 24px;
    order: 1;
  }
  .hero-wb-img-wrap {
    height: 240px;
    order: 2;
  }
  .hero-wb-card {
    max-width: 180px;
    padding: 10px 12px;
  }
  .product-actions { flex-wrap: wrap; }
  .pact-wa, .pact-email { flex: 1 1 45%; }
}
@media (max-width: 480px) {
  .hero-wb-card { display: none; }
}

/* ---- REAL LOGO IMAGE ---- */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Also update hero card logo */
.hero-wb-card-logo img {
  height: 32px;
  width: auto;
}

/* ---- MOBILE HEADER REFINEMENT ---- */
@media (max-width: 768px) {
  .utility-bar .wrap {
    min-height: 32px;
    justify-content: center;
    padding: 7px 16px;
    flex-wrap: nowrap;
  }
  .util-left { display: none; }
  .util-right { width: 100%; justify-content: center; gap: 16px; flex-wrap: nowrap; }
  .util-right a { font-size: 12px; white-space: nowrap; }

  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
  }
  .logo-img { height: 36px; }
  .logo-block { min-width: 0; }
  .header-call { display: none; }
  .cart-btn { padding: 7px 10px; font-size: 12px; gap: 5px; flex-shrink: 0; }
  .search-bar { flex: 1 1 auto; order: initial; width: auto; min-width: 0; }
  .search-bar input { min-width: 0; padding: 9px 11px; font-size: 11px; }
  .search-bar button { padding: 0 12px; }

  nav.main-nav { position: relative; }
  .nav-inner { min-height: 45px; flex-direction: row; align-items: center; }
  .menu-toggle { margin-left: auto; padding: 11px 16px; }
  .nav-links.open {
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 200;
    padding: 7px 16px 12px;
    background: var(--ink);
    border-bottom: 3px solid var(--teal);
    box-shadow: 0 12px 20px rgba(7,17,31,.18);
  }
  .nav-links.open a { margin: 0; border-radius: 5px; padding: 12px 14px; }
}

@media (max-width: 480px) {
  .utility-bar .util-right a:last-child { display: none; }
  .header-inner { padding: 9px 14px; }
  .logo-img { height: 32px; }
  .cart-btn { padding: 7px 8px; }
  .search-bar button { padding: 0 10px; }
}

/* =============================================
   HERO GALLERY — 5 equipment images
   ============================================= */
.hero-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  box-sizing: border-box;
}
.hero-gallery-main {
  width: 100%;
  flex: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #f0f0f0;
}
.hero-gallery-thumbs {
  display: none;
}
.hero-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
  display: block;
  background: #f0f0f0;
}
.hero-gallery-thumbs img:hover,
.hero-gallery-thumbs img.active {
  border-color: var(--teal);
  opacity: 1;
}
.hero-gallery-thumbs img:not(.active) {
  opacity: 0.7;
}

/* =============================================
   EQUIPMENT SHOWCASE — tunneling page
   ============================================= */
.equip-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.equip-showcase-main {
  border-radius: 10px;
  overflow: hidden;
  height: 340px;
}
.equip-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.equip-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.equip-showcase-grid img {
  width: 100%;
  height: 163px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.15s;
  cursor: pointer;
}
.equip-showcase-grid img:hover {
  transform: scale(1.02);
}

/* =============================================
   PRODUCT CARD — real photo support
   ============================================= */
.product-img {
  background: linear-gradient(135deg, #f8f8f8, #eeeeee);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.product-img .real-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}
.product-img .svg-wrap {
  width: 110px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.product-img .svg-wrap svg {
  width: 100%;
  height: 100%;
}
.product-brand-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  z-index: 1;
}
.part-no-display {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  background: white;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid var(--border);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* =============================================
   CATEGORY BROWSE SYSTEM — shared by products.html,
   compressors.html, tunneling-mining-construction.html
   (category cards -> filtered product view)
   ============================================= */
.cat-page-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 36px;
}
.cat-page-title span { color: var(--teal); }
.cat-grid-wb {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  width: 100%;
}
.cat-card-wb {
  background: white !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: box-shadow .18s, transform .18s, border-color .18s !important;
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: #222 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: 100% !important;
}
.cat-card-wb:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1) !important;
  transform: translateY(-2px) !important;
  border-color: #009D9A !important;
}
.cat-card-img {
  width: 100% !important;
  height: 190px !important;
  background: linear-gradient(135deg,#f8f8f8,#eeeeee) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: 1px solid var(--border) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  position: relative !important;
}
.cat-card-img img,
.cat-card-img .cat-svg { object-fit: cover !important; object-position: center center !important; }
.cat-card-img img {
  position: absolute !important; top: 50% !important; left: 50% !important;
  width: auto !important; height: 100% !important; min-width: 100% !important; min-height: 100% !important;
  transform: translate(-50%, -50%) !important; display: block !important;
}
.cat-card-img .cat-svg { padding: 20px !important; }
.cat-card-img .cat-svg svg { width: 100% !important; height: 100% !important; max-width: 140px !important; max-height: 120px !important; }
.cat-card-info {
  padding: 14px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 10px !important;
}
.cat-card-info h4 { font-size: 15px !important; font-weight: 700 !important; color: #111 !important; margin: 0 !important; line-height: 1.35 !important; }
.cat-card-info .cat-count { font-size: 12px !important; color: #888 !important; }
.cat-card-info .view-btn { font-size: 12px !important; font-weight: 600 !important; color: #009D9A !important; display: inline-block !important; margin-top: auto !important; }

#productView { display: none; padding: 32px 0 44px; }
.pv-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
  padding-bottom: 16px; border-bottom: 2px solid #e0e0e0;
}
.pv-left { display: flex; align-items: center; gap: 14px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 6px;
  border: 1.5px solid #e0e0e0; background: white;
  font-size: 13px; font-weight: 600; cursor: pointer;
  color: #222; transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.back-btn:hover { border-color: #009D9A; color: #009D9A; }
.pv-title { font-size: 20px; font-weight: 800; color: #111; }
.pv-title span { color: #009D9A; }
.pv-count { font-size: 13px; color: #888; }

@media (max-width: 1024px) {
  .cat-grid-wb { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
  .cat-grid-wb { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .cat-card-img { height: 190px !important; }
}


.product-specs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 10px 0;
  padding: 8px 0;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 11.5px;
  padding: 3px 0;
}
.spec-row span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.spec-row strong {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

/* =============================================
   PRODUCT ACTIONS — WhatsApp + Email + Cart
   ============================================= */
.product-desc {
  font-size: 12.5px;
  color: var(--muted);
  margin: 6px 0 10px;
  line-height: 1.5;
  min-height: 34px;
}
.product-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 8px;
}
.pact-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.13s, opacity 0.13s;
  text-decoration: none;
  white-space: nowrap;
}
.pact-btn:hover { transform: translateY(-1px); opacity: 0.88; }
.pact-wa  { background: #25D366; color: white; flex: 1; justify-content: center; }
.pact-email { background: var(--teal); color: white; flex: 1; justify-content: center; }
.pact-details { background: var(--ink); color: white; flex: 1; justify-content: center; }
.pact-cart {
  background: white;
  border-color: var(--border);
  color: var(--muted);
  padding: 7px 10px;
  flex-shrink: 0;
}
.pact-cart:hover { border-color: var(--red); color: var(--red); }
.pact-cart.added { background: var(--teal); border-color: var(--teal); color: white; }

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail-page { padding: 38px 0 52px; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: 38px; background: white; border: 1px solid var(--border); border-radius: 10px; padding: 28px; }
.detail-gallery { min-height: 420px; border: 1px solid var(--border); background: var(--bg); display: flex; align-items: center; justify-content: center; }
.detail-image { width: 100%; height: 100%; min-height: 420px; display: flex; align-items: center; justify-content: center; padding: 30px; }
.detail-real-photo { max-width: 100%; max-height: 360px; object-fit: contain; }
.detail-svg { width: min(100%, 430px); }
.detail-svg svg { width: 100%; height: auto; }
.detail-category { color: var(--teal); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 9px; }
.detail-content h2 { font-size: clamp(25px, 3vw, 36px); line-height: 1.15; margin-bottom: 10px; }
.detail-part-no { color: var(--muted); font-family: 'Courier New', monospace; margin-bottom: 24px; }
.detail-part-no strong { color: var(--text); }
.detail-description { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.detail-specs { border-top: 1px solid var(--border); }
.detail-specs div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.detail-specs span { color: var(--muted); }
.detail-specs strong { text-align: right; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn-outline-detail, .detail-cart { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ink); background: white; color: var(--ink); border-radius: 5px; padding: 10px 17px; font-weight: 700; cursor: pointer; font-size: 14px; }
.detail-cart { border-color: var(--teal); color: var(--teal); }
.detail-cart.added { background: var(--teal); color: white; }
.detail-back { display: inline-block; margin-top: 20px; font-weight: 700; color: var(--teal); }
.detail-loading, .product-not-found { text-align: center; padding: 70px 20px; }
.product-not-found p { color: var(--muted); margin: 10px 0 22px; }
@media (max-width: 760px) { .product-detail-layout { grid-template-columns: 1fr; padding: 16px; gap: 22px; } .detail-gallery, .detail-image { min-height: 280px; } .detail-actions > * { flex: 1; } }

/* =============================================
   LOGO
   ============================================= */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* =============================================
   RESPONSIVE FIXES
   ============================================= */
@media (max-width: 768px) {
  .hero-gallery-thumbs { grid-template-columns: repeat(4,1fr); height: 56px; }
  .equip-showcase { grid-template-columns: 1fr; }
  .equip-showcase-main { height: 220px; }
  .equip-showcase-grid { grid-template-columns: 1fr 1fr; }
  .equip-showcase-grid img { height: 110px; }
}

/* ============================================
   ACP LOADING SPINNER
   ============================================ */
#acpSpinner {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.acp-spin-ring {
  width: 52px;
  height: 52px;
  border: 5px solid #e0e0e0;
  border-top-color: #009D9A;
  border-radius: 50%;
  animation: acpSpin 0.8s linear infinite;
}
@keyframes acpSpin {
  to { transform: rotate(360deg); }
}
.acp-spin-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ---- NEW CMS-DRIVEN HOMEPAGE SECTIONS ----
   Added while wiring Company Overview, Why Choose Us, Client Logos,
   Testimonials, Counters and CTA to the CMS (see ACP-CMS-Frontend-Audit.md
   Tier 2). Reuses the existing color tokens/spacing scale — no new
   design language introduced. Sections are hidden (display:none) by
   default and only unhidden by JS once CMS content actually exists,
   so nothing shows if an admin hasn't filled a section in yet. */
.acp-section { padding: 44px 0; }
.acp-section.alt-bg { background: var(--bg); }

.about-overview { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-overview-text { flex: 1 1 380px; }
.about-overview-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.about-overview-text p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.about-overview-img { flex: 1 1 320px; }
.about-overview-img img { width: 100%; border-radius: 14px; box-shadow: var(--shadow); object-fit: cover; max-height: 340px; }

.why-choose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 24px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.stats-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; text-align: center; background: var(--ink); border-radius: 14px; padding: 32px 20px; }
.stat-item .stat-value { font-size: 30px; font-weight: 800; color: var(--teal-light); }
.stat-item .stat-label { font-size: 12.5px; color: #cbd5e1; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

.clients-strip { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.clients-strip img { max-height: 52px; width: auto; object-fit: contain; opacity: 0.85; transition: opacity 0.2s; }
.clients-strip img:hover { opacity: 1; }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; box-shadow: var(--shadow); }
.testimonial-card p.quote { font-size: 14px; color: var(--text); font-style: italic; line-height: 1.6; margin-bottom: 12px; }
.testimonial-card .author { font-size: 13px; font-weight: 700; color: var(--ink); }
.testimonial-card .role { font-size: 12px; color: var(--muted); }

.cta-banner { background: linear-gradient(135deg, var(--teal) 0%, #007A78 100%); border-radius: 16px; padding: 40px 32px; text-align: center; color: white; }
.cta-banner h2 { font-size: 22px; font-weight: 800; margin-bottom: 18px; }
.cta-banner .btn { background: white; color: var(--teal); }
.cta-banner .btn:hover { background: #f0f0f0; }
