/* ===================================================================
   GREWAL — REPAIR & MAINTENANCE PAGE  |  Emergency Command Design
   =================================================================== */

/* ===================== HERO ===================== */
.rp-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #0a0a0a;
    padding-top: 0;
    padding-bottom: 0;
}

.rp-hero__left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 60px 80px 60px;
    max-width: 780px;
}

/* Diagonal lines bg on left */
.rp-hero__left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0 40px,
        rgba(201,168,76,0.04) 40px 41px
    );
    pointer-events: none;
}

.rp-hero__right {
    position: relative;
    overflow: hidden;
}

.rp-hero__right-img {
    position: absolute;
    inset: 0;
    background: url('/assets/images/service-repair.webp') center/cover no-repeat;
}

/* Dark gradient overlay fading into left */
.rp-hero__right-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0a0a0a 0%, rgba(10,10,10,0.40) 40%, rgba(10,10,10,0.10) 100%);
}

/* Scrolling ticker on right panel */
.rp-hero__ticker-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 160px 40px 80px 0;
    gap: 10px;
    pointer-events: none;
}

.rp-hero__ticker-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: tickerScroll 22s linear infinite;
    opacity: 0.55;
}
.rp-hero__ticker-col:nth-child(2) { animation-duration: 28s; animation-direction: reverse; opacity: 0.40; }

@keyframes tickerScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.rp-hero__ticker-item {
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.20);
    color: rgba(255,255,255,0.75);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* ---- Badge: 24/7 ring ---- */
.rp-hero__pulse-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.rp-hero__ring {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.rp-hero__ring-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.08);
    position: relative;
    z-index: 1;
}

.rp-hero__ring-circle::before,
.rp-hero__ring-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.30);
    animation: sonarPulse 2.5s ease-out infinite;
}
.rp-hero__ring-circle::before { width: 110px; height: 110px; animation-delay: 0s; }
.rp-hero__ring-circle::after  { width: 135px; height: 135px; animation-delay: 0.8s; }

@keyframes sonarPulse {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.rp-hero__ring-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-align: center;
}
.rp-hero__ring-text small { display: block; font-size: 8.5px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; font-family: var(--font-body); font-weight: 600; }

.rp-hero__badge-text {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.55;
}
.rp-hero__badge-text strong { color: var(--gold); font-size: 14px; display: block; margin-bottom: 2px; }

/* Pill */
.rp-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.30);
    color: var(--gold-light, #e8c96a);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.rp-hero__pill-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #e74c3c;
    animation: dotBlink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dotBlink { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.3;transform:scale(0.7);} }

.rp-hero__left h1 {
    font-size: clamp(34px, 4vw, 58px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}
.rp-hero__left h1 em {
    font-style: normal;
    color: var(--gold);
}

.rp-hero__left p {
    color: rgba(255,255,255,0.65);
    font-size: 16.5px;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
}

.rp-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ---- Hero stats row ---- */
.rp-hero__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 32px;
}

.rp-hero__stat {
    padding: 0 32px 0 0;
    margin-right: 32px;
    border-right: 1px solid rgba(201,168,76,0.12);
}
.rp-hero__stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.rp-hero__stat-num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.rp-hero__stat-lbl {
    font-size: 10.5px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-top: 4px;
}

/* ===================== MARQUEE STRIP ===================== */
.rp-marquee {
    background: #0d0d0d;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0;
    overflow: hidden;
}

.rp-marquee__header {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
}

.rp-marquee__label {
    flex-shrink: 0;
    background: var(--gold);
    color: #111;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 22px;
    white-space: nowrap;
    z-index: 1;
}

.rp-marquee__track-wrap {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

.rp-marquee__track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeRoll 30s linear infinite;
    padding: 12px 0;
}
.rp-marquee__track--reverse { animation-direction: reverse; animation-duration: 35s; }

@keyframes marqueeRoll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rp-marquee__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 28px;
    border-right: 1px solid rgba(201,168,76,0.10);
    transition: color 0.2s;
}
.rp-marquee__item:hover { color: var(--gold); }

.rp-marquee__dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* Second row */
.rp-marquee__row-2 {
    border-top: 1px solid rgba(201,168,76,0.06);
    background: #080808;
}

/* ===================== WHY US — HORIZONTAL CARDS ===================== */
.rp-why {
    background: #111111;
    padding: 100px 0;
}

