/* ========================================
   Reachify - Premium Clipping Agency
   Colors from Logo: Cyan, Blue, Purple, Magenta, Pink
======================================== */

:root {
    --cyan: #00D4FF;
    --blue: #4B7BFF;
    --purple: #8B5CF6;
    --magenta: #EC4899;
    --pink: #F9A8D4;
    
    --bg: #050507;
    --bg-elevated: #0a0a0f;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    
    --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 25%, var(--purple) 50%, var(--magenta) 75%, var(--pink) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========================================
   Background Effects
======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--purple);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    animation: float1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: 30%;
    right: -10%;
    animation: float2 25s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--magenta);
    bottom: 10%;
    left: 10%;
    animation: float3 22s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(30px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

/* ========================================
   Navigation
======================================== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 6rem;
    position: relative;
    z-index: 100;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-login:hover {
    color: var(--text);
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: var(--text);
    color: var(--bg);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

/* ========================================
   Hero Main
======================================== */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 6rem;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    padding: 2rem 0;
    max-width: 520px;
    flex-shrink: 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cyan);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-badge span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Title */
.hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn svg {
    transition: transform 0.25s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Hero iPhone - Screenshot Display
======================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.phone-wrapper {
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.phone-glow {
    position: absolute;
    width: 280px;
    height: 500px;
    background: var(--gradient);
    filter: blur(100px);
    opacity: 0.25;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

/* iPhone Frame */
.iphone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a1e;
    border-radius: 52px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* Side buttons */
.iphone-frame::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 130px;
    width: 3px;
    height: 80px;
    background: #2a2a2e;
    border-radius: 0 2px 2px 0;
}

.iphone-frame::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 110px;
    width: 3px;
    height: 35px;
    background: #2a2a2e;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 55px 0 #2a2a2e, 0 100px 0 #2a2a2e;
}

/* Screen */
.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Floating Cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 20;
}

.float-emoji {
    font-size: 22px;
}

.float-label {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

.float-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.float-value.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-1 {
    top: 6%;
    right: -30px;
    animation: floatUp 5s ease-in-out infinite;
}

.float-2 {
    bottom: 15%;
    left: -25px;
    animation: floatDown 6s ease-in-out infinite;
}

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

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(20, 20, 25, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 24px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.card-1 {
    top: 10%;
    right: -20px;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 45%;
    left: -40px;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    right: -30px;
    animation: floatCard3 5s ease-in-out infinite;
}

.card-3 .card-value {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(10px) rotate(1deg); }
}

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

/* ========================================
   Trusted Section
======================================== */
.trusted-section {
    padding: 2rem 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    overflow: hidden;
    width: 100%;
}

.trusted-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Marquee Animation */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.logo-item {
    font-size: 1rem;
    flex-shrink: 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1200px) {
    .nav {
        padding: 1rem 2rem;
    }
    
    .hero-main {
        padding: 2rem;
        gap: 2rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-description {
        max-width: 560px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .nav {
        padding: 1.25rem 3rem;
    }
    
    .hero-main {
        padding: 2rem 3rem;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-login {
        display: none;
    }
    
    .hero-main {
        padding: 1rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trusted-section {
        padding: 2rem 0;
    }
    
    .marquee-track {
        gap: 2rem;
    }
    
    .logo-item {
        font-size: 0.85rem;
    }
}

/* ========================================
   HOW IT WORKS - STICKY SCROLL
======================================== */
.how-section {
    background: var(--bg);
    position: relative;
}

/* Scroll container creates the scroll height for pinning */
.how-scroll-container {
    height: 300vh; /* Gives us 3 "pages" of scroll */
    position: relative;
}

/* Sticky wrapper stays pinned to viewport */
.how-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 4rem;
}

.how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.how-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.how-title em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Content Layout */
.how-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Steps Column */
.steps-column {
    display: flex;
    flex-direction: column;
}

.steps-track {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Step Item - Modern minimal style */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem 0;
    opacity: 0.3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-item.active,
.step-item.completed {
    opacity: 1;
}

.step-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    min-width: 24px;
    padding-top: 0.25rem;
    transition: color 0.3s ease;
}

.step-item.active .step-num,
.step-item.completed .step-num {
    color: var(--purple);
}

.step-body {
    flex: 1;
}

.step-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.step-item.active .step-body h3 {
    color: var(--text);
}

.step-item:not(.active) .step-body h3 {
    color: var(--text-secondary);
}

.step-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 300px;
    transition: color 0.3s ease;
}

.step-item.active .step-body p {
    color: var(--text-secondary);
}

/* Progress bar under each step */
.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s linear;
}

.step-item:last-child .step-progress {
    display: none;
}

/* Visual Column - iPhone Wrapper */
.visual-column {
    display: flex;
    justify-content: center;
    position: relative;
}

/* How It Works - Clean iPhone */
.how-device {
    position: relative;
}

.how-phone {
    width: 260px;
    height: 520px;
    background: #1a1a1e;
    border-radius: 42px;
    padding: 10px;
    box-shadow: 
        0 40px 80px -20px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255,255,255,0.08);
}

.how-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    padding: 50px 14px 28px;
}

