
/* ═══════════════════════════════════════
   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; }
}
