/* ═══════════════════════════════════════════════════════════════
   ONESTOP ACCESS (SCOTLAND) — Concept Site Stylesheet
   Powered Access Hire · Training · Sales
   Design system derived from approved homepage wireframe v2
═══════════════════════════════════════════════════════════════ */

/* ─── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #FF6F00;   /* brand orange */
  --yellow-d:  #D45F00;
  --black:     #1B1764;   /* brand navy */
  --dark:      #13104A;
  --grey:      #2A2660;
  --mgrey:     #6B6869;
  --lgrey:     #B8B5B6;
  --xlight:    #F4F3F3;
  --white:     #FFFFFF;
  --coral:     #FF5252;
  --teal:      #4ECDC4;
  --green:     #2E9E5B;

  --ph-bg:     #E2E1E1;
  --ph-stripe: #D5D4D4;
  --border:    #DDDCDC;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --font:      'Montserrat', system-ui, sans-serif;
  --maxw:      1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--xlight);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── IMAGE PLACEHOLDER (concept) ────────────────────────── */
.ph {
  background-color: var(--ph-bg);
  background-image: repeating-linear-gradient(-45deg,
    transparent 0, transparent 8px, var(--ph-stripe) 8px, var(--ph-stripe) 9px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; color: var(--lgrey);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; text-align: center; padding: 8px;
}
.ph svg { opacity: 0.4; }
.ph.has-photo {
  background-image: none;            /* overridden by inline url() */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: transparent;
  width: 100%; height: 100%;
}
.ph.has-photo > * { display: none; }
.ph-dark {
  background-color: #221F55;
  background-image: repeating-linear-gradient(-45deg,
    transparent 0, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 9px);
  color: #6f6ca8;
}

/* ─── LOGO ───────────────────────────────────────────────── */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--yellow); position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark::before {
  content: ''; position: absolute; inset: 9px;
  border: 3px solid var(--black); border-radius: 3px;
  border-right-color: transparent; transform: rotate(45deg);
}
.logo-mark::after {
  content: ''; width: 12px; height: 12px; background: var(--black);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.logo-text {
  font-weight: 900; font-size: 19px; letter-spacing: -0.4px;
  color: var(--black); line-height: 1; text-transform: uppercase;
}
.logo-text span { color: var(--yellow); }
.logo-text small {
  display: block; font-size: 8.5px; font-weight: 700;
  letter-spacing: 2.4px; color: var(--mgrey); margin-top: 2px;
}
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text small { color: rgba(255,255,255,0.5); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  border: 2px solid transparent; transition: all 0.2s; white-space: nowrap;
}
.btn-outline { border-color: var(--border); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-d); border-color: var(--yellow-d); }
.btn-yellow-lg { padding: 14px 28px; font-size: 14px; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark); border-color: var(--dark); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── TOP UTILITY BAR ────────────────────────────────────── */
.top-bar {
  background: var(--black); padding: 0 40px; height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--lgrey);
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.accred-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--yellow); border: 1px solid rgba(255,111,0,0.35);
  padding: 2px 8px; border-radius: 2px;
}
.top-bar-link { color: var(--lgrey); text-decoration: none; transition: color 0.2s; }
.top-bar-link:hover { color: var(--yellow); }
.top-phone { color: var(--white); font-weight: 700; font-size: 13px; text-decoration: none; letter-spacing: 0.5px; }
.top-phone span { color: var(--yellow); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-right: 6px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 20px; height: 20px; background: rgba(255,255,255,0.08); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lgrey); font-size: 10px; font-weight: 800;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.social-icon:hover { background: var(--yellow); color: var(--black); }

/* ─── MAIN NAVIGATION ────────────────────────────────────── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; height: 72px; display: flex; align-items: center; }
.nav-logo { margin-right: 40px; }
.nav-links { display: flex; align-items: center; flex: 1; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 0 16px; height: 72px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--dark); text-decoration: none; transition: color 0.2s;
  border-bottom: 3px solid transparent; cursor: pointer;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--black); border-bottom-color: var(--yellow); }
.nav-arrow { font-size: 8px; margin-top: 1px; transition: transform 0.25s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.quote-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; margin-left: 2px;
  background: var(--black); color: var(--yellow);
  border-radius: 100px; font-size: 11px; font-weight: 800;
}
.btn-yellow .quote-count { background: var(--black); color: var(--yellow); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); margin: 5px 0; transition: 0.25s; }

/* ─── MEGA MENU ──────────────────────────────────────────── */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--white); border-top: 3px solid var(--yellow);
  box-shadow: var(--shadow-lg); border-radius: 0 0 8px 8px;
  padding: 32px 36px 28px; min-width: 760px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; z-index: 200;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-menu-hire { min-width: 820px; }
