/* ============================================================================
   RARE CARS — REDESIGN 20260228
   /assets/css/rare-cars-20260228.css
   
   Light Mode Only — High FOMO / High Dopamine / High Activation
   
   PCG Palette:
     Warm primary:   #c75b4a     Warm dark:     #a34839
     Cool deep:      #3f6f8a     Cool medium:   #5a9bb8
     Charcoal:       #2d3436     Gray:          #636e72
     Cream bg:       #fdfbf7     Warm bg:       #faf6f0
   ============================================================================ */

/* ── Reset & Base — 20260228 ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --warm-primary: #c75b4a;
    --warm-dark: #a34839;
    --cool-deep: #3f6f8a;
    --cool-medium: #5a9bb8;
    --charcoal: #2d3436;
    --gray: #636e72;
    --bg-cream: #fdfbf7;
    --bg-warm: #faf6f0;
    --urgent-red: #ef4444;
    --hot-orange: #f97316;
    --growth-green: #22c55e;
    --gold: #eab308;
    --electric-blue: #3b82f6;
    --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--charcoal);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}


/* ── Sticky Header — 20260228 ── */
.rc-header-20260228 {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.rc-logo-20260228 { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--charcoal); }
.rc-logo-20260228 img { height: 40px; width: auto; }
.rc-logo-20260228 span { font-family: 'Fredoka', sans-serif; font-size: 1.15rem; font-weight: 600; }

.rc-header-right-20260228 { display: flex; gap: 10px; align-items: center; }

.rc-login-btn-20260228 {
    padding: 8px 18px; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem; color: var(--cool-deep);
    background: transparent; border: 2px solid var(--cool-deep); transition: all 0.2s ease;
}
.rc-login-btn-20260228:hover { background: var(--cool-deep); color: #fff; }

.rc-join-btn-20260228 {
    padding: 8px 22px; border-radius: 8px; text-decoration: none;
    font-weight: 700; font-size: 0.9rem; color: #fff;
    background: var(--warm-primary); border: 2px solid var(--warm-primary);
    transition: all 0.2s ease;
    animation: rc-subtle-glow-20260228 3s ease-in-out infinite;
}
.rc-join-btn-20260228:hover { background: var(--warm-dark); border-color: var(--warm-dark); transform: translateY(-1px); }

@keyframes rc-subtle-glow-20260228 {
    0%, 100% { box-shadow: 0 0 0 0 rgba(199, 91, 74, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(199, 91, 74, 0.25); }
}


/* ── Breadcrumb — 20260228 ── */
.rc-breadcrumb-20260228 { padding: 12px 24px; font-size: 0.85rem; color: var(--gray); background: var(--bg-warm); border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
.rc-breadcrumb-20260228 a { color: var(--cool-deep); text-decoration: none; }
.rc-breadcrumb-20260228 a:hover { text-decoration: underline; }
.rc-breadcrumb-20260228 span { margin: 0 4px; }


/* ═══ HERO — 20260228 ═══ */
.rc-hero-20260228 {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    color: #fff; position: relative; overflow: hidden;
}
.rc-hero-20260228::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(199, 91, 74, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(90, 155, 184, 0.1) 0%, transparent 50%);
    animation: rc-hero-shimmer-20260228 15s ease-in-out infinite; pointer-events: none;
}
@keyframes rc-hero-shimmer-20260228 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-3%, 2%); }
}

.rc-hero-inner-20260228 { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 60px 24px 50px; text-align: center; }

.rc-hero-live-20260228 {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 24px; backdrop-filter: blur(6px);
}

.rc-pulse-dot-20260228 {
    width: 8px; height: 8px; border-radius: 50%; background: var(--growth-green);
    animation: rc-pulse-20260228 2s ease-in-out infinite;
}
@keyframes rc-pulse-20260228 {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.rc-hero-20260228 h1 {
    font-family: 'Fredoka', sans-serif; font-size: 2.8rem; font-weight: 700; line-height: 1.15; margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.rc-hero-sub-20260228 { font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); max-width: 550px; margin: 0 auto 30px; line-height: 1.6; }

.rc-hero-stats-20260228 { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.rc-hero-stat-20260228 {
    display: flex; flex-direction: column; align-items: center;
    padding: 12px 18px; background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; min-width: 100px;
    backdrop-filter: blur(4px);
    opacity: 0; transform: translateY(10px); animation: rc-stat-entrance-20260228 0.5s ease forwards;
}
.rc-hero-stat-20260228:nth-child(1) { animation-delay: 0.1s; }
.rc-hero-stat-20260228:nth-child(2) { animation-delay: 0.2s; }
.rc-hero-stat-20260228:nth-child(3) { animation-delay: 0.3s; }
.rc-hero-stat-20260228:nth-child(4) { animation-delay: 0.4s; }
@keyframes rc-stat-entrance-20260228 { to { opacity: 1; transform: translateY(0); } }

.rc-stat-num-20260228 { font-family: 'Fredoka', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.rc-stat-label-20260228 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.55); font-weight: 700; }
.rc-stat-hot-20260228 { border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.1); }
.rc-stat-hot-20260228 .rc-stat-num-20260228 { color: var(--hot-orange); }


