:root {
    --primary-pink: #ff6b9d;
    --light-pink: #ffb3d1;
    --soft-pink: #ffe0ed;
    --dark-pink: #e91e63;
    --purple: #9c27b0;
    --light-purple: #e1bee7;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark: #2d3436;
    --gradient: linear-gradient(135deg, var(--primary-pink), var(--purple));
    --shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
    --border-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Funky Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 157, 0.3);
    border: 2px solid var(--primary-pink);
}

.custom-cursor.click {
    width: 15px;
    height: 15px;
    background: var(--dark-pink);
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--light-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 235, 245, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--light-pink);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: hidden;
}



/* Header Animation Elements */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    animation: dataFlow 12s linear infinite;
    z-index: -1;
}

@keyframes dataFlow {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 157, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    animation: particleFloat 20s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: translateX(12.5px) translateY(-2px);
        opacity: 0.6;
    }
    50% {
        transform: translateX(25px) translateY(0);
        opacity: 0.8;
    }
    75% {
        transform: translateX(37.5px) translateY(2px);
        opacity: 0.6;
    }
    100% {
        transform: translateX(50px) translateY(0);
        opacity: 0.4;
    }
}

.nav-container {
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    position: relative;
    z-index: 2;
}

/* Marketing Success Sparkles */
.nav-container::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0;
    animation: successSparkle 8s ease-in-out infinite;
    z-index: -1;
}

.nav-container::after {
    content: '💎';
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    opacity: 0;
    animation: successSparkle 10s ease-in-out infinite 3s;
    z-index: -1;
}

@keyframes successSparkle {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.3) rotate(0deg);
    }
    2% {
        opacity: 0.2;
        transform: translateY(-50%) scale(0.5) rotate(45deg);
    }
    5% {
        opacity: 0.6;
        transform: translateY(-50%) scale(0.8) rotate(90deg);
    }
    8% {
        opacity: 0.9;
        transform: translateY(-50%) scale(1.1) rotate(135deg);
    }
    12% {
        opacity: 1;
        transform: translateY(-50%) scale(1) rotate(180deg);
    }
    16% {
        opacity: 0.8;
        transform: translateY(-50%) scale(0.9) rotate(225deg);
    }
    20% {
        opacity: 0.4;
        transform: translateY(-50%) scale(0.6) rotate(270deg);
    }
    25% {
        opacity: 0.1;
        transform: translateY(-50%) scale(0.3) rotate(315deg);
    }
    30%, 100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.1) rotate(360deg);
    }
}

/* Growth Indicator Animation */
.logo::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -10px;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0;
    animation: growthPulse 6s ease-in-out infinite;
}

@keyframes growthPulse {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0 var(--primary-pink);
    }
    10% {
        opacity: 0.3;
        transform: scale(0.5);
        box-shadow: 0 0 2px var(--primary-pink);
    }
    20% {
        opacity: 0.6;
        transform: scale(0.8);
        box-shadow: 0 0 4px var(--primary-pink);
    }
    40% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 8px var(--primary-pink);
    }
    60% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 6px var(--primary-pink);
    }
    80% {
        opacity: 0.4;
        transform: scale(0.6);
        box-shadow: 0 0 3px var(--primary-pink);
    }
    100% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0 var(--primary-pink);
    }
}

.logo {
    flex-shrink: 0;
    margin-right: auto;
    position: relative;
}

/* Connection Network Animation */
.nav-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-pink), var(--primary-pink));
    opacity: 0;
    animation: connectionPulse 7s ease-in-out infinite 2s;
    transform: translateY(-50%);
}

.nav-right::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -40px;
    width: 2px;
    height: 2px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0;
    animation: networkNode 7s ease-in-out infinite 2.5s;
    box-shadow: 0 0 4px var(--primary-pink);
}

@keyframes connectionPulse {
    0% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
    15% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.5);
    }
    35% {
        opacity: 0.7;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-50%) scaleX(1.1);
    }
    65% {
        opacity: 0.6;
        transform: translateY(-50%) scaleX(0.8);
    }
    80% {
        opacity: 0.3;
        transform: translateY(-50%) scaleX(0.4);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }
}

