
/* =========================================================================
   BRAND TOKENS
   Extracted from ronsenterprises.in screenshot.
   Update ONLY these values to re-skin the entire page.
   ========================================================================= */
:root {
  --red: #D6001C;
  --red-hover: #B00016;
  --red-dark: #8F0011;
  --gray-bar: #EFEFEF;
  --gray-border: #E0E0E0;
  --gray-soft: #F7F7F7;
  --gray-medium: #999999;
  --ink: #1A1A1A;
  --ink-body: #333333;
  --ink-muted: #666666;
  --white: #FFFFFF;
  --blue-accent: #6A8FAE;
  --blue-accent-dark: #4A6B86;
  --green-wa: #25D366;
  --font: 'Open Sans', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink-body);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* =========================================================================
   GLOBAL SECTION SYSTEM
   Each modular section wraps in <section class="mod" data-section="...">.
   To hide a section from DB: add .pl-mod-hidden class OR set display:none.
   ========================================================================= */
.pl-mod { padding: 80px 0; }
.pl-mod-hidden { display: none !important; }
.pl-mod-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.pl-mod-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: inline-block; padding-bottom: 8px; border-bottom: 2px solid var(--red);
}
.pl-mod-title {
  font-size: clamp(28px, 3.2vw, 38px); line-height: 1.2;
  color: var(--ink); font-weight: 700;
  margin-bottom: 20px; letter-spacing: -0.3px; max-width: 780px;
}
.pl-mod-title em { font-style: italic; font-weight: 400; }
.pl-mod-intro { font-size: 17px; color: var(--ink-body); line-height: 1.65; max-width: 720px; }

/* BUTTONS */
.pl-btn {
  display: inline-block; padding: 16px 32px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  border: none; cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font); border-radius: 3px; text-align: center;
}
.pl-btn-primary { background: var(--red); color: var(--white); }
.pl-btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.pl-btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.pl-btn-outline:hover { background: var(--ink); color: var(--white); }
.pl-btn-block { display: block; width: 100%; padding: 18px; font-size: 15px; }

.pl-trust-line { font-size: 12px; color: var(--ink-muted); margin-top: 12px; letter-spacing: 0.3px; }
.pl-trust-line .dot { color: var(--red); margin: 0 6px; }

/* STICKY QUOTE BAR */
.pl-sticky-quote {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--ink); color: var(--white);
  padding: 10px 0; z-index: 200;
  transform: translateY(-100%); transition: transform 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.pl-sticky-quote.pl-sticky-visible { transform: translateY(0); }
.pl-sticky-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-size: 14px;
}
.pl-sticky-msg { font-weight: 500; }
.pl-sticky-msg strong { color: var(--red); margin-right: 6px; }
.pl-sticky-btn {
  background: var(--red); color: var(--white);
  padding: 8px 18px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  border-radius: 2px; white-space: nowrap;
  transition: background 0.15s;
}
.pl-sticky-btn:hover { background: var(--red-hover); }

/* TOP BAR */
.topbar { background: var(--gray-bar); padding: 14px 0; border-bottom: 1px solid var(--gray-border); }
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center;
}
.logo-block { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; letter-spacing: -1px;
}
.logo-text { font-weight: 700; font-size: 18px; letter-spacing: 1px; color: var(--ink); }
.contact-row { display: flex; gap: 48px; justify-content: center; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-icon { color: var(--red); font-size: 18px; font-weight: 700; margin-top: 2px; }
.contact-label { font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-value { font-size: 13px; color: var(--ink-body); }
.cart-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.cart-icon::before { content: '🛒'; filter: brightness(0) invert(1); opacity: 0.9; }

/* MAIN NAV */
.mainnav { background: var(--red); }
.mainnav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; }
.mainnav a {
  color: var(--white); padding: 20px 28px;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.15s;
}
.mainnav a:hover { background: rgba(0,0,0,0.15); }
.mainnav a.active { background: rgba(0,0,0,0.2); }

/* BREADCRUMB */
.breadcrumb { background: var(--gray-soft); padding: 14px 0; border-bottom: 1px solid var(--gray-border); }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; font-size: 13px; color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .pl-sep { margin: 0 8px; color: var(--gray-medium); }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* HERO + GALLERY */
.pl-hero { padding: 60px 0 70px; background: var(--white); }
.pl-hero-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}

