/* ============================================
   PRELISSE AGENCY - Main Stylesheet
   ============================================ */

:root {
    --bg: #060608;
    --bg-card: #0e0e14;
    --bg-card-hover: #13131c;
    --purple: #9333EA;
    --purple-light: #A855F7;
    --pink: #EC4899;
    --pink-light: #F472B6;
    --gradient: linear-gradient(135deg, #9333EA, #EC4899);
    --gradient-soft: linear-gradient(135deg, rgba(147,51,234,0.12), rgba(236,72,153,0.12));
    --text: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(147, 51, 234, 0.2);
    --border-pink: rgba(236, 72, 153, 0.25);
    --glow-purple: 0 0 40px rgba(147, 51, 234, 0.25);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.25);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }

/* ============================================
   UTILITIES
   ============================================ */

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

.gradient-bg { background: var(--gradient); }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-hero {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font);
    white-space: nowrap;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(147,51,234,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(147,51,234,0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.18);
}

.btn-ghost:hover {
    border-color: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(147,51,234,0.15);
}

.btn-large {
    padding: 18px 52px;
    font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background var(--transition),
                backdrop-filter var(--transition),
                padding var(--transition),
                border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6, 6, 8, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-cta {
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 100px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 16px rgba(147,51,234,0.35);
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(147,51,234,0.55);
}

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

.nav-logo-img {
    height: 44px;
    width: auto;
    mix-blend-mode: screen;
    transition: opacity var(--transition);
}

.nav-logo-img:hover {
    opacity: 0.85;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    mix-blend-mode: screen;
    margin-bottom: 14px;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(147,51,234,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(236,72,153,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 10% 80%, rgba(147,51,234,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 880px;
    padding: 120px 24px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 22px;
    background: rgba(147,51,234,0.1);
    border: 1px solid rgba(147,51,234,0.3);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient);
    animation: badgePulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

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

.hero-title {
    font-size: clamp(2rem, 6.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 28px 48px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(147,51,234,0.2);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(147,51,234,0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: floatIndicator 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.scroll-dot {
    width: 3px;
    height: 7px;
    background: var(--gradient);
    border-radius: 2px;
    animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(11px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

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

/* ============================================
   CREATORS SECTION
   ============================================ */

.creators-section {
    padding: 130px 0;
    position: relative;
}

.creators-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(236,72,153,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.creator-card {
    min-width: calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.creator-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236,72,153,0.4);
    box-shadow: 0 20px 60px rgba(147,51,234,0.2), 0 0 0 1px rgba(236,72,153,0.1);
}

.creator-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Placeholder gradient cards */
.gradient-1 { background: linear-gradient(160deg, #1a0a2e 0%, #6d28d9 50%, #ec4899 100%); }
.gradient-2 { background: linear-gradient(160deg, #0e0a1e 0%, #ec4899 50%, #9333ea 100%); }
.gradient-3 { background: linear-gradient(160deg, #1a0e2a 0%, #7c3aed 45%, #f472b6 100%); }
.gradient-4 { background: linear-gradient(160deg, #0a0e1a 0%, #9333ea 50%, #fb7185 100%); }
.gradient-5 { background: linear-gradient(160deg, #150a2a 0%, #a855f7 45%, #ec4899 100%); }

.creator-info {
    padding: 22px;
}

.creator-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.creator-earnings-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.creator-earnings {
    font-size: 1.35rem;
    font-weight: 800;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(147,51,234,0.4);
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gradient);
    width: 28px;
    border-radius: 4px;
}

/* ============================================
   WHY WORK WITH US
   ============================================ */

.why-section {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

#starsCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.55;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px;
    transition: transform var(--transition),
                border-color var(--transition),
                box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236,72,153,0.3);
    box-shadow: 0 20px 60px rgba(147,51,234,0.15);
}

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

.feature-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--purple-light);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(147,51,234,0.4);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-section {
    padding: 130px 0;
    position: relative;
}

.how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(147,51,234,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    display: flex;
    flex-direction: column;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition),
                transform var(--transition),
                box-shadow var(--transition);
}

.step:hover {
    border-color: var(--purple-light);
    transform: translateX(8px);
    box-shadow: var(--glow-purple);
}

.step-connector {
    width: 2px;
    height: 24px;
    background: var(--gradient);
    margin-left: 55px;
    opacity: 0.4;
    flex-shrink: 0;
}

.step-number {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

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

.faq-section {
    padding: 130px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(236,72,153,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.active {
    border-color: rgba(147,51,234,0.4);
    box-shadow: 0 0 30px rgba(147,51,234,0.1);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pink-light);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--purple-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding: 0 26px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.cta-section {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(147,51,234,0.12) 0%, rgba(236,72,153,0.06) 40%, transparent 70%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 18px;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 48px;
}


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

.footer {
    background: #030305;
    border-top: 1px solid var(--border);
    padding: 70px 0 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

.footer-brand .nav-logo {
    margin-bottom: 14px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-links-group h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-links-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links-group ul li a {
    color: rgba(148, 163, 184, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links-group ul li a:hover {
    color: var(--pink-light);
}

.footer-bottom {
    border-top: 1px solid rgba(147,51,234,0.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.8rem;
}

.footer-note {
    font-size: 0.72rem !important;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    border-color: var(--pink-light);
    color: var(--pink-light);
    box-shadow: 0 0 16px rgba(236,72,153,0.25);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-card {
        min-width: calc(50% - 12px);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .creators-section,
    .why-section,
    .how-section,
    .faq-section,
    .cta-section {
        padding: 90px 0;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */

@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 8, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 13px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        display: block;
        padding: 13px 22px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo-img {
        height: 36px;
    }

    /* Hero */
    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-title {
        letter-spacing: -0.5px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 24px;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Sections */
    .creators-section,
    .why-section,
    .how-section,
    .faq-section,
    .cta-section {
        padding: 70px 0;
    }

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

    /* Carousel */
    .carousel-wrapper {
        gap: 10px;
    }

    .creator-card {
        min-width: calc(78% - 10px);
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .creator-img {
        height: 300px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 26px;
    }

    /* Steps */
    .steps-container {
        padding: 0;
    }

    .step {
        padding: 22px 18px;
        gap: 16px;
    }

    .step:hover {
        transform: none;
    }

    .step-connector {
        margin-left: 43px;
        height: 16px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .step-content h3 {
        margin-top: 8px;
    }

    .how-section::before {
        display: none;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.92rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-socials {
        order: -1;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================ */

@media (max-width: 480px) {
    .section-container {
        padding: 0 18px;
    }

    .hero-content {
        padding: 90px 18px 50px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 14px;
        padding: 18px 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .creator-card {
        min-width: 90%;
    }

    .creator-img {
        height: 260px;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-track-container {
        border-radius: var(--radius);
        width: 100%;
    }

    .features-grid {
        gap: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 14px;
    }

    .footer-tagline {
        max-width: 100%;
        margin: 0 auto;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

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

    html {
        scroll-behavior: auto;
    }

    .reveal, .reveal-hero {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