@keyframes networkNode {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0 var(--primary-pink);
    }
    20% {
        opacity: 0.4;
        transform: scale(0.6);
        box-shadow: 0 0 2px var(--primary-pink);
    }
    40% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 4px var(--primary-pink);
    }
    60% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 6px var(--primary-pink);
    }
    80% {
        opacity: 0.5;
        transform: scale(0.8);
        box-shadow: 0 0 3px var(--primary-pink);
    }
    100% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0 0 0 var(--primary-pink);
    }
}

.logo h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-pink);
}

.cta-btn {
    background: var(--gradient);
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Desktop navigation adjustments */
@media (min-width: 1024px) {
    .nav-container {
        padding: 1rem 40px;
        justify-content: space-between;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .nav-right {
        gap: 2rem;
        margin-left: auto;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-pink), var(--light-purple));
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.hero-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

/* Hero Text Animation */
.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUpFade 0.8s ease-out forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title .word:nth-child(4) { animation-delay: 0.4s; }
.hero-title .word:nth-child(5) { animation-delay: 0.5s; }
.hero-title .word:nth-child(6) { animation-delay: 0.6s; }
.hero-title .word:nth-child(7) { animation-delay: 0.7s; }
.hero-title .word:nth-child(8) { animation-delay: 0.8s; }
.hero-title .word:nth-child(9) { animation-delay: 0.9s; }
.hero-title .word:nth-child(10) { animation-delay: 1.0s; }
.hero-title .word:nth-child(11) { animation-delay: 1.1s; }
.hero-title .word:nth-child(12) { animation-delay: 1.2s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    80% {
        transform: translateY(-5%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Floating Shapes Animation */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--light-pink), var(--primary-pink));
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple), var(--dark-pink));
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Our Work Section */
.our-work {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.work-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--soft-pink);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.work-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    color: var(--gray);
    font-size: 0.9rem;
}

.work-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.work-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Creator Showcase Section */
.creators-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.creators-showcase .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.creators-showcase .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}


.creators-slider {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.creators-track {
    display: flex;
    animation: slideInfinite 60s linear infinite;
    will-change: transform;
    gap: 1.5rem;
    width: max-content;
}

.creators-track:hover {
    animation-play-state: paused;
}

.creator-card {
    flex: 0 0 200px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 1rem;
    width: 200px;
    min-width: 200px;
}

.creator-card:hover {
    transform: scale(1.05);
}

.creator-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto 1rem;
    display: block;
}

.creator-card:hover .creator-image {
    border-color: var(--primary-pink);
    transform: scale(1.1);
}

.creator-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.creator-card:hover .creator-name {
    color: var(--light-pink);
}

.creator-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

@keyframes scrollCreators {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-231.5px * 21));
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--soft-pink), rgba(225, 190, 231, 0.3));
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-text > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-text p {
    color: var(--gray);
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stats-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}


.stats-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stats-card p {
    color: var(--gray);
    font-weight: 500;
}

/* Join Us Section */
.join-us {
    padding: 8rem 0;
    background: var(--white);
}

.join-content {
    text-align: center;
}

.join-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.join-content > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

.join-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.join-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.join-card:hover .join-logo {
    transform: scale(1.1);
}

.join-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.95) 0%, rgba(138, 43, 226, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    border-radius: 16px;
}

.join-card:hover .join-overlay {
    opacity: 1;
}

.join-card:hover .join-logo,
.join-card:hover h4 {
    opacity: 0;
    transform: translateY(-10px);
}

/* Join overlay content positioning */
.join-overlay .overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 1rem;
}

.join-overlay .overlay-content ul {
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Join overlay button styling */
.join-overlay .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
    font-size: 0.9rem;
    margin-top: auto;
}

.join-overlay .btn-primary:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-2px);
}

