/* ═══════════════════════════════════════════════════════════
   BRP TALLER — LANDING PAGE CSS
   All design tokens live in :root — tweak freely.
═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Brand colours */
  --brp-red:          #700808;
  --brp-red-dark:     #490c0c;
  --brp-red-glow:     rgb(69, 22, 22);
  --brp-dark:         #0D0D0D;
  --brp-dark-2:       #141414;
  --brp-dark-3:       #1a1a1a;
  --brp-steel:        #2B2B2B;
  --brp-metal:        #8A8A8A;
  --brp-off-white:    #F5F5F5;
  --brp-white:        #ffffff;

  /* Typography */
  --font-heading:     'Bebas Neue', 'Oswald', sans-serif;
  --font-body:        'Inter', 'Roboto', sans-serif;
  --font-accent:      'Rajdhani', sans-serif;

  /* Font sizes (fluid-friendly) */
  --fs-hero:          clamp(3.5rem, 10vw, 9rem);
  --fs-h1:            clamp(2.2rem, 5vw, 4rem);
  --fs-h2:            clamp(1.8rem, 4vw, 3rem);
  --fs-h3:            clamp(1.1rem, 2.5vw, 1.5rem);
  --fs-body:          1rem;
  --fs-small:         0.875rem;
  --fs-eyebrow:       0.75rem;

  /* Spacing */
  --space-xs:         0.5rem;
  --space-sm:         1rem;
  --space-md:         2rem;
  --space-lg:         4rem;
  --space-xl:         7rem;
  --space-xxl:        10rem;

  /* Layout */
  --max-width:        1280px;
  --section-padding:  var(--space-xl) var(--space-md);
  --card-radius:      8px;
  --card-radius-lg:   14px;

  /* Transitions */
  --transition-fast:  200ms ease;
  --transition-base:  350ms ease;
  --transition-slow:  600ms ease;

  /* Shadows */
  --shadow-card:      0 4px 30px rgba(0,0,0,0.6);
  --shadow-red:       0 0 20px var(--brp-red-glow);

  /* Hero config */
  --hero-min-height:  100vh;
  --hero-overlay:     rgba(13,13,13,0.72);

  /* Services grid */
  --services-cols:    3;
  --services-gap:     1.5rem;

  /* Work track */
  --work-card-width:  500px;

  /* Cursor */
  --cursor-size:      10px;
  --cursor-follower-size: 36px;

  /* Scroll bar */
  --progress-height:  3px;
  --progress-color:   var(--brp-red);
}
*, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ─────────────────────────────────────────
   BASE RESETS (scoped to landing)
───────────────────────────────────────── */
.brp-landing,
.brp-landing * {
  box-sizing: border-box;
}

.brp-landing {
  background-color: var(--brp-dark);
  color: var(--brp-off-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: var(--progress-height);
  background: var(--progress-color);
  z-index: 9999;
  transition: width 80ms linear;
}

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
.cursor,
.cursor-follower {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: width var(--transition-fast), height var(--transition-fast), background var(--transition-fast), border var(--transition-fast);
}

.cursor {
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: var(--brp-red);
  mix-blend-mode: difference;
}

.cursor-follower {
  width: var(--cursor-follower-size);
  height: var(--cursor-follower-size);
  border: 1.5px solid rgba(214,40,40,0.5);
  background: transparent;
}

.cursor--hover {
  width: calc(var(--cursor-size) * 1.5);
  height: calc(var(--cursor-size) * 1.5);
}

.cursor-follower--hover {
  width: calc(var(--cursor-follower-size) * 1.6);
  height: calc(var(--cursor-follower-size) * 1.6);
  border-color: var(--brp-red);
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ─────────────────────────────────────────
   STICKY WHATSAPP
───────────────────────────────────────── */
.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.whatsapp-sticky:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.65);
}