.rp-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    overflow: hidden;
}

.rp-why__card {
    background: #161616;
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rp-why__card:hover { background: #1c1c1c; }
.rp-why__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 32px; right: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.rp-why__card:hover::after { transform: scaleX(1); }

.rp-why__num {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    position: absolute;
    top: 20px; right: 24px;
    pointer-events: none;
}

.rp-why__icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.20);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.rp-why__icon svg { width: 22px; height: 22px; }

.rp-why__card h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    line-height: 1.25;
}

.rp-why__card p {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
    margin: 0;
}

/* Section title variants on dark */
.rp-why .section-title h2,
.rp-timeline .section-title h2,
.rp-compare .section-title h2,
.rp-coverage .section-title h2,
.rp-form .section-title h2 { color: #fff; }

.rp-why .section-title .underline,
.rp-timeline .section-title .underline,
.rp-compare .section-title .underline,
.rp-coverage .section-title .underline,
.rp-form .section-title .underline { background: var(--gold); }

/* ===================== VERTICAL TIMELINE ===================== */
.rp-timeline {
    background: #0d0d0d;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Faint side imagery so the section doesn't feel like a flat block of black —
   reuses the hero's already-downloaded image, so there's no extra network
   request and no impact on page load speed. */
.rp-timeline::before,
.rp-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 340px;
    max-width: 26%;
    background-image: url('/assets/images/service-repair.webp');
    background-size: cover;
    opacity: 0.14;
    filter: grayscale(35%);
    pointer-events: none;
    z-index: 0;
}
.rp-timeline::before {
    left: 0;
    background-position: left center;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.rp-timeline::after {
    right: 0;
    background-position: right center;
    -webkit-mask-image: linear-gradient(270deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    mask-image: linear-gradient(270deg, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.rp-timeline .container { position: relative; z-index: 1; }

@media (max-width: 900px) {
    /* Not enough horizontal room for side art once the timeline stacks to one column */
    .rp-timeline::before,
    .rp-timeline::after { display: none; }
}

.rp-timeline__grid {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    margin-top: 70px;
    position: relative;
}

/* Center vertical line */
.rp-timeline__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.rp-timeline__line::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,0.15) 100%);
}

.rp-timeline__dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-heading);
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(201,168,76,0.15);
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Each step row */
.rp-timeline__row {
    display: contents;
}

.rp-timeline__step {
    padding: 0 40px 60px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.rp-timeline__step--right {
    padding: 0 0 60px 40px;
    text-align: left;
}

.rp-timeline__step-icon {
    width: 46px; height: 46px;
    background: rgba(201,168,76,0.10);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    margin-bottom: 8px;
}
.rp-timeline__step-icon svg { width: 22px; height: 22px; }

.rp-timeline__step-num {
    font-size: 10.5px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.rp-timeline__step h4 {
    font-size: 19px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}

.rp-timeline__step p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
    max-width: 320px;
}
.rp-timeline__step--right p { max-width: 320px; }

/* Right-side steps align content right */
.rp-timeline__step:not(.rp-timeline__step--right) {
    text-align: right;
    align-items: flex-end;
}
.rp-timeline__step:not(.rp-timeline__step--right) p { margin-left: auto; }

/* Spacer cells */
.rp-timeline__spacer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 60px;
}

/* ===================== COMPARE CARDS ===================== */
.rp-compare {
    background: #111111;
    padding: 100px 0;
}

.rp-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
}

.rp-compare__card {
    border-radius: 16px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}

.rp-compare__card--emergency {
    background: linear-gradient(135deg, #1a0e05, #220f00);
    border: 1px solid rgba(231,76,60,0.25);
}
.rp-compare__card--emergency::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231,76,60,0.10), transparent 70%);
    pointer-events: none;
}

.rp-compare__card--planned {
    background: linear-gradient(135deg, #0e1300, #0c1700);
    border: 1px solid rgba(201,168,76,0.22);
}
.rp-compare__card--planned::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 70%);
    pointer-events: none;
}

.rp-compare__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.rp-compare__card--emergency .rp-compare__badge {
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.30);
    color: #ff7066;
}
.rp-compare__card--planned .rp-compare__badge {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.28);
    color: var(--gold-light, #e8c96a);
}
.rp-compare__badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: dotBlink 1.4s ease-in-out infinite;
}