/* Join Section Logo Styling */
.creator-join-logo {
    background: rgba(255, 255, 255, 0.1);
}

.creator-join-logo svg {
    fill: var(--primary-pink);
    width: 40px;
    height: 40px;
}

.brand-join-logo {
    background: rgba(255, 255, 255, 0.1);
}

.brand-join-logo svg {
    fill: var(--purple);
    width: 40px;
    height: 40px;
}

.join-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.join-card > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.join-card ul {
    text-align: left;
    margin-bottom: 2rem;
    list-style: none;
}

.join-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

/* Bullet styling now handled by general .overlay-content li:before */

.btn-cta {
    background: var(--gradient);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--soft-pink));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 200px;
    background: var(--gradient);
    position: relative;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    background: var(--soft-pink);
    color: var(--primary-pink);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--dark);
    line-height: 1.3;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--dark-pink);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    width: 100%;
}

.footer-brand {
    text-align: left;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.footer-contact {
    text-align: right;
}

.footer-contact h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-info-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
}

.contact-info-vertical p {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

.contact-info-vertical a {
    color: var(--primary-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-vertical a:hover {
    color: var(--secondary-purple);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
}

/* Responsive Design - Mobile First Approach */

/* Extra Large Screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1800px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .work-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Screens (1024px - 1439px) - Desktop/Laptop */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .work-grid,
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium Screens (768px - 1023px) - Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 0.8fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .work-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .creator-card {
        flex: 0 0 180px;
        width: 180px;
        min-width: 180px;
    }
    
    .creator-image {
        width: 120px;
        height: 120px;
    }
}

/* Small Screens (480px - 767px) - Large Mobile */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .work-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-visual {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* ensure stats cards stay in same row */
    
    .join-content h2 {
        font-size: 2.5rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
        justify-self: center;
    }
    
    .contact-info-vertical {
        align-items: center;
    }
    
    .contact-info-vertical p {
        text-align: center;
    }
    
    /* Creator Showcase Mobile */
    .creators-showcase {
        padding: 4rem 0;
    }
    
    .creator-card {
        flex: 0 0 140px;
        width: 140px;
        min-width: 140px;
        padding: 0.5rem;
    }
    
    .creator-image {
        width: 100px;
        height: 100px;
    }
    
    .creator-name {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Extra Small Screens (320px - 479px) - Small Mobile */
@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0.8rem 15px;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .our-work,
    .about,
    .join-us,
    .blog {
        padding: 4rem 0;
    }
    
    .work-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-card,
    .blog-card,
    .join-card {
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* keep stats cards in same grid columns */
    
    .join-content h2 {
        font-size: 2rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand, .footer-contact {
        text-align: center;
        justify-self: center;
    }
    
    .contact-info-vertical {
        align-items: center;
    }
    
    .contact-info-vertical p {
        text-align: center;
    }
    
    .footer-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Creator Showcase Small Mobile */
    .creators-showcase {
        padding: 3rem 0;
    }
    
    .creators-showcase .section-header h2 {
        font-size: 2rem;
    }
    
    .creator-card {
        flex: 0 0 120px;
        width: 120px;
        min-width: 120px;
        padding: 0.3rem;
    }
    
    .creator-image {
        width: 80px;
        height: 80px;
    }
    
    .creator-name {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    @keyframes slideInfinite {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-135px * 21));
        }
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .creators-showcase {
        padding: 2rem 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .creator-image {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .creator-card:hover {
        transform: none;
    }
    
    .creator-card:active {
        transform: scale(0.95);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-cta:hover {
        transform: none;
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-cta:active {
        transform: scale(0.98);
    }
}

/* ==================== EXPERTISE SECTION ==================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2a2a5e 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services .section-header h2 {
    color: white;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 2rem;
}

.expertise-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.expertise-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.expertise-logo svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Specific Logo Styling */
.youtube-logo {
    background: transparent;
}

.youtube-logo svg {
    fill: #FF0000;
    width: 40px;
    height: 40px;
}

.social-logo {
    background: transparent;
}

.social-logo svg {
    fill: #E4405F;
    width: 40px;
    height: 40px;
}

.consulting-logo {
    background: transparent;
}

.consulting-logo svg {
    fill: #0066cc;
    width: 40px;
    height: 40px;
}

.collab-logo {
    background: transparent;
}

.collab-logo svg {
    fill: #ff6b6b;
    width: 40px;
    height: 40px;
}

.campaigns-logo {
    background: transparent;
}

.campaigns-logo svg {
    fill: #ffd700;
    width: 40px;
    height: 40px;
}

.ai-logo {
    background: transparent;
}

.ai-logo svg {
    fill: #8a2be2;
    width: 40px;
    height: 40px;
}

.expertise-card:hover .expertise-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.95) 0%, rgba(138, 43, 226, 0.95) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.expertise-card:hover .expertise-overlay {
    opacity: 1;
    transform: translateY(0);
}

.expertise-card:hover .expertise-logo,
.expertise-card:hover h4 {
    opacity: 0;
    transform: translateY(-10px);
}

.overlay-content {
    padding: 1.5rem;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlay-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-content li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: 1.3;
    position: relative;
    padding-left: 1.5rem;
    color: white;
}

.overlay-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.overlay-content li:last-child {
    border-bottom: none;
}

.overlay-content li:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .expertise-card {
        min-height: 260px;
        max-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .expertise-logo {
        width: 60px;
        height: 60px;
    }
    
    .expertise-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .expertise-card h4 {
        font-size: 1.05rem;
        line-height: 1.3;
    }
}

@media (max-width: 640px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .expertise-card {
        min-height: 240px;
        max-height: 240px;
        padding: 2rem 1rem;
    }
    
    .expertise-card .overlay-content {
        padding: 1rem;
    }
    
    .expertise-card .overlay-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .expertise-card .overlay-content li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }
}

/* Touch Device Interactions */
@media (hover: none) and (pointer: coarse) {
    .expertise-card:hover {
        transform: none;
    }
    
    .expertise-card.active .expertise-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .expertise-card.active::before {
        opacity: 1;
    }
    
    .expertise-card.active .expertise-logo,
    .expertise-card.active h4 {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ==================== TEAM SECTION ==================== */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 50%, #3e2093 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.team .section-header h2 {
    color: white;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(255, 20, 147, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.25);
    border-color: rgba(138, 43, 226, 0.4);
}

.team-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.team-logo svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Specific Team Logo Styling */
.video-logo {
    background: transparent;
}

.video-logo svg {
    fill: #ff4757;
    width: 40px;
    height: 40px;
}

.design-logo {
    background: transparent;
}

.design-logo svg {
    fill: #5352ed;
    width: 40px;
    height: 40px;
}

.production-logo {
    background: transparent;
}

.production-logo svg {
    fill: #2ed573;
    width: 40px;
    height: 40px;
}

.team-card:hover .team-logo {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.96) 0%, rgba(255, 20, 147, 0.96) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
}

.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-card:hover .team-logo,
.team-card:hover h4 {
    opacity: 0;
    transform: translateY(-15px);
}

.team-overlay .overlay-content {
    padding: 1.5rem;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-overlay .overlay-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.team-overlay .overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-overlay .overlay-content li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.team-overlay .overlay-content li:last-child {
    border-bottom: none;
}

.team-overlay .overlay-content li:hover {
    color: #ffd700;
    transform: translateX(8px);
}

/* Team Mobile Responsiveness */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .team-card {
        min-height: 260px;
        max-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .team-logo {
        width: 65px;
        height: 65px;
    }
    
    .team-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .team-card h4 {
        font-size: 1.05rem;
        line-height: 1.3;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        min-height: 240px;
        max-height: 240px;
        padding: 2rem 1rem;
    }
    
    .team-overlay .overlay-content {
        padding: 1rem;
    }
    
    .team-overlay .overlay-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .team-overlay .overlay-content li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }
}

/* Team Touch Device Interactions */
@media (hover: none) and (pointer: coarse) {
    .team-card:hover {
        transform: none;
    }
    
    .team-card.active .team-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .team-card.active::before {
        opacity: 1;
    }
    
    .team-card.active .team-logo,
    .team-card.active h4 {
        opacity: 0;
        transform: translateY(-15px);
    }
}

/* ==================== FEATURES SECTION ==================== */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2a2a5e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about .about-text {
    text-align: center;
    margin-bottom: 4rem;
}

.about .about-text h2 {
    color: white;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about .about-text > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.stats-row .stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    grid-column: auto;
}

.stats-row .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
}

.stats-row .stats-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stats-row .stats-card p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
    grid-column: span 2;
}

.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-column: span 3;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.feature-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b9d, #9c27b0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-logo svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Specific Feature Logo Styling */
.ai-expertise-logo {
    background: transparent;
}

.ai-expertise-logo svg {
    fill: #667eea;
    width: 40px;
    height: 40px;
}

.growth-logo {
    background: transparent;
}

.growth-logo svg {
    fill: #11998e;
    width: 40px;
    height: 40px;
}

.teams-logo {
    background: transparent;
}

.teams-logo svg {
    fill: #fc466b;
    width: 40px;
    height: 40px;
}

.trust-logo {
    background: transparent;
}

.trust-logo svg {
    fill: #fdbb2d;
    width: 40px;
    height: 40px;
}

.value-logo {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.feature-card:hover .feature-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.95) 0%, rgba(138, 43, 226, 0.95) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.feature-card:hover .feature-overlay {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover .feature-logo,
.feature-card:hover h4 {
    opacity: 0;
    transform: translateY(-10px);
}

.feature-overlay .overlay-content {
    padding: 1.5rem;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-overlay .overlay-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.feature-overlay .overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-overlay .overlay-content li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.feature-overlay .overlay-content li:last-child {
    border-bottom: none;
}

.feature-overlay .overlay-content li:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* Stats and Features Mobile Responsiveness */
@media (max-width: 968px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        grid-column: span 1;
    }
    
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .feature-card {
        min-height: 260px;
        max-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .feature-logo {
        width: 60px;
        height: 60px;
    }
    
    .feature-logo svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card h4 {
        font-size: 1.05rem;
        line-height: 1.3;
    }
}

@media (max-width: 640px) {
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stats-row .stats-card {
        padding: 1.5rem;
    }
    
    .stats-row .stats-card h3 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: 1;
    }
    
    .feature-card {
        min-height: 240px;
        max-height: 240px;
        padding: 2rem 1rem;
    }
    
    .feature-overlay .overlay-content {
        padding: 1rem;
    }
    
    .feature-overlay .overlay-content h5 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-overlay .overlay-content li {
        font-size: 0.85rem;
        padding: 0.35rem 0;
    }
}

/* Features Touch Device Interactions */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card.active .feature-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-card.active::before {
        opacity: 1;
    }
    
    .feature-card.active .feature-logo,
    .feature-card.active h4 {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ==================== CONTACT SECTION ==================== */
.join-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b69 50%, #3e2093 100%);
    position: relative;
    overflow: hidden;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.join-us .join-content h2 {
    color: white;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.join-us .join-content > p {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    min-height: 400px;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15) 0%, rgba(255, 20, 147, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.contact-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-logo svg {
    width: 45px;
    height: 45px;
    color: white;
}

/* Specific Contact Logo Styling */
.creator-logo {
    background: linear-gradient(135deg, #ff4757, #ff3838);
}

.brand-logo {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.brand-logo svg {
    color: #333;
}



.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.contact-services {
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.contact-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-services li {
    font-size: 0.95rem;
    color: #b8bcc8;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta-btn {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
}



.contact-overlay .overlay-content {
    padding: 2rem;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-overlay .overlay-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-overlay .overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-overlay .overlay-content li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.contact-overlay .overlay-content li:last-child {
    border-bottom: none;
}

.contact-overlay .overlay-content li:hover {
    color: #ffd700;
    transform: translateX(8px);
}

.btn-overlay {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-overlay:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-cta {
    text-align: center;
}

.contact-cta .btn-cta {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.contact-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

/* Contact Mobile Responsiveness */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-card {
        min-height: 280px;
        max-height: 280px;
        padding: 2.5rem 2rem;
    }
    
    .contact-logo {
        width: 70px;
        height: 70px;
    }
    
    .contact-logo svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .contact-card {
        min-height: 260px;
        max-height: 260px;
        padding: 2rem 1.5rem;
    }
    
    .contact-overlay .overlay-content {
        padding: 1.5rem;
    }
    
    .contact-overlay .overlay-content h5 {
        font-size: 1.2rem;
    }
    
    .contact-overlay .overlay-content li {
        font-size: 0.85rem;
    }
}

/* Contact Touch Device Interactions */
@media (hover: none) and (pointer: coarse) {

    
    .contact-card.active .contact-logo,
    .contact-card.active h3 {
        opacity: 0;
        transform: translateY(-15px);
    }
}

/* Revenue Assessment Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-pink);
}

.assessment-step {
    display: none;
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.assessment-step.active {
    display: block;
}

#assessmentResults {
    min-height: 400px;
    padding: 2rem 1rem;
}

#assessmentResults.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#assessmentResults h3 {
    color: white !important;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

#assessmentResults * {
    visibility: visible !important;
}

.assessment-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.assessment-step p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.question h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    align-items: center;
}

.option-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
    max-width: 300px;
    width: fit-content;
    text-align: center;
    white-space: nowrap;
}

.option-btn:hover,
.option-btn.selected {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.results-content {
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.potential-earnings {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.potential-earnings h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.earnings-range {
    margin: 1.5rem 0;
    text-align: center;
}

.amount-line {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    text-align: center;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@media (min-width: 480px) {
    .amount-line {
        font-size: 2.2rem;
    }
}

/* Privacy Notice */
.privacy-notice {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Options Layout */
@media (max-width: 480px) {
    .option-btn {
        min-width: 150px;
        max-width: 250px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* AI Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots span {
    animation: loading-dots 1.4s ease-in-out infinite both;
}

@keyframes loading-dots {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

.period-line {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

/* Confetti Celebration Animation */
.celebration {
    position: relative;
    overflow: visible;
}

.confetti-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1000;
}

/* Clean confetti pop animation - covers whole modal */
@keyframes confetti-pop {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
    }
    15% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(sin(var(--angle) * 3.14159 / 180) * var(--distance))) 
                   translateY(calc(-1 * var(--distance))) 
                   scale(0.2) 
                   rotate(calc(var(--angle) * 3));
        opacity: 0;
    }
}

/* Sparkle effect for extra pizzazz */
.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 1.5s ease-out forwards;
    pointer-events: none;
    z-index: 1001;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0.5) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse effect for the earnings container */
.earnings-pulse {
    animation: earnings-pulse 0.6s ease-out;
}

@keyframes earnings-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.growth-note {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-weight: 500;
}

.lead-capture h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.lead-capture {
    text-align: center;
}

.lead-capture form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
    align-items: center;
}

.lead-capture input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.lead-capture input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.lead-capture input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.lead-capture button {
    padding: 1.2rem 2rem;
    border: 2px solid #00ff88;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.2);
    animation: button-glow 2s ease-in-out infinite alternate;
}

.lead-capture button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.lead-capture button:hover {
    background: linear-gradient(135deg, #00ff88, #00e676);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 255, 136, 0.3);
    border-color: #00ff88;
}

.lead-capture button:hover::before {
    left: 100%;
}

.lead-capture button:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes button-glow {
    from {
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.2);
    }
    to {
        box-shadow: 0 4px 15px rgba(0, 255, 136, 0.5), 0 0 25px rgba(0, 255, 136, 0.3);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .earnings-range {
        font-size: 2rem;
    }

    .lead-capture form {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   COMPREHENSIVE DEVICE OPTIMIZATION
======================================== */

/* Large Desktop - 4K and Ultra-wide */
@media (min-width: 1920px) {
    .container {
        max-width: 2200px;
        padding: 0 4rem;
    }
    
    .expertise-grid {
        gap: 3rem;
        padding: 0 3rem;
    }
    
    .work-grid, .blog-grid {
        gap: 3rem;
    }
    
    .team-grid {
        gap: 3rem;
    }
    
    .stats-row {
        gap: 3rem;
    }
    
    .hero-container {
        gap: 5rem;
        padding: 0 3rem;
    }
    
    .expertise-card {
        padding: 3rem 2rem;
        min-height: 320px;
    }
}

/* Tablet Landscape - iPad Pro, Surface Pro */
@media (min-width: 1024px) and (max-width: 1366px) {
    .container {
        padding: 0 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablet Portrait - iPad, Surface */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .work-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand, .footer-contact {
        text-align: center;
    }
}

/* Mobile Landscape - iPhone 14 Pro Max, Galaxy S23 Ultra */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .work-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .footer-brand, .footer-contact {
        text-align: center;
    }
    
    .expertise-card {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .work-card, .blog-card {
        padding: 1.5rem;
    }
}

/* Mobile Portrait - iPhone, Galaxy */
@media (max-width: 479px) {
    .container {
        padding: 0 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .work-grid, .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-brand, .footer-contact {
        text-align: center;
    }
    
    .expertise-card {
        min-height: 180px;
        padding: 1.2rem 0.8rem;
    }
    
    .work-card, .blog-card {
        padding: 1.2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .expertise-card:hover,
    .work-card:hover,
    .blog-card:hover,
    .join-card:hover {
        transform: none;
    }
    
    .expertise-card,
    .work-card,
    .blog-card,
    .join-card {
        cursor: default;
    }
}

/* Ensure stats row stays 3 columns on tablet and desktop */
@media (min-width: 641px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .stats-row .stats-card {
        grid-column: auto !important;
        width: 100% !important;
    }
}

/* Strong override: ensure the "Why Togtherr" stats row matches the main container
   and always displays three equal columns on tablet/desktop widths. This sits at
   the end of the file so it takes precedence over earlier/responsive rules. */
@media (min-width: 641px) {
    .about .stats-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 2rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        align-items: stretch !important;
    }

    .about .stats-row .stats-card {
        grid-column: auto !important;
        width: 100% !important;
        padding: 2rem !important;
    }
}

/* Ensure the features grid under the same .about container aligns with the stats
   row so first and second visual rows share the same left/right edges */
@media (min-width: 641px) {
    .about .features-grid {
        width: 100% !important;
        max-width: none !important;
        padding: 0 2rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        grid-template-columns: repeat(6, 1fr) !important; /* keep existing column layout */
        gap: 2rem !important;
    }

    .about .features-grid .feature-card {
        padding: 2rem 1.5rem !important;
    }
}

/* Sync Why Togtherr container sizing with Our Expertise (.expertise-grid)
   Make .about content and internal grids stretch like .expertise-grid (no max-width)
   so both sections align visually. */
@media (min-width: 641px) {
    /* Make .about children inherit the page container width and avoid double padding
       so they align exactly with other sections that use the .container wrapper. */
    .about .about-content,
    .about .about-text,
    .about .stats-row,
    .about .features-grid {
        width: 100% !important;
        max-width: 100% !important; /* keep to container's width */
        padding: 0 !important;      /* avoid double horizontal padding */
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}

/* Match large-desktop padding behavior used by .expertise-grid */
@media (min-width: 1920px) {
    .about .about-content,
    .about .about-text,
    .about .stats-row,
    .about .features-grid {
        padding: 0 !important; /* keep consistent with container padding */
    }
}

/* Ensure the top-level .about content aligns with the site container so the
   "Why Togtherr" heading, stats row and features grid share the same edges. */
@media (min-width: 641px) {
    .about .about-content,
    .about .about-text {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
}