/* ========================================
   JELLYCUBES LANDING PAGE STYLES
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Jellycubes VIBRANT Blue/Purple/Green Theme (Light Mode) */
    --bg-primary: #f0f8ff;
    --bg-secondary: #e8f4ff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f8ff;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #7070a0;

    --accent-primary: #00d4ff;
    --accent-secondary: #a855f7;
    --accent-glow: rgba(0, 212, 255, 0.5);

    --border-color: rgba(0, 212, 255, 0.3);
    --border-color-hover: rgba(0, 212, 255, 0.6);

    /* Jellycubes Palette - VIBRANT Blue/Purple/Green */
    --jelly-blue: #00d4ff;
    --jelly-cyan: #00c8e8;
    --jelly-mint: #00f5a0;
    --jelly-green: #00e890;
    --jelly-lavender: #a855f7;
    --jelly-purple: #8b5cf6;
    --jelly-light: #e0f7ff;

    /* Category colors */
    --crypto-color: #f7931a;
    --stocks-color: #5a5a6e;
    --prediction-color: #62d4e8;
    --ai-color: #b8a8f0;

    /* Gradients - VIBRANT */
    --gradient-main: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 50%, var(--jelly-mint) 100%);
    --gradient-soft: linear-gradient(135deg, #e0f7ff 0%, #f0e6ff 50%, #e0fff0 100%);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========================================
   DARK MODE COLORS
   ======================================== */

[data-theme="dark"] {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f24;
    --bg-card: #151530;
    --bg-card-hover: #1a1a40;

    --text-primary: #f0f0ff;
    --text-secondary: #b8b8d8;
    --text-muted: #8888aa;

    --border-color: rgba(0, 212, 255, 0.3);
    --border-color-hover: rgba(0, 212, 255, 0.5);

    --jelly-light: #1a1a35;
}

/* Dark mode specific overrides */
[data-theme="dark"] .hero-gradient {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 245, 160, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
}

[data-theme="dark"] .benefits::before,
[data-theme="dark"] .testimonials::before,
[data-theme="dark"] .faq::before,
[data-theme="dark"] .final-cta::before,
[data-theme="dark"] .social::before,
[data-theme="dark"] .footer::before {
    opacity: 0.6;
}

[data-theme="dark"] .video-placeholder {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(0, 245, 160, 0.15) 100%);
}

