/* ============================================================================
 * Home template — bespoke sections (hero, stats, technologies, projects,
 * benefits, pull-quote, final CTA). The reused component bands
 * (awards-partners, trainers, reviews) bring their own CSS and already match
 * this design system (Plakkaat eyebrow / ProximaNova h2 / #F8FAFB alt bg).
 *
 * Scope: everything lives under .rc-home so theme selectors can't bleed in.
 * Units: px only (templates pin html{font-size:16px}). No rem.
 *
 * @package robboclub-platform
 * @since 0.26.0
 * ========================================================================= */

.rc-home {
    --rc-green: #00BF63;
    --rc-green-dark: #00A356;
    --rc-green-soft: #EAFBF1;
    --rc-ink: #14181D;
    --rc-ink-soft: #2A313A;
    --rc-muted: #555E6B;
    --rc-line: #E6EAEE;
    --rc-bg-alt: #F8FAFB;
    --rc-shadow: 0 18px 48px rgba(16, 32, 24, 0.10);
    --rc-shadow-sm: 0 6px 20px rgba(16, 32, 24, 0.07);
    --rc-max: 1366px;
    font-family: 'ProximaNova', 'Proxima Nova', 'Noto Sans', sans-serif;
    color: var(--rc-ink);
    overflow-x: clip;
}
.rc-home *,
.rc-home *::before,
.rc-home *::after { box-sizing: border-box; }

.rc-home__wrap {
    max-width: var(--rc-max);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Shared section header ---------------------------------------------------- */
.rc-home-eyebrow {
    display: inline-block;
    font-family: 'Plakkaat', 'ProximaNova', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rc-green-dark);
    margin: 0 0 14px;
}
.rc-home-h2 {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--rc-ink);
    margin: 0 0 14px;
}
.rc-home-lead {
    font-size: 17px;
    line-height: 1.55;
    color: var(--rc-muted);
    margin: 0;
}
.rc-home-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

/* Buttons ------------------------------------------------------------------ */
.rc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: 'ProximaNova', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.rc-btn svg { display: block; flex: none; }
.rc-btn--primary {
    background: var(--rc-green);
    color: #fff;
    box-shadow: 0 12px 26px rgba(0, 191, 99, 0.32);
}
.rc-btn--primary:hover {
    background: var(--rc-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 191, 99, 0.40);
}
.rc-btn--ghost {
    background: #fff;
    color: var(--rc-ink);
    border-color: var(--rc-line);
}
.rc-btn--ghost:hover {
    border-color: var(--rc-green);
    color: var(--rc-green-dark);
    transform: translateY(-2px);
}
.rc-btn--ghost .rc-btn__play {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--rc-green-soft);
    color: var(--rc-green-dark);
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: -8px;
}

/* ==========================================================================
 * TRANSPARENT HEADER over the hero (scoped to body.rc-home-page).
 * header.js toggles .rc-header.is-stuck at >8px scroll → solid white returns.
 * ======================================================================== */