/* ═══ TICKER — 20260228 ═══ */
.rc-ticker-20260228 { background: var(--charcoal); overflow: hidden; padding: 10px 0; border-bottom: 2px solid var(--warm-primary); }
.rc-ticker-inner-20260228 {
    display: flex; gap: 60px; white-space: nowrap;
    animation: rc-ticker-scroll-20260228 30s linear infinite;
    font-size: 0.85rem; font-weight: 700; color: rgba(255, 255, 255, 0.85);
}
@keyframes rc-ticker-scroll-20260228 { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ═══ PERSONALIZATION TEASE — 20260228 ═══ */
.rc-personal-tease-20260228 {
    background: linear-gradient(135deg, var(--bg-warm) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rc-personal-inner-20260228 {
    max-width: 800px; margin: 0 auto; padding: 40px 24px; text-align: center;
}

.rc-personal-question-20260228 {
    font-family: 'Fredoka', sans-serif; font-size: 1.5rem; font-weight: 700;
    color: var(--charcoal); margin-bottom: 8px;
}

.rc-personal-inner-20260228 > p {
    font-size: 1rem; color: var(--gray); margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.rc-personal-locks-20260228 { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 24px; }

.rc-lock-chip-20260228 {
    display: inline-block; padding: 8px 16px;
    background: rgba(63, 111, 138, 0.06); border: 1px dashed rgba(63, 111, 138, 0.25);
    border-radius: 8px; font-size: 0.85rem; font-weight: 700; color: var(--cool-deep);
}

.rc-personal-cta-20260228 {
    display: inline-block; padding: 14px 36px; background: var(--warm-primary); color: #fff;
    font-size: 1rem; font-weight: 800; text-decoration: none; border-radius: 10px;
    transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(199, 91, 74, 0.3);
}
.rc-personal-cta-20260228:hover { background: var(--warm-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(199, 91, 74, 0.4); }


/* ═══ CONTENT — 20260228 ═══ */
.rc-content-20260228 { max-width: 900px; margin: 0 auto; padding: 40px 20px 60px; }

.rc-intro-20260228 { font-size: 1.1rem; line-height: 1.85; margin-bottom: 30px; color: #444; }
.rc-intro-20260228 strong { color: var(--warm-primary); }
.rc-intro-20260228 p + p { margin-top: 14px; }

/* TOC — 20260228 */
.rc-toc-20260228 { background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 14px; padding: 20px 24px; margin-bottom: 40px; box-shadow: var(--card-shadow); }
.rc-toc-title-20260228 { font-family: 'Fredoka', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 12px; }
.rc-toc-links-20260228 { display: flex; flex-wrap: wrap; gap: 10px; }
.rc-toc-links-20260228 a {
    display: inline-block; padding: 8px 16px; background: var(--bg-warm); color: var(--charcoal);
    text-decoration: none; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
    transition: all 0.2s ease; border: 1px solid transparent;
}
.rc-toc-links-20260228 a:hover { background: #fff; border-color: var(--cool-medium); color: var(--cool-deep); transform: translateY(-1px); }


/* ═══ TIER SECTIONS — 20260228 ═══ */
.rc-tier-20260228 { margin-bottom: 50px; }
.rc-tier-title-20260228 {
    font-family: 'Fredoka', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--charcoal);
    display: flex; align-items: center; gap: 10px; margin-bottom: 24px; padding-bottom: 14px;
    border-bottom: 3px solid var(--bg-warm);
}
.rc-tier-icon-20260228 { font-size: 1.4rem; }


/* ═══ RANKING CARDS — 20260228 ═══ */
.rc-card-20260228 {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 16px;
    padding: 18px 20px; margin-bottom: 14px;
    box-shadow: var(--card-shadow); transition: all 0.25s ease;
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(16px);
}
.rc-card-20260228.rc-visible-20260228 { opacity: 1; transform: translateY(0); }
.rc-card-20260228:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); border-color: rgba(90, 155, 184, 0.2); }
.rc-card-20260228.rc-visible-20260228:hover { transform: translateY(-2px); }

.rc-card-top3-20260228 {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--warm-primary), var(--gold), var(--hot-orange)) border-box;
    padding: 20px 22px;
}
.rc-card-top3-20260228::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--warm-primary), var(--gold), var(--hot-orange));
}