.pl-gallery {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: var(--blue-accent);
  border-radius: 6px;
  overflow: hidden;
}
@supports (aspect-ratio: 4/4.2) {
  .pl-gallery { min-height: 0; aspect-ratio: 4/4.2; }
}
.pl-gallery-track { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; }
.pl-gallery-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
}
.pl-gallery-slide.pl-slide-active { opacity: 1; }
.pl-gallery-slide.variant-2 { background: var(--blue-accent-dark); }
.pl-gallery-slide.variant-3 { background: #3d5a73; }
.pl-gallery-slide.variant-4 { background: #2d4258; }
.pl-gallery-slide-inner { text-align: center; padding: 40px; }
.pl-gallery-slide-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; }
.pl-gallery-slide-note { font-size: 13px; opacity: 0.85; max-width: 320px; margin: 0 auto; line-height: 1.5; font-style: italic; }
.pl-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  transition: all 0.15s;
  z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.pl-gallery-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.pl-gallery-arrow.pl-arrow-prev { left: 16px; }
.pl-gallery-arrow.pl-arrow-next { right: 16px; }
.pl-gallery-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.pl-gallery-dot { width: 32px; height: 3px; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.pl-gallery-dot.pl-dot-active { background: var(--white); }
.pl-gallery-tag {
  position: absolute; bottom: 48px; left: 20px;
  background: rgba(0,0,0,0.4); color: var(--white);
  padding: 6px 12px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 3px; backdrop-filter: blur(4px);
  z-index: 4;
}

.pl-hero-eyebrow {
  display: inline-block; background: var(--gray-soft);
  border-left: 3px solid var(--red); color: var(--red);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 24px;
}
.pl-hero h1 {
  font-size: clamp(32px, 3.8vw, 46px); line-height: 1.15;
  color: var(--ink); font-weight: 700;
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.pl-hero h1 .pl-hero-accent { color: var(--red); }
.pl-hero-sub { font-size: 17px; color: var(--ink-body); line-height: 1.6; margin-bottom: 28px; max-width: 540px; }
.pl-hero-meta {
  display: flex; gap: 32px; margin-bottom: 32px; padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.pl-hero-meta-num { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 6px; }
.pl-hero-meta-label { font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.pl-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* SYSTEM */
.pl-system { background: var(--gray-soft); }
.pl-system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
.pl-system-text p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.pl-system-text p.lead {
  font-size: 19px; color: var(--ink); font-weight: 600; line-height: 1.5;
  padding-left: 16px; border-left: 3px solid var(--red);
}
.pl-system-features { background: var(--white); border: 1px solid var(--gray-border); padding: 32px; }
.pl-system-feature {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--gray-border);
}
.pl-system-feature:last-child { border-bottom: none; }
.pl-system-feature:first-child { padding-top: 0; }
.pl-system-feature-num { font-size: 22px; font-weight: 800; color: var(--red); line-height: 1; }
.pl-system-feature-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pl-system-feature-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

/* URGENCY */
.pl-urgency { background: var(--ink); color: var(--white); padding: 90px 0; position: relative; overflow: hidden; }
.pl-urgency::before {
  content: ''; position: absolute; top: 0; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(circle at center, rgba(214, 0, 28, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.pl-urgency-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; position: relative;
}
.pl-urgency-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: inline-block; padding-bottom: 8px; border-bottom: 2px solid var(--red);
}
.pl-urgency-big { font-size: clamp(36px, 5vw, 54px); line-height: 1.1; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.5px; }
.pl-urgency-big .pl-urgency-hilite { color: var(--red); }
.pl-urgency-copy { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 560px; margin-bottom: 12px; }
.pl-urgency-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); padding: 40px 36px; }
.pl-urgency-stat-num { font-size: 84px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 12px; letter-spacing: -3px; }
.pl-urgency-stat-desc { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.pl-urgency-stat-source { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 16px; letter-spacing: 0.5px; text-transform: uppercase; }

/* PRICING */
.pl-pricing { background: var(--white); text-align: center; }
.pl-pricing .pl-mod-label, .pl-pricing .pl-mod-title, .pl-pricing .pl-mod-intro { margin-left: auto; margin-right: auto; }
.pl-pricing .pl-mod-label { display: inline-block; }
.pl-pricing-box { max-width: 960px; margin: 48px auto 0; background: var(--gray-soft); border: 1px solid var(--gray-border); padding: 56px 48px; position: relative; }
.pl-pricing-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.pl-pricing-amount { font-size: clamp(40px, 5vw, 56px); font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -1px; }
.pl-pricing-amount .pl-pricing-currency { color: var(--red); }
.pl-pricing-desc { font-size: 17px; color: var(--ink-body); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.pl-pricing-small { font-size: 13px; color: var(--ink-muted); margin-top: 24px; }

/* FITMENT */
.pl-fitment { background: var(--gray-soft); }
.pl-fitment-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 1px;
  background: var(--gray-border);
  margin-top: 48px; border: 1px solid var(--gray-border);
}
.pl-fitment-cell {
  background: var(--white); padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 80px; font-size: 13px; font-weight: 700; color: var(--ink-muted);
  letter-spacing: 0.5px; text-align: center; transition: all 0.2s;
}
.pl-fitment-cell:hover { background: var(--ink); color: var(--white); }
.pl-fitment-note { text-align: center; margin-top: 32px; font-size: 15px; color: var(--ink-muted); }
.pl-fitment-note strong { color: var(--ink); }

/* CASES */
.pl-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.pl-case-card { background: var(--white); border: 1px solid var(--gray-border); overflow: hidden; transition: all 0.2s; }
.pl-case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pl-case-image {
  aspect-ratio: 16/10; background: var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; text-align: center; padding: 20px;
}
.pl-case-image.variant-2 { background: var(--blue-accent-dark); }
.pl-case-image.variant-3 { background: var(--ink); }
.pl-case-content { padding: 28px 28px 32px; }
.pl-case-sector { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.pl-case-title { font-size: 19px; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 12px; }
.pl-case-machine { font-size: 13px; color: var(--ink-muted); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-border); }
.pl-case-result { font-size: 14px; line-height: 1.6; color: var(--ink-body); }

/* TESTIMONIAL */
.pl-testimonial { background: var(--white); padding: 60px 0; border-top: 1px solid var(--gray-border); border-bottom: 1px solid var(--gray-border); }
.pl-testimonial-inner { max-width: 900px; margin: 0 auto; padding: 0 32px; text-align: center; }
.pl-testimonial-quote {
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.5;
  color: var(--ink); font-weight: 500; font-style: italic; margin-bottom: 24px;
}
.pl-testimonial-quote::before { content: '"'; color: var(--red); font-size: 48px; line-height: 0; vertical-align: -18px; margin-right: 4px; font-weight: 800; }
.pl-testimonial-quote::after { content: '"'; color: var(--red); font-size: 48px; line-height: 0; vertical-align: -18px; margin-left: 2px; font-weight: 800; }
.pl-testimonial-attr { font-size: 13px; color: var(--ink-muted); letter-spacing: 0.5px; }
.pl-testimonial-attr strong { color: var(--ink); text-transform: uppercase; letter-spacing: 1px; margin-right: 10px; }

/* INSTALL */
.pl-install { background: var(--ink); color: var(--white); }
.pl-install .pl-mod-label { color: var(--red); }
.pl-install .pl-mod-title { color: var(--white); }
.pl-install .pl-mod-intro { color: rgba(255,255,255,0.75); }
.pl-install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; align-items: start; }
.pl-install-text p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.pl-install-list { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); padding: 8px 32px; }
.pl-install-item { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: start; }
.pl-install-item:last-child { border-bottom: none; }
.pl-install-check {
  width: 28px; height: 28px; background: var(--red); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; margin-top: 2px;
}
.pl-install-item-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pl-install-item-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.pl-install-video { margin-top: 24px; padding: 16px; background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.2); font-size: 13px; color: rgba(255,255,255,0.6); }

/* SHIPPING */
.pl-shipping-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-top: 48px; align-items: center; }
.pl-shipping-note { background: var(--gray-soft); border-left: 4px solid var(--red); padding: 28px 32px; font-size: 15px; line-height: 1.65; color: var(--ink-body); }
.pl-shipping-note strong { color: var(--ink); display: block; margin-bottom: 8px; }
.pl-shipping-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-border); }
.pl-shipping-step:last-child { border-bottom: none; }
.pl-shipping-step-num {
  width: 36px; height: 36px; background: var(--ink); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.pl-shipping-step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.pl-shipping-step-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

/* LEAD FORM */
.pl-lead { background: var(--gray-soft); }
.pl-lead-wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.pl-lead-wrap .pl-mod-label, .pl-lead-wrap .pl-mod-title, .pl-lead-wrap .pl-mod-intro { margin-left: auto; margin-right: auto; }
.pl-lead-wrap .pl-mod-title { text-align: center; }
.pl-lead-wrap .pl-mod-intro { text-align: center; }
.pl-lead-form {
  margin-top: 48px; background: var(--white); border: 1px solid var(--gray-border);
  padding: 48px; text-align: left; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.pl-lead-form-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--gray-border);
}
.pl-lead-form-title { font-size: 20px; font-weight: 700; color: var(--ink); }
.pl-lead-form-promise { font-size: 13px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pl-form-step { display: none; }
.pl-form-step.active { display: block; }
.pl-form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.pl-form-group.single { grid-template-columns: 1fr; }
.pl-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: 0.2px; }
.pl-form-label .pl-form-opt { color: var(--ink-muted); font-weight: 400; }
.pl-form-input, .pl-form-input, .pl-form-select {
  width: 100%; padding: 13px 14px; font-size: 14px; font-family: var(--font);
  border: 1px solid var(--gray-border); background: var(--white); color: var(--ink);
  border-radius: 3px; transition: border-color 0.15s, box-shadow 0.15s;
}
.pl-form-input:focus, .pl-form-input:focus, .pl-form-select:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(214, 0, 28, 0.1);
}
.pl-btn pl-btn-primary pl-btn-block { margin-top: 12px; }
.pl-form-privacy { font-size: 12px; color: var(--ink-muted); text-align: center; margin-top: 20px; line-height: 1.5; }
.pl-form-progress { display: flex; gap: 8px; margin-bottom: 28px; }
.pl-form-progress-pip { flex: 1; height: 4px; background: var(--gray-border); border-radius: 2px; transition: background 0.3s; }
.pl-form-progress-pip.active { background: var(--red); }
.pl-form-progress-pip.done { background: var(--red); }
.pl-form-success { text-align: center; padding: 20px 0; }
.pl-form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--red); color: var(--white); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800;
}

