/* ============================================
   Recruiter Landing Page — recruiter-landing.css
   ============================================ */

:root {
    --rl-primary: #1d4ed8;
    --rl-primary-light: #3b82f6;
    --rl-primary-50: #eff6ff;
    --rl-primary-100: #dbeafe;
    --rl-green: #059669;
    --rl-green-light: #d1fae5;
    --rl-purple: #7c3aed;
    --rl-purple-light: #ede9fe;
    --rl-orange: #ea580c;
    --rl-orange-light: #fff7ed;
    --rl-dark: #0f172a;
    --rl-gray-900: #1e293b;
    --rl-gray-700: #334155;
    --rl-gray-500: #64748b;
    --rl-gray-300: #cbd5e1;
    --rl-gray-100: #f1f5f9;
    --rl-white: #ffffff;
    --rl-radius: 12px;
    --rl-radius-lg: 20px;
    --rl-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --rl-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --rl-shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --rl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
.rl-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--rl-gray-900);
    background: var(--rl-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Header === */
.rl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rl-gray-100);
    padding: 0.75rem 0;
}
.rl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rl-header__logo img {
    height: 36px;
    width: auto;
}
.rl-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.rl-header__link {
    color: var(--rl-gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: var(--rl-transition);
}
.rl-header__link:hover {
    color: var(--rl-primary);
    background: var(--rl-primary-50);
    text-decoration: none;
}

/* === Language Switcher === */
.rl-lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.rl-lang-switcher__current {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rl-gray-700);
    padding: 0.375rem 0.625rem;
    border: 1px solid var(--rl-gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--rl-transition);
    user-select: none;
}
.rl-lang-switcher__current:hover {
    border-color: var(--rl-primary-light);
    color: var(--rl-primary);
}
.rl-lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--rl-white);
    border: 1px solid var(--rl-gray-100);
    border-radius: 8px;
    box-shadow: var(--rl-shadow-md);
    min-width: 120px;
    z-index: 200;
    overflow: hidden;
}
.rl-lang-switcher:hover .rl-lang-switcher__dropdown {
    display: block;
}
.rl-lang-switcher__option {
    display: block;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rl-gray-700);
    text-decoration: none;
    transition: var(--rl-transition);
}
.rl-lang-switcher__option:hover {
    background: var(--rl-primary-50);
    color: var(--rl-primary);
    text-decoration: none;
}
.rl-lang-switcher__option--active {
    color: var(--rl-primary);
    background: var(--rl-primary-50);
    font-weight: 600;
}

/* === Buttons === */
.rl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--rl-transition);
    white-space: nowrap;
}
.rl-btn:hover { text-decoration: none; }
.rl-btn--primary {
    background: var(--rl-primary);
    color: var(--rl-white);
}
.rl-btn--primary:hover {
    background: #1e40af;
    color: var(--rl-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29,78,216,0.35);
}
.rl-btn--primary-sm {
    background: var(--rl-primary);
    color: var(--rl-white);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}
.rl-btn--primary-sm:hover {
    background: #1e40af;
    color: var(--rl-white);
}
.rl-btn--outline-sm {
    background: transparent;
    color: var(--rl-gray-700);
    border: 1px solid var(--rl-gray-300);
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}
.rl-btn--outline-sm:hover {
    border-color: var(--rl-primary);
    color: var(--rl-primary);
}
.rl-btn--ghost {
    background: transparent;
    color: var(--rl-primary);
    padding: 0.625rem 1.25rem;
}
.rl-btn--ghost:hover {
    background: var(--rl-primary-50);
    color: var(--rl-primary);
}
.rl-btn--cta {
    background: linear-gradient(135deg, var(--rl-primary), var(--rl-purple));
    color: var(--rl-white);
    font-size: 1rem;
    padding: 0.875rem 2rem;
}
.rl-btn--cta:hover {
    color: var(--rl-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29,78,216,0.4);
}
.rl-btn--white {
    background: var(--rl-white);
    color: var(--rl-primary);
}
.rl-btn--white:hover {
    background: var(--rl-primary-50);
    color: var(--rl-primary);
    transform: translateY(-1px);
}
.rl-btn--ghost-white {
    background: transparent;
    color: var(--rl-white);
    border: 1px solid rgba(255,255,255,0.3);
}
.rl-btn--ghost-white:hover {
    background: rgba(255,255,255,0.1);
    color: var(--rl-white);
}
.rl-btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: 12px;
}
.rl-btn--full-mobile { width: 100%; justify-content: center; }
@media (min-width: 768px) {
    .rl-btn--full-mobile { width: auto; }
}