body.rc-home-page { padding-top: 0 !important; }
body.rc-home-page .rc-header__bar {
    transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__bar {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
}
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__logo img { filter: brightness(0) invert(1); }
body.rc-home-page .rc-header:not(.is-stuck) #mega-menu-main > li > a.mega-menu-link,
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__nav a { color: #fff !important; }
/* keep nav text white on hover/focus/open too — MMM's default green hover is
   invisible on the green hero bar. */
body.rc-home-page .rc-header:not(.is-stuck) #mega-menu-main > li.mega-menu-item > a.mega-menu-link:hover,
body.rc-home-page .rc-header:not(.is-stuck) #mega-menu-main > li.mega-menu-item > a.mega-menu-link:focus,
body.rc-home-page .rc-header:not(.is-stuck) #mega-menu-main > li.mega-menu-item.mega-toggle-on > a.mega-menu-link,
body.rc-home-page .rc-header:not(.is-stuck) #mega-menu-main > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link,
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__nav a:hover,
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__nav a:focus { color: #fff !important; }
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__icon { color: #fff !important; }
/* icon hover: the default light-grey bg makes the white icon vanish — use a
   translucent-white chip instead, icon stays white. */
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__icon:hover,
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__icon:focus {
    background: rgba(255, 255, 255, 0.20) !important;
    color: #fff !important;
}
body.rc-home-page .rc-header:not(.is-stuck) .rc-header__cta {
    background: #fff !important;
    color: var(--rc-green-dark) !important;
}

/* ==========================================================================
 * 1. HERO — full-bleed, immersive green, 100vh
 * ======================================================================== */
.rc-home-hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding: 104px 0 92px;
    background: #00BF63;
    background:
        radial-gradient(110% 95% at 82% -10%, #2BD888 0%, rgba(43,216,136,0) 55%),
        radial-gradient(90% 80% at 8% 110%, #009E52 0%, rgba(0,158,82,0) 60%),
        linear-gradient(155deg, #00C667 0%, #00B85F 45%, #00A356 100%);
}

/* decorative layer ------------------------------------------------------- */
.rc-hero-deco { position: absolute; z-index: 0; pointer-events: none; }
.rc-hero-deco--dots {
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.16) 1.5px, transparent 1.6px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 60%);
            mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 60%);
    opacity: .7;
}
.rc-hero-deco--blob {
    width: 520px; height: 520px; right: -160px; top: -120px; border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.18), rgba(255,255,255,0) 70%);
    filter: blur(4px);
}
.rc-hero-deco--ring1, .rc-hero-deco--ring2 { border-radius: 50%; border: 2px solid rgba(255,255,255,.18); }
.rc-hero-deco--ring1 { width: 240px; height: 240px; left: -90px; bottom: -70px; }
.rc-hero-deco--ring2 { width: 130px; height: 130px; left: 46%; top: -52px; border-color: rgba(255,255,255,.14); }
.rc-hero-deco--plus { color: rgba(255,255,255,.5); width: 26px; height: 26px; }
.rc-hero-deco--plus-a { top: 20%; left: 7%; animation: rc-float 6s ease-in-out infinite; }
.rc-hero-deco--plus-b { bottom: 22%; right: 9%; width: 20px; height: 20px; color: rgba(255,255,255,.4); animation: rc-float 7.5s ease-in-out infinite; }
.rc-hero-deco--spark { color: rgba(255,255,255,.6); width: 30px; height: 30px; top: 30%; right: 16%; animation: rc-float 5.5s ease-in-out infinite; }
@keyframes rc-float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(8deg); } }

