
/* ═══════════════════════════════════════
   ROOF LOCK PRO — Main Stylesheet v1.0
   Brand Colors:
   Red    #C8102E  |  Blue  #1B4FD8
   Navy   #001843  |  White #FFFFFF
   Silver #C0C8D4
═══════════════════════════════════════ */

:root {
  --red:    #C8102E;
  --blue:   #1B4FD8;
  --navy:   #001843;
  --navy2:  #001228;
  --white:  #FFFFFF;
  --silver: #C0C8D4;
  --gray:   #F5F5F7;
  --text:   #1A1A2E;
  --text2:  #4A4A5A;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --header-h: 76px;
  --font-display: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body:    'Barlow', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color .2s; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-red   { color: var(--red);  }
.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--lg { font-size: 1.05rem; padding: .9rem 2.2rem; }
.btn--sm { font-size: .8rem;  padding: .5rem 1.2rem; }

.btn--red           { background: var(--red);   color: #fff; border-color: var(--red); }
.btn--red:hover     { background: #a50d24;       border-color: #a50d24; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,.4); }

.btn--white         { background: #fff;         color: var(--red);  border-color: #fff; }
.btn--white:hover   { background: #f0f0f0;      transform: translateY(-2px); }

.btn--outline       { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--outline-white       { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }

.btn--outline-dark       { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: #fff; }

.btn--outline-blue       { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline-blue:hover { background: var(--blue); color: #fff; }

/* ── HEADER ── */
.rlp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 4px solid var(--red);
  transition: box-shadow .3s;
}
.rlp-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.5); }

.rlp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rlp-header__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: opacity .2s;
}
.rlp-header__logo:hover img { opacity: .85; }

.rlp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rlp-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.rlp-nav__list a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: .5rem .9rem;
  border-radius: 4px;
  transition: all .2s;
}
.rlp-nav__list a:hover,
.rlp-nav__list .current-menu-item > a { color: #fff; background: rgba(255,255,255,.08); }

.rlp-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.rlp-nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.rlp-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #000d2a 0%, #001843 40%, #001228 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.rlp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(27,79,216,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(200,16,46,.1) 0%, transparent 70%);
  pointer-events: none;
}
.rlp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.rlp-hero__overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,.01) 40px,
    rgba(255,255,255,.01) 80px
  );
}
.rlp-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 24px;
}
.rlp-hero__badge {
  display: inline-block;
  background: rgba(200,16,46,.2);
  border: 1px solid rgba(200,16,46,.5);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.rlp-hero__headline {
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
}
.rlp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,.75);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.rlp-hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.rlp-hero__stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-stat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}
.hero-stat__unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
}
.hero-stat__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── TRUST STRIP ── */
.rlp-trust {
  background: #fff;
  border-bottom: 3px solid var(--gray);
  padding: 20px 0;
}
.rlp-trust__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-item__icon { font-size: 1.3rem; }

/* ── SECTIONS ── */
.section-light { background: var(--gray); }
.section-dark  { background: linear-gradient(160deg, #000d2a 0%, #001843 100%); color: #fff; }
section { padding: 80px 0; }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-header--light .section-title { color: #fff; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-eyebrow--red { color: var(--red); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
}

/* ── PRODUCT ── */
.rlp-product__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.rlp-product__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.product-badge-wrap {
  position: relative;
  background: linear-gradient(135deg, #001843 0%, #002060 100%);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid rgba(27,79,216,.3);
  box-shadow: 0 20px 60px rgba(0,24,67,.3);
}
.product-logo-display {
  width: 280px;
  height: auto;
  object-fit: contain;
}
.product-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,79,216,.2) 0%, transparent 70%);
  pointer-events: none;
}
.product-feature-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pfb {
  padding: .35rem 1rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.pfb--red  { background: var(--red); }
.pfb--blue { background: var(--blue); }
.pfb--navy { background: var(--navy); }

.rlp-product__specs h3 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.product-tagline {
  font-size: 1.1rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2rem;
}
.spec-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 12px 14px;
}
.spec-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.spec-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.spec-note {
  display: block;
  font-size: .75rem;
  color: #aaa;
  margin-top: 2px;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .3s, background .3s;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: .75rem; }
