/* ============================================================
   TaskTag — For Remodelers Page
   ============================================================ */

/* ---- Shared chip / section layout ---- */
.rem-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(24,168,125,0.1);
    border: 1px solid rgba(24,168,125,0.2);
    color: #18a87d;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 16px;
}
.rem-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.rem-section__header {
    text-align: center;
    margin-bottom: 56px;
}
.rem-section__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0a1629;
    line-height: 1.2;
    margin-bottom: 12px;
}
.rem-section__title .gradient-text {
    color: var(--secondary-green);
}
.rem-section__subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #303742;
    line-height: 1.65;
}

/* ============================================================
   HERO
   ============================================================ */
.rem-hero {
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}
.rem-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    width: 100%;
}

/* -- Tag (chip) — same as roofing rc-hero__tag -- */
.rem-hero .rc-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-mint);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

.rem-hero__title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.rem-hero__title .highlight {
    color: var(--secondary-green);
}
.rem-hero__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 2rem;
}

/* -- Trust items (checklist) — same as gc-hero__trust -- */
.rem-hero .rc-hero__trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.rem-hero .rc-hero__trust--mobile { display: none; }
.rem-hero .rc-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
}
.rem-hero .rc-hero__trust-item i,
.rem-hero .rc-hero__trust-item svg {
    color: var(--secondary-green);
    stroke: var(--secondary-green);
    flex-shrink: 0;
}
.rem-hero .rc-hero__trust-item span { color: var(--text-secondary); }
.rem-hero .rc-hero__trust-sep { color: var(--grey-06); }
.rem-hero .hero__actions { margin-bottom: 0; justify-content: flex-start; }

