/* ============================================================
   RecorderMax — home.css
   Styles for all homepage section template parts.
   Loaded on front page only via functions.php.
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.rm-hero {
    background: var(--rm-black);
    min-height: calc(100vh - var(--rm-nav-height));
    display: flex;
    align-items: center;
    padding: 80px var(--rm-gutter) 60px;
    position: relative;
    overflow: hidden;
}

/* Ambient radial glow */
.rm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(244,173,61,.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Subtle grid overlay */
.rm-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.rm-hero__inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── Eyebrow ── */
.rm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,173,61,.12);
    border: 1px solid rgba(244,173,61,.3);
    border-radius: var(--rm-radius);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rm-amber);
    margin-bottom: 22px;
}
.rm-hero__eyebrow::before {
    content: '●';
    font-size: 7px;
    animation: rm-blink 1.4s ease infinite;
}
@keyframes rm-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Headline ── */
.rm-hero__h1 {
    font-family: var(--rm-font-heading);
    font-weight: 900;
    line-height: .95;
    color: var(--rm-white);
    letter-spacing: -2px;
    margin-bottom: 16px;
}
.rm-hero__h1-sub {
    display: block;
    font-size: clamp(16px, 2.4vw, 26px);
    color: #666;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--rm-font-body);
}
.rm-hero__h1-main {
    display: block;
    font-size: clamp(38px, 5vw, 62px);
}
.rm-hero__h1-main em { color: var(--rm-amber); font-style: normal; }

.rm-hero__tagline {
    font-family: var(--rm-font-heading);
    font-size: clamp(15px, 1.6vw, 19px);
    color: #ccc;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.rm-hero__desc {
    font-size: 15px;
    color: #777;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 28px;
}

/* ── Feature checklist ── */
.rm-hero__feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 36px;
    padding: 0;
    list-style: none;
}
.rm-hero__feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #999;
}
.rm-hero__feat::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(244,173,61,.15);
    border: 1px solid rgba(244,173,61,.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    color: var(--rm-amber);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Hero CTAs ── */
.rm-hero__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.rm-btn--hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rm-amber);
    border: 1.5px solid rgba(244,173,61,.4);
    font-family: var(--rm-font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 24px;
    border-radius: var(--rm-radius);
    text-decoration: none;
    transition: background var(--rm-transition), border-color var(--rm-transition);
    background: transparent;
    cursor: pointer;
}
.rm-btn--hero-outline:hover {
    background: rgba(244,173,61,.08);
    border-color: var(--rm-amber);
}

/* ── Social proof ── */
.rm-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rm-hero__stars { color: var(--rm-amber); font-size: 15px; letter-spacing: 1px; }
.rm-hero__sp-text { font-size: 12px; color: #555; }
.rm-hero__sp-text strong { color: #888; }

/* ── Slider ── */
.rm-hero-slider { position: relative; width: 100%; }

.rm-hero-slider__track {
    position: relative;
    border-radius: var(--rm-radius-lg);
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto;
}

.rm-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
    transform: translateX(30px);
}
.rm-slide--active { opacity: 1; transform: translateX(0); }

.rm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--rm-radius-lg);
}

.rm-slide__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    width: 100%;
    height: 100%;
}
.rm-slide__placeholder svg { width: 64px; height: 64px; fill: #333; }
.rm-slide__placeholder p {
    font-size: 11px;
    color: #444;
    text-align: center;
    font-family: var(--rm-font-heading);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.rm-slide__label {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #ccc;
    white-space: nowrap;
    letter-spacing: .3px;
    pointer-events: none;
}

.rm-slider-prev,
.rm-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--rm-transition), border-color var(--rm-transition);
    backdrop-filter: blur(6px);
}
.rm-slider-prev { left: 12px; }
.rm-slider-next { right: 12px; }
.rm-slider-prev:hover,
.rm-slider-next:hover { background: var(--rm-amber); border-color: var(--rm-amber); }
.rm-slider-prev svg,
.rm-slider-next svg { width: 16px; height: 16px; fill: var(--rm-white); transition: fill var(--rm-transition); }
.rm-slider-prev:hover svg,
.rm-slider-next:hover svg { fill: var(--rm-black); }