.why-card p  { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.7; }

/* ── WARRANTY ── */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.warranty-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  overflow: hidden;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.warranty-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.warranty-card--featured { border-color: var(--red); transform: scale(1.04); box-shadow: 0 12px 40px rgba(200,16,46,.2); }
.warranty-card--featured:hover { transform: scale(1.04) translateY(-8px); }
.warranty-card__popular {
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px;
}
.warranty-card__header {
  padding: 32px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.warranty-card__years { font-family: var(--font-display); font-size: 5rem; font-weight: 900; line-height: 1; }
.warranty-card__yr    { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; }
.warranty-card__label { font-size: .8rem; letter-spacing: 3px; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.warranty-card__features {
  padding: 24px;
  text-align: left;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.warranty-card__features li { font-size: .95rem; color: #555; font-weight: 400; }
.warranty-card .btn { margin: 0 24px 24px; width: calc(100% - 48px); }

/* ── PROCESS ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}
.process-step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 { color: #fff; font-size: 1.2rem; margin-bottom: .75rem; }
.process-step p  { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.process-arrow   { font-size: 2rem; color: rgba(255,255,255,.2); margin-top: 60px; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.tcard__stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tcard__quote { font-style: italic; color: #444; line-height: 1.8; margin-bottom: 1.5rem; font-size: .95rem; }
.tcard__author { display: flex; align-items: center; gap: 12px; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard__author strong { display: block; font-size: .9rem; color: var(--navy); }
.tcard__author span   { font-size: .8rem; color: #999; }

/* ── CTA BANNER ── */
.rlp-cta {
  background: linear-gradient(135deg, #a50d24 0%, #C8102E 50%, #a50d24 100%);
  padding: 80px 0;
}
.rlp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rlp-cta__text h2 { font-size: 2.5rem; color: #fff; margin-bottom: .75rem; }
.rlp-cta__text p  { font-size: 1.1rem; color: rgba(255,255,255,.85); }
.rlp-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
.rlp-footer { background: var(--navy); color: rgba(255,255,255,.8); }
.rlp-footer__top { padding: 64px 0 40px; }
.rlp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.rlp-footer__logo { height: 60px; width: auto; margin-bottom: 1rem; }
.rlp-footer__brand p { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.rlp-footer__brand em { color: rgba(255,255,255,.8); }
.flag-badge {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.rlp-footer__links h4,
.rlp-footer__contact h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}
.rlp-footer__links ul li,
.rlp-footer__contact ul li { margin-bottom: .6rem; }
.rlp-footer__links a,
.rlp-footer__contact a {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: color .2s;
}
.rlp-footer__links a:hover,
.rlp-footer__contact a:hover { color: var(--red); }
.rlp-footer__contact ul { list-style: none; }
.rlp-footer__contact li { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.rlp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.rlp-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}
.rlp-footer__tagline { font-style: italic; color: rgba(255,255,255,.25); }

/* ── PAGE HERO ── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
  color: #fff;
}
.page-hero--navy { background: linear-gradient(160deg, #000d2a 0%, #001843 100%); }
.page-hero--blue { background: linear-gradient(160deg, #0a2a70 0%, #1B4FD8 100%); }
.page-hero--red  { background: linear-gradient(160deg, #7a0010 0%, #C8102E 100%); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: .75rem; }
.page-hero p  { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.rlp-form { display: flex; flex-direction: column; gap: 16px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { background: #e6f7ee; border: 2px solid #00a651; color: #007a3d; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; }
.form-error   { background: #fde8ec; border: 2px solid var(--red); color: var(--red); padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.cinfo-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--gray); border-radius: var(--radius);
  padding: 16px 20px;
}
.cinfo-icon { font-size: 1.8rem; flex-shrink: 0; }
.cinfo-card strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cinfo-card p { font-size: .9rem; color: var(--text2); }
.contact-promise {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
}
.contact-promise h3 { font-size: 1.2rem; color: #fff; margin-bottom: 1rem; }
.contact-promise ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contact-promise li { font-size: .95rem; color: rgba(255,255,255,.8); }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid #e8e8e8; box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card__body { padding: 24px; }
.blog-card__body h2 { font-size: 1.3rem; margin-bottom: .75rem; }
.blog-card__body h2 a:hover { color: var(--red); }
.blog-card__body p { font-size: .95rem; color: var(--text2); margin-bottom: 1rem; line-height: 1.7; }

/* ── CONTENT ── */
.rlp-content h1,.rlp-content h2,.rlp-content h3 { margin: 1.5rem 0 .75rem; color: var(--navy); }
.rlp-content p   { margin-bottom: 1rem; line-height: 1.8; color: var(--text2); }
.rlp-content ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.rlp-content li  { margin-bottom: .4rem; line-height: 1.7; }
.rlp-content a   { color: var(--blue); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .rlp-footer__grid { grid-template-columns: 1fr 1fr; }
  .rlp-product__layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  h1 { font-size: 2.5rem; }
  .rlp-nav__toggle { display: flex; }
  .rlp-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--navy2);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-top: 2px solid var(--red);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s;
    z-index: 999;
  }
  .rlp-nav.open { transform: translateY(0); opacity: 1; }
  .rlp-nav__list { flex-direction: column; width: 100%; }
  .rlp-nav__list a { display: block; padding: .9rem 1.2rem; font-size: 1.1rem; }
  .warranty-grid { grid-template-columns: 1fr; }
  .warranty-card--featured { transform: none; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); margin: -10px 0; }
  .rlp-cta__inner { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rlp-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .rlp-footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .spec-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .rlp-hero__stats { gap: 1.5rem; }
  .hero-stat__num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .rlp-hero__ctas { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; max-width: 320px; }
}

/* ═══════════════════════════════════════
   ROOF LOCK PRO — v2.0 Brand Refresh
   Silicone-specialist repositioning:
   Navy/charcoal + white sections, Roof Lock
   Pro BLUE as primary accent, silver/gray
   secondary, red reserved for the logo only.
   Less rounded, no pill shapes, no emoji.
═══════════════════════════════════════ */

:root {
  --charcoal: #14181f;
  --silver2: #8f97a3;
}

/* De-emphasize red as a UI accent; blue leads all CTAs */
.btn--primary       { background: var(--blue); color:#fff; border-color: var(--blue); border-radius: 4px; }
.btn--primary:hover  { background:#123ea8; border-color:#123ea8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,79,216,.35); }
.btn--ghost          { background: transparent; color: var(--navy); border-color: transparent; text-decoration: underline; padding-left: .5rem; padding-right: .5rem; }
.btn--ghost:hover     { color: var(--blue); }
.btn, .btn--lg, .btn--sm { border-radius: 4px; }

.section-eyebrow--blue { color: var(--blue); }

/* Header logo now uses the wide-badge crop */
.rlp-header__logo img { height: 46px; width: auto; }
.rlp-footer__logo { height: 52px; width: auto; }

/* Icons */
.rlp-icon { display:inline-flex; width: 28px; height: 28px; color: var(--blue); flex-shrink:0; }
.rlp-icon svg { width:100%; height:100%; }
.why-card .rlp-icon, .app-card .rlp-icon, .resource-card .rlp-icon { width:34px; height:34px; margin-bottom: .75rem; }
.section-dark .rlp-icon { color:#7fa3ff; }

/* ── HERO v2 (photo background) ── */
.rlp-hero { background: var(--navy); }
.rlp-hero__bg {
  position:absolute; inset:0;
  background-size: cover; background-position: center;
  filter: grayscale(15%) brightness(0.55);
}
.rlp-hero__scrim {
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(0,10,30,.92) 20%, rgba(0,10,30,.55) 60%, rgba(0,10,30,.3) 100%);
}
.rlp-hero__content { text-align:left; max-width: 760px; }
.rlp-hero__headline { font-size: clamp(2.6rem, 6vw, 5rem); }
.rlp-hero__sub { margin: 0 0 2.5rem; max-width: 620px; }
.rlp-hero__ctas { justify-content:flex-start; margin-bottom: 0; }

/* ── BENEFIT BAR ── */
.rlp-benefit-bar { background:#fff; border-bottom: 1px solid #e7e9ee; padding: 22px 0; }
.rlp-benefit-bar__grid { display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.benefit-item { display:flex; align-items:center; gap:10px; font-family: var(--font-display); font-weight:700; font-size:.85rem; letter-spacing:1px; text-transform:uppercase; color: var(--navy); }
.benefit-item .rlp-icon { width:22px; height:22px; }

/* ── SOLUTIONS VISUAL ── */
.solutions-visual { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 3rem; }
.solutions-visual__item { text-align:center; background:#fff; border:1px solid #e7e9ee; border-radius: 6px; padding: 32px; }
.solutions-visual__item img { max-height: 220px; margin: 0 auto 1rem; }
.solutions-visual__item p { font-weight:600; color: var(--navy); font-family: var(--font-display); letter-spacing:.5px; text-transform:uppercase; font-size:.9rem; }

/* ── PRODUCT CARDS ── */
.product-cards-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background:#fff; border:1px solid #e7e9ee; border-radius:6px; overflow:hidden; display:flex; flex-direction:column; transition: box-shadow .25s, transform .25s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card__img { width:100%; height: 220px; object-fit: contain; background: var(--gray); padding: 20px; }
.product-card__body { padding: 24px; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.product-card__eyebrow { font-family: var(--font-display); font-size:.75rem; letter-spacing:2px; text-transform:uppercase; color: var(--blue); }
.product-card__body h3 { font-size: 1.25rem; color: var(--navy); }
.product-card__body p { font-size:.92rem; color: var(--text2); line-height:1.6; }
.product-card__specs { list-style:none; font-size:.85rem; color: var(--text2); display:flex; flex-direction:column; gap:.35rem; margin: .5rem 0; }
.product-card__specs strong { color: var(--navy); }
.product-card__actions { display:flex; gap: .75rem; flex-wrap:wrap; margin-top: auto; padding-top:.5rem; }

.placeholder { color: var(--silver2); font-style: italic; }

/* ── DISCLAIMER ── */
.disclaimer-box { margin-top: 2.5rem; padding: 16px 20px; border-left: 3px solid var(--blue); background: rgba(27,79,216,.06); font-size:.88rem; color: var(--text2); line-height:1.6; max-width: 900px; }
.section-dark .disclaimer-box { background: rgba(255,255,255,.05); color: rgba(255,255,255,.65); border-left-color:#7fa3ff; }

/* ── APPLICATIONS GRID ── */
.app-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.app-card { background:#fff; border:1px solid #e7e9ee; border-radius:6px; padding: 24px 16px; text-align:center; display:flex; flex-direction:column; align-items:center; }
.app-card span { font-family: var(--font-display); font-weight:700; font-size:.9rem; letter-spacing:.5px; color: var(--navy); text-transform:uppercase; }

/* ── RESOURCES GRID ── */
.resource-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.resource-card { background:#fff; border:1px solid #e7e9ee; border-radius:6px; padding: 28px 18px; text-align:center; display:flex; flex-direction:column; align-items:center; transition: border-color .2s, transform .2s; }
.resource-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.resource-card span { font-family: var(--font-display); font-weight:700; font-size:.9rem; color: var(--navy); text-transform:uppercase; letter-spacing:.5px; }
.resource-card small { display:block; margin-top:4px; font-size:.75rem; }

/* ── SUPPORT SECTION ── */
.rlp-support { text-align:center; }
.rlp-support__actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ── FINAL CTA v2 ── */
.rlp-final-cta { position:relative; padding: 100px 0; }
.rlp-final-cta__bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:grayscale(10%) brightness(.4); }
.rlp-final-cta__scrim { position:absolute; inset:0; background: rgba(0,10,30,.55); }
.rlp-final-cta__content { position:relative; z-index:1; text-align:center; color:#fff; }
.rlp-final-cta__content h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.rlp-final-cta__content p { max-width:600px; margin: 0 auto 2rem; color: rgba(255,255,255,.8); }
.rlp-final-cta--flat { background: var(--charcoal); padding: 80px 0; }

/* ── PRODUCT DETAIL PAGE ── */
.product-detail { display:grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items:start; }
.product-detail__visual { background: var(--gray); border-radius:6px; padding: 40px; text-align:center; }
.product-detail__desc { font-size: 1.05rem; color: var(--text2); margin: .75rem 0 1.5rem; line-height:1.8; }
.product-detail-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.product-detail-grid h3 { font-size:1.05rem; color: var(--navy); margin-bottom: .75rem; }
.rlp-list { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.rlp-list li { font-size:.92rem; color: var(--text2); padding-left: 1.1rem; position:relative; }
.rlp-list li::before { content:''; position:absolute; left:0; top:.5em; width:6px; height:6px; background: var(--blue); }

.faq-item { margin-bottom: 1.5rem; }
.faq-item h4 { font-size:1rem; color: var(--navy); margin-bottom:.4rem; font-family: var(--font-display); letter-spacing:.5px; text-transform:uppercase; }
.faq-item p { font-size:.95rem; color: var(--text2); line-height:1.7; }

/* ── RESPONSIVE v2 ── */
@media (max-width: 1024px) {
  .product-cards-grid { grid-template-columns: repeat(2,1fr); }
  .app-grid, .resource-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail-grid { grid-template-columns: repeat(2,1fr); }
  .solutions-visual { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .rlp-hero__content { text-align:center; }
  .rlp-hero__ctas { justify-content:center; }
  .rlp-benefit-bar__grid { justify-content:center; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .app-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
}

/* Full brand alignment: replace remaining red top-accent on why-cards with blue */
.why-card { border-top-color: var(--blue) !important; }

/* ═══════════════════════════════════════
   ROOF LOCK PRO — v3.0 (closer to live-site
   structure: video hero, stats bar, trust
   strip, flagship spotlight, real process)
═══════════════════════════════════════ */

/* ── HERO v3: video background ── */
.rlp-hero { position:relative; min-height:100vh; background:var(--navy); display:flex; align-items:center; padding-top:var(--header-h); overflow:hidden; }
.rlp-hero__video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(0.55) saturate(1.05); }
.rlp-hero__scrim { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,10,30,.75) 0%, rgba(0,10,30,.45) 45%, rgba(0,10,30,.85) 100%); }
.rlp-hero__content { position:relative; z-index:1; text-align:center; color:#fff; padding:80px 24px; max-width:900px; margin:0 auto; }
.rlp-hero__badge {
  display:inline-block; background: rgba(27,79,216,.22); border:1px solid rgba(27,79,216,.5);
  color: rgba(255,255,255,.9); font-size:.85rem; font-weight:700; letter-spacing:3px; text-transform:uppercase;
  padding:.4rem 1.2rem; border-radius:4px; margin-bottom:1.5rem;
}
.rlp-hero__headline { font-size: clamp(2.6rem, 6vw, 5.5rem); line-height:1; margin-bottom:1.5rem; text-shadow:0 4px 32px rgba(0,0,0,.4); }
.rlp-hero__sub { font-size: clamp(1rem,2vw,1.2rem); color:rgba(255,255,255,.8); max-width:700px; margin:0 auto 2.5rem; line-height:1.7; }
.rlp-hero__ctas { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:3rem; }
.rlp-hero__stats { display:flex; gap:2rem; justify-content:center; flex-wrap:wrap; padding-top:2.5rem; border-top:1px solid rgba(255,255,255,.15); }
.hero-stat { display:flex; flex-direction:column; align-items:center; gap:2px; }
.hero-stat__num { font-family:var(--font-display); font-weight:900; font-size:2.6rem; color:#fff; line-height:1; }
.hero-stat__unit { font-family:var(--font-display); font-weight:700; font-size:1rem; color:#7fa3ff; }
.hero-stat__label { font-size:.78rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.55); }
.hero-footnote { margin-top:1.25rem; font-size:.75rem; color:rgba(255,255,255,.4); max-width:600px; margin-left:auto; margin-right:auto; }

/* ── TRUST STRIP ── */
.rlp-trust { background:#fff; border-bottom:3px solid var(--gray); padding:22px 0; }
.rlp-trust__grid { display:flex; justify-content:space-around; flex-wrap:wrap; gap:16px; }
.trust-item { display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; font-size:.88rem; letter-spacing:1px; text-transform:uppercase; color:var(--navy); }
.trust-item .rlp-icon { width:22px; height:22px; }

/* ── FLAGSHIP SPOTLIGHT visual (reuse product-badge-wrap pattern, blue not navy-gradient-only) ── */
.rlp-product__visual { min-height: 340px; }
.product-badge-wrap { display:none; } /* not used in v3 layout */
.rlp-product__visual .product-logo-display { width: 260px; height:auto; object-fit:contain; margin: 0 auto; display:block; background: var(--gray); border-radius: 8px; padding: 24px; }
.pfb--blue { background: var(--blue); }

/* ── APPLICATION PROCESS (real steps w/ photos) ── */
.app-process-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:28px; }
.app-process-step { background:#fff; border:1px solid #e7e9ee; border-radius:6px; overflow:hidden; }
.app-process-step img { width:100%; height:220px; object-fit:cover; }
.app-process-step__body { padding:22px; }
.app-process-step__num { display:inline-block; font-family:var(--font-display); font-weight:900; font-size:1.4rem; color:#fff; background:var(--blue); padding:2px 12px; border-radius:4px; margin-bottom:.75rem; }
.app-process-step__body h3 { font-size:1.15rem; color:var(--navy); margin-bottom:.5rem; }
.app-process-step__body p { font-size:.92rem; color:var(--text2); line-height:1.7; }

/* app-grid on dark sections */
.app-grid--dark .app-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.app-grid--dark .app-card span { color:#fff; }
.app-grid--dark .rlp-icon { color:#7fa3ff; }

/* Responsive */
@media (max-width: 1024px) {
  .app-process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .app-process-grid { grid-template-columns: 1fr; }
  .rlp-hero__stats { gap:1.25rem; }
  .hero-stat__num { font-size:2rem; }
}

/* Application Process — full composite step graphics (no cropping) */
.app-process-grid--full { align-items: start; }
.app-process-full-img { width:100%; height:auto; border-radius:6px; box-shadow: var(--shadow); }

/* Why-card boxes: solid site blue background (fixes invisible-box-on-light-bg issue on Why Silicone page) */
.why-card {
  background: var(--blue) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-top: 4px solid #ffffff !important;
}
.why-card h3 { color: #ffffff !important; }
.why-card p  { color: rgba(255,255,255,.85) !important; }
.why-card .rlp-icon { color: #ffffff !important; }

/* Keep product detail hero image modestly scaled within its panel, not edge-to-edge */
.product-detail__visual img { max-width: 300px; width: 100%; margin: 0 auto; display: block; }
