/* ============================================================
   HOME PAGE — hero, about strip, product lineup
   ============================================================ */

/* --- Shared home utilities --- */
.home-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(4, 112, 215, 0.15);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: var(--space-4);
}

.home-section-header {
  max-width: var(--max-width);
  margin: 0 auto var(--space-10);
  text-align: center;
}

.home-section-header .section-lead {
  margin-bottom: 0;
}

.home-pattern-dots {
  position: relative;
  isolation: isolate;
}

.home-pattern-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.home-pattern-dots > * {
  position: relative;
  z-index: 1;
}

.home-wave-top {
  position: relative;
}

.home-wave-top::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--wave-color, var(--gray-100));
  clip-path: ellipse(58% 100% at 50% 100%);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.section-heading {
  position: relative;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: var(--space-4);
}

.section-heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin: var(--space-3) auto 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
}

.section-heading.section-heading--light {
  color: #fff;
}

.section-heading.section-heading--light::after {
  background: linear-gradient(90deg, #fff 0%, var(--blue-light) 100%);
}

/* --- Home page canvas --- */
.page-home main {
  background: var(--gray-200);
}

.page-home main > section {
  position: relative;
}

.home-section-band {
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-light) 70%, var(--blue) 100%);
  border: none;
  margin: 0;
}

/* --- Hero --- */
.hero {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
  background: var(--blue-dark);
}

.hero-left {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  text-align: center;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-left > * { position: relative; }

.hero-logo {
  width: 152px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.hero-tagline {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  max-width: 340px;
  margin: 0;
}

.hero-subtagline {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 320px;
  margin: 0;
}

.hero-cta-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  background: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: var(--blue-dark);
}

.hero-right {
  overflow: hidden;
  position: relative;
  background: var(--blue-dark);
  /* Match collage aspect (1260x550) so brand labels aren't cropped away */
  aspect-ratio: 1260 / 550;
  min-height: 0;
  align-self: center;
  width: 100%;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 87, 176, 0.12) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* --- Customer First --- */
.customer-first {
  padding: var(--space-8) var(--space-8) var(--space-12);
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.customer-first-shell {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-300);
}

.customer-first-panel--brand {
  background: linear-gradient(165deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-dark) 100%);
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.customer-first-panel--brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.customer-first-panel--brand::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.customer-first-panel--brand > * {
  position: relative;
  z-index: 1;
}

.customer-first-panel--body {
  background: #fff;
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--gray-200);
}

.customer-first-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: var(--space-5);
}

.customer-first-headline {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  text-align: left;
}

.customer-first-headline-accent {
  color: var(--blue-light);
}

.customer-first-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  margin: 0 0 var(--space-8);
  text-align: left;
}

.customer-first-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-first-points li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.customer-first-points li:hover {
  transform: translateX(4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  background: var(--blue-light);
}

.customer-first-point-num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius-sm);
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- About Strip --- */
.about-strip {
  padding: var(--space-16) var(--space-8);
  background: var(--gray-200);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-strip-visual {
  position: relative;
  min-height: 280px;
  background: var(--slate-900);
}

.about-strip-photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.about-strip-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
  pointer-events: none;
}

.about-strip-copy {
  padding: var(--space-10) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
  border-left: 4px solid var(--blue);
}

.about-strip-copy .home-eyebrow {
  align-self: flex-start;
  margin-bottom: var(--space-3);
}

.about-strip-heading {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 var(--space-4);
  line-height: 1.25;
}

.about-strip-copy p {
  margin: 0 0 var(--space-4);
  text-align: left;
  color: var(--gray-600);
  line-height: 1.85;
  font-size: 15px;
}

.about-strip-copy p:last-child {
  margin-bottom: 0;
}

/* --- Product lineup (home override) --- */
.product-lineup {
  background: var(--gray-200);
  border-top: none;
  border-bottom: none;
  padding: var(--space-16) var(--space-8) var(--space-20);
  position: relative;
}

.product-lineup::before {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  margin-bottom: var(--space-16);
}

.product-lineup .home-section-header,
.product-lineup .product-grid {
  position: relative;
  z-index: 1;
}

.product-lineup .product-grid {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.product-lineup .product-card {
  border-top: none;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  box-shadow: var(--shadow-sm);
}

.product-lineup .product-card:hover {
  border-color: var(--blue);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.product-lineup .product-card-image {
  background: linear-gradient(145deg, var(--blue-light) 0%, #fff 100%);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border: 1px solid rgba(4, 112, 215, 0.1);
}

.section-lead {
  text-align: center;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto var(--space-10);
}

.section-lead.section-lead--light {
  color: rgba(255, 255, 255, 0.92);
}

/* --- Stat Bar --- */
.stat-bar {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-16) var(--space-8);
  position: relative;
}

.stat-bar::before {
  display: none;
}

.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 112, 215, 0.25);
  border-top-color: var(--blue);
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-number--text {
  font-size: clamp(22px, 3vw, 32px);
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-1);
}

.stat-detail {
  font-size: 13px;
  color: var(--gray-500);
}

/* --- Our Brands --- */
.brands-section {
  padding: var(--space-20) var(--space-8);
  background: #fff;
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--gray-200);
}

