/* ═══════════════════════════════════════════════════════════
   TRADIEPRINT — SHARED STYLESHEET
   All pages import this file. Page-specific overrides go
   in a <style> block at the bottom of each HTML file.
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:        #003f69;
  --navy-dark:   #002a47;
  --navy-deep:   #001830;
  --navy-light:  #004d7f;
  --orange:      #F18223;
  --orange-dark: #d96e14;
  --orange-pale: rgba(241,130,35,.1);
  --white:       #ffffff;
  --off-white:   #f8f9fb;
  --gray-50:     #f0f4f8;
  --gray-100:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #64748b;
  --dark:        #1a2e3f;

  --font-h: 'Lexend', sans-serif;
  --font-b: 'Source Sans 3', sans-serif;

  --sh-xs: 0 1px 4px rgba(0,63,105,.06);
  --sh-sm: 0 2px 12px rgba(0,63,105,.09);
  --sh-md: 0 8px 32px rgba(0,63,105,.13);
  --sh-lg: 0 24px 64px rgba(0,63,105,.18);
  --sh-xl: 0 40px 100px rgba(0,0,0,.25);

  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --ease: 200ms ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); color: var(--dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-h); font-weight: 800; line-height: 1.08; }
p { line-height: 1.72; }

/* ── LAYOUT ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 104px 0; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 48px 0; }

/* ── UTILITIES ── */
.tag {
  display: inline-block;
  background: var(--orange-pale); color: var(--orange-dark);
  font-family: var(--font-h); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 12px; border-radius: 4px; margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.95); }
.tag-navy  { background: rgba(0,63,105,.1); color: var(--navy); }

.section-hdr { text-align: center; margin-bottom: 64px; }
.section-hdr h2 { font-size: clamp(32px, 3.8vw, 52px); color: var(--navy); margin-bottom: 16px; }
.section-hdr p  { font-size: 18px; color: var(--gray-600); max-width: 580px; margin: 0 auto; }
.section-hdr.left { text-align: left; }
.section-hdr.light h2 { color: var(--white); }
.section-hdr.light p  { color: rgba(255,255,255,.65); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--r); transition: all var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-lg { font-size: 17px; padding: 18px 36px; }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,130,35,.4); }
.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,63,105,.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-navy  { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: none; }
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.from-left.on, .reveal.from-right.on { transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(0,30,60,.97); box-shadow: 0 4px 28px rgba(0,0,0,.28); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: var(--font-h); font-size: 20px; font-weight: 900; color: var(--white); letter-spacing: -.5px; }
.nav-logo-text span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-h); font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.8); padding: 8px 12px; border-radius: var(--r);
  transition: all var(--ease);
}
.nav-links a:hover  { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.nav-cta {
  background: var(--orange); color: var(--white); margin-left: 8px;
  padding: 9px 18px;
}
.nav-links a.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.mobile-nav { display: none; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; font-family: var(--font-h); font-size: 16px; font-weight: 600; color: rgba(255,255,255,.8); padding: 16px 32px; border-bottom: 1px solid rgba(255,255,255,.06); transition: all .2s; }
.mobile-nav a:hover  { color: var(--white); background: rgba(255,255,255,.04); }
.mobile-nav a.active { color: var(--orange); }
.mobile-nav a.cta    { color: var(--orange); font-weight: 800; }

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker { background: var(--orange); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker-scroll 30s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0;
  font-family: var(--font-h); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); padding: 0 24px;
}
.ticker-sep { width: 5px; height: 5px; background: rgba(255,255,255,.4); border-radius: 50%; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: 76px; min-height: 520px;
  background: var(--navy); position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%); }
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,26,52,.88) 0%, rgba(0,42,71,.6) 50%, rgba(0,42,71,.3) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.page-hero-content h1 { font-size: clamp(40px, 5vw, 68px); color: var(--white); margin-bottom: 20px; }
.page-hero-content p  { font-size: 20px; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 560px; }
.page-hero-grid { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(241,130,35,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(241,130,35,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-h); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.page-breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.products-grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all .3s ease;
}
.product-card:hover { box-shadow: var(--sh-lg); transform: translateY(-6px); border-color: transparent; }
.product-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-50); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 28px 28px 32px; }
.product-card-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.product-card-body p  { font-size: 15px; color: var(--gray-600); margin-bottom: 18px; line-height: 1.7; }
.product-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag { display: inline-block; background: var(--gray-50); border: 1px solid var(--gray-100); color: var(--gray-600); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

/* ═══════════════════════════════════════════════════════════
   FEATURE SPLIT (alternating left/right sections)
═══════════════════════════════════════════════════════════ */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-split.reverse .feature-img { order: 1; }
.feature-split.reverse .feature-content { order: 2; }
.feature-img { position: relative; }
.feature-img-main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 4/3;
}
.feature-img-main img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-secondary {
  position: absolute; width: 48%; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); border: 4px solid var(--white);
  bottom: -24px; right: -24px; aspect-ratio: 1;
}
.feature-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.feature-content h2 { font-size: clamp(30px, 3.5vw, 46px); color: var(--navy); margin-bottom: 18px; }
.feature-content > p { font-size: 17px; color: var(--gray-600); margin-bottom: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.feature-list-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-list-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--orange-pale); display: flex; align-items: center; justify-content: center;
}
.feature-list-icon svg { color: var(--orange); }
.feature-list-text strong { display: block; font-family: var(--font-h); font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.feature-list-text span  { font-size: 14px; color: var(--gray-600); }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar { background: var(--orange); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 900px; margin: 0 auto; }
.stat-item { padding: 44px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-h); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* ═══════════════════════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════════════════════ */
.gallery-masonry {
  columns: 3; gap: 16px;
}
.gallery-masonry .gm-item {
  break-inside: avoid; border-radius: var(--r); overflow: hidden;
  margin-bottom: 16px; position: relative; cursor: pointer;
}
.gallery-masonry .gm-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-masonry .gm-item:hover img { transform: scale(1.03); }
.gallery-masonry .gm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,26,52,.65) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px;
}
.gallery-masonry .gm-item:hover .gm-overlay { opacity: 1; }
.gm-label { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--white); }