/* ─────────────────────────────────────────
   SHARED SECTION UTILITIES
───────────────────────────────────────── */
.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brp-red);
  display: block;
  margin-bottom: 0.4rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--brp-off-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.text--red { color: var(--brp-red); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: var(--card-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn:active { transform: scale(0.96); }

.btn--hero-primary {
  background: var(--brp-red);
  color: var(--brp-white);
}
.btn--hero-primary:hover {
  background: var(--brp-red-dark);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn--hero-secondary {
  background: transparent;
  color: var(--brp-off-white);
  border: 1.5px solid rgba(245,245,245,0.4);
}
.btn--hero-secondary:hover {
  border-color: var(--brp-off-white);
  background: rgba(245,245,245,0.08);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--brp-red);
  color: var(--brp-white);
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}
.btn--whatsapp:hover {
  background: var(--brp-red-dark);
  transform: translateY(-2px);
}

.btn--part {
  background: transparent;
  color: var(--brp-red);
  border: 1px solid var(--brp-red);
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
}
.btn--part:hover {
  background: var(--brp-red);
  color: var(--brp-white);
  box-shadow: var(--shadow-red);
}

.btn--outline {
  background: transparent;
  color: var(--brp-off-white);
  border: 1.5px solid rgba(245,245,245,0.3);
}
.btn--outline:hover {
  border-color: var(--brp-red);
  color: var(--brp-red);
}

/* ─────────────────────────────────────────
   1. HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brp-dark-3);
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover .hero__bg-img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--space-md);
  padding-top: calc(var(--space-xl) + 80px);
  padding-bottom: var(--space-xl);
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brp-red);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  color: var(--brp-white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--brp-metal);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
}

.hero__ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 22px;
  height: 38px;
  border: 2px solid rgba(245,245,245,0.25);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--brp-red);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite ease-in-out;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  80%  { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ─────────────────────────────────────────
   2. SERVICES
───────────────────────────────────────── */
.services {
  background: var(--brp-white);
  padding: var(--section-padding);
  max-width: 100%;
}

.services .section__title { color: var(--brp-dark); }
.services .section__eyebrow { color: var(--brp-red); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(var(--services-cols), 1fr);
  gap: var(--services-gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--brp-off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--card-radius-lg);
  padding: 2rem 1.75rem;
  cursor: default;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--brp-red);
  transition: width var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12), var(--shadow-red);
  border-color: rgba(214,40,40,0.3);
}

.service-card:hover::before {
  width: 100%;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(214,40,40,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brp-red);
  transition: background var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: rgba(214,40,40,0.2);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--brp-dark);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: #666;
  font-size: var(--fs-small);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   3. FEATURED WORK
───────────────────────────────────────── */
.featured-work {
  background: var(--brp-dark);
  padding: var(--section-padding);
  overflow: hidden;
}

.featured-work .section__header {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.work__carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.work__carousel-overflow {
  overflow: hidden;
  border-radius: var(--card-radius);
}

.work__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding-bottom: 0.5rem;
}

.work__carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-md);
}

.work__carousel-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--brp-off-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.work__carousel-btn:hover {
  background: var(--brp-red);
  border-color: var(--brp-red);
  transform: scale(1.05);
}

.work__carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.work__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base), transform var(--transition-base);
}

.work__carousel-dot.active {
  background: var(--brp-red);
  transform: scale(1.3);
}

.work-card {
  flex-shrink: 0;
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  background: var(--brp-dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.work-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}

.work-card__image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.work-card:hover .work-card__image img {
  transform: scale(1.07);
}

.work-card__info {
  padding: 1.25rem 1.5rem;
}

.work-card__tag {
  font-family: var(--font-accent);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brp-red);
  display: block;
  margin-bottom: 0.4rem;
}

.work-card__info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--brp-white);
  letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────
   4. WHY BRP
───────────────────────────────────────── */
.why-brp {
  background: var(--brp-dark-2);
  padding: var(--section-padding);
}

.why-brp__split {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.why-brp__text .section__title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.why-brp__text .section__eyebrow {
  text-align: left;
}

.why-brp__reasons {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.reason {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.reason__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(214,40,40,0.18);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition-base);
}

.reason:hover .reason__number {
  color: var(--brp-red);
}

.reason h4 {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brp-white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.reason p {
  font-size: var(--fs-small);
  color: var(--brp-metal);
  line-height: 1.65;
}

.why-brp__image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--card-radius-lg);
  overflow: visible;
}

.image-frame img {
  width: 100%;
  border-radius: var(--card-radius-lg);
  display: block;
  object-fit: cover;
  max-height: 560px;
  border: 1px solid rgba(255,255,255,0.06);
}

.image-frame__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--brp-red);
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge__number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brp-white);
  line-height: 1;
}

.badge__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 0.15rem;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   5. PARTS / PRODUCTS
───────────────────────────────────────── */
.parts-section {
  background: var(--brp-white);
  padding: var(--section-padding);
}