.brands-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  box-shadow: var(--shadow-md);
}

.brands-section-intro {
  margin-bottom: var(--space-10);
}

.brands-section-intro .section-heading {
  text-align: center;
}

.brands-section-intro .section-lead,
.brands-section-intro p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.brands-section-intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--space-5);
}

.brands-section-intro p:last-child {
  margin-bottom: 0;
}

.brands-section-intro .section-lead {
  font-size: 16px;
  margin-bottom: var(--space-5);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: var(--space-8) var(--space-6);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4, 112, 215, 0.2);
}

.brand-card-logo {
  display: block;
  width: 100%;
  max-width: 240px;
  height: 80px;
  margin: 0 auto var(--space-5);
  object-fit: contain;
  object-position: center center;
  flex-shrink: 0;
}

.brand-card-logo--mavlift {
  max-width: 200px;
}

.brand-card-logo--unic {
  max-width: 180px;
}

.brand-card-logo--scs {
  max-width: 220px;
}

.brand-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-5);
  flex: 1;
}

.brand-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: auto;
}

.brand-card:hover .brand-card-link {
  color: var(--blue-dark);
}

/* --- Why Smiley --- */
.why-smiley {
  padding: var(--space-20) var(--space-8);
  background: linear-gradient(155deg, var(--blue-dark) 0%, var(--slate-900) 100%);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.why-smiley::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.why-smiley-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-smiley-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-12);
  align-items: start;
}

.why-smiley-heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 var(--space-5);
}

.why-smiley-heading::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  margin-top: var(--space-4);
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #fff 0%, var(--blue-light) 100%);
}

.why-smiley-lead {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 var(--space-5);
}

.why-smiley-note {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.why-smiley-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.why-smiley-principle {
  padding: var(--space-6) 0 var(--space-6) var(--space-6);
  border-left: 3px solid var(--blue-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-smiley-principle:first-child {
  padding-top: 0;
}

.why-smiley-principle:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-smiley-principle h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 var(--space-2);
}

.why-smiley-principle p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* --- Services at a Glance --- */
.services-glance {
  padding: var(--space-20) var(--space-8);
  background: var(--gray-100);
  border-top: none;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.services-glance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.services-glance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-glance-inner .section-heading,
.services-glance-inner .section-lead {
  text-align: center;
}

.services-glance-inner .section-lead {
  margin-bottom: var(--space-8);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.services-support-list {
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.services-support-item {
  padding: var(--space-6) 0 var(--space-6) var(--space-6);
  border-left: 3px solid var(--blue);
  border-bottom: 1px solid var(--gray-200);
}

.services-support-item:first-child {
  padding-top: 0;
}

.services-support-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services-support-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 var(--space-2);
}

.services-support-item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}

.services-support-item a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.services-support-item a:hover {
  text-decoration: underline;
}

/* --- Industries --- */
.industries-strip {
  background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-100) 100%);
  padding: var(--space-16) var(--space-8);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-200);
}

.industries-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.industries-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding: 0;
  list-style: none;
}

.industries-pills li {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}

.industries-pills li:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* --- CTA Strip --- */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cta-strip h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-strip-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-strip-phone {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.cta-strip-phone:hover {
  opacity: 0.85;
  color: #fff;
}

/* --- Responsive: Tablet --- */
@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-right {
    order: -1;
    align-self: stretch;
    width: 100%;
    aspect-ratio: 1260 / 550;
    min-height: 0;
  }
  .hero-photo {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
  }
  .hero-left {
    padding: var(--space-10) var(--space-6);
  }

  .about-strip { padding: var(--space-10) var(--space-6); }
  .customer-first-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .customer-first-panel--brand {
    padding: var(--space-10) var(--space-8);
  }
  .customer-first-panel--body {
    padding: var(--space-8);
    border-left: none;
    border-top: 1px solid var(--gray-200);
  }
  .about-strip-inner {
    grid-template-columns: 1fr;
  }
  .about-strip-copy {
    padding: var(--space-8);
  }
  .product-lineup { padding: var(--space-12) var(--space-6) var(--space-16); }
  .product-lineup .product-grid { padding: var(--space-6); }
  .brands-section-inner { padding: var(--space-8) var(--space-6); }
}

@media (max-width: 768px) {
  .stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .why-smiley-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .cta-strip-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-strip-actions .btn-outline-light {
    width: 100%;
    max-width: 280px;
  }

  .services-glance,
  .customer-first,
  .about-strip,
  .stat-bar,
  .brands-section,
  .why-smiley,
  .industries-strip,
  .cta-strip,
  .product-lineup,
  .about-strip {
    padding-left: max(var(--space-6), var(--safe-left));
    padding-right: max(var(--space-6), var(--safe-right));
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 560px) {
  .hero-tagline { font-size: 15px; }
  .hero-phone {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    max-width: 280px;
  }
  .hero-left {
    padding: var(--space-8) max(var(--space-6), var(--safe-right)) var(--space-8) max(var(--space-6), var(--safe-left));
  }

  .stat-bar-inner {
    grid-template-columns: 1fr;
  }
}