/* -- Visual (phone video) -- */
.rem-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Trust Bar ---- */
.rem-trust {
    padding: 8rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    background: var(--grey-02);
}
.rem-trust__inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem; text-align: center;
}
.rem-trust__title { font-size: 17px; font-weight: 600; color: #0a1629; margin-bottom: 4px; }
.rem-trust__subtitle { font-size: 14px; font-weight: 300; color: #303742; margin-bottom: 28px; }
.rem-trust__subtitle span { color: #18a87d; font-weight: 600; }

/* ============================================================
   CORE FEATURES
   ============================================================ */
.rem-features { padding: 8rem 0; background: #f9fafb; }
.rem-br-desktop { display: inline; }

.rem-pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.rem-pain__card {
    border: 1px solid var(--grey-03);
    border-radius: 16px;
    padding: 1.25rem;
    background: var(--white);
    text-align: left;
    color: inherit;
    display: block;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rem-pain__card:hover {
    border-color: rgba(24,168,125,0.3);
    box-shadow: 0 8px 28px rgba(24,168,125,0.08);
}
.rem-pain__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--grey-02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary-green);
    flex-shrink: 0;
}
.rem-pain__title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.rem-pain__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.875rem;
}
.rem-pain__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.rem-pain__list li {
    font-size: 0.875rem;
    color: var(--grey-05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.rem-pain__list li::before {
    content: '✓';
    font-size: 0.8rem;
    color: var(--secondary-green);
    font-weight: var(--font-weight-semibold);
    flex-shrink: 0;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.rem-comparison { padding: 8rem 0; background: var(--white); }
.rem-comparison__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.rem-comparison__col {
    background: #fff; border-radius: 18px;
    overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.rem-comparison__col--before { border: 1px solid #fee2e2; }
.rem-comparison__col--after { border: 1px solid rgba(24,168,125,0.2); }
.rem-comparison__header {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 24px; font-size: 14px; font-weight: 700;
    border-bottom: 1px solid;
}
.rem-comparison__col--before .rem-comparison__header {
    background: #fef2f2; border-color: #fee2e2; color: #b91c1c;
}
.rem-comparison__col--after .rem-comparison__header {
    background: rgba(24,168,125,0.08);
    border-color: rgba(24,168,125,0.2); color: #18a87d;
}
.rem-comparison__header-icon {
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rem-comparison__col--before .rem-comparison__header-icon { background: #fee2e2; color: #b91c1c; }
.rem-comparison__col--after .rem-comparison__header-icon { background: #18a87d; color: #fff; }
.rem-comparison__items { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.rem-comparison__item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px; border-radius: 50px; border: 1px solid;
}
.rem-comparison__col--before .rem-comparison__item {
    background: rgba(254,242,242,0.5); border-color: #fee2e2;
}
.rem-comparison__col--after .rem-comparison__item {
    background: rgba(24,168,125,0.06); border-color: rgba(24,168,125,0.12);
}
.rem-comparison__item-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rem-comparison__col--before .rem-comparison__item-icon { background: #fee2e2; color: #b91c1c; }
.rem-comparison__col--after .rem-comparison__item-icon { background: #18a87d; color: #fff; }
.rem-comparison__item-text {}
.rem-comparison__item-title { font-size: 13px; font-weight: 600; color: #0a1629; margin-bottom: 2px; }
.rem-comparison__item-desc { font-size: 12px; font-weight: 300; color: #303742; line-height: 1.5; }

/* ============================================================
   HIGHLIGHT FIGURES
   ============================================================ */
.rem-stats {
    padding: 8rem 0; background: #0a1629;
    color: #fff; position: relative; overflow: hidden;
}
/* title + subtitle for dark section */
.rem-stats__title {
    font-size: 3rem;
    font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1rem;
}
.rem-stats__subtitle {
    font-size: 1.25rem; font-weight: 300;
    color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 0;
}
/* Override rem-section__header spacing for dark stats section */
.rem-stats .rem-section__header { margin-bottom: 4rem; }

/* Guide-style cards (cs-workflow--isc pattern) */
.rem-stats__guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.rem-stats__guide-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.rem-stats__guide-icon {
    width: 56px; height: 56px; min-width: 56px;
    border-radius: 50%;
    background: rgba(24,168,125,0.15);
    color: #18a87d;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.rem-stats__guide-num {
    font-size: 0.8125rem; font-weight: 600;
    color: #18a87d; margin-bottom: 0.4rem;
}
.rem-stats__guide-title {
    font-size: 0.9375rem; font-weight: 700;
    color: #fff; line-height: 1.3; margin-bottom: 0.5rem;
}
.rem-stats__guide-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.55; flex: 1;
}
.rem-stats__guide-pills {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.75rem;
}
.rem-stats__guide-pill {
    display: inline-flex;
    background: rgba(24,168,125,0.12);
    color: #18a87d; font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 9999px;
}
.rem-stats__cta-wrap { text-align: center; position: relative; }
.rem-stats__cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #18a87d; color: #fff; font-size: 16px; font-weight: 600;
    padding: 15px 36px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(24,168,125,0.3); transition: transform 0.2s;
    margin-bottom: 14px;
}
.rem-stats__cta:hover { transform: translateY(-2px); }
.rem-stats__note { font-size: 12px; color: rgba(255,255,255,0.4); display: block; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.rem-testimonial { padding: 8rem 0; background: #fff; }
.rem-testimonial__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rem-testimonial__quote-icon {
    font-size: 72px; line-height: 0.7;
    color: #e0e0e0; font-family: Georgia, serif; margin-bottom: 12px;
}
.rem-testimonial__quote {
    font-size: 20px; font-weight: 300;
    color: #0a1629; line-height: 1.65; margin-bottom: 24px;
}
.rem-testimonial__metrics {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-bottom: 28px;
}
.rem-testimonial__metric {
    background: #f9fafb; border: 1px solid #e8e8e8;
    border-radius: 12px; padding: 16px 12px; text-align: center;
}
.rem-testimonial__metric-number { font-size: 26px; font-weight: 700; color: #18a87d; margin-bottom: 4px; }
.rem-testimonial__metric-label { font-size: 11px; font-weight: 700; color: #0a1629; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.rem-testimonial__metric-desc { font-size: 11px; font-weight: 300; color: #303742; line-height: 1.4; }
.rem-testimonial__author { display: flex; align-items: center; gap: 14px; }
.rem-testimonial__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid #e8e8e8; }
.rem-testimonial__author-name { font-size: 15px; font-weight: 600; color: #0a1629; margin-bottom: 2px; }
.rem-testimonial__author-role { font-size: 13px; font-weight: 300; color: #303742; }
.rem-testimonial__author-loc { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #303742; margin-top: 2px; }

.rem-testimonial__video-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.rem-testimonial__video-wrap iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.rem-testimonial__video-thumb { position: relative; cursor: pointer; }
.rem-testimonial__video-thumb img { width: 100%; display: block; border-radius: 16px; }
.rem-testimonial__play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.18); border: none; cursor: pointer;
    border-radius: 16px; transition: background 0.2s;
}
.rem-testimonial__play-btn:hover { background: rgba(0,0,0,0.35); }
.rem-testimonial__video-meta { margin-top: 12px; }
.rem-testimonial__video-title { font-size: 14px; font-weight: 600; color: #0a1629; margin-bottom: 2px; }
.rem-testimonial__video-desc { font-size: 12px; font-weight: 300; color: #303742; }

/* Metrics inside cs-quote */
.cs-quote__left .rem-testimonial__metrics {
    margin-top: 0;
    margin-bottom: 2rem;
}

/* ============================================================
   ARTICLES
   ============================================================ */
.rem-articles { padding: 8rem 0; background: var(--grey-02); }
.rem-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rem-article-card {
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.rem-article-card.reveal-visible {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
}
.rem-article-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.rem-article-card__thumb { width: 100%; height: 160px; object-fit: cover; display: block; }
.rem-article-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.rem-article-card__chip {
    display: inline-flex; background: rgba(24,168,125,0.1);
    color: #18a87d; font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 9999px; margin-bottom: 10px; width: fit-content;
}
.rem-article-card__title {
    font-size: 14px; font-weight: 600; color: #0a1629; line-height: 1.45; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.rem-article-card__desc {
    font-size: 12px; font-weight: 300; color: #303742; line-height: 1.55; margin-bottom: 14px;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.rem-article-card__link {
    display: inline-flex; align-items: center; gap: 4px;
    color: #0a1629; font-size: 13px; font-weight: 500;
    text-decoration: none; margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}
.rem-article-card:hover .rem-article-card__link {
    gap: 8px; color: #18a87d;
}

/* ============================================================
   FAQ  (matches roofing style exactly)
   ============================================================ */
.faq-item.reveal-visible {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.rc-faq { padding: 8rem 0; background: #fff; }
.rc-faq__box { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.rc-faq__header { text-align: center; margin-bottom: 48px; }
.rc-faq__title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #0a1629; margin-bottom: 12px; line-height: 1.2; }
.rc-faq__subtitle { font-size: 16px; font-weight: 300; color: #303742; line-height: 1.6; }
.rc-faq__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }
.rc-faq__item {
    border: 1px solid #e8e8e8; border-radius: 14px;
    overflow: hidden; transition: border-color 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.rc-faq__item.active { border-color: rgba(24,168,125,0.3); }
.rc-faq__trigger {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 20px 24px; background: none; border: none;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 600; color: #0a1629;
    text-align: left; line-height: 1.4;
}
.rc-faq__icon-wrap {
    width: 30px; height: 30px;
    background: rgba(24,168,125,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: #18a87d;
    transition: transform 0.25s, background 0.25s, color 0.25s;
}
.rc-faq__item.active .rc-faq__icon-wrap {
    transform: rotate(180deg); background: #18a87d; color: #fff;
}
.rc-faq__content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.rc-faq__item.active .rc-faq__content { max-height: 500px; }
.rc-faq__content p {
    padding: 16px 24px 20px; font-size: 14px; font-weight: 300;
    color: #303742; line-height: 1.75; margin: 0;
    border-top: 1px solid #f0f0f0;
}
.rc-faq__cta-wrap { text-align: center; }
.rc-faq__cta-note { font-size: 14px; font-weight: 300; color: #303742; margin-bottom: 14px; }
.rc-faq__cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #18a87d; color: #fff; font-size: 14px; font-weight: 600;
    padding: 13px 28px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(24,168,125,0.25); transition: transform 0.2s;
}
.rc-faq__cta-btn:hover { transform: translateY(-2px); }

/* ============================================================
   FINAL CTA  (matches roofing style exactly)
   ============================================================ */
.rc-final-cta {
    padding: 8rem 0; background: #0a1629;
    text-align: center; position: relative; overflow: hidden;
}
.rc-final-cta::before {
    content: ''; position: absolute;
    width: 700px; height: 700px;
    background: rgba(24,168,125,0.08); filter: blur(80px);
    top: -300px; left: -200px; border-radius: 9999px; pointer-events: none;
}
.rc-final-cta__container { max-width: 680px; margin: 0 auto; padding: 0 24px; position: relative; }
.rc-final-cta__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.rc-final-cta__subtitle { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 36px; }
.rc-final-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #18a87d; color: #fff; font-size: 16px; font-weight: 600;
    padding: 15px 36px; border-radius: 50px; text-decoration: none;
    box-shadow: 0 4px 16px rgba(24,168,125,0.3); transition: transform 0.2s;
    margin-bottom: 16px;
}
.rc-final-cta__btn:hover { transform: translateY(-2px); }
.rc-final-cta__note { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 300; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .rem-pain__grid { grid-template-columns: repeat(2, 1fr); }
    .rem-pain__card { padding: 1.5rem; }
    .rem-pain__card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 0.5rem); margin-left: auto; margin-right: auto; }
    .rem-articles__grid { grid-template-columns: repeat(2, 1fr); }
    .rem-stats__guide-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-story__problems { grid-template-columns: repeat(2, 1fr); }
    .cs-story__problem-card { grid-column: span 1 !important; }

    .rem-hero { min-height: auto; }
    .rem-hero__container { grid-template-columns: 1fr; }
    .rem-hero__visual { display: none; }
    .rem-hero__content { text-align: center; }
    .rem-hero .hero__actions { justify-content: center; }
    .rem-hero .rc-hero__trust { justify-content: center; }
    .rem-hero .rc-hero__trust--mobile { justify-content: center; }
    .rem-hero__title { font-size: 2.5rem; }
    .rem-section__title { font-size: 2.5rem; }
    .rem-section__subtitle { font-size: 1.25rem; }
    .rem-stats__title { font-size: 2.5rem; }
    .rem-stats__subtitle { font-size: 1.25rem; }
    .rem-hero { padding: 5rem 0; }
    .rem-trust { padding: 5rem 0; }
    .rem-features,
    .rem-comparison,
    .rem-stats,
    .rem-testimonial,
    .rem-articles { padding: 5rem 0; }
    .rc-faq { padding: 5rem 0; }
    .rc-final-cta { padding: 5rem 0; }

}
@media (max-width: 768px) {
    .rem-hero__container { grid-template-columns: 1fr; padding: 3rem 1rem; }
    .rem-hero__visual { display: none; }
    .rem-hero__title { font-size: 2rem; }
    .rem-hero__subtitle { font-size: 1rem; }
    .rem-hero__content { text-align: center; }
    .rem-hero .hero__actions { justify-content: center; }
    .rem-hero .rc-hero__trust--mobile { justify-content: center; }
    .rem-comparison__grid { grid-template-columns: 1fr; }
    .rem-testimonial__grid { grid-template-columns: 1fr; }
    .rem-br-desktop { display: none; }
    .rem-pain__card { padding: 1.25rem; }
    .rem-pain__title { font-size: 1.25rem; }
    .rem-stat-card__inner { flex-direction: column; gap: 16px; }

    .rem-section__container { padding: 0 16px; }
    .rem-trust__inner { padding: 0 16px; }
    .rem-section__header { margin-bottom: 2.5rem; }
    .rem-stats .rem-section__header { margin-bottom: 2.5rem; }
    .rem-section__title { font-size: 2rem; }
    .rem-section__subtitle { font-size: 1.125rem; }
    .rem-stats__title { font-size: 2rem; }
    .rem-stats__subtitle { font-size: 1rem; }
    .rem-stats__guide-grid { margin-bottom: 2rem; }
    .rem-stats__guide-icon { width: 44px; height: 44px; min-width: 44px; }
    .rem-hero { padding: 4rem 0; }
    .rem-trust { padding: 4rem 0; }
    .rem-features,
    .rem-comparison,
    .rem-stats,
    .rem-testimonial,
    .rem-articles { padding: 4rem 0; }
    .rc-faq { padding: 4rem 0; }
    .rc-faq__box { padding: 32px 16px; }
    .rc-final-cta { padding: 4rem 0; }
    .rc-final-cta__container { padding: 0 16px; }
}
@media (max-width: 640px) {
    .cs-story__problems { grid-template-columns: 1fr; }
    .cs-story__problem-card { grid-column: span 1 !important; }
    .rem-pain__grid { grid-template-columns: 1fr; }
    .rem-articles__grid { grid-template-columns: 1fr; }
    .rem-stats__guide-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .rem-testimonial__metrics { grid-template-columns: 1fr; }
    .rem-section__container { padding: 0 16px; }

    .rem-section__title { font-size: 1.75rem; }
    .rem-section__subtitle { font-size: 1rem; }
    .rem-hero .rc-hero__trust--desktop { display: none; }
    .rem-hero .rc-hero__trust--mobile { display: flex; gap: 0.5rem; font-size: 0.75rem; margin-bottom: 2rem; }
    .rem-stats__title { font-size: 1.75rem; }
    .rem-stats__subtitle { font-size: 0.9rem; }
    .rem-hero { padding: 3rem 0; }
    .rem-trust { padding: 3rem 0; }
    .rem-features,
    .rem-comparison,
    .rem-testimonial,
    .rem-articles { padding: 3rem 0; }
    .rem-stats { padding: 4rem 0; }
    .rc-faq { padding: 3rem 0; }
    .rc-faq__box { padding: 28px 16px; }
    .rc-final-cta { padding: 3rem 0; }
    .rem-section__header { margin-bottom: 2rem; }
    .rem-stats .rem-section__header { margin-bottom: 2rem; }
    .rem-stats__guide-grid { margin-bottom: 1.5rem; }
    .rem-stats__guide-card { padding: 1rem; }
    .rem-stats__guide-icon { width: 40px; height: 40px; min-width: 40px; }
    .rem-stats__cta { padding: 13px 28px; font-size: 15px; }
    .rem-pain__title { font-size: 1.1rem; }
    .rem-pain__icon { width: 40px; height: 40px; border-radius: 10px; }
}