/* === Hero === */
.rl-hero {
    position: relative;
    padding: 7rem 0 4rem;
    background: linear-gradient(180deg, var(--rl-primary-50) 0%, var(--rl-white) 100%);
    overflow: hidden;
}
.rl-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.rl-hero__content {
    padding: 2rem 0;
}
.rl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--rl-white);
    border: 1px solid var(--rl-gray-300);
    border-radius: 50px;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rl-gray-700);
    margin-bottom: 1.5rem;
    box-shadow: var(--rl-shadow);
}
.rl-hero__badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rl-green);
    animation: rl-pulse 2s infinite;
}
@keyframes rl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.rl-hero__title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--rl-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.rl-hero__highlight {
    background: linear-gradient(135deg, var(--rl-primary), var(--rl-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rl-hero__subtitle {
    font-size: 1.125rem;
    color: var(--rl-gray-500);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}
.rl-hero__cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Hero stat cards */
.rl-hero__stats-preview {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}
.rl-hero__stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--rl-white);
    border: 1px solid var(--rl-gray-100);
    border-radius: var(--rl-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--rl-shadow-md);
    transition: var(--rl-transition);
    animation: rl-float 6s ease-in-out infinite;
}
.rl-hero__stat-card--1 { animation-delay: 0s; }
.rl-hero__stat-card--2 { animation-delay: 2s; transform: translateX(30px); }
.rl-hero__stat-card--3 { animation-delay: 4s; transform: translateX(15px); }
@keyframes rl-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.rl-hero__stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--rl-primary-100);
    color: var(--rl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rl-hero__stat-icon--green { background: var(--rl-green-light); color: var(--rl-green); }
.rl-hero__stat-icon--purple { background: var(--rl-purple-light); color: var(--rl-purple); }
.rl-hero__stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rl-dark);
    line-height: 1.2;
}
.rl-hero__stat-label {
    font-size: 0.8125rem;
    color: var(--rl-gray-500);
}

/* === Metrics Section === */
.rl-metrics {
    padding: 5rem 0;
    background: var(--rl-gray-100);
}
.rl-metrics__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.rl-metrics__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rl-dark);
    margin-bottom: 0.5rem;
}
.rl-metrics__subtitle {
    font-size: 1.0625rem;
    color: var(--rl-gray-500);
}

/* Role selector */
.rl-role-selector {
    margin-bottom: 2.5rem;
}
.rl-role-selector__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rl-gray-700);
    margin-bottom: 0.75rem;
}
.rl-role-selector__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.rl-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--rl-gray-300);
    background: var(--rl-white);
    color: var(--rl-gray-700);
    cursor: pointer;
    transition: var(--rl-transition);
    white-space: nowrap;
}
.rl-chip:hover {
    border-color: var(--rl-primary-light);
    color: var(--rl-primary);
    background: var(--rl-primary-50);
}
.rl-chip--active {
    background: var(--rl-primary);
    color: var(--rl-white);
    border-color: var(--rl-primary);
}
.rl-chip--active:hover {
    background: #1e40af;
    color: var(--rl-white);
    border-color: #1e40af;
}