.rp-compare__card h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
}

.rp-compare__card > p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 28px;
}

.rp-compare__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.rp-compare__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.70);
    line-height: 1.5;
}
.rp-compare__list li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.rp-compare__card--emergency .rp-compare__list li svg { color: #ff7066; }
.rp-compare__card--planned   .rp-compare__list li svg { color: var(--gold); }

/* ===================== COVERAGE ===================== */
.rp-coverage {
    background: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
}

.rp-coverage__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rp-coverage__text h2 { color: #fff; font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 14px; }
.rp-coverage__text p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }

.rp-coverage__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rp-coverage__city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.18);
    color: rgba(255,255,255,0.70);
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.25s;
}
.rp-coverage__city:hover { background: rgba(201,168,76,0.15); color: var(--gold); border-color: rgba(201,168,76,0.35); }
.rp-coverage__city svg { width: 12px; height: 12px; color: var(--gold); }

/* Right side: response time visual */
.rp-coverage__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rp-coverage__bar-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rp-coverage__bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    font-weight: 500;
}
.rp-coverage__bar-label span:last-child { color: var(--gold); font-weight: 700; }

.rp-coverage__bar-track {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}

.rp-coverage__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 100px;
    transform-origin: left;
    animation: barGrow 1.5s ease forwards;
    transform: scaleX(0);
}

@keyframes barGrow {
    to { transform: scaleX(1); }
}

/* ===================== DARK FORM ===================== */
.rp-form {
    background: #0a0a0a;
    padding: 100px 0;
    border-top: 1px solid rgba(201,168,76,0.10);
}

.rp-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.rp-form__info h2 { color: #fff; font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.rp-form__info > p { color: rgba(255,255,255,0.55); font-size: 15.5px; line-height: 1.75; margin-bottom: 36px; }

.rp-form__contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rp-form__contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: 10px;
    padding: 16px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 14.5px;
    transition: border-color 0.25s, background 0.25s;
    text-decoration: none;
}
.rp-form__contact-card:hover { border-color: rgba(201,168,76,0.30); background: rgba(201,168,76,0.10); color: #fff; }

.rp-form__contact-icon {
    width: 42px; height: 42px;
    background: rgba(201,168,76,0.12);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.rp-form__contact-icon svg { width: 18px; height: 18px; }

.rp-form__contact-card small { display: block; font-size: 11px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 2px; }
.rp-form__contact-card strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }

/* Glass form card */
.rp-form__card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    padding: 44px 40px;
}

.rp-form__card label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 7px;
}

.rp-form__card .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.16);
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    padding: 14px 16px;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
}
.rp-form__card .form-control::placeholder { color: rgba(255,255,255,0.25); }
.rp-form__card .form-control:focus { outline: none; border-color: rgba(201,168,76,0.45); background: rgba(255,255,255,0.07); }
.rp-form__card textarea.form-control { height: 120px; resize: vertical; }

.rp-form__card .form-group { margin-bottom: 18px; }
.rp-form__card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .rp-hero { grid-template-columns: 1fr; min-height: auto; }
    .rp-hero__right { display: none; }
    .rp-hero__left { padding: 140px 32px 70px; max-width: 100%; }
    .rp-why__grid { grid-template-columns: repeat(2, 1fr); }
    .rp-compare__grid { grid-template-columns: 1fr; }
    .rp-coverage__inner { grid-template-columns: 1fr; gap: 48px; }
    .rp-form__inner { grid-template-columns: 1fr; gap: 48px; }
    .rp-timeline__grid { grid-template-columns: 1fr; }
    .rp-timeline__step { text-align: left !important; align-items: flex-start !important; padding: 0 0 40px 0 !important; }
    .rp-timeline__step p { margin-left: 0 !important; }
    .rp-timeline__line { display: none; }
    .rp-timeline__spacer { display: none; }
}

@media (max-width: 700px) {
    .rp-why__grid { grid-template-columns: 1fr; }
    .rp-hero__stats { flex-wrap: wrap; gap: 16px; }
    .rp-hero__stat { border-right: none; padding-right: 0; margin-right: 0; flex: 1 1 40%; }
    .rp-form__card .form-row { grid-template-columns: 1fr; }
    .rp-compare__card { padding: 32px 24px; }
    .rp-hero__left { padding: 130px 20px 60px; }
}
