/* ===== V2 Landing — Bento UI Light Theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap');

:root {
    --v2-bg: #F5F4F0;
    --v2-card: #FFFFFF;
    --v2-text: #111827;
    --v2-text-muted: #6B7280;
    --v2-green: #16A34A;
    --v2-green-light: #DCFCE7;
    --v2-blue: #2563EB;
    --v2-blue-light: #DBEAFE;
    --v2-orange: #EA580C;
    --v2-orange-light: #FFF7ED;
    --v2-purple: #7C3AED;
    --v2-purple-light: #EDE9FE;
    --v2-amber: #D97706;
    --v2-amber-light: #FEF3C7;
    --v2-rose: #E11D48;
    --v2-rose-light: #FFE4E6;
    --v2-teal: #0D9488;
    --v2-teal-light: #CCFBF1;
    --v2-radius: 20px;
    --v2-radius-sm: 14px;
    --v2-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
    --v2-shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
    --v2-max-width: 1200px;
    --v2-gap: 16px;
}

/* ===== Reset & Base ===== */
.v2-page * { box-sizing: border-box; margin: 0; padding: 0; }

.v2-page {
    font-family: 'Golos Text', 'Manrope', system-ui, -apple-system, sans-serif;
    background: var(--v2-bg);
    color: var(--v2-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.v2-page img { max-width: 100%; display: block; }
.v2-page a { text-decoration: none; color: inherit; }

.v2-wrap {
    max-width: var(--v2-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Animations ===== */
@keyframes v2FadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes v2ScaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes v2Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes v2Pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes v2CountUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes v2Shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.v2-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-animate.v2-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Header ===== */
.v2-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 244, 240, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.v2-header-inner {
    max-width: var(--v2-max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.v2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--v2-text);
    min-width: 0;
    flex-shrink: 0;
}

.v2-logo img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.v2-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.v2-header-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

.v2-header-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--v2-text-muted);
    transition: all 0.2s ease;
}

.v2-header-social a:hover {
    background: rgba(0,0,0,0.05);
    color: var(--v2-text);
}

.v2-header-social svg {
    width: 22px;
    height: 22px;
}

.v2-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    color: var(--v2-text);
}

.v2-btn-login:hover {
    border-color: var(--v2-text);
    background: var(--v2-text);
    color: #fff;
}

/* ===== CTA Button ===== */
.v2-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--v2-green);
    color: #fff;
    font-family: 'Unbounded', 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.v2-btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200% 100%;
    animation: v2Shimmer 3s ease-in-out infinite;
}

.v2-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(22, 163, 74, 0.35);
}

.v2-btn-cta:active {
    transform: translateY(0);
}