/* Dashboard */
.rl-dashboard {
    position: relative;
}
.rl-dashboard__loading {
    position: absolute;
    inset: 0;
    background: rgba(241,245,249,0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
    border-radius: var(--rl-radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rl-gray-500);
}
.rl-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--rl-gray-300);
    border-top-color: var(--rl-primary);
    border-radius: 50%;
    animation: rl-spin 0.8s linear infinite;
}
@keyframes rl-spin {
    to { transform: rotate(360deg); }
}

/* KPI cards */
.rl-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.rl-kpi-card {
    background: var(--rl-white);
    border-radius: var(--rl-radius);
    padding: 1.5rem;
    box-shadow: var(--rl-shadow);
    border: 1px solid var(--rl-gray-100);
    text-align: center;
    transition: var(--rl-transition);
    opacity: 0;
    transform: translateY(20px);
}
.rl-kpi-card.rl-visible {
    opacity: 1;
    transform: translateY(0);
}
.rl-kpi-card:hover {
    box-shadow: var(--rl-shadow-lg);
    transform: translateY(-2px);
}
.rl-kpi-card.rl-visible:hover {
    transform: translateY(-2px);
}
.rl-kpi-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rl-primary-100);
    color: var(--rl-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.rl-kpi-card__icon--green { background: var(--rl-green-light); color: var(--rl-green); }
.rl-kpi-card__icon--purple { background: var(--rl-purple-light); color: var(--rl-purple); }
.rl-kpi-card__icon--orange { background: var(--rl-orange-light); color: var(--rl-orange); }
.rl-kpi-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--rl-dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}
.rl-kpi-card__label {
    font-size: 0.8125rem;
    color: var(--rl-gray-500);
    font-weight: 500;
}
.rl-kpi-animate {
    animation: rl-kpi-pop 0.4s ease;
}
@keyframes rl-kpi-pop {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* Charts row */
.rl-charts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.rl-chart-card {
    background: var(--rl-white);
    border-radius: var(--rl-radius);
    padding: 1.5rem;
    box-shadow: var(--rl-shadow);
    border: 1px solid var(--rl-gray-100);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--rl-transition);
}
.rl-chart-card.rl-visible {
    opacity: 1;
    transform: translateY(0);
}
.rl-chart-card__header {
    margin-bottom: 1.25rem;
}
.rl-chart-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--rl-dark);
    margin: 0;
}
.rl-chart-card__footnote {
    font-size: 0.75rem;
    color: var(--rl-gray-500);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Bar chart */
.rl-bar-item {
    margin-bottom: 0.875rem;
}
.rl-bar-item:last-child { margin-bottom: 0; }
.rl-bar-item__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.375rem;
}
.rl-bar-item__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rl-gray-700);
}
.rl-bar-item__value {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--rl-primary);
}
.rl-bar-item__track {
    height: 8px;
    border-radius: 4px;
    background: var(--rl-gray-100);
    overflow: hidden;
}
.rl-bar-item__fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--rl-primary-light), var(--rl-primary));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stack tags */
.rl-stacks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.rl-stack-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--rl-gray-100);
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--rl-gray-700);
    transition: var(--rl-transition);
}
.rl-stack-tag:hover {
    background: var(--rl-primary-50);
    color: var(--rl-primary);
}
.rl-stack-tag--animate {
    animation: rl-tag-in 0.3s ease forwards;
    opacity: 0;
}
@keyframes rl-tag-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.rl-stack-tag__count {
    font-size: 0.6875rem;
    font-weight: 700;
    background: var(--rl-primary-100);
    color: var(--rl-primary);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
}

/* Donut chart */
.rl-donut-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.rl-donut {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
.rl-donut__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.rl-donut__track {
    fill: none;
    stroke: var(--rl-gray-100);
    stroke-width: 12;
}
.rl-donut__fill {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s ease, stroke-dashoffset 0.8s ease;
}
.rl-donut__fill--active { stroke: var(--rl-green); }
.rl-donut__fill--passive { stroke: var(--rl-gray-300); }
.rl-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rl-donut-legend__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--rl-gray-700);
}
.rl-donut-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.rl-donut-legend__dot--active { background: var(--rl-green); }
.rl-donut-legend__dot--passive { background: var(--rl-gray-300); }