/* OEM STRIP */
.pl-oem-strip { background: var(--ink); color: var(--white); padding: 48px 0; }
.pl-oem-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.pl-oem-strip-text { max-width: 720px; }
.pl-oem-strip-title { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pl-oem-strip-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
.pl-oem-strip-btn {
  background: var(--white); color: var(--ink);
  padding: 16px 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: 13px; border-radius: 3px; white-space: nowrap; transition: all 0.15s;
}
.pl-oem-strip-btn:hover { background: var(--red); color: var(--white); }

/* FOOTER */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 48px 0 24px; font-size: 13px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer h4 { color: var(--white); font-size: 14px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer p { line-height: 1.8; }
.footer a { display: block; padding: 4px 0; transition: color 0.15s; }
.footer a:hover { color: var(--red); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 32px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; }

/* WHATSAPP */
.whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000; transition: transform 0.2s;
}
.whatsapp:hover { transform: scale(1.08); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pl-hero-grid, .pl-system-grid, .pl-urgency-grid, .pl-install-grid, .pl-shipping-grid { grid-template-columns: 1fr; gap: 40px; }
  .pl-fitment-grid { grid-template-columns: repeat(4, 1fr); }
  .pl-cases-grid { grid-template-columns: 1fr; }
  .topbar-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-row { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .mainnav-inner { overflow-x: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .pl-sticky-inner { font-size: 12px; }
}
@media (max-width: 640px) {
  .pl-fitment-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-form-group { grid-template-columns: 1fr; }
  .pl-lead-form { padding: 28px 20px; }
  .pl-mod { padding: 56px 0; }
  .pl-hero { padding: 40px 0 50px; }
  .pl-mod-inner, .topbar-inner, .mainnav-inner, .pl-hero-grid, .pl-urgency-grid { padding-left: 20px; padding-right: 20px; }
  .pl-sticky-msg { display: none; }
  .pl-sticky-inner { justify-content: center; }
}


/* ── pl-body: outer wrapper set by PremiumLandingBody ─────────────────────── */
.pl-body { font-family: 'Open Sans', sans-serif; color: #222; line-height: 1.6; }

/* ── pl-cases: case studies section ──────────────────────────────────────── */
.pl-cases { padding: 72px 0; background: #fff; }
.pl-cases .pl-mod-label { margin-bottom: 8px; }

/* ── pl-shipping-steps: shipping steps list ───────────────────────────────── */
.pl-shipping-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 40px; }

/* (removed conflicting patch rules) */

/* ── pl-form-success-body: success message body ─────────────────────────── */
.pl-form-success-body { margin-top: 12px; color: #555; font-size: 15px; }
.pl-form-success-heading { font-size: 22px; font-weight: 700; color: #1a1a1a; }

/* ── pl-hero-copy: hero text column ─────────────────────────────────────── */
.pl-hero-copy { display: flex; flex-direction: column; justify-content: center; }
.pl-hero-h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; color: #1a1a1a; margin: 0 0 8px; }
.pl-hero-accent { color: #D6001C; }

/* ── pl-urgency-hilite: inline text highlight in urgency section ─────────── */
.pl-urgency-hilite { color: #D6001C; font-weight: 700; }

/* ── pl-form-opt: optional field suffix ─────────────────────────────────── */
.pl-form-opt { font-size: 12px; color: #999; margin-left: 4px; font-weight: 400; }

/* ── pl-install-text: install intro text ─────────────────────────────────── */
.pl-install-text { max-width: 680px; }
.pl-install-text p { margin-bottom: 12px; }

/* ── pl-gallery-placeholder: shown when image 404s ──────────────────────── */
.pl-gallery-placeholder { width: 100%; height: 100%; background: transparent; display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; border-radius: 4px; }

/* ── Patched: classes used in components not covered by reference CSS ───────── */


/* Hero stat item wrapper */
.pl-hero-meta-item { display: flex; flex-direction: column; align-items: flex-start; }

/* Shipping outer section */
.pl-shipping { padding: 72px 0; background: #f7f8fa; }

/* System lead paragraph */
.pl-system-lead { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 20px; border-left: 3px solid #D6001C; padding-left: 14px; }

/* ── Gallery video slides ─────────────────────────────────────────────────── */
.pl-gallery-video { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; }
.pl-gallery-video iframe { width: 100%; height: 100%; border: none; display: block; }
.pl-gallery-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pl-gallery-video-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center; padding: 24px;
  pointer-events: none;
}
.pl-gallery-video-overlay.playing { background: transparent; }
.pl-gallery-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(214,0,28,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 12px;
  transition: transform 0.2s, background 0.2s;
  pointer-events: all;
}
.pl-gallery-play-btn:hover { transform: scale(1.1); background: #D6001C; }
.pl-gallery-video-caption { font-size: 13px; opacity: 0.85; pointer-events: none; }