.v2-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    background: transparent;
    color: var(--v2-green);
    font-family: 'Unbounded', 'Golos Text', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    border: 2px solid var(--v2-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v2-btn-cta-outline:hover {
    background: var(--v2-green);
    color: #fff;
}

/* ===== Bento Card Base ===== */
.v2-card {
    background: var(--v2-card);
    border-radius: var(--v2-radius);
    padding: 28px;
    box-shadow: var(--v2-shadow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.v2-card:hover {
    box-shadow: var(--v2-shadow-hover);
    transform: translateY(-2px);
}

.v2-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
    line-height: 1;
}

.v2-card-number {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
}

.v2-card-label {
    color: var(--v2-text-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== Section Titles ===== */
.v2-section {
    padding: 80px 0;
}

.v2-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.v2-section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 16ch;
}

.v2-section-title-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 20ch;
}

.v2-section-sub {
    color: var(--v2-text-muted);
    font-size: 18px;
    max-width: 48ch;
    line-height: 1.6;
}

.v2-section-sub-centered {
    text-align: center;
    margin: 0 auto 48px;
}

/* ===== HERO Section ===== */
.v2-hero {
    padding-top: 60px;
    padding-bottom: 40px;
}

.v2-hero-top {
    margin-bottom: 48px;
}

.v2-hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    max-width: 14ch;
    margin-bottom: 20px;
    animation: v2FadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-hero-title span {
    background: linear-gradient(135deg, var(--v2-green) 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-hero-sub {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--v2-text-muted);
    max-width: 38ch;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: v2FadeUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: v2FadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-hero-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--v2-text-muted);
    margin-top: 16px;
    animation: v2FadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-hero-hint svg {
    width: 16px;
    height: 16px;
    color: var(--v2-green);
}

/* ===== Bento Grid — Hero Stats ===== */
.v2-bento-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--v2-gap);
    animation: v2FadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.v2-bento-hero .v2-card:nth-child(1) {
    grid-column: span 2;
    background: linear-gradient(135deg, #065F46 0%, var(--v2-green) 100%);
    color: #fff;
}

.v2-bento-hero .v2-card:nth-child(1) .v2-card-label { color: rgba(255,255,255,0.8); }

.v2-bento-hero .v2-card:nth-child(1) .v2-card-icon {
    background: rgba(255,255,255,0.2);
}

.v2-bento-hero .v2-card:nth-child(2) .v2-card-icon { background: var(--v2-amber-light); }
.v2-bento-hero .v2-card:nth-child(3) .v2-card-icon { background: var(--v2-blue-light); }
.v2-bento-hero .v2-card:nth-child(4) .v2-card-icon { background: var(--v2-purple-light); }
.v2-bento-hero .v2-card:nth-child(5) .v2-card-icon { background: var(--v2-teal-light); }

.v2-bento-hero .v2-card:nth-child(1) .v2-card-number {
    font-size: clamp(36px, 5vw, 48px);
}

/* ===== HOW IT WORKS ===== */
.v2-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-gap);
    counter-reset: step-counter;
}

.v2-step-card {
    counter-increment: step-counter;
    text-align: center;
    padding: 36px 28px;
}

.v2-step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--v2-green-light);
    color: var(--v2-green);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.v2-step-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.v2-step-desc {
    color: var(--v2-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.v2-steps-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* ===== EARNINGS ===== */
.v2-earn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-gap);
    margin-bottom: 24px;
}

.v2-earn-card {
    text-align: center;
    padding: 36px 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.v2-earn-card:hover {
    border-color: var(--v2-green);
}

.v2-earn-input {
    font-size: 14px;
    color: var(--v2-text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.v2-earn-input span {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--v2-text);
    display: block;
    margin-top: 4px;
}

.v2-earn-arrow {
    color: var(--v2-green);
    font-size: 24px;
    margin: 12px 0;
    display: block;
}

.v2-earn-output {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 36px);
    color: var(--v2-green);
    line-height: 1.2;
}

.v2-earn-card:nth-child(3) {
    background: linear-gradient(135deg, #065F46, var(--v2-green));
    color: #fff;
}

.v2-earn-card:nth-child(3) .v2-earn-input { color: rgba(255,255,255,0.7); }
.v2-earn-card:nth-child(3) .v2-earn-input span { color: #fff; }
.v2-earn-card:nth-child(3) .v2-earn-output { color: #fff; }
.v2-earn-card:nth-child(3) .v2-earn-arrow { color: rgba(255,255,255,0.6); }
.v2-earn-card:nth-child(3):hover { border-color: transparent; }

.v2-earn-note {
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--v2-text-muted);
    padding: 16px;
    background: var(--v2-card);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
}

.v2-earn-note span {
    color: var(--v2-green);
}

/* ===== SOCIAL PROOF ===== */
.v2-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-gap);
    margin-bottom: var(--v2-gap);
}

.v2-proof-card {
    padding: 32px 28px;
}

.v2-proof-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1;
}

.v2-proof-card:nth-child(1) .v2-proof-avatar { background: var(--v2-blue-light); }
.v2-proof-card:nth-child(2) .v2-proof-avatar { background: var(--v2-rose-light); }
.v2-proof-card:nth-child(3) .v2-proof-avatar { background: var(--v2-purple-light); }

.v2-proof-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.v2-proof-city {
    color: var(--v2-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.v2-proof-amount {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--v2-green);
    line-height: 1.2;
}

.v2-proof-period {
    font-size: 14px;
    color: var(--v2-text-muted);
}

.v2-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-gap);
}

.v2-proof-stat {
    text-align: center;
    padding: 24px;
    background: var(--v2-card);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
}