.mega-menu-training { min-width: 720px; }
.mega-header {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--lgrey); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.mega-header::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.mega-grid { display: grid; gap: 24px; }
.mega-grid-3 { grid-template-columns: repeat(3, 1fr); }
.mega-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mega-col-title { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mgrey); margin-bottom: 10px; }
.mega-link { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--xlight); text-decoration: none; color: var(--dark); transition: color 0.15s; }
.mega-link:last-child { border-bottom: none; }
.mega-link:hover { color: var(--black); }
.mega-link:hover .mega-link-arrow { transform: translateX(3px); }
.mega-link:hover .mega-link-icon { background: var(--yellow); }
.mega-link-icon { width: 30px; height: 30px; flex-shrink: 0; background: var(--xlight); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.15s; }
.mega-link-text strong { display: block; font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.mega-link-text small { color: var(--mgrey); font-size: 11px; line-height: 1.3; }
.mega-link-arrow { margin-left: auto; color: var(--lgrey); font-size: 11px; transition: transform 0.15s; flex-shrink: 0; align-self: center; }
.mega-featured { background: var(--black); border-radius: 6px; overflow: hidden; margin-top: 20px; grid-column: 1 / -1; display: grid; grid-template-columns: 200px 1fr; min-height: 80px; }
.mega-featured-img { width: 200px; }
.mega-featured-content { padding: 14px 18px; display: flex; align-items: center; gap: 16px; }
.mega-featured-label { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 3px; }
.mega-featured-title { font-size: 14px; font-weight: 700; color: var(--white); margin: 0; }
.mega-featured-sub { color: var(--lgrey); font-size: 11px; }
.mega-training-card { padding: 14px; border: 1px solid var(--border); border-radius: 6px; transition: border-color 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit; display: block; }
.mega-training-card:hover { border-color: var(--yellow); box-shadow: 0 2px 10px rgba(255,111,0,0.18); }
.mega-training-card-icon { width: 36px; height: 36px; border-radius: 6px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 8px; }
.mega-training-card h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.mega-training-card p { font-size: 11px; color: var(--mgrey); line-height: 1.35; }
.mega-training-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mega-badge { background: var(--yellow); color: var(--black); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--black); min-height: 580px; display: flex; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .ph { width: 100%; height: 100%; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(19,16,74,0.97) 38%, rgba(19,16,74,0.55) 70%, rgba(19,16,74,0.15) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 72px 40px 60px; display: flex; flex-direction: column; justify-content: center; }
.hero-pretitle { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,111,0,0.12); border: 1px solid rgba(255,111,0,0.3); color: var(--yellow); border-radius: 4px; padding: 5px 12px; margin-bottom: 28px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; width: fit-content; }
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.12; color: var(--white); letter-spacing: -0.5px; max-width: 680px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.75; margin-bottom: 36px; }
.hero-ctas { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 24px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,111,0,0.15); border: 1px solid rgba(255,111,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.hero-trust-text strong { display: block; font-size: 13px; font-weight: 800; color: var(--white); }
.hero-trust-text span { font-size: 10px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar { background: var(--yellow); }
.stats-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 20px 24px; border-right: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; gap: 14px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 800; color: var(--black); line-height: 1; }
.stat-num sup { font-size: 18px; vertical-align: top; }
.stat-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,0.65); }
.stat-label strong { display: block; font-size: 11px; color: rgba(0,0,0,0.45); font-weight: 600; margin-top: 2px; }

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section { padding: 80px 40px; max-width: var(--maxw); margin: 0 auto; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--yellow); }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--black); line-height: 1.05; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--mgrey); max-width: 560px; line-height: 1.72; margin-bottom: 40px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 24px; }
.section-header-row .section-sub { margin-bottom: 0; }