/* Dashboard disclaimer */
.rl-dashboard__disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--rl-gray-500);
    margin-top: 1rem;
}

/* === Value Props === */
.rl-value {
    padding: 5rem 0;
}
.rl-value__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--rl-dark);
    margin-bottom: 3rem;
}
.rl-value__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.rl-value__card {
    background: var(--rl-white);
    border: 1px solid var(--rl-gray-100);
    border-radius: var(--rl-radius);
    padding: 2rem 1.5rem;
    transition: var(--rl-transition);
    opacity: 0;
    transform: translateY(20px);
}
.rl-value__card.rl-visible {
    opacity: 1;
    transform: translateY(0);
}
.rl-value__card:hover {
    box-shadow: var(--rl-shadow-lg);
    transform: translateY(-4px);
    border-color: var(--rl-primary-100);
}
.rl-value__card.rl-visible:hover {
    transform: translateY(-4px);
}
.rl-value__card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--rl-dark);
    margin: 1rem 0 0.5rem;
}
.rl-value__card p {
    font-size: 0.875rem;
    color: var(--rl-gray-500);
    line-height: 1.6;
    margin: 0;
}
.rl-value__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--rl-primary-100);
    color: var(--rl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rl-value__card-icon--green { background: var(--rl-green-light); color: var(--rl-green); }
.rl-value__card-icon--purple { background: var(--rl-purple-light); color: var(--rl-purple); }
.rl-value__card-icon--orange { background: var(--rl-orange-light); color: var(--rl-orange); }

/* === Coupon Section === */
.rl-coupon {
    padding: 5rem 0;
    background: var(--rl-gray-100);
}
.rl-coupon__card {
    position: relative;
    background: var(--rl-white);
    border-radius: var(--rl-radius-lg);
    padding: 3rem;
    box-shadow: var(--rl-shadow-lg);
    border: 2px solid var(--rl-primary-100);
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
}
.rl-coupon__sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.rl-coupon__sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rl-primary-light);
    opacity: 0.3;
    animation: rl-sparkle 3s ease-in-out infinite;
}
.rl-coupon__sparkle--1 { top: 15%; right: 10%; animation-delay: 0s; }
.rl-coupon__sparkle--2 { top: 60%; right: 5%; animation-delay: 1s; }
.rl-coupon__sparkle--3 { bottom: 20%; left: 8%; animation-delay: 2s; }
@keyframes rl-sparkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(2); }
}
.rl-coupon__content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.rl-coupon__badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rl-primary-50), var(--rl-purple-light));
    color: var(--rl-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.rl-coupon__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rl-dark);
    margin-bottom: 0.75rem;
}
.rl-coupon__subtitle {
    font-size: 1.0625rem;
    color: var(--rl-gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Coupon code box */
.rl-coupon__code-wrapper {
    margin-bottom: 1.5rem;
}
.rl-coupon__code-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rl-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.rl-coupon__code-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--rl-gray-100);
    border: 2px dashed var(--rl-primary-light);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    transition: var(--rl-transition);
}
.rl-coupon__code-box--copied {
    border-color: var(--rl-green);
    background: var(--rl-green-light);
}
.rl-coupon__code-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--rl-primary);
    letter-spacing: 0.05em;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.rl-coupon__copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--rl-white);
    border: 1px solid var(--rl-gray-300);
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rl-gray-700);
    cursor: pointer;
    transition: var(--rl-transition);
}
.rl-coupon__copy-btn:hover {
    border-color: var(--rl-primary);
    color: var(--rl-primary);
}

/* Features list */
.rl-coupon__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}
.rl-coupon__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rl-gray-700);
}
.rl-coupon__feature svg { color: var(--rl-green); flex-shrink: 0; }
.rl-coupon__hint {
    font-size: 0.75rem;
    color: var(--rl-gray-500);
    margin-top: 0.75rem;
}