.v2-proof-stat-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 4px;
    color: var(--v2-text);
}

.v2-proof-stat-label {
    font-size: 14px;
    color: var(--v2-text-muted);
    font-weight: 500;
}

/* ===== WHY US ===== */
.v2-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--v2-gap);
}

.v2-why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px;
}

.v2-why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.v2-why-card:nth-child(1) .v2-why-icon { background: var(--v2-green-light); }
.v2-why-card:nth-child(2) .v2-why-icon { background: var(--v2-amber-light); }
.v2-why-card:nth-child(3) .v2-why-icon { background: var(--v2-blue-light); }
.v2-why-card:nth-child(4) .v2-why-icon { background: var(--v2-purple-light); }

.v2-why-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
}

.v2-why-desc {
    color: var(--v2-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== WHO IT'S FOR ===== */
.v2-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v2-gap);
}

.v2-who-card {
    text-align: center;
    padding: 32px 20px;
}

.v2-who-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
}

.v2-who-card:nth-child(1) .v2-who-icon { background: var(--v2-blue-light); }
.v2-who-card:nth-child(2) .v2-who-icon { background: var(--v2-orange-light); }
.v2-who-card:nth-child(3) .v2-who-icon { background: var(--v2-teal-light); }
.v2-who-card:nth-child(4) .v2-who-icon { background: var(--v2-purple-light); }

.v2-who-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

/* ===== FAQ ===== */
.v2-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v2-faq-item {
    background: var(--v2-card);
    border-radius: var(--v2-radius);
    box-shadow: var(--v2-shadow);
    overflow: hidden;
}

.v2-faq-item details {
    width: 100%;
}

.v2-faq-item summary {
    padding: 22px 56px 22px 28px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.v2-faq-item summary::-webkit-details-marker { display: none; }

.v2-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--v2-green-light);
    color: var(--v2-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1;
}

.v2-faq-item details[open] summary::after {
    content: '−';
    background: var(--v2-green);
    color: #fff;
    transform: translateY(-50%) rotate(0deg);
}

.v2-faq-item summary:hover { color: var(--v2-green); }