/* ─── EQUIPMENT GRID (home categories) ───────────────────── */
.equip-bg { background: var(--xlight); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.equip-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.equip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.equip-card-img { height: 180px; position: relative; }
.equip-card-img .ph { height: 100%; }
.equip-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--black); color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.equip-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.equip-card-title { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 8px; letter-spacing: -0.2px; }
.equip-card-desc { font-size: 13px; color: var(--mgrey); line-height: 1.45; margin-bottom: 14px; flex: 1; }
.equip-specs { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.equip-spec { background: var(--xlight); border-radius: 4px; padding: 5px 9px; }
.equip-spec-val { font-size: 14px; font-weight: 800; color: var(--black); display: block; }
.equip-spec-lbl { font-size: 9px; color: var(--mgrey); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.equip-card-cta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--black); padding-top: 14px; border-top: 1px solid var(--border); }
.equip-card-cta-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 12px; transition: transform 0.2s; }
.equip-card:hover .equip-card-cta-arrow { transform: translateX(3px); }

/* ─── QUOTE BUILDER (home + quote page) ───────────────────── */
.quote-bg { background: var(--dark); position: relative; overflow: hidden; }
.quote-bg::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: var(--yellow); border-radius: 50%; opacity: 0.05; pointer-events: none; }
.quote-inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 40px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.quote-text .section-title { color: var(--white); }
.quote-text .section-sub { color: rgba(255,255,255,0.55); }
.quote-benefits { list-style: none; margin-top: 24px; }
.quote-benefits li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; color: rgba(255,255,255,0.7); }
.quote-benefits li::before { content: '✓'; color: var(--yellow); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.quote-form-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.quote-form-header { background: var(--yellow); padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; }
.quote-form-header h3 { font-size: 17px; font-weight: 900; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.quote-steps-bar { display: flex; gap: 4px; }
.q-step { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: rgba(0,0,0,0.5); transition: all 0.2s; }
.q-step.active { background: var(--black); color: var(--yellow); }
.q-step.done { background: rgba(0,0,0,0.6); color: var(--yellow); }
.quote-form-body { padding: 28px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-step-title { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.form-step-sub { font-size: 13px; color: var(--mgrey); margin-bottom: 20px; }
.form-toggle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.form-toggle { border: 2px solid var(--border); border-radius: 6px; padding: 12px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: all 0.15s; background: var(--white); text-align: left; font-family: inherit; }
.form-toggle:hover { border-color: var(--yellow); background: rgba(255,111,0,0.05); }
.form-toggle.selected { border-color: var(--yellow); background: rgba(255,111,0,0.08); }
.form-toggle-icon { font-size: 20px; }
.form-toggle-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--black); }
.form-toggle-text small { font-size: 11px; color: var(--mgrey); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.8px; }
.form-input, .form-select, textarea.form-input { width: 100%; border: 1.5px solid var(--border); border-radius: 6px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; appearance: none; background: var(--white); }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,111,0,0.15); }
.form-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; gap: 12px; }
.form-back { font-size: 12px; font-weight: 700; color: var(--mgrey); cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase; border: none; background: none; padding: 0; font-family: inherit; }
.form-progress { font-size: 11px; color: var(--mgrey); letter-spacing: 0.5px; }
.quote-disclaimer { padding: 14px 28px; background: var(--xlight); border-top: 1px solid var(--border); font-size: 11px; color: var(--mgrey); text-align: center; }
.quote-disclaimer a { color: var(--mgrey); }
.form-success { text-align: center; padding: 20px 0; }
.form-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,158,91,0.12); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 18px; }

/* ─── TRAINING SECTION ───────────────────────────────────── */
.training-inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 40px; display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.training-text .section-label { margin-bottom: 8px; }
.training-text p { font-size: 15px; color: var(--mgrey); line-height: 1.65; margin-bottom: 20px; }
.accred-logos { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.accred-logo { height: 46px; width: 100px; }
.accred-logo .ph { height: 100%; border-radius: 4px; }
.training-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.training-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; display: block; }
.training-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.training-card-header { padding: 16px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.training-card-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.training-card-header h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.training-card-header p { font-size: 11px; color: var(--mgrey); }
.training-card-body { padding: 14px 18px; }
.training-course-list { list-style: none; }
.training-course-list li { padding: 5px 0; border-bottom: 1px solid var(--xlight); font-size: 12.5px; color: var(--grey); display: flex; align-items: center; gap: 6px; }
.training-course-list li:last-child { border-bottom: none; }
.training-course-list li::before { content: '›'; color: var(--yellow); font-weight: 800; font-size: 14px; }
.training-card-footer { padding: 10px 18px; background: var(--xlight); border-top: 1px solid var(--border); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--black); display: flex; align-items: center; justify-content: space-between; }