.rc-home-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--rc-max);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}
.rc-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Plakkaat', 'ProximaNova', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    padding: 9px 16px;
    margin: 0 0 24px;
    backdrop-filter: blur(4px);
}
.rc-home-hero__eyebrow svg { color: #fff; }
.rc-home-hero__h1 {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 46px;
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 6px 30px rgba(0,60,30,.18);
}
.rc-home-hero__h1 .rc-hl {
    display: inline-block;
    background: #fff;
    color: var(--rc-green-dark);
    padding: 0 12px 2px;
    border-radius: 12px;
    transform: rotate(-1.6deg);
    box-shadow: 0 10px 26px rgba(0,40,20,.18);
}
.rc-home-hero__lead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,.94);
    margin: 0 0 30px;
    max-width: 560px;
}
.rc-home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 28px;
}
/* hero CTA recolours for the green canvas */
.rc-home-hero .rc-btn--primary {
    background: #fff;
    color: var(--rc-green-dark);
    box-shadow: 0 16px 34px rgba(0,40,20,.22);
}
.rc-home-hero .rc-btn--primary:hover { background: #F2FFF8; color: var(--rc-green-dark); transform: translateY(-2px); }
.rc-home-hero .rc-btn--ghost {
    background: rgba(255,255,255,.10);
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.rc-home-hero .rc-btn--ghost:hover { background: rgba(255,255,255,.18); color: #fff; border-color: #fff; transform: translateY(-2px); }
.rc-home-hero .rc-btn--ghost .rc-btn__play { background: #fff; color: var(--rc-green-dark); }
.rc-home-hero__chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rc-home-hero__chips li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    padding: 7px 14px;
}
.rc-home-hero__chips svg { color: #fff; flex: none; }

.rc-home-hero__media { position: relative; }
.rc-home-hero__photo-wrap {
    position: relative;
    border-radius: 26px;
    padding: 10px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: 0 30px 70px rgba(0,40,20,.28);
    transform: rotate(1.4deg);
}
.rc-home-hero__photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.rc-home-hero__badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 16px 34px rgba(0,40,20,.20);
    font-weight: 700;
    font-size: 14px;
    color: var(--rc-ink);
}
.rc-home-hero__badge small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--rc-muted);
}
.rc-home-hero__badge--rating { top: 18px; left: -18px; transform: rotate(-2deg); }
.rc-home-hero__badge--rating .rc-home-hero__badge-ic { color: #F5A623; }
.rc-home-hero__badge--loc { bottom: 18px; right: -16px; transform: rotate(2deg); }
.rc-home-hero__badge--loc .rc-home-hero__badge-ic { color: var(--rc-green); }
.rc-home-hero__badge-ic {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--rc-green-soft);
    display: inline-flex; align-items: center; justify-content: center;
    flex: none;
}

/* scroll cue ------------------------------------------------------------- */
.rc-home-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.rc-home-hero__scroll svg { animation: rc-bounce 1.8s ease-in-out infinite; }
@keyframes rc-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (prefers-reduced-motion: reduce) {
    .rc-hero-deco--plus-a, .rc-hero-deco--plus-b, .rc-hero-deco--spark, .rc-home-hero__scroll svg { animation: none; }
}

/* ==========================================================================
 * 2. STATS
 * ======================================================================== */
.rc-home-stats {
    background: var(--rc-ink);
    background: linear-gradient(135deg, #14181D 0%, #1B2A22 100%);
    color: #fff;
    padding: 56px 0;
}
.rc-home-stats .rc-home-eyebrow { color: #7BE3AC; }
.rc-home-stats .rc-home-head { margin-bottom: 36px; }
.rc-home-stats .rc-home-h2 { color: #fff; }
.rc-home-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.rc-home-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 16px;
}
.rc-home-stat__ic {
    width: 46px; height: 46px;
    margin: 0 auto 14px;
    border-radius: 12px;
    background: rgba(0, 191, 99, 0.16);
    color: #7BE3AC;
    display: flex; align-items: center; justify-content: center;
}
.rc-home-stat__num {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}
.rc-home-stat__num .rc-home-stat__suffix { color: var(--rc-green); }
.rc-home-stat__label {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================================
 * 3. TECHNOLOGIES
 * ======================================================================== */
.rc-home-tech {
    background: #fff;
    padding: 64px 0;
}
.rc-home-tech-splide { padding: 0; }
.rc-home-tech-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rc-home-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rc-shadow-sm);
    border-color: transparent;
}
.rc-home-tech-card__logo {
    height: 56px;
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.rc-home-tech-card__logo img {
    max-height: 56px;
    max-width: 120px;
    width: auto; height: auto;
    object-fit: contain;
}
.rc-home-tech-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--rc-ink);
    margin: 0 0 6px;
}
.rc-home-tech-card__desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--rc-muted);
    margin: 0;
}

/* ==========================================================================
 * 4. PROJECTS
 * ======================================================================== */
.rc-home-projects {
    background: var(--rc-bg-alt);
    padding: 64px 0;
}
.rc-home-proj-splide { padding: 0; }
.rc-home-proj-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    box-shadow: var(--rc-shadow-sm);
    isolation: isolate;
}
.rc-home-proj-card__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .4s ease;
}
.rc-home-proj-card:hover .rc-home-proj-card__img { transform: scale(1.06); }
.rc-home-proj-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,12,0) 32%, rgba(10,14,12,0.82) 100%);
    z-index: -1;
}
.rc-home-proj-card__body { padding: 24px; color: #fff; }
.rc-home-proj-card__tag {
    display: inline-block;
    font-family: 'Plakkaat', 'ProximaNova', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0F1A14;
    background: var(--rc-green);
    border-radius: 999px;
    padding: 5px 12px;
    margin-bottom: 12px;
}
.rc-home-proj-card__title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #fff;
}
.rc-home-proj-card__desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
 * 5. PULL-QUOTE
 * ======================================================================== */
.rc-home-quote {
    background: #fff;
    padding: 56px 0;
}
.rc-home-quote__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
}
.rc-home-quote__mark {
    font-family: 'Plakkaat', serif;
    font-size: 72px;
    line-height: .6;
    color: var(--rc-green);
    display: block;
    margin-bottom: 8px;
}
.rc-home-quote__text {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--rc-ink);
    margin: 0 0 18px;
}
.rc-home-quote__who {
    font-size: 15px;
    font-weight: 600;
    color: var(--rc-muted);
    margin: 0;
}