.how-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 12px;
}

.how-home-bar {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

/* How It Works Panels */
.how-panel {
    position: absolute;
    inset: 50px 14px 28px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.how-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.panel-header {
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.panel-header .badge {
    font-size: 10px;
    background: var(--gradient);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
}

/* Panel List Rows */
.panel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.list-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(8px);
}

.how-panel.active .list-row {
    animation: slideUp 0.35s ease forwards;
    animation-delay: var(--d);
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.row-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.row-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.row-icon.tt { background: #000; border: 1px solid rgba(255,255,255,0.1); }
.row-icon.yt { background: #FF0000; }
.row-icon.ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }

.row-text {
    flex: 1;
}

.row-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.row-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.row-check {
    width: 22px;
    height: 22px;
    background: #30D158;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.row-add {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cyan);
}

.sync-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    font-size: 11px;
    color: var(--cyan);
}

.sync-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Campaign Rows */
.campaign-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    position: relative;
    opacity: 0;
    transform: translateY(8px);
}

.how-panel.active .campaign-row {
    animation: slideUp 0.35s ease forwards;
    animation-delay: var(--d);
}

.campaign-row.selected {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.camp-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.camp-text {
    flex: 1;
}

.camp-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.camp-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.camp-rate {
    font-size: 14px;
    font-weight: 700;
    color: var(--cyan);
}

.camp-rate small {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

.camp-check {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

/* Earnings Panel */
.earnings-display {
    text-align: center;
    margin-bottom: 16px;
}

.earn-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.earn-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.earn-trend {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #30D158;
    margin-top: 4px;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 14px;
}

.mini-chart .bar {
    flex: 1;
    height: var(--h);
    background: rgba(139, 92, 246, 0.3);
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.how-panel.active .mini-chart .bar {
    transform: scaleY(1);
}

.mini-chart .bar.active {
    background: var(--gradient);
}

.withdraw-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* CTA - After sticky section */
.how-cta-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem 8rem;
    background: var(--bg);
}

.how-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive for How Section */
@media (max-width: 1024px) {
    .how-scroll-container {
        height: auto;
    }
    
    .how-sticky {
        position: relative;
        height: auto;
        padding: 6rem 0;
    }
    
    .how-inner {
        padding: 0 2rem;
    }
    
    .how-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-column {
        order: -1;
    }
    
    .visual-container {
        position: relative;
        max-width: 320px;
        aspect-ratio: auto;
    }
    
    .visual-panel {
        position: relative;
        display: none;
    }
    
    .visual-panel.active,
    .visual-panel:first-child {
        display: flex;
    }
    
    .steps-column {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-item {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .how-sticky {
        padding: 4rem 0;
    }
    
    .how-inner {
        padding: 0 1.5rem;
    }
    
    .how-header {
        margin-bottom: 2.5rem;
    }
    
    .step-body p {
        font-size: 0.85rem;
    }
    
    .how-cta-wrapper {
        padding: 3rem 1.5rem 5rem;
    }
}

/* ========================================
   SHARED SECTION STYLES
======================================== */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   FEATURES BENTO GRID
======================================== */
.features-section {
    padding: 8rem 0;
    background: var(--bg);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.bento-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.bento-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: var(--purple);
}

.bento-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bento-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 280px;
}

.bento-visual {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    pointer-events: none;
}

/* Analytics Visual */
.bento-large .bento-visual {
    bottom: 2rem;
    right: 2rem;
    width: 60%;
}

.mini-chart {
    opacity: 0.8;
}

.chart-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 1.5s ease;
}

.bento-card.revealed .chart-line {
    stroke-dashoffset: 0;
}

.stat-pills {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyan);
}

.pill-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Payout Visual */
.payout-visual {
    bottom: 1.25rem;
    right: 1.25rem;
}

.payout-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 140px;
}

.payout-amount {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.payout-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.payout-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.bento-card.revealed .payout-bar {
    width: 75%;
}

.payout-status {
    font-size: 0.7rem;
    color: var(--cyan);
}

/* Match Visual */
.match-visual {
    bottom: 1rem;
    right: 1rem;
}

.match-stack {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.match-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transform: translateX(calc(var(--i) * 10px));
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: calc(var(--i) * 0.1s);
}

.bento-card.revealed .match-card {
    opacity: 1;
    transform: translateX(0);
}

.match-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.match-card span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Platform Visual */
.platform-visual {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
}

.platform-row {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.platform-badge {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    transition-delay: var(--delay);
}

.bento-card.revealed .platform-badge {
    opacity: 1;
    transform: scale(1);
}

.platform-badge svg {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
}

.platform-badge:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.platform-badge:hover svg {
    color: var(--text);
}

/* Shield Visual */
.shield-visual {
    bottom: 1.5rem;
    right: 1.5rem;
}

.shield-icon {
    width: 64px;
    height: 64px;
    opacity: 0.15;
}

.shield-icon svg {
    width: 100%;
    height: 100%;
    color: var(--purple);
}

/* Bento Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 5rem 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }
    
    .bento-visual {
        display: none;
    }
}

/* ========================================
   TESTIMONIALS - INFINITE SCROLL
======================================== */
.testimonials-section {
    padding: 8rem 0;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-scroll {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.track-left .testimonial-scroll {
    animation: scrollLeft 40s linear infinite;
}

.track-right .testimonial-scroll {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonial-track:hover .testimonial-scroll {
    animation-play-state: paused;
}

.testimonial-card {
    flex-shrink: 0;
    width: 360px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.testimonial-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

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

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

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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }
    
    .testimonial-card {
        width: 300px;
    }
}

/* ========================================
   BOOK A CALL SECTION
======================================== */
.book-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a12 100%);
    position: relative;
    overflow: hidden;
}

.book-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--purple);
    filter: blur(150px);
    opacity: 0.1;
    pointer-events: none;
}

.book-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Content */
.book-content {
    padding-top: 1rem;
}

.book-header {
    margin-bottom: 3rem;
}

.book-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 480px;
}

/* Features */
.book-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.book-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bf-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bf-icon svg {
    width: 22px;
    height: 22px;
    color: var(--purple);
}

.bf-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bf-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Social Proof */
.book-social-proof {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.brand-logos-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-logo-item {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.brand-logo-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Booking Card */
.book-card-wrapper {
    position: relative;
}

.book-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.book-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.book-card-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.book-card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Calendar */
.book-calendar {
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-month {
    font-size: 0.95rem;
    font-weight: 600;
}

.cal-nav {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cal-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.cal-nav svg {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.cal-day-header {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
}

.cal-day:not(.empty):not(.disabled):hover {
    background: rgba(139, 92, 246, 0.15);
    color: var(--text);
}

.cal-day.selected {
    background: var(--gradient);
    color: white;
    font-weight: 600;
}

.cal-day.disabled {
    color: var(--text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Time Slots */
.time-slots {
    margin-bottom: 1.5rem;
}

.slots-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.time-slot {
    padding: 0.625rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text);
}

.time-slot.selected {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--purple);
    color: var(--text);
}

/* Form */
.book-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.05);
}

.book-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.book-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.book-submit svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.book-submit:hover svg {
    transform: translateX(4px);
}

.book-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.book-note svg {
    width: 14px;
    height: 14px;
    color: var(--cyan);
}

/* Floating Elements */
.book-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.float-1 {
    top: -20px;
    right: 40px;
    animation: floatBook1 5s ease-in-out infinite;
}

.float-2 {
    bottom: 40px;
    left: -30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    animation: floatBook2 6s ease-in-out infinite;
}

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

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

.float-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #EA580C);
}

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

.float-name {
    font-size: 0.85rem;
    font-weight: 600;
}

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

.float-stat {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .book-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .book-card-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .book-float {
        display: none;
    }
}

@media (max-width: 768px) {
    .book-section {
        padding: 5rem 0;
    }
    
    .brand-logos-row {
        flex-wrap: wrap;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 8rem 0;
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: var(--purple);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        padding-right: 1rem;
    }
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a0a12 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--purple);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.final-cta-content h2 em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.btn-large {
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stats Grid */
.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.cta-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-stat-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.cta-stat-value {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2rem;
    display: block;
    margin-bottom: 0.25rem;
    background: var(--gradient-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .final-cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .final-cta-actions {
        align-items: center;
    }
    
    .cta-stats-grid {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 5rem 0;
    }
    
    .cta-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #030305;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: var(--text);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