/* === Steps === */
.rl-steps {
    padding: 5rem 0;
}
.rl-steps__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--rl-dark);
    margin-bottom: 3rem;
}
.rl-steps__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.rl-steps__item {
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--rl-transition);
}
.rl-steps__item.rl-visible {
    opacity: 1;
    transform: translateY(0);
}
.rl-steps__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rl-primary), var(--rl-purple));
    color: var(--rl-white);
    font-size: 1.25rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.rl-steps__item h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--rl-dark);
    margin-bottom: 0.5rem;
}
.rl-steps__item p {
    font-size: 0.875rem;
    color: var(--rl-gray-500);
    line-height: 1.6;
}
.rl-steps__connector {
    width: 60px;
    height: 2px;
    background: var(--rl-gray-300);
    margin-top: 24px;
    flex-shrink: 0;
}

/* === Final CTA === */
.rl-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rl-primary), #1e40af, var(--rl-purple));
}
.rl-final-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.rl-final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rl-white);
    margin-bottom: 0.75rem;
}
.rl-final-cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}
.rl-final-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Footer === */
.rl-footer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--rl-gray-100);
}
.rl-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--rl-gray-500);
}
.rl-footer__links {
    display: flex;
    gap: 1.5rem;
}
.rl-footer__links a {
    color: var(--rl-gray-500);
    text-decoration: none;
    transition: var(--rl-transition);
}
.rl-footer__links a:hover {
    color: var(--rl-primary);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 991px) {
    .rl-hero__title { font-size: 2.25rem; }
    .rl-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .rl-charts-row { grid-template-columns: 1fr; }
    .rl-value__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .rl-hero { padding: 5.5rem 0 2.5rem; }
    .rl-hero__title { font-size: 1.75rem; }
    .rl-hero__subtitle { font-size: 1rem; }
    .rl-hero__cta-group { flex-direction: column; }
    .rl-hero__cta-group .rl-btn { width: 100%; justify-content: center; }

    .rl-kpi-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .rl-kpi-card { padding: 1rem; }
    .rl-kpi-card__value { font-size: 1.375rem; }

    .rl-value__grid { grid-template-columns: 1fr; }
    .rl-coupon__card { padding: 2rem 1.5rem; }
    .rl-coupon__code-text { font-size: 1.125rem; }
    .rl-coupon__features { grid-template-columns: 1fr; }

    .rl-steps__grid { flex-direction: column; align-items: center; gap: 1.5rem; }
    .rl-steps__connector { width: 2px; height: 30px; }

    .rl-final-cta h2 { font-size: 1.5rem; }
    .rl-final-cta__buttons { flex-direction: column; }
    .rl-final-cta__buttons .rl-btn { width: 100%; justify-content: center; }

    .rl-footer__inner { flex-direction: column; gap: 0.75rem; text-align: center; }

    .rl-header__link { display: none; }

    .rl-metrics, .rl-value, .rl-coupon, .rl-steps, .rl-final-cta { padding: 3rem 0; }
    .rl-metrics__title, .rl-value__title, .rl-steps__title { font-size: 1.5rem; }

    .rl-donut-wrapper { flex-direction: column; text-align: center; }

    .rl-role-selector__chips { max-height: 150px; overflow-y: auto; padding-bottom: 0.5rem; }
}

@media (max-width: 480px) {
    .rl-kpi-row { grid-template-columns: 1fr; }
    .rl-hero__badge { font-size: 0.75rem; }
}