.v2-faq-answer {
    padding: 0 28px 22px;
    color: var(--v2-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Details content animation */
.v2-faq-item details .v2-faq-answer {
    overflow: hidden;
}

/* ===== FINAL CTA ===== */
.v2-final-cta {
    background: linear-gradient(135deg, #065F46 0%, var(--v2-green) 50%, #059669 100%);
    border-radius: 28px;
    padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 64px);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.v2-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.v2-final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.v2-final-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    line-height: 1.15;
}

.v2-final-sub {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.v2-final-cta .v2-btn-cta {
    background: #fff;
    color: var(--v2-green);
    font-size: 18px;
    padding: 20px 48px;
    position: relative;
    z-index: 1;
}

.v2-final-cta .v2-btn-cta:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.v2-final-cta .v2-btn-cta::before {
    display: none;
}

/* ===== Footer ===== */
.v2-footer {
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.v2-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.v2-footer-copy {
    color: var(--v2-text-muted);
    font-size: 13px;
}

.v2-footer-legal {
    color: var(--v2-text-muted);
    font-size: 12px;
    max-width: 60ch;
    text-align: right;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .v2-bento-hero {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-bento-hero .v2-card:nth-child(1) {
        grid-column: span 2;
    }

    .v2-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-earn-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --v2-gap: 10px;
    }

    .v2-section {
        padding: 56px 0;
    }

    /* Bento hero: single column, horizontal compact cards */
    .v2-bento-hero {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .v2-bento-hero .v2-card:nth-child(1) {
        grid-column: auto;
    }

    .v2-bento-hero .v2-card:nth-child(5) {
        grid-column: auto;
    }

    /* Horizontal card layout on mobile */
    .v2-bento-hero .v2-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
    }

    .v2-bento-hero .v2-card-icon {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 22px;
        border-radius: 12px;
    }

    .v2-bento-hero .v2-card-number {
        font-size: 22px;
        margin-bottom: 2px;
        white-space: nowrap;
    }

    .v2-bento-hero .v2-card:nth-child(1) .v2-card-number {
        font-size: 26px;
    }

    .v2-bento-hero .v2-card-label {
        font-size: 13px;
    }

    .v2-steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .v2-earn-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto var(--v2-gap);
    }

    .v2-proof-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto var(--v2-gap);
    }

    .v2-proof-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .v2-proof-stat {
        padding: 16px 8px;
    }

    .v2-proof-stat-num {
        font-size: 18px;
    }

    .v2-proof-stat-label {
        font-size: 12px;
    }

    .v2-why-grid {
        grid-template-columns: 1fr;
    }

    .v2-who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v2-card {
        padding: 24px;
    }

    .v2-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .v2-btn-cta,
    .v2-btn-cta-outline {
        width: 100%;
        text-align: center;
    }

    .v2-final-cta {
        border-radius: 20px;
        margin-bottom: 48px;
    }

    .v2-header-inner {
        padding: 12px 16px;
    }

    .v2-logo {
        font-size: 15px;
        gap: 8px;
    }

    .v2-logo img {
        width: 32px;
        height: 32px;
    }

    .v2-btn-login {
        padding: 8px 14px;
        font-size: 13px;
    }

    .v2-header-social {
        display: none;
    }

    .v2-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .v2-footer-legal {
        text-align: center;
    }

    .v2-earn-output {
        font-size: 24px;
    }

    .v2-earn-note {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .v2-header-inner {
        padding: 10px 12px;
    }

    .v2-logo {
        font-size: 13px;
        gap: 6px;
    }

    .v2-logo img {
        width: 28px;
        height: 28px;
    }

    .v2-btn-login {
        padding: 7px 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    .v2-wrap {
        padding: 0 16px;
    }

    .v2-bento-hero .v2-card {
        padding: 16px 20px;
        gap: 12px;
    }

    .v2-bento-hero .v2-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .v2-bento-hero .v2-card-number {
        font-size: 19px;
    }

    .v2-bento-hero .v2-card:nth-child(1) .v2-card-number {
        font-size: 22px;
    }

    .v2-bento-hero .v2-card-label {
        font-size: 12px;
    }

    .v2-faq-item summary {
        padding: 18px 48px 18px 20px;
        font-size: 14px;
    }

    .v2-faq-answer {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .v2-who-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .v2-proof-stats {
        grid-template-columns: 1fr;
    }

    .v2-proof-stat-num {
        font-size: 22px;
    }

    .v2-proof-stat-label {
        font-size: 13px;
    }
}

/* ===== Providers Slider (reused from v1 with light theme tweaks) ===== */
.v2-providers {
    padding: 40px 0 0;
}

.v2-providers-title {
    text-align: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 32px;
    color: var(--v2-text-muted);
}

.v2-slider {
    width: 100%;
    height: 90px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.v2-slider-track {
    display: flex;
    width: 100%;
    min-width: calc(200px * 8);
    position: relative;
}

.v2-slider-item {
    width: 200px;
    height: 90px;
    position: absolute;
    left: 100%;
    animation: v2SliderRun 20s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--v2-card);
    border-radius: var(--v2-radius-sm);
    box-shadow: var(--v2-shadow);
    padding: 16px;
}

.v2-slider-item img {
    max-height: 36px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease;
}

.v2-slider-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes v2SliderRun {
    from { left: 100%; }
    to { left: calc(-200px); }
}

.v2-slider-item:nth-child(1) { animation-delay: calc((20s / 8) * -1); }
.v2-slider-item:nth-child(2) { animation-delay: calc((20s / 8) * -2); }
.v2-slider-item:nth-child(3) { animation-delay: calc((20s / 8) * -3); }
.v2-slider-item:nth-child(4) { animation-delay: calc((20s / 8) * -4); }
.v2-slider-item:nth-child(5) { animation-delay: calc((20s / 8) * -5); }
.v2-slider-item:nth-child(6) { animation-delay: calc((20s / 8) * -6); }
.v2-slider-item:nth-child(7) { animation-delay: calc((20s / 8) * -7); }
.v2-slider-item:nth-child(8) { animation-delay: calc((20s / 8) * -8); }

/* ===== Mid CTA ===== */
.v2-mid-cta {
    text-align: center;
    padding: 24px 0 0;
}