/* ─── WHY ONESTOP ────────────────────────────────────────── */
.why-bg { background: var(--black); }
.why-inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 40px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; border-radius: 8px; overflow: hidden; }
.why-card { background: var(--dark); padding: 32px 26px; position: relative; overflow: hidden; transition: background 0.25s; }
.why-card:hover { background: #1a1660; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.why-card:hover::before { transform: scaleX(1); }
.why-num { font-size: 56px; font-weight: 900; color: rgba(255,111,0,0.14); line-height: 1; margin-bottom: 12px; }
.why-icon { font-size: 30px; margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-bg { background: var(--xlight); }
.testimonial-inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 40px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.testimonial-card { background: var(--white); border-radius: 8px; border: 1px solid var(--border); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.testimonial-stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; color: var(--grey); line-height: 1.65; font-style: italic; flex: 1; }
.testimonial-quote::before { content: '"'; color: var(--yellow); font-size: 30px; line-height: 0; vertical-align: -12px; margin-right: 2px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.testimonial-avatar .ph { border-radius: 50%; height: 100%; }
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--black); }
.testimonial-company { font-size: 11px; color: var(--mgrey); }

/* ─── CLIENTS STRIP ──────────────────────────────────────── */
.clients-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 40px; }
.clients-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 48px; }
.clients-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--lgrey); white-space: nowrap; flex-shrink: 0; }
.clients-logos { display: flex; gap: 32px; align-items: center; flex: 1; flex-wrap: wrap; }
.client-logo { height: 28px; width: 90px; }
.client-logo .ph { border-radius: 3px; height: 100%; }