/* Visibility animation classes */
.rl-kpi-card, .rl-chart-card, .rl-value__card, .rl-steps__item {
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.rl-kpi-card:nth-child(2) { transition-delay: 0.1s; }
.rl-kpi-card:nth-child(3) { transition-delay: 0.2s; }
.rl-kpi-card:nth-child(4) { transition-delay: 0.3s; }
.rl-chart-card:nth-child(2) { transition-delay: 0.1s; }
.rl-chart-card:nth-child(3) { transition-delay: 0.2s; }
.rl-value__card:nth-child(2) { transition-delay: 0.1s; }
.rl-value__card:nth-child(3) { transition-delay: 0.2s; }
.rl-value__card:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   Platform Numbers Strip
   ============================================ */
.rl-numbers {
    padding: 2.5rem 0;
    background: var(--rl-white);
    border-bottom: 1px solid var(--rl-gray-100);
}
.rl-numbers__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.rl-numbers__item {
    text-align: center;
    flex: 1;
    padding: 0.5rem 1.5rem;
}
.rl-numbers__value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--rl-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--rl-primary), var(--rl-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rl-numbers__label {
    font-size: 0.8125rem;
    color: var(--rl-gray-500);
    font-weight: 500;
    margin-top: 0.25rem;
}
.rl-numbers__divider {
    width: 1px;
    height: 48px;
    background: var(--rl-gray-300);
    flex-shrink: 0;
}

/* ============================================
   Growth Chart (vertical bars)
   ============================================ */
.rl-growth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.rl-chart-card--wide {
    min-height: 0;
}
.rl-chart-card__badge {
    font-size: 0.6875rem;
    font-weight: 600;
    background: var(--rl-primary-50);
    color: var(--rl-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.rl-chart-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rl-growth-chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    height: 160px;
    padding-top: 1rem;
}
.rl-growth-chart__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.rl-growth-chart__bar-wrap {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.rl-growth-chart__bar {
    width: 100%;
    max-width: 42px;
    height: 0;
    background: linear-gradient(180deg, var(--rl-primary-light), var(--rl-primary));
    border-radius: 6px 6px 2px 2px;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 4px;
}
.rl-growth-chart__count {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--rl-primary);
    margin-bottom: 0.25rem;
}
.rl-growth-chart__label {
    font-size: 0.75rem;
    color: var(--rl-gray-500);
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ============================================
   Geographic Distribution Chart
   ============================================ */
.rl-geo-chart {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rl-geo-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.rl-geo-item__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}
.rl-geo-item__rank {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rl-primary-50);
    color: var(--rl-primary);
    font-size: 0.6875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rl-geo-item__name {
    font-weight: 600;
    color: var(--rl-gray-700);
    flex: 1;
}
.rl-geo-item__count {
    font-weight: 700;
    color: var(--rl-primary);
    font-size: 0.75rem;
}
.rl-geo-item__track {
    height: 6px;
    border-radius: 3px;
    background: var(--rl-gray-100);
    overflow: hidden;
}
.rl-geo-item__fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--rl-green), #10b981);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Social Proof Strip
   ============================================ */
.rl-proof {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}
.rl-proof__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.rl-proof__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--rl-white);
}
.rl-proof__item svg {
    flex-shrink: 0;
    opacity: 0.6;
}
.rl-proof__item strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
}
.rl-proof__item span {
    font-size: 0.8125rem;
    opacity: 0.7;
    font-weight: 400;
}

/* ============================================
   Responsive: new sections
   ============================================ */
@media (max-width: 991px) {
    .rl-numbers__grid { flex-wrap: wrap; gap: 1rem; }
    .rl-numbers__item { flex: 1 1 40%; }
    .rl-numbers__divider { display: none; }
    .rl-growth-row { grid-template-columns: 1fr; }
    .rl-proof__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 767px) {
    .rl-numbers { padding: 2rem 0; }
    .rl-numbers__value { font-size: 1.75rem; }
    .rl-numbers__grid { gap: 0.5rem; }
    .rl-growth-chart__bars { height: 120px; }
    .rl-proof__inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .rl-proof__item strong { font-size: 1.125rem; }
}

@media (max-width: 480px) {
    .rl-numbers__item { flex: 1 1 100%; }
    .rl-proof__inner { grid-template-columns: 1fr; gap: 1rem; }
}