.rm-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}
.rm-sdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2a2a2a;
    border: none;
    cursor: pointer;
    transition: all var(--rm-transition);
    padding: 0;
}
.rm-sdot--active { background: var(--rm-amber); width: 20px; border-radius: 3px; }

/* ============================================================
   TRUST BAR — styled by original.css (.trust-bar, .trust-item, etc.)
   ============================================================ */

/* ============================================================
   CATEGORIES
   ============================================================ */
.rm-cats-section { background: var(--rm-dark); }
.rm-cats-section .rm-section__title { color: var(--rm-white); }
.rm-cats-section .rm-section__lead  { color: var(--rm-muted); }

.rm-cats-grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rm-cat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--rm-radius);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: box-shadow var(--rm-transition), transform var(--rm-transition), border-color var(--rm-transition), background var(--rm-transition);
}
.rm-cat-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    transform: translateY(-3px);
    border-color: var(--rm-amber);
    background: rgba(244,173,61,.07);
}

.rm-cat-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: rgba(244,173,61,.12);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.rm-cat-card__icon svg { width: 32px; height: 32px; fill: var(--rm-amber); }

.rm-cat-card__name {
    font-family: var(--rm-font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--rm-white);
    letter-spacing: .3px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.rm-cat-card__desc { font-size: 12px; color: var(--rm-muted); line-height: 1.55; }

/* ============================================================
   APPLICATIONS
   ============================================================ */
.rm-apps-section { background: var(--rm-white); }

.rm-apps-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rm-app-card {
    background: var(--rm-bg2);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    padding: 28px 24px;
    transition: box-shadow var(--rm-transition), transform var(--rm-transition), border-color var(--rm-transition);
}
.rm-app-card:hover {
    box-shadow: var(--rm-shadow-md);
    transform: translateY(-2px);
    border-color: rgba(244,173,61,.4);
}

.rm-app-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(244,173,61,.12);
    border-radius: var(--rm-radius);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}
.rm-app-card__icon svg { width: 26px; height: 26px; fill: var(--rm-amber-dark); }

.rm-app-card__title {
    font-family: var(--rm-font-heading);
    font-weight: 800;
    font-size: 17px;
    color: var(--rm-black);
    margin-bottom: 10px;
    line-height: 1.2;
}
.rm-app-card__desc { font-size: 13px; color: var(--rm-mid); line-height: 1.7; }

/* ============================================================
   FEATURED PRODUCT
   ============================================================ */
.rm-featured-section { background: var(--rm-amber-light); border-top: 3px solid var(--rm-amber); }

.rm-featured-inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ── Featured image placeholder (shown when no WC product yet) ── */
.rm-featured-img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin: 0 auto;
    background: var(--rm-bg2);
    border: 2px dashed var(--rm-border);
    border-radius: var(--rm-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.rm-featured-img-placeholder svg {
    width: 64px !important;
    height: 64px !important;
    fill: var(--rm-border);
}
.rm-featured-img-placeholder p {
    font-size: 12px;
    font-weight: 600;
    color: var(--rm-muted);
    text-align: center;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 0 20px;
}

/* ── Price placeholder (when no WC product) ── */
.rm-featured-price-placeholder {
    font-family: var(--rm-font-heading);
    font-weight: 900;
    font-size: 38px;
    color: var(--rm-black);
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.rm-featured-price-placeholder sup {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
}
.rm-featured-price-placeholder del {
    font-size: 20px;
    color: var(--rm-muted);
    font-weight: 500;
    text-decoration: line-through;
}

.rm-featured-img img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--rm-radius-lg);
    box-shadow: var(--rm-shadow-lg);
    display: block;
}

.rm-featured-badge {
    display: inline-block;
    background: var(--rm-amber);
    color: var(--rm-black);
    font-family: var(--rm-font-heading);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.rm-featured-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin: 16px 0;
}