/* ─── BLOG/NEWS ──────────────────────────────────────────── */
.blog-inner { max-width: var(--maxw); margin: 0 auto; padding: 72px 40px; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-img { position: relative; }
.blog-img .ph { height: 200px; }
.blog-card:first-child .blog-img .ph { height: 260px; }
.blog-tag { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--black); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.blog-body { padding: 18px 20px; }
.blog-meta { font-size: 11px; color: var(--lgrey); margin-bottom: 6px; letter-spacing: 0.5px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 10px; }
.blog-card:first-child .blog-title { font-size: 20px; font-weight: 800; line-height: 1.3; }
.blog-excerpt { font-size: 12.5px; color: var(--mgrey); line-height: 1.5; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner { background: var(--yellow); position: relative; overflow: hidden; }
.cta-banner-inner { max-width: var(--maxw); margin: 0 auto; padding: 52px 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-size: 34px; font-weight: 800; color: var(--black); line-height: 1.2; max-width: 600px; }
.cta-banner p { font-size: 15px; color: rgba(0,0,0,0.65); margin-top: 8px; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; flex-shrink: 0; }
.cta-phone-large { font-size: 28px; font-weight: 900; color: var(--black); text-decoration: none; }
.cta-phone-large span { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(0,0,0,0.5); display: block; margin-bottom: 2px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--black); }
.footer-top { max-width: var(--maxw); margin: 0 auto; padding: 56px 40px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; max-width: 280px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-contact li a { color: inherit; text-decoration: none; }
.footer-contact li strong { color: rgba(255,255,255,0.75); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--yellow); }
.footer-accreds { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.footer-accred-badge { height: 38px; width: 80px; }
.footer-accred-badge .ph { border-radius: 4px; height: 100%; }
.footer-trade { margin-top: 24px; padding: 18px; background: rgba(255,111,0,0.08); border: 1px solid rgba(255,111,0,0.2); border-radius: 8px; }
.footer-trade-title { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.footer-trade p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 12px; line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); max-width: var(--maxw); margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 20px; list-style: none; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── PAGE HEADER (inner pages) ──────────────────────────── */
.page-head { background: var(--black); position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; top: -120px; right: -60px; width: 360px; height: 360px; background: var(--yellow); border-radius: 50%; opacity: 0.05; }
.page-head-inner { max-width: var(--maxw); margin: 0 auto; padding: 48px 40px 52px; position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.page-head h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; color: var(--white); line-height: 1.08; max-width: 760px; letter-spacing: -0.5px; }
.page-head h1 em { font-style: normal; color: var(--yellow); }
.page-head .lead { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 620px; line-height: 1.7; margin-top: 16px; }

/* ─── SHOP / LISTING ─────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.shop-sidebar { position: sticky; top: 96px; align-self: start; }
.filter-group { margin-bottom: 24px; }
.filter-title { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mgrey); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.filter-list { list-style: none; }
.filter-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px 10px; border: none; background: none; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--grey); border-radius: 6px; cursor: pointer; text-align: left; transition: all 0.15s; }
.filter-btn:hover { background: var(--xlight); }
.filter-btn.active { background: var(--black); color: var(--white); }
.filter-btn .count { font-size: 11px; color: var(--lgrey); font-weight: 700; }
.filter-btn.active .count { color: rgba(255,255,255,0.6); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 16px; flex-wrap: wrap; }
.shop-count { font-size: 13px; color: var(--mgrey); }
.shop-count strong { color: var(--black); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-img { height: 170px; position: relative; display: block; text-decoration: none; }
.product-card-img .ph { height: 100%; }
.product-card-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.tag-cat { background: var(--black); color: var(--yellow); }
.tag-power { background: var(--white); color: var(--black); border: 1px solid var(--border); }
.tag-electric { background: rgba(46,158,91,0.12); color: var(--green); }
.product-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: -0.2px; margin-bottom: 3px; text-decoration: none; display: block; }
.product-card-name:hover { color: var(--yellow-d); }
.product-card-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--mgrey); margin-bottom: 12px; }
.product-mini-specs { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--xlight); border-bottom: 1px solid var(--xlight); margin-bottom: 14px; }
.product-mini-spec span { display: block; }
.product-mini-spec .v { font-size: 15px; font-weight: 800; color: var(--black); }
.product-mini-spec .l { font-size: 9px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--mgrey); font-weight: 600; }
.product-card-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.product-card-foot .btn { flex: 1; }

/* ─── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.product-gallery .ph { height: 420px; border-radius: 10px; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.product-thumbs .ph { height: 76px; border-radius: 6px; }
.product-info h1 { font-size: 32px; font-weight: 900; color: var(--black); letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 8px; }
.product-info .brand { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--mgrey); margin-bottom: 16px; }
.product-info .desc { font-size: 15px; color: var(--grey); line-height: 1.7; margin-bottom: 22px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 14px; font-size: 13px; border-bottom: 1px solid var(--border); }
.spec-table th { background: var(--xlight); font-weight: 700; color: var(--dark); width: 45%; text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; }
.spec-table td { color: var(--grey); font-weight: 600; }
.product-buy { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 22px; box-shadow: var(--shadow); }
.product-buy-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; }
.qty-stepper button { width: 38px; height: 42px; border: none; background: var(--xlight); font-size: 18px; font-weight: 700; color: var(--dark); cursor: pointer; }
.qty-stepper button:hover { background: var(--border); }
.qty-stepper input { width: 48px; height: 42px; border: none; text-align: center; font-size: 15px; font-weight: 700; font-family: inherit; color: var(--black); }
.product-note { font-size: 12px; color: var(--mgrey); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li { display: flex; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--grey); }
.feature-list li::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ─── QUOTE BASKET PAGE ──────────────────────────────────── */
.basket-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.basket-items { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.basket-row { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.basket-row:last-child { border-bottom: none; }
.basket-row .ph { height: 64px; width: 90px; border-radius: 6px; }
.basket-name { font-size: 15px; font-weight: 800; color: var(--black); text-decoration: none; }
.basket-name:hover { color: var(--yellow-d); }
.basket-cat { font-size: 11px; color: var(--mgrey); text-transform: uppercase; letter-spacing: 0.6px; font-weight: 600; margin-top: 2px; }
.basket-remove { background: none; border: none; color: var(--lgrey); cursor: pointer; font-size: 18px; line-height: 1; padding: 4px; }
.basket-remove:hover { color: var(--coral); }
.basket-empty { text-align: center; padding: 60px 30px; }
.basket-empty-icon { font-size: 48px; margin-bottom: 16px; }
.basket-summary { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 24px; position: sticky; top: 96px; }
.basket-summary h3 { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--grey); border-bottom: 1px solid var(--xlight); }
.summary-line strong { color: var(--black); }

/* ─── PROSE / CONTENT ────────────────────────────────────── */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; font-weight: 800; color: var(--black); margin: 36px 0 14px; }
.prose h3 { font-size: 19px; font-weight: 700; color: var(--black); margin: 26px 0 10px; }
.prose p { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 0; list-style: none; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 8px; color: var(--grey); font-size: 15px; line-height: 1.6; }
.prose ul li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 800; }
.content-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.content-cols .ph { height: 380px; border-radius: 10px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 26px; }
.value-card .icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(255,111,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--mgrey); line-height: 1.6; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card .icon { width: 46px; height: 46px; border-radius: 10px; background: var(--black); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card h3 { font-size: 14px; font-weight: 800; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--grey); text-decoration: none; line-height: 1.5; }
.contact-card a:hover { color: var(--yellow-d); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px; box-shadow: var(--shadow); }
.map-embed { height: 300px; border-radius: 12px; margin-top: 32px; }

/* ─── DIVIDER UTILITY ────────────────────────────────────── */
.bg-light { background: var(--xlight); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }

/* ─── ICON COLOURS BY CONTEXT ────────────────────────────── */
.accred-badge i, .hero-pretitle i { color: var(--yellow); }
.hero-trust-icon i { color: var(--yellow); }
.why-icon { color: var(--yellow); }
.mega-link-icon i { color: var(--dark); }
.mega-link:hover .mega-link-icon i { color: var(--black); }
.mega-training-card-icon, .training-card-icon { color: var(--black); }
.value-card .icon { color: var(--yellow-d); }
.contact-card .icon { color: var(--yellow); }
.footer-contact li i { color: var(--yellow); width: 16px; text-align: center; flex-shrink: 0; margin-top: 3px; }
.basket-empty-icon { color: var(--lgrey); }
.form-success-icon { color: var(--green); }
.product-note i { color: var(--yellow-d); }
.nav-ctas .btn-outline i { font-size: 12px; }
.tag i { font-size: 9px; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--black); color: var(--white); padding: 14px 22px; border-radius: 100px; box-shadow: 0 8px 30px rgba(0,0,0,0.35); display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; z-index: 9999; transition: transform 0.35s cubic-bezier(.2,.8,.2,1); border: 1px solid rgba(255,111,0,0.4); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast .tick { color: var(--green); font-weight: 800; }
.toast a { color: var(--yellow); text-decoration: none; font-weight: 800; }

/* ═══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .product-grid, .equip-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-inner, .training-inner, .content-cols, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-column: 1 / -1; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .basket-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .top-bar { display: none; }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 8px 0; box-shadow: var(--shadow-lg); border-top: 1px solid var(--border); max-height: calc(100vh - 72px); overflow-y: auto; transform: translateX(-100%); transition: transform 0.3s; }
  .nav-links.open { transform: none; }
  .nav-link { height: auto; padding: 14px 24px; border-bottom: 1px solid var(--xlight); }
  .nav-link:hover, .nav-item.active > .nav-link { border-bottom-color: var(--xlight); }
  .mega-menu { position: static; transform: none !important; opacity: 1; visibility: visible; pointer-events: all; min-width: 0; box-shadow: none; border-radius: 0; padding: 4px 24px 16px; display: none; }
  .nav-item.open .mega-menu { display: block; }
  .mega-grid-3, .mega-grid-4 { grid-template-columns: 1fr; gap: 8px; }
  .mega-featured { grid-template-columns: 1fr; }
  .mega-featured-img { width: 100%; height: 80px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .filter-btn { width: auto; border: 1px solid var(--border); }
}
@media (max-width: 720px) {
  .nav-inner, .section, .stats-inner, .hero-content, .quote-inner, .training-inner, .why-inner, .testimonial-inner, .blog-inner, .footer-top, .footer-bottom, .cta-banner-inner, .page-head-inner, .clients-inner { padding-left: 20px; padding-right: 20px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .product-grid, .equip-grid, .value-grid, .why-grid, .blog-grid, .testimonial-grid, .training-cards, .form-row, .form-toggle-grid { grid-template-columns: 1fr !important; }
  .blog-card:first-child { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .clients-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .basket-row { grid-template-columns: 70px 1fr auto; }
  .basket-row .basket-remove { grid-column: 3; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
}