[data-theme="dark"] .benefit-icon.crypto {
    background: linear-gradient(135deg, #3d2a00 0%, #5c4000 100%);
    border-color: #8b6914;
}

[data-theme="dark"] .benefit-icon.stocks {
    background: linear-gradient(135deg, #1a3d1a 0%, #2a5c2a 100%);
    border-color: #4a8b4a;
}

[data-theme="dark"] .benefit-icon.prediction {
    background: linear-gradient(135deg, #0a3d4d 0%, #0f5c6d 100%);
    border-color: #1a8ba0;
}

[data-theme="dark"] .benefit-icon.ai {
    background: linear-gradient(135deg, #2d1a4d 0%, #4a2a7a 100%);
    border-color: #7a4aaa;
}

[data-theme="dark"] .testimonial-card:hover {
    background: linear-gradient(135deg, #1a1a40 0%, #252560 100%);
}

[data-theme="dark"] .legal-disclaimer {
    background: var(--bg-primary);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ACCESSIBILITY - Skip to Content
   ======================================== */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jelly-blue);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 16px;
    outline: 3px solid var(--jelly-purple);
    outline-offset: 2px;
}

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--jelly-purple);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Light mode: show moon, hide sun */
.theme-toggle .moon-icon {
    display: block;
    color: var(--jelly-purple);
}

.theme-toggle .sun-icon {
    display: none;
    color: var(--jelly-blue);
}

/* Dark mode: show sun, hide moon */
[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
    stroke: var(--jelly-mint);
}

[data-theme="dark"] .theme-toggle {
    background: var(--bg-card);
    border-color: var(--jelly-mint);
    box-shadow: 0 4px 20px rgba(0, 245, 160, 0.2);
}

[data-theme="dark"] .theme-toggle:hover {
    box-shadow: 0 6px 30px rgba(0, 245, 160, 0.4);
}

/* Mobile theme toggle */
@media (max-width: 768px) {
    .theme-toggle {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   ACCESSIBILITY - Focus States
   ======================================== */

/* Global focus-visible styles for all interactive elements */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--jelly-purple);
    outline-offset: 2px;
}

/* Remove default outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible) {
    outline: none;
}

/* ========================================
   ACCESSIBILITY - Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-content > * {
        animation: none;
        opacity: 1;
    }

    .benefit-card,
    .faq-item {
        opacity: 1;
        transform: none;
    }
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 40%, var(--jelly-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
}

.section-title-small {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 50%, var(--jelly-mint) 100%);
    background-size: 200% 100%;
    color: white;
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    border: 2px solid transparent;
    font-weight: 700;
    animation: buttonShimmer 3s ease infinite;
}

@keyframes buttonShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, var(--jelly-mint) 0%, var(--jelly-purple) 50%, var(--jelly-blue) 100%);
    background-size: 200% 100%;
}

.cta-button.primary:active {
    transform: translateY(0);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.cta-button .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 245, 160, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(168, 85, 247, 0.2) 0%, transparent 40%);
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 50%, var(--jelly-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-video {
    max-width: 800px;
    margin: 0 auto 32px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(0, 245, 160, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 3px dashed var(--jelly-blue);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
}

.video-placeholder:hover {
    border-color: var(--jelly-purple);
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.35);
    transform: scale(1.02);
}

.play-button {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 8px 35px rgba(0, 212, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 8px 45px rgba(0, 212, 255, 0.6), 0 0 60px rgba(139, 92, 246, 0.4); }
}

.video-placeholder:hover .play-button {
    background: linear-gradient(135deg, var(--jelly-mint) 0%, var(--jelly-purple) 100%);
    box-shadow: 0 10px 40px rgba(0, 245, 160, 0.5), 0 0 50px rgba(139, 92, 246, 0.5);
    transform: scale(1.15);
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.video-placeholder p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 500;
}

.trust-text {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Urgency text styling */
.urgency-text {
    font-size: 0.9375rem;
    color: var(--jelly-purple);
    font-weight: 600;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* CTA context text */
.cta-context {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.testimonial-cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 245, 160, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(135deg, var(--jelly-blue), var(--jelly-purple), var(--jelly-mint));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(139, 92, 246, 0.15);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card.visible:hover {
    transform: translateY(-8px) scale(1.02);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefit-icon.crypto {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ffcc80;
}

.benefit-icon.stocks {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #a5d6a7;
}

.benefit-icon.prediction {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border: 2px solid #80deea;
}

.benefit-icon.ai {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 2px solid #ce93d8;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-card li:last-child {
    margin-bottom: 0;
}

.benefit-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jelly-blue);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 245, 160, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-title {
    margin-bottom: 48px;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.testimonials-track {
    overflow: hidden;
    flex: 1;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 2px solid rgba(0, 212, 255, 0.25);
    transition: all 0.3s ease;
    width: calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.testimonial-card:hover {
    border-color: var(--jelly-purple);
    background: linear-gradient(135deg, #fff 0%, #f5f0ff 100%);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
    transform: translateY(-6px);
}

.testimonial-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
}

.testimonial-nav:hover {
    background: linear-gradient(135deg, var(--jelly-mint) 0%, var(--jelly-purple) 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.4);
}

.testimonial-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-nav:disabled:hover {
    transform: none;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), 0 0 20px rgba(139, 92, 246, 0.3);
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background: var(--jelly-purple);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.testimonial-dot.active {
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 50%, var(--jelly-mint) 100%);
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0, 212, 255, 0.5);
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    color: var(--jelly-blue);
}

.testimonial-content p::after {
    content: '"';
    color: var(--jelly-blue);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    color: white;
    box-shadow: 0 3px 15px rgba(0, 212, 255, 0.4);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.author-result {
    color: var(--text-muted);
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .testimonial-card {
        width: calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        width: 100%;
        min-width: 100%;
        aspect-ratio: auto;
        padding: 20px;
    }

    .testimonials-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .testimonials-track {
        width: 100%;
        overflow: hidden;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-nav.prev {
        display: none;
    }

    .testimonial-nav-wrapper {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-content p {
        font-size: 0.9375rem;
    }

    .dragon-character {
        display: none;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: visible;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 70% 10%, rgba(0, 245, 160, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 90%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 60%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Fish Characters - FAQ Section */
.fish-character {
    position: absolute;
    width: 360px;
    height: 360px;
    z-index: 10;
    top: 80px;
}

.fish-character img {
    width: 100%;
    height: auto;
}

/* Left character - faces RIGHT toward "Got Questions" */
.fish-character.fish-left {
    left: 3%;
    animation: fishingCastLeft 8s ease-in-out infinite;
}

/* Right character - faces LEFT toward "Got Questions" */
.fish-character.fish-right {
    right: 3%;
    transform: scaleX(-1);
    animation: fishingCastRight 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Slow fishing rod cast animation - pull back, throw forward, reel in */
@keyframes fishingCastLeft {
    0%, 100% {
        transform: rotate(0deg);
    }
    /* Pull rod back */
    10% {
        transform: rotate(-15deg) translateX(-10px);
    }
    15% {
        transform: rotate(-20deg) translateX(-15px);
    }
    /* Throw forward */
    20% {
        transform: rotate(12deg) translateX(10px);
    }
    25% {
        transform: rotate(8deg) translateX(5px);
    }
    /* Hold and reel in slowly */
    30% {
        transform: rotate(6deg);
    }
    50% {
        transform: rotate(4deg);
    }
    70% {
        transform: rotate(2deg);
    }
    85% {
        transform: rotate(0deg);
    }
}

@keyframes fishingCastRight {
    0%, 100% {
        transform: scaleX(-1) rotate(0deg);
    }
    /* Pull rod back */
    10% {
        transform: scaleX(-1) rotate(15deg) translateX(10px);
    }
    15% {
        transform: scaleX(-1) rotate(20deg) translateX(15px);
    }
    /* Throw forward */
    20% {
        transform: scaleX(-1) rotate(-12deg) translateX(-10px);
    }
    25% {
        transform: scaleX(-1) rotate(-8deg) translateX(-5px);
    }
    /* Hold and reel in slowly */
    30% {
        transform: scaleX(-1) rotate(-6deg);
    }
    50% {
        transform: scaleX(-1) rotate(-4deg);
    }
    70% {
        transform: scaleX(-1) rotate(-2deg);
    }
    85% {
        transform: scaleX(-1) rotate(0deg);
    }
}

@media (max-width: 1200px) {
    .fish-character {
        width: 280px;
        height: 280px;
    }

    .fish-character.fish-left {
        left: 1%;
    }

    .fish-character.fish-right {
        right: 1%;
    }
}

@media (max-width: 900px) {
    .fish-character {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .fish-character {
        display: none;
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    font-family: var(--font-family);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-muted);
    pointer-events: auto;
    padding: 10px;
    margin: -10px;
    box-sizing: content-box;
    cursor: pointer;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-link {
    margin-top: 12px;
}

.faq-link a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.faq-link a:hover {
    color: var(--jelly-lavender);
    text-decoration: underline;
}

.faq-answer-with-image {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.founder-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.faq-answer-text {
    flex: 1;
}

.faq-answer-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.faq-answer-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .faq-answer-with-image {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 245, 160, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta .section-title {
    margin-bottom: 32px;
}

/* Cooking Jellycube */
.cooking-jellycube-container {
    position: absolute;
    bottom: 20px;
    right: 20%;
    width: 180px;
    height: 200px;
    z-index: 1;
}

.cooking-jellycube {
    position: relative;
    width: 100%;
    height: 100%;
}

.cooking-jellycube img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    animation: cookingMotion 0.8s ease-in-out infinite;
}

@keyframes cookingMotion {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* ========================================
   BOXER CHARACTER - Prediction Markets
   ======================================== */

.benefit-card-with-character {
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: visible;
}

.benefit-card-with-character .benefit-card-content {
    padding: 40px;
    flex: 1;
}

.boxer-character {
    position: absolute;
    left: -320px;
    top: 50%;
    transform: translateY(-30%);
    width: 360px;
    height: 360px;
    z-index: 10;
}

.boxer-character img {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease;
}

/* Punch animation on card hover */
.benefit-card-with-character:hover .boxer-character img {
    animation: punchAnimation 0.5s ease-out;
}

@keyframes punchAnimation {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(30px) rotate(10deg);
    }
    40% {
        transform: translateX(60px) rotate(20deg);
    }
    50% {
        transform: translateX(70px) rotate(25deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

/* Card rumble when punched */
.benefit-card-with-character:hover {
    animation: cardRumble 0.6s ease-out 0.2s;
}

@keyframes cardRumble {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    10% {
        transform: translateX(12px) rotate(2deg);
    }
    20% {
        transform: translateX(-10px) rotate(-2deg);
    }
    30% {
        transform: translateX(10px) rotate(1.5deg);
    }
    40% {
        transform: translateX(-8px) rotate(-1.5deg);
    }
    50% {
        transform: translateX(6px) rotate(1deg);
    }
    60% {
        transform: translateX(-5px) rotate(-1deg);
    }
    70% {
        transform: translateX(4px) rotate(0.5deg);
    }
    80% {
        transform: translateX(-3px) rotate(-0.5deg);
    }
    90% {
        transform: translateX(2px) rotate(0.25deg);
    }
}

/* Smash mark effect - ONLY for prediction markets boxer */
.benefit-card-with-character.prediction-card::after {
    content: '💥';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 40px;
    opacity: 0;
    z-index: 15;
    pointer-events: none;
    transition: none;
}

.benefit-card-with-character.prediction-card:hover::after {
    animation: smashMark 0.6s ease-out 0.25s;
}

@keyframes smashMark {
    0% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(-50%) scale(1.5);
        opacity: 1;
    }
    40% {
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

/* ========================================
   POKER CHARACTER - Crypto
   ======================================== */

.poker-character {
    position: absolute;
    left: -320px;
    top: 50%;
    transform: translateY(-40%);
    width: 360px;
    height: 360px;
    z-index: 10;
}

.poker-character img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.crypto-card:hover .poker-character img {
    animation: pushChips 0.6s ease-out;
}

@keyframes pushChips {
    0% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(40px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Poker chips */
.poker-chips {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 100px;
    height: 100px;
}

.chip {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.chip-1 {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border: 3px solid #ffcc00;
}

.chip-2 {
    background: linear-gradient(135deg, #4444ff, #0000cc);
    border: 3px solid #ffcc00;
    left: 20px;
}

.chip-3 {
    background: linear-gradient(135deg, #44ff44, #00cc00);
    border: 3px solid #ffcc00;
    left: 40px;
}

.chip-4 {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    border: 3px solid #ffffff;
    left: 10px;
    top: 10px;
}

.chip-5 {
    background: linear-gradient(135deg, #ff44ff, #cc00cc);
    border: 3px solid #ffcc00;
    left: 30px;
    top: 10px;
}

.chip-6 {
    background: linear-gradient(135deg, #00cccc, #009999);
    border: 3px solid #ffcc00;
    left: 50px;
    top: 5px;
}

.crypto-card:hover .chip {
    animation: chipsFall 2s ease-out forwards;
}

.crypto-card:hover .chip-1 { animation-delay: 0.3s; }
.crypto-card:hover .chip-2 { animation-delay: 0.4s; }
.crypto-card:hover .chip-3 { animation-delay: 0.5s; }
.crypto-card:hover .chip-4 { animation-delay: 0.35s; }
.crypto-card:hover .chip-5 { animation-delay: 0.45s; }
.crypto-card:hover .chip-6 { animation-delay: 0.55s; }

@keyframes chipsFall {
    0% {
        opacity: 1;
        transform: translateX(80px) translateY(0);
    }
    25% {
        opacity: 1;
        transform: translateX(140px) translateY(30px);
    }
    50% {
        opacity: 1;
        transform: translateX(160px) translateY(120px);
    }
    75% {
        opacity: 1;
        transform: translateX(165px) translateY(140px);
    }
    90% {
        opacity: 1;
        transform: translateX(165px) translateY(140px);
    }
    100% {
        opacity: 0;
        transform: translateX(165px) translateY(140px);
    }
}

/* ========================================
   TRUMP CHARACTER - Stocks (RIGHT SIDE)
   ======================================== */

.trump-character {
    position: absolute;
    right: -320px;
    top: 50%;
    transform: translateY(-40%);
    width: 360px;
    height: 360px;
    z-index: 10;
}

.trump-character img {
    width: 100%;
    height: auto;
}

.stocks-card:hover .trump-character img {
    animation: trumpHeadbutt 1.5s ease-in-out;
}

@keyframes trumpHeadbutt {
    /* Start normal */
    0% {
        transform: rotate(0deg) translateX(0);
    }
    /* Lean back to prepare */
    25% {
        transform: rotate(8deg) translateX(15px);
    }
    /* Headbutt forward into the box - IMPACT */
    45% {
        transform: rotate(-12deg) translateX(-40px);
    }
    /* Return to normal smoothly */
    70% {
        transform: rotate(-3deg) translateX(-15px);
    }
    100% {
        transform: rotate(0deg) translateX(0);
    }
}

/* Stocks card rumble - only after impact */
.stocks-card:hover {
    animation: stocksRumble 1.5s ease-in-out;
}

@keyframes stocksRumble {
    0%, 44% {
        transform: translateX(0);
    }
    /* Rumble starts at impact (45%) */
    46% {
        transform: translateX(8px);
    }
    48% {
        transform: translateX(-6px);
    }
    50% {
        transform: translateX(5px);
    }
    52% {
        transform: translateX(-4px);
    }
    54% {
        transform: translateX(3px);
    }
    56% {
        transform: translateX(-2px);
    }
    58% {
        transform: translateX(1px);
    }
    60%, 100% {
        transform: translateX(0);
    }
}

/* Cash/Money falling from stocks box */
.cash-bills {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 20;
}

.cash {
    position: absolute;
    top: -40px;
    font-size: 32px;
    opacity: 0;
}

.cash-1 { left: 15%; }
.cash-2 { left: 30%; }
.cash-3 { left: 50%; }
.cash-4 { left: 65%; }
.cash-5 { left: 80%; }

.stocks-card:hover .cash-1 {
    animation: cashFall 2.2s ease-in 0.35s forwards;
}
.stocks-card:hover .cash-2 {
    animation: cashFall 2s ease-in 0.45s forwards;
}
.stocks-card:hover .cash-3 {
    animation: cashFall 2.3s ease-in 0.4s forwards;
}
.stocks-card:hover .cash-4 {
    animation: cashFall 2.1s ease-in 0.5s forwards;
}
.stocks-card:hover .cash-5 {
    animation: cashFall 2s ease-in 0.55s forwards;
}

@keyframes cashFall {
    0% {
        opacity: 1;
        top: -40px;
        transform: rotate(0deg) translateX(0);
    }
    20% {
        opacity: 1;
        transform: rotate(20deg) translateX(10px);
    }
    40% {
        opacity: 1;
        transform: rotate(-15deg) translateX(-15px);
    }
    60% {
        opacity: 1;
        top: 50%;
        transform: rotate(25deg) translateX(10px);
    }
    80% {
        opacity: 1;
        top: 75%;
        transform: rotate(-10deg) translateX(-5px);
    }
    95% {
        opacity: 1;
        top: 90%;
    }
    100% {
        opacity: 0;
        top: 100%;
        transform: rotate(15deg);
    }
}

/* ========================================
   AI CHARACTER - AI Section (RIGHT SIDE)
   ======================================== */

.ai-character {
    position: absolute;
    right: -320px;
    top: 50%;
    transform: translateY(-40%);
    width: 360px;
    height: 360px;
    z-index: 10;
}

.ai-character img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Laser beam - shoots LEFT from AI character toward boxer */
.laser-beam {
    position: absolute;
    top: 45%;
    right: 50%;
    width: 0;
    height: 10px;
    background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
    box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff3333;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 5px;
}

.ai-card.laser-active .laser-beam {
    animation: laserShootLeft 0.8s ease-out forwards;
}

.ai-card.laser-active .ai-character img {
    animation: laserRecoil 0.4s ease-out;
}

@keyframes laserShootLeft {
    0% {
        width: 0;
        opacity: 1;
    }
    25% {
        width: 2500px;
        opacity: 1;
    }
    70% {
        width: 2500px;
        opacity: 1;
    }
    100% {
        width: 2500px;
        opacity: 0;
    }
}

@keyframes laserRecoil {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Boxer hit reaction - gets knocked back by laser */
.boxer-character.hit img {
    animation: boxerHit 0.8s ease-out !important;
}

@keyframes boxerHit {
    0% {
        transform: translateX(0) rotate(0deg);
    }
    20% {
        transform: translateX(-60px) rotate(-20deg);
    }
    40% {
        transform: translateX(-80px) rotate(-25deg);
    }
    60% {
        transform: translateX(-50px) rotate(-15deg);
    }
    80% {
        transform: translateX(-20px) rotate(-5deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@media (max-width: 1200px) {
    .poker-character {
        left: -240px;
        width: 280px;
        height: 280px;
    }
    .trump-character,
    .ai-character {
        right: -240px;
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 900px) {
    .poker-character {
        left: -180px;
        width: 220px;
        height: 220px;
    }
    .trump-character,
    .ai-character {
        right: -180px;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .poker-character,
    .trump-character,
    .ai-character,
    .poker-chips,
    .cash-bills {
        display: none;
    }
}

@media (max-width: 1200px) {
    .boxer-character {
        left: -200px;
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 900px) {
    .boxer-character {
        left: -150px;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .boxer-character {
        display: none;
    }

    .benefit-card-with-character {
        flex-direction: column;
    }

    .benefit-card-with-character .benefit-card-content {
        padding: 24px;
    }

    .benefit-card-with-character::after {
        display: none;
    }
}

/* ========================================
   DRAGON CHARACTER - Testimonials
   ======================================== */

.testimonial-nav-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dragon-character {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    width: 80px;
    height: 80px;
    z-index: 10;
}

.dragon-character img {
    width: 100%;
    height: auto;
    animation: dragonBounceFlip 2.5s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes dragonBounceFlip {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    8% {
        transform: translateY(5px) rotate(0deg);
    }
    30% {
        transform: translateY(-55px) rotate(0deg);
    }
    38% {
        transform: translateY(-60px) rotate(360deg);
    }
    55% {
        transform: translateY(-40px) rotate(360deg);
    }
    80% {
        transform: translateY(-5px) rotate(360deg);
    }
    90% {
        transform: translateY(5px) rotate(360deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Button squish when dragon lands */
.testimonial-nav-wrapper .testimonial-nav.next {
    animation: buttonSquish 2.5s ease-in-out infinite;
}

@keyframes buttonSquish {
    0%, 15% {
        transform: scaleY(1) scaleX(1);
    }
    10% {
        transform: scaleY(0.9) scaleX(1.1);
    }
    85%, 100% {
        transform: scaleY(1) scaleX(1);
    }
    90% {
        transform: scaleY(0.9) scaleX(1.1);
    }
}

@media (max-width: 600px) {
    .dragon-character {
        width: 60px;
        height: 60px;
        top: -50px;
    }
}

/* Steam effect */
.steam {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}

.steam-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(8px);
    animation: steamRise 2s ease-out infinite;
}

.steam-particle:nth-child(1) {
    left: 0;
    animation-delay: 0s;
}

.steam-particle:nth-child(2) {
    left: 20px;
    animation-delay: 0.5s;
}

.steam-particle:nth-child(3) {
    left: 40px;
    animation-delay: 1s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-60px) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 900px) {
    .cooking-jellycube-container {
        width: 140px;
        height: 160px;
        right: 5%;
        bottom: 10px;
    }
}

@media (max-width: 600px) {
    .cooking-jellycube-container {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 40px auto 0;
        width: 150px;
        height: 170px;
    }
}

/* ========================================
   SOCIAL SECTION
   ======================================== */

.social {
    padding: 60px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    width: 52px;
    height: 52px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jelly-blue);
    text-decoration: none;
    border: 2px solid rgba(0, 212, 255, 0.35);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.social-link:hover {
    color: white;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    border-color: transparent;
    transform: translateY(-6px) scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
}

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

/* ========================================
   FOOTER
   ======================================== */

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top-section {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: linear-gradient(135deg, var(--jelly-blue) 0%, var(--jelly-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
}

.back-to-top-btn span {
    display: none;
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
    animation: bounceUp 1.5s ease-in-out infinite;
}

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

.footer {
    padding: 40px 0 30px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 245, 160, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-disclaimer {
    max-width: 800px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.legal-disclaimer p {
    color: var(--text-muted);
    font-size: 0.6875rem;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

.legal-disclaimer strong {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, var(--bg-primary) 70%, transparent);
    z-index: 100;
}

.mobile-sticky-cta .cta-button {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    .footer {
        padding-bottom: 100px;
    }
}

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .urgency-text {
        font-size: 0.8125rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-video {
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .benefit-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .benefit-header h3 {
        font-size: 1.25rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 16px 28px;
        font-size: 1.0625rem;
    }

    .section-subtitle {
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }

    .section-cta {
        margin-top: 40px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .legal-disclaimer {
        padding: 20px;
    }

    .legal-disclaimer p {
        font-size: 0.75rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }

/* Stagger animations for cards */
.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card:nth-child(4) { transition-delay: 0.4s; }

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-item:nth-child(4) { transition-delay: 0.25s; }

/* ========================================
   JELLYCUBE ANIMATIONS
   ======================================== */

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

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(2deg); }
    75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 30px rgba(98, 212, 232, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(184, 168, 240, 0.5); }
}

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