.gallery-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--r); overflow: hidden; position: relative;
  background: var(--gray-50);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,26,52,.65) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100); transition: all .3s ease;
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: transparent; }
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-size: 16px; color: var(--dark); font-style: italic; margin-bottom: 24px; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 17px; font-weight: 800; color: var(--white);
}
.testi-name { font-family: var(--font-h); font-size: 15px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 13px; color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center; padding: 96px 32px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(241,130,35,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(241,130,35,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(32px, 4vw, 56px); color: var(--white); margin-bottom: 18px; }
.cta-band h2 span { color: var(--orange); }
.cta-band p  { font-size: 20px; color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto 40px; }
.cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   QUOTE FORM
═══════════════════════════════════════════════════════════ */
.quote-form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 48px 44px; box-shadow: var(--sh-xl);
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--font-h); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-100); border-radius: var(--r);
  padding: 13px 16px; font-family: var(--font-b); font-size: 15px;
  color: var(--dark); background: var(--off-white); width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group textarea { min-height: 112px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,63,105,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 17px; margin-top: 8px;
  font-family: var(--font-h); font-size: 16px; font-weight: 800;
  background: var(--orange); color: var(--white);
  border: none; border-radius: var(--r); cursor: pointer;
  transition: all var(--ease);
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(241,130,35,.4); }

/* ═══════════════════════════════════════════════════════════
   BRANDS STRIP
═══════════════════════════════════════════════════════════ */
.brands-strip { background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 40px 0; }
.brands-label { text-align: center; font-family: var(--font-h); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-400); margin-bottom: 28px; }
.brands-row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.brand-name { font-family: var(--font-h); font-size: 18px; font-weight: 900; color: var(--gray-100); letter-spacing: -.5px; transition: color .3s; }
.brand-name:hover { color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   WHY CARDS
═══════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 40px 32px; border-radius: var(--r-lg);
  border: 1px solid var(--gray-100); transition: all .3s ease;
  position: relative; overflow: hidden;
}
.why-card:hover { box-shadow: var(--sh-md); border-color: rgba(0,63,105,.12); transform: translateY(-4px); }
.why-card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-card-icon svg { color: var(--white); }
.why-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.why-card p  { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px; background: rgba(255,255,255,.1); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 28px;
  background: rgba(241,130,35,.1); border: 2px solid rgba(241,130,35,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 28px; font-weight: 900; color: var(--orange);
}
.step-item h3 { font-size: 20px; color: var(--white); margin-bottom: 12px; }
.step-item p  { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--navy-deep); }
.footer-top {
  padding: 80px 0; display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.footer-brand-logo span { font-family: var(--font-h); font-size: 20px; font-weight: 900; color: var(--white); }
.footer-brand-logo span em { color: var(--orange); font-style: normal; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 300px; }
.footer-contacts { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; }
.footer-contact-row svg { color: var(--orange); flex-shrink: 0; }
.footer-contact-row a, .footer-contact-row span { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-contact-row a:hover { color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-h); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p, .footer-bottom span { font-size: 13px; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-split, .feature-split.reverse { grid-template-columns: 1fr; gap: 48px; }
  .feature-split.reverse .feature-img { order: -1; }
  .feature-split.reverse .feature-content { order: 0; }
  .feature-img-secondary { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .brands-row { gap: 24px; }
  .page-hero-content h1 { font-size: clamp(32px, 8vw, 48px); }
  .quote-form-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .gallery-grid-4 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