.parts-section .section__title { color: var(--brp-dark); }
.parts-section .section__eyebrow { color: var(--brp-red); }

.parts-section .section__header {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.parts__categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.parts__cat-btn {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: all var(--transition-base);
}

.parts__cat-btn:hover,
.parts__cat-btn.active {
  background: var(--brp-red);
  border-color: var(--brp-red);
  color: var(--brp-white);
}

.parts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.part-card {
  background: var(--brp-off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
}

.part-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 0 0 1px var(--brp-red);
  border-color: var(--brp-red);
}

.part-card__image {
  height: 220px;
  overflow: hidden;
  background: var(--brp-steel);
}

.part-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.part-card:hover .part-card__image img {
  transform: scale(1.08);
}

.part-card__info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.part-card__cat {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brp-red);
}

.part-card__info h3 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brp-dark);
}

.part-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brp-dark);
  margin-top: auto;
  padding-top: 0.5rem;
}

.parts-section .btn--outline {
  color: var(--brp-dark);
  border-color: rgba(0,0,0,0.25);
}

.parts-section .btn--outline:hover {
  border-color: var(--brp-red);
  color: var(--brp-red);
}

.parts__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ─────────────────────────────────────────
   6. TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  background: var(--brp-dark-2);
  padding: var(--section-padding);
}

.testimonials .section__header {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.testimonials__slider {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background: var(--brp-steel);
  border-radius: var(--card-radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  box-sizing: border-box;
}

.testimonial-card__stars {
  font-size: 1.3rem;
  color: var(--brp-red);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.testimonial-card__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--brp-off-white);
  line-height: 1.75;
  font-style: italic;
  max-width: 700px;
  margin-bottom: 2rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brp-red);
  color: var(--brp-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--brp-white);
}

.testimonial-card__author span {
  font-size: var(--fs-small);
  color: var(--brp-metal);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials__btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--brp-off-white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.testimonials__btn:hover {
  background: var(--brp-red);
  border-color: var(--brp-red);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-base), transform var(--transition-base);
}

.testimonials__dot.active {
  background: var(--brp-red);
  transform: scale(1.3);
}

/* ─────────────────────────────────────────
   7. CONTACT CTA
───────────────────────────────────────── */
.contact-cta {
  position: relative;
  background: var(--brp-dark);
  padding: var(--section-padding);
  overflow: hidden;
}

.contact-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(214,40,40,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.contact-cta__headline h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  color: var(--brp-white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.contact-cta__headline h2 span {
  color: var(--brp-red);
}

.contact-cta__headline p {
  font-size: 1.05rem;
  color: var(--brp-metal);
  max-width: 460px;
  margin: 0 auto;
}

.contact-cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: var(--space-sm);
  width: 100%;
  align-items: center;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brp-metal);
  font-size: var(--fs-small);
}

.info-block svg { color: var(--brp-red); flex-shrink: 0; }

/* ─────────────────────────────────────────
   8. FOOTER (landing footer)
───────────────────────────────────────── */
.brp-footer {
  background: var(--brp-dark-3);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.brp-footer__top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.brp-footer__brand p {
  font-size: var(--fs-small);
  color: var(--brp-metal);
  margin-top: 1rem;
  line-height: 1.65;
}

.brp-footer__logo {
  height: 50px;
  width: auto;
  display: block;
}

.brp-footer__links h4,
.brp-footer__social h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brp-off-white);
  margin-bottom: 1rem;
}

.brp-footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.brp-footer__links ul li a {
  font-size: var(--fs-small);
  color: var(--brp-metal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.brp-footer__links ul li a:hover {
  color: var(--brp-red);
}

.social__icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brp-metal);
  text-decoration: none;
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: var(--brp-red);
  border-color: var(--brp-red);
  color: var(--brp-white);
}

.brp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--brp-metal);
}

.footer__tagline {
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET (max 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --services-cols: 2;
  }

  .parts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-brp__split {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .why-brp__image {
    order: -1;
  }

  .image-frame__badge {
    bottom: 1rem;
    left: 1rem;
  }

  .brp-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — MOBILE (max 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --services-cols: 1;
    --section-padding: var(--space-lg) var(--space-sm);
    --work-card-width: 85vw;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: fit-content;
  }

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

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

  .testimonial-card {
    padding: 1.75rem;
  }

  .brp-footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .brp-footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .whatsapp-sticky {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
}