/* WooCommerce price elements inside featured */
.rm-featured-price .woocommerce-Price-amount,
.rm-featured-price .price {
    font-family: var(--rm-font-heading) !important;
    font-weight: 900 !important;
    font-size: 42px !important;
    color: var(--rm-black) !important;
    line-height: 1 !important;
}
.rm-featured-price del .woocommerce-Price-amount {
    font-size: 20px !important;
    color: var(--rm-muted) !important;
}

.rm-featured-desc {
    font-size: 14px;
    color: var(--rm-mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

.rm-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rm-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--rm-dark);
    font-weight: 500;
}
.rm-feat-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--rm-amber);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 900;
    color: var(--rm-black);
    flex-shrink: 0;
    margin-top: 1px;
}

.rm-featured-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   PRODUCT FINDER
   ============================================================ */
.rm-finder-section { background: var(--rm-bg2); }

.rm-finder-wrap {
    max-width: 640px;
    margin: 48px auto 0;
}

.rm-finder {
    background: var(--rm-white);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    overflow: hidden;
    box-shadow: var(--rm-shadow-md);
}

.rm-finder__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--rm-black);
    border-bottom: 2px solid var(--rm-amber);
}
.rm-finder__logo {
    width: 36px;
    height: 36px;
    background: var(--rm-amber);
    border-radius: var(--rm-radius);
    display: grid;
    place-items: center;
    font-family: var(--rm-font-heading);
    font-weight: 900;
    font-size: 13px;
    color: var(--rm-black);
    flex-shrink: 0;
}
.rm-finder__brand {
    font-family: var(--rm-font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--rm-white);
    line-height: 1.1;
}
.rm-finder__brand-sub { font-size: 11px; color: #555; font-weight: 600; }

.rm-finder__trail {
    padding: 12px 24px;
    background: var(--rm-bg2);
    border-bottom: 1px solid var(--rm-border);
    min-height: 46px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
}
.rm-finder__trail-empty { color: var(--rm-muted); font-size: 13px; }
.rm-finder__trail-chip {
    background: var(--rm-amber-light);
    border: 1px solid rgba(244,173,61,.3);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rm-amber-dark);
}
.rm-finder__trail-arrow { color: #ccc; font-size: 16px; }

.rm-finder__body { padding: 24px; }

.rm-finder__question {
    font-family: var(--rm-font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--rm-black);
    margin-bottom: 18px;
    line-height: 1.3;
}
.rm-finder__step-num {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rm-amber);
    margin-bottom: 6px;
}

.rm-finder__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rm-finder__opt {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--rm-bg2);
    border: 1.5px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 14px 16px;
    text-align: left;
    cursor: pointer;
    transition: background var(--rm-transition), border-color var(--rm-transition), transform var(--rm-transition);
    font-family: var(--rm-font-body);
}
.rm-finder__opt:hover {
    background: var(--rm-amber-light);
    border-color: var(--rm-amber);
    transform: translateY(-1px);
}
.rm-finder__opt--selected {
    background: var(--rm-amber-light);
    border-color: var(--rm-amber-dark);
}

.rm-finder__opt-icon {
    width: 32px;
    height: 32px;
    background: var(--rm-white);
    border-radius: var(--rm-radius);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rm-finder__opt-icon svg { width: 16px; height: 16px; fill: var(--rm-mid); }
.rm-finder__opt:hover .rm-finder__opt-icon svg,
.rm-finder__opt--selected .rm-finder__opt-icon svg { fill: var(--rm-amber-dark); }

.rm-finder__opt-text strong { display: block; font-size: 13px; color: var(--rm-dark); font-weight: 700; }
.rm-finder__opt-text span   { display: block; font-size: 11px; color: var(--rm-muted); margin-top: 2px; }

.rm-finder__foot {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    border-top: 1px solid var(--rm-border);
    background: var(--rm-bg2);
    gap: 12px;
}
.rm-finder__restart {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rm-mid);
    cursor: pointer;
    transition: background var(--rm-transition), color var(--rm-transition);
}
.rm-finder__restart:hover { background: var(--rm-border); color: var(--rm-dark); }

.rm-finder__dots { display: flex; gap: 6px; }
.rm-finder__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rm-border);
    transition: background var(--rm-transition), transform var(--rm-transition);
}
.rm-finder__dot--active { background: var(--rm-amber); transform: scale(1.2); }
.rm-finder__dot--done   { background: var(--rm-amber-dark); }

/* ── Result card ── */
.rm-finder__result { animation: rm-fade-in .35s ease; }
@keyframes rm-fade-in { from{ opacity:0; transform:translateY(8px) } to{ opacity:1; transform:none } }

.rm-finder__result-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rm-success);
    margin-bottom: 6px;
}
.rm-finder__result-name {
    font-family: var(--rm-font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--rm-black);
    line-height: 1;
    margin-bottom: 4px;
}
.rm-finder__result-type {
    font-size: 13px;
    font-weight: 700;
    color: var(--rm-amber-dark);
    margin-bottom: 12px;
}
.rm-finder__result-tagline {
    font-size: 14px;
    color: var(--rm-mid);
    line-height: 1.65;
    margin-bottom: 18px;
}

.rm-finder__result-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 16px;
    background: var(--rm-bg2);
    border-radius: var(--rm-radius);
    border: 1px solid var(--rm-border);
}
.rm-finder__result-spec { flex: 1; min-width: 100px; }
.rm-finder__result-spec-label { display: block; font-size: 10px; font-weight: 700; color: var(--rm-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.rm-finder__result-spec-val   { display: block; font-size: 14px; font-weight: 700; color: var(--rm-dark); }

.rm-finder__result-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.rm-finder__no-result { color: var(--rm-mid); font-size: 14px; padding: 20px 0; }
.rm-finder__no-result a { color: var(--rm-amber-dark); }

/* ============================================================
   REVIEWS
   ============================================================ */
.rm-reviews-section { background: var(--rm-white); }

.rm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.rm-review-card {
    background: var(--rm-bg2);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow var(--rm-transition), transform var(--rm-transition);
}
.rm-review-card:hover {
    box-shadow: var(--rm-shadow-md);
    transform: translateY(-2px);
}

.rm-review-card__stars { color: var(--rm-amber); font-size: 18px; letter-spacing: 2px; }

.rm-review-card__text {
    font-size: 14px;
    color: var(--rm-mid);
    line-height: 1.75;
    flex: 1;
    font-style: normal;
    border: none;
    padding: 0;
    margin: 0;
}
.rm-review-card__text p { margin: 0; }

.rm-review-card__reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--rm-border);
}
.rm-review-card__avatar {
    width: 40px;
    height: 40px;
    background: var(--rm-amber);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--rm-font-heading);
    font-weight: 900;
    font-size: 13px;
    color: var(--rm-black);
    flex-shrink: 0;
}
.rm-review-card__name { font-weight: 700; font-size: 14px; color: var(--rm-dark); }
.rm-review-card__role { font-size: 12px; color: var(--rm-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.rm-review-card__g-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--rm-white);
    border: 1px solid var(--rm-border);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    color: var(--rm-mid);
}
.rm-review-card__g-icon { width: 12px; height: 12px; }

/* Rating summary */
.rm-reviews-summary {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--rm-bg2);
    border: 1px solid var(--rm-border);
    border-radius: var(--rm-radius-lg);
    padding: 32px 40px;
    flex-wrap: wrap;
}

.rm-rs-score { text-align: center; flex-shrink: 0; }
.rm-rs-num {
    font-family: var(--rm-font-heading);
    font-size: 60px;
    font-weight: 900;
    color: var(--rm-black);
    line-height: 1;
    margin-bottom: 4px;
}
.rm-rs-stars { color: var(--rm-amber); font-size: 22px; display: block; margin-bottom: 4px; }
.rm-rs-label { font-size: 12px; color: var(--rm-muted); font-weight: 600; }