/* ==========================================================================
 * 6. BENEFITS
 * ======================================================================== */
.rc-home-benefits {
    background: var(--rc-bg-alt);
    padding: 64px 0;
}
.rc-home-ben-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.rc-home-ben-card {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: 20px;
    padding: 30px 26px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.rc-home-ben-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rc-shadow);
}
.rc-home-ben-card__ic {
    width: 58px; height: 58px;
    border-radius: 16px;
    background: var(--rc-green-soft);
    color: var(--rc-green-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.rc-home-ben-card__title {
    font-size: 19px;
    font-weight: 800;
    color: var(--rc-ink);
    margin: 0 0 10px;
}
.rc-home-ben-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rc-muted);
    margin: 0;
}

/* ==========================================================================
 * 7. FINAL CTA
 * ======================================================================== */
.rc-home-cta {
    background: linear-gradient(135deg, #00BF63 0%, #00A356 100%);
    padding: 64px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rc-home-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.rc-home-cta__h2 {
    font-family: 'ProximaNova', sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 14px;
}
.rc-home-cta__sub {
    font-size: 18px;
    line-height: 1.55;
    color: #EAFBF1;
    margin: 0 0 30px;
}
.rc-home-cta .rc-btn--primary {
    background: #fff;
    color: var(--rc-green-dark);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}
.rc-home-cta .rc-btn--primary:hover { background: #F2FFF8; color: var(--rc-green-dark); }

/* ==========================================================================
 * HERO VIDEO LIGHTBOX
 * ======================================================================== */
.rc-home-vid {
    position: fixed; inset: 0; z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.rc-home-vid[hidden] { display: none; }
.rc-home-vid__backdrop {
    position: absolute; inset: 0;
    background: rgba(8, 14, 11, 0.82);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
/* Dialog hugs the video so the player keeps the clip's native aspect ratio
   (portrait clips stay narrow — no letterbox/pillarbox bars). */
.rc-home-vid__dialog { position: relative; z-index: 1; display: flex; width: auto; max-width: 100%; }
.rc-home-vid__player {
    width: auto; height: auto;
    max-width: 92vw; max-height: 86vh;
    display: block;
    border-radius: 16px; background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.rc-home-vid__close {
    position: absolute; top: -16px; right: -16px;
    width: 46px; height: 46px; border-radius: 50%;
    background: #fff; color: var(--rc-ink); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
    transition: transform .15s ease;
}
.rc-home-vid__close:hover { transform: scale(1.06); }
@media (max-width: 767px) {
    .rc-home-vid { padding: 16px; }
    .rc-home-vid__close { top: -52px; right: 0; }
}

/* ==========================================================================
 * RESPONSIVE
 * ======================================================================== */
@media (max-width: 767px) {
    .rc-home__wrap { padding-left: 16px; padding-right: 16px; }
    .rc-home-hero { padding: 92px 0 84px; }
    .rc-home-hero__inner { padding: 0 18px; gap: 32px; }
    .rc-home-hero__h1 { font-size: 36px; }
    .rc-home-hero__lead { font-size: 16px; margin-bottom: 24px; }
    .rc-home-hero__cta { gap: 12px; }
    .rc-home-hero__cta .rc-btn { width: 100%; }
    .rc-home-hero__photo-wrap { transform: none; margin-top: 6px; }
    .rc-home-hero__badge { font-size: 12.5px; padding: 9px 12px; }
    .rc-home-hero__badge--rating { left: 4px; top: 12px; }
    .rc-home-hero__badge--loc { right: 4px; bottom: 12px; }
    .rc-home-hero__scroll { display: none; }
    .rc-hero-deco--ring1, .rc-hero-deco--ring2, .rc-hero-deco--spark { display: none; }
    .rc-home-h2 { font-size: 24px; }
    .rc-home-cta__h2 { font-size: 26px; }
    .rc-home-stat__num { font-size: 30px; }
}

@media (min-width: 768px) {
    .rc-home-h2 { font-size: 36px; }
    .rc-home-hero__h1 { font-size: 60px; }
    .rc-home-stats__grid { grid-template-columns: repeat(4, 1fr); }
    .rc-home-ben-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .rc-home-hero__inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
    }
    .rc-home-hero__h1 { font-size: 72px; }
    .rc-home-ben-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
    .rc-home-hero__h1 { font-size: 82px; }
}