/* Rank */
.rc-card-rank-20260228 { display: flex; flex-direction: column; align-items: center; min-width: 44px; flex-shrink: 0; }
.rc-medal-20260228 { font-size: 1.4rem; line-height: 1; }
.rc-rank-num-20260228 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--cool-medium); }
.rc-rank-top3-20260228 .rc-rank-num-20260228 { color: var(--warm-primary); font-size: 1.2rem; }

/* Image */
.rc-card-img-20260228 {
    width: 100px; height: 75px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
    background: var(--bg-warm); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.rc-card-img-20260228 img { width: 100%; height: 100%; object-fit: contain; }

/* Info */
.rc-card-info-20260228 { flex: 1; min-width: 0; }
.rc-card-info-20260228 h3 { font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; line-height: 1.3; }

.rc-card-meta-row-20260228 { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }

.rc-mattel-tag-20260228 { font-family: 'Courier New', monospace; font-size: 0.72rem; font-weight: 700; color: var(--cool-deep); background: rgba(63, 111, 138, 0.08); padding: 2px 8px; border-radius: 4px; }

.rc-rarity-tag-20260228 { font-size: 0.68rem; font-weight: 800; padding: 2px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.rc-rarity-super-chase-20260228 { background: rgba(239, 68, 68, 0.1); color: #dc2626; border: 1px solid rgba(239, 68, 68, 0.2); }
.rc-rarity-chase-20260228       { background: rgba(234, 179, 8, 0.1);  color: #b45309; border: 1px solid rgba(234, 179, 8, 0.2); }
.rc-rarity-rare-20260228        { background: rgba(59, 130, 246, 0.1); color: #2563eb; border: 1px solid rgba(59, 130, 246, 0.2); }
.rc-rarity-uncommon-20260228    { background: rgba(34, 197, 94, 0.1);  color: #16a34a; border: 1px solid rgba(34, 197, 94, 0.2); }
.rc-rarity-common-20260228      { background: rgba(156, 163, 175, 0.08); color: #6b7280; border: 1px solid rgba(156, 163, 175, 0.15); }
.rc-rarity-unknown-20260228     { background: rgba(156, 163, 175, 0.08); color: #9ca3af; border: 1px solid rgba(156, 163, 175, 0.15); }

.rc-year-tag-20260228  { font-size: 0.7rem; font-weight: 700; color: #92400e; background: rgba(254, 243, 199, 0.6); padding: 2px 8px; border-radius: 4px; }
.rc-movie-tag-20260228 { font-size: 0.7rem; font-weight: 700; color: #7c3aed; background: rgba(243, 232, 255, 0.6); padding: 2px 8px; border-radius: 4px; }


/* ═══ PSYCHOLOGICAL HOOKS — 20260228 ═══ */
.rc-card-hooks-20260228 { display: flex; flex-wrap: wrap; gap: 6px; }

.rc-hook-20260228 {
    font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 4px;
    background: var(--bg-warm); color: var(--gray);
}
.rc-hook-scarce-20260228  { background: rgba(239, 68, 68, 0.08); color: #dc2626; font-weight: 800; }
.rc-hook-hunt-20260228    { background: rgba(239, 68, 68, 0.06); color: #ef4444; }
.rc-hook-wish-20260228    { background: rgba(234, 179, 8, 0.08); color: #b45309; }
.rc-hook-growth-20260228  { background: rgba(59, 130, 246, 0.08); color: var(--electric-blue); }
.rc-hook-sale-20260228    { background: rgba(34, 197, 94, 0.08); color: #16a34a; }
.rc-hook-hot-20260228     { background: rgba(239, 68, 68, 0.12); color: #dc2626; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; animation: rc-hook-pulse-20260228 2s ease-in-out infinite; }

@keyframes rc-hook-pulse-20260228 { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }


/* Price Column — 20260228 */
.rc-card-price-20260228 { text-align: right; flex-shrink: 0; min-width: 90px; }
.rc-price-amount-20260228 { font-family: 'Fredoka', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--warm-primary); line-height: 1.2; }
.rc-price-label-20260228 { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); }
.rc-future-val-20260228 { font-size: 0.75rem; font-weight: 700; color: var(--growth-green); margin-top: 4px; }
.rc-future-val-20260228 small { font-weight: 600; color: var(--gray); font-size: 0.65rem; }


/* ═══ CTA CARD — 20260228 ═══ */
.rc-cta-card-20260228 {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); color: #fff;
    border-radius: 20px; padding: 44px 36px; text-align: center; margin: 44px 0;
    position: relative; overflow: hidden;
}
.rc-cta-card-20260228::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(199, 91, 74, 0.2) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(90, 155, 184, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.rc-cta-urgency-20260228 {
    display: inline-block; padding: 5px 16px; background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3); border-radius: 50px;
    font-size: 0.78rem; font-weight: 800; color: var(--hot-orange); margin-bottom: 18px;
    position: relative; z-index: 1; animation: rc-urgency-pulse-20260228 4s ease-in-out infinite;
}
@keyframes rc-urgency-pulse-20260228 { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.rc-cta-card-20260228 h3 { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.rc-cta-card-20260228 p { font-size: 1rem; color: rgba(255, 255, 255, 0.8); max-width: 480px; margin: 0 auto 24px; position: relative; z-index: 1; }

.rc-cta-btn-20260228 {
    display: inline-block; padding: 15px 40px; background: var(--warm-primary); color: #fff;
    font-size: 1.05rem; font-weight: 800; text-decoration: none; border-radius: 12px;
    transition: all 0.25s ease; box-shadow: 0 4px 20px rgba(199, 91, 74, 0.4); position: relative; z-index: 1;
}
.rc-cta-btn-20260228:hover { background: var(--warm-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(199, 91, 74, 0.5); }
.rc-cta-trust-20260228 { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); margin-top: 14px; position: relative; z-index: 1; }


/* ── Value Note — 20260228 ── */
.rc-note-20260228 {
    background: var(--bg-warm); border-left: 4px solid var(--cool-medium); border-radius: 0 12px 12px 0;
    padding: 18px 24px; margin: 30px 0; font-size: 0.92rem; color: #555; line-height: 1.7;
}
.rc-note-20260228 strong { display: block; color: var(--cool-deep); margin-bottom: 4px; }


/* ═══ SEO DEPTH SECTIONS — 20260228 ═══ */
.rc-seo-section-20260228 { margin: 50px 0; }

.rc-seo-content-20260228 > p { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 24px; }
.rc-seo-content-20260228 > p strong { color: var(--charcoal); }

.rc-seo-grid-20260228 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.rc-seo-card-20260228 {
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 14px;
    padding: 22px 20px; box-shadow: var(--card-shadow); transition: all 0.2s ease;
}
.rc-seo-card-20260228:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.rc-seo-card-icon-20260228 { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.rc-seo-card-20260228 strong { font-family: 'Fredoka', sans-serif; font-size: 1rem; color: var(--charcoal); display: block; margin-bottom: 6px; }
.rc-seo-card-20260228 p { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }


/* ═══ INTERNAL FUNNEL — 20260228 ═══ */
.rc-funnel-20260228 { margin: 50px 0; }
.rc-funnel-grid-20260228 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.rc-funnel-card-20260228 {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 14px;
    padding: 24px 18px; text-decoration: none; text-align: center;
    transition: all 0.25s ease; box-shadow: var(--card-shadow);
}
.rc-funnel-card-20260228:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); border-color: rgba(90, 155, 184, 0.2); }
.rc-funnel-icon-20260228 { font-size: 1.6rem; }
.rc-funnel-card-20260228 strong { font-family: 'Fredoka', sans-serif; font-size: 1rem; color: var(--charcoal); }
.rc-funnel-card-20260228 span:last-child { font-size: 0.82rem; color: var(--gray); }


/* ═══ FINAL CTA — 20260228 ═══ */
.rc-final-cta-20260228 { margin: 50px -20px 50px; padding: 0 20px; }
.rc-final-cta-inner-20260228 {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #fff;
    border-radius: 24px; padding: 56px 40px; text-align: center;
    position: relative; overflow: hidden; box-shadow: 0 12px 48px rgba(26, 26, 46, 0.3);
}
.rc-final-cta-inner-20260228::before {
    content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 91, 74, 0.2) 0%, transparent 70%); pointer-events: none;
}
.rc-final-cta-20260228 h3 { font-family: 'Fredoka', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; line-height: 1.25; }
.rc-final-cta-20260228 p { font-size: 1.05rem; color: rgba(255, 255, 255, 0.75); max-width: 520px; margin: 0 auto 28px; position: relative; z-index: 1; }

.rc-final-cta-btns-20260228 { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 20px; }

.rc-cta-btn-primary-20260228 {
    display: inline-block; padding: 16px 40px; background: var(--warm-primary); color: #fff;
    font-size: 1.05rem; font-weight: 800; text-decoration: none; border-radius: 12px;
    transition: all 0.25s ease; box-shadow: 0 4px 20px rgba(199, 91, 74, 0.4);
}
.rc-cta-btn-primary-20260228:hover { background: var(--warm-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(199, 91, 74, 0.5); }

.rc-cta-btn-secondary-20260228 {
    display: inline-block; padding: 16px 32px; background: transparent; color: rgba(255, 255, 255, 0.8);
    font-size: 1rem; font-weight: 700; text-decoration: none; border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2); transition: all 0.25s ease;
}
.rc-cta-btn-secondary-20260228:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; background: rgba(255, 255, 255, 0.05); }

.rc-final-trust-20260228 { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 0.8rem; font-weight: 700; color: rgba(255, 255, 255, 0.45); position: relative; z-index: 1; }


/* ═══ FAQ — 20260228 ═══ */
.rc-faq-20260228 { margin: 50px 0; }
.rc-faq-item-20260228 {
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 14px;
    padding: 22px 26px; margin-bottom: 12px; box-shadow: var(--card-shadow); transition: box-shadow 0.2s ease;
}
.rc-faq-item-20260228:hover { box-shadow: var(--card-shadow-hover); }
.rc-faq-item-20260228 h4 { font-family: 'Fredoka', sans-serif; font-size: 1.05rem; color: var(--cool-deep); margin-bottom: 8px; line-height: 1.4; }
.rc-faq-item-20260228 p { font-size: 0.95rem; color: #555; line-height: 1.7; margin: 0; }


/* ═══ FOOTER — 20260228 ═══ */
.rc-footer-20260228 { background: var(--charcoal); color: #fff; padding: 40px 24px; text-align: center; }
.rc-footer-links-20260228 { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; flex-wrap: wrap; }
.rc-footer-links-20260228 a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.15s ease; }
.rc-footer-links-20260228 a:hover { color: #fff; }
.rc-footer-copy-20260228 { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); line-height: 1.7; }
.rc-footer-copy-20260228 strong { color: rgba(255, 255, 255, 0.6); }


/* ═══ MOBILE — 20260228 ═══ */
@media (max-width: 700px) {
    .rc-header-20260228 { padding: 8px 14px; }
    .rc-logo-20260228 img { height: 32px; }
    .rc-logo-20260228 span { font-size: 0.95rem; }
    .rc-login-btn-20260228 { padding: 6px 12px; font-size: 0.8rem; }
    .rc-join-btn-20260228 { padding: 6px 14px; font-size: 0.8rem; }

    .rc-hero-inner-20260228 { padding: 40px 16px 36px; }
    .rc-hero-20260228 h1 { font-size: 1.8rem; }
    .rc-hero-sub-20260228 { font-size: 0.95rem; }
    .rc-hero-stats-20260228 { gap: 8px; }
    .rc-hero-stat-20260228 { padding: 10px 14px; min-width: 80px; }
    .rc-stat-num-20260228 { font-size: 1.1rem; }

    .rc-personal-question-20260228 { font-size: 1.2rem; }
    .rc-personal-locks-20260228 { flex-direction: column; align-items: center; }

    .rc-card-20260228 { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
    .rc-card-rank-20260228 { flex-direction: row; gap: 6px; min-width: unset; }
    .rc-card-img-20260228 { width: 70px; height: 52px; }
    .rc-card-info-20260228 h3 { font-size: 0.95rem; }
    .rc-card-price-20260228 { width: 100%; text-align: left; display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid rgba(0, 0, 0, 0.05); }
    .rc-price-amount-20260228 { font-size: 1.2rem; }
    .rc-future-val-20260228 { margin-top: 0; }

    .rc-cta-card-20260228 { padding: 32px 20px; }
    .rc-cta-card-20260228 h3 { font-size: 1.3rem; }
    .rc-final-cta-inner-20260228 { padding: 40px 20px; }
    .rc-final-cta-20260228 h3 { font-size: 1.4rem; }
    .rc-final-cta-btns-20260228 { flex-direction: column; align-items: center; }
    .rc-final-trust-20260228 { flex-direction: column; gap: 6px; }

    .rc-seo-grid-20260228 { grid-template-columns: 1fr; }
    .rc-funnel-grid-20260228 { grid-template-columns: 1fr; }
    .rc-toc-links-20260228 { flex-direction: column; }
    .rc-footer-links-20260228 { gap: 14px; }
    .rc-ticker-inner-20260228 { gap: 40px; font-size: 0.78rem; }
}

@media (max-width: 400px) {
    .rc-hero-20260228 h1 { font-size: 1.5rem; }
    .rc-card-img-20260228 { width: 60px; height: 45px; }
}