.rm-rs-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.rm-rs-bar-row { display: flex; align-items: center; gap: 10px; }
.rm-rs-bar-lbl { font-size: 12px; font-weight: 700; color: var(--rm-mid); width: 28px; flex-shrink: 0; }
.rm-rs-bar-track {
    flex: 1;
    height: 8px;
    background: var(--rm-border);
    border-radius: 4px;
    overflow: hidden;
}
.rm-rs-bar-fill {
    height: 100%;
    background: var(--rm-amber);
    border-radius: 4px;
    transition: width .8s ease;
}
.rm-rs-count { font-size: 12px; color: var(--rm-mid); width: 30px; flex-shrink: 0; text-align: right; }

.rm-rs-total { text-align: center; flex-shrink: 0; }
.rm-rs-total strong {
    display: block;
    font-family: var(--rm-font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--rm-black);
    line-height: 1;
    margin-bottom: 6px;
}
.rm-rs-total span { font-size: 13px; color: var(--rm-muted); line-height: 1.4; }

/* ============================================================
   CTA BAND
   ============================================================ */
.rm-cta-band {
    background: var(--rm-amber);
    padding: 72px var(--rm-gutter);
    border-top: 3px solid var(--rm-amber-dark);
}

.rm-cta-band__inner {
    max-width: var(--rm-max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.rm-cta-band__title {
    font-family: var(--rm-font-heading);
    font-weight: 900;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--rm-black);
    line-height: 1.05;
    margin-bottom: 12px;
}
.rm-cta-band__desc {
    font-size: 16px;
    color: rgba(0,0,0,.6);
    max-width: 560px;
    line-height: 1.65;
}

.rm-cta-band__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.rm-btn--cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--rm-black);
    border: 2px solid var(--rm-black);
    font-family: var(--rm-font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .4px;
    padding: 14px 28px;
    border-radius: var(--rm-radius);
    cursor: pointer;
    transition: background var(--rm-transition), color var(--rm-transition);
    font-family: var(--rm-font-heading);
}
.rm-btn--cta-outline:hover { background: var(--rm-black); color: var(--rm-amber); }

.rm-cta-band__badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.rm-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.1);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rm-black);
}
.rm-cta-badge svg { width: 14px; height: 14px; fill: var(--rm-black); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — HOME SECTIONS
   ============================================================ */
@media (max-width: 960px) {
    .rm-hero__inner { grid-template-columns: 1fr; }
    .rm-hero-slider { display: none; } /* Show copy only on mobile */

    .rm-cats-grid  { grid-template-columns: repeat(2, 1fr); }
    .rm-apps-grid  { grid-template-columns: 1fr 1fr; }
    .rm-reviews-grid { grid-template-columns: 1fr; }
    .rm-featured-inner { grid-template-columns: 1fr; }
    .rm-featured-img { order: -1; }
    .rm-reviews-summary { flex-direction: column; gap: 28px; padding: 24px; }
}

@media (max-width: 600px) {
    .rm-cats-grid  { grid-template-columns: 1fr 1fr; }
    .rm-apps-grid  { grid-template-columns: 1fr; }
    .rm-finder__options { grid-template-columns: 1fr; }
    .rm-cta-band__actions { flex-direction: column; width: 100%; }
    .rm-cta-band__actions .rm-btn { width: 100%; }
}

/* ══ FEATURED PRODUCT SECTION (homepage) ════════════════ */
.rm-featured-section { padding: 64px 5vw; background: var(--white); }
.rm-featured-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Image side */
.rm-featured-img {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rm-feat-product-img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.rm-feat-img-placeholder {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 12px; color: var(--muted); padding: 40px;
}
.rm-feat-img-placeholder svg { width: 56px; height: 56px; fill: var(--border); }

/* Details side */
.rm-featured-details { display: flex; flex-direction: column; gap: 0; }

/* Badge */
.rm-feat-badge {
    display: inline-block;
    background: var(--amber);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: fit-content;
}

/* Two-tone title */
.rm-feat-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -.3px;
    margin-bottom: 20px;
}
.rm-feat-title a { text-decoration: none; color: var(--black); }
.rm-feat-title a:hover .rm-feat-title-amber { opacity: .85; }
.rm-feat-title-amber { color: var(--amber); display: block; }

/* Price row */
.rm-feat-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.rm-feat-currency {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--black);
}
.rm-feat-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: var(--black);
    letter-spacing: -1.5px;
    line-height: 1;
}
.rm-feat-was {
    font-size: 18px;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500;
}
.rm-feat-save {
    background: var(--amber);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: .3px;
}

/* Description */
.rm-feat-desc {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Bullet list */
.rm-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0;
}
.rm-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.5;
}
.rm-feat-list li::before {
    content: '';
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--amber);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 1px;
}

/* CTAs */
.rm-feat-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.rm-feat-ctas .rm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 860px) {
    .rm-featured-inner { grid-template-columns: 1fr; gap: 36px; }
    .rm-featured-img { max-width: 380px; margin: 0 auto; }
    .rm-feat-title { font-size: clamp(28px, 8vw, 42px); }
}

/* ============================================================
   WHY RECORDERMAX — intro + 4-card grid
   ============================================================ */
.rm-home-why {
    background: var(--rm-white, #fff);
    padding: 80px var(--rm-gutter, 24px);
    border-top: 1px solid #eee;
}
.rm-home-why__inner {
    max-width: var(--rm-max-w, 1280px);
    margin: 0 auto;
}
.rm-home-why .rm-section-head { text-align: center; margin-bottom: 56px; }

.rm-home-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.rm-home-why__card {
    background: #f9f8f5;
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rm-home-why__card:hover {
    border-color: var(--rm-amber, #e89000);
    box-shadow: 0 4px 24px rgba(232,144,0,.08);
}
.rm-home-why__icon {
    width: 40px; height: 40px;
    background: var(--rm-amber, #e89000);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.rm-home-why__icon svg { width: 20px; height: 20px; fill: #111; }
.rm-home-why__card h3 {
    font-family: var(--rm-font-heading, 'Poppins', sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: var(--rm-black, #1a1916);
    margin-bottom: 10px;
    line-height: 1.3;
}
.rm-home-why__card p {
    font-size: 13px;
    color: var(--rm-mid, #666);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   HOMEPAGE FAQ ACCORDION
   ============================================================ */
.rm-home-faq {
    background: var(--rm-dark, #1a1916);
    padding: 80px var(--rm-gutter, 24px);
}
.rm-home-faq__inner {
    max-width: 800px;
    margin: 0 auto;
}
.rm-home-faq .rm-section-head { margin-bottom: 40px; }
.rm-home-faq .rm-section__tag  { color: var(--rm-amber, #e89000); }
.rm-home-faq .rm-section__title { color: var(--rm-white, #fff); }
.rm-home-faq .rm-section__title em { color: var(--rm-amber, #e89000); font-style: normal; }

.rm-home-faq__grid { display: flex; flex-direction: column; }
.rm-home-faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.rm-home-faq__item:first-child { border-top: 1px solid rgba(255,255,255,.1); }

.rm-home-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--rm-font-heading, 'Poppins', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--rm-white, #fff);
    text-align: left;
    line-height: 1.4;
}
.rm-home-faq__q:hover { color: var(--rm-amber, #e89000); }
.rm-home-faq__chevron {
    width: 22px; height: 22px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: rgba(255,255,255,.35);
}
.rm-home-faq__q[aria-expanded="true"] .rm-home-faq__chevron {
    transform: rotate(180deg);
    color: var(--rm-amber, #e89000);
}
.rm-home-faq__a { padding-bottom: 20px; }
.rm-home-faq__a[hidden] { display: none; }
.rm-home-faq__a p {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.8;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .rm-home-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .rm-home-why { padding: 56px var(--rm-gutter, 16px); }
    .rm-home-faq  { padding: 56px var(--rm-gutter, 16px); }
    .rm-home-why__grid { grid-template-columns: 1fr; }
    .rm-home-faq__q { font-size: 14px; }
}
