/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #F2F2F2;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Performance optimizations */
img, video {
    max-width: 100%;
    height: auto;
}

video {
    object-fit: cover;
}

/* Reduce motion for accessibility */
@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;
    }
}

/* Intro overlay and related styles removed */

/* Keyframes for white/blue pulsing glow */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255,255,255,0.25), 0 0 18px rgba(100, 160, 255, 0.20);
        border-color: rgba(255,255,255,0.9);
    }
    50% {
        box-shadow: 0 0 22px rgba(255,255,255,0.65), 0 0 44px rgba(100, 160, 255, 0.55), 0 0 64px rgba(100, 160, 255, 0.35);
        border-color: rgba(160, 200, 255, 0.95);
    }
    100% {
        box-shadow: 0 0 10px rgba(255,255,255,0.25), 0 0 18px rgba(100, 160, 255, 0.20);
        border-color: rgba(255,255,255,0.9);
    }
}

@media (max-width: 600px) {
    .intro-cta { width: 100%; max-width: 320px; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile-first container adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 70px;
    font-weight: 900;
    color: #F2F2F2;
}

.nav-logo .ai-text {
    color: #FF4545;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -40px;
    color: rgba(242, 242, 242, 0.3);
    font-size: 18px;
    font-weight: 200;
}

.nav-link {
    color: #F2F2F2;
    text-decoration: none;
    font-weight: 200;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF4545;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #F2F2F2;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo {
        font-size: 40px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li:not(:last-child)::after {
        display: none;
    }
    
    .nav-link {
        font-size: 24px;
        padding: 15px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 32px;
    }
    
    .nav-link {
        font-size: 20px;
    }
}

/* Hero Section */
#home.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 0 40px 100px;
    color: #fff;
    box-sizing: border-box;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

#home .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    box-sizing: border-box;
    margin-bottom: 60px;
}

#home .hero-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    opacity: 0.9;
    width: 100%;
}

.hero-tagline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #FF4545;
}

#home .hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    margin: 20px 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 1000px;
}

.hero-title .highlight {
    color: #FF4545;
    position: relative;
    display: inline-block;
}

.hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 69, 69, 0.2);
    z-index: -1;
    transform: skew(-15deg);
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subtitle-item.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.8;
    font-style: italic;
    color: #FF4545;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 16px 40px;
    font-size: 18px;
    border-width: 2px;
    min-width: 200px;
    border-radius: 40px;
    font-weight: 600;
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 120px 10px 60px;
    }
    
    .hero-bottom-text {
        padding: 0 10px;
    }
    
    .hero-bottom-text h1 {
        font-size: clamp(24px, 8vw, 48px);
        letter-spacing: 2px;
        -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.3);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 10px 50px;
    }
    
    .hero-bottom-text h1 {
        font-size: 24px;
        letter-spacing: 1px;
        -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.2);
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-subscribe, .btn-cta {
    position: relative;
    padding: 25px 60px;
    border: 3px solid #FF4545;
    background: transparent;
    color: #F2F2F2;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 300px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary::before, .btn-secondary::before, .btn-subscribe::before, .btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #FF4545;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-subscribe:hover::before, .btn-cta:hover::before {
    left: 0;
}

.btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-text.hover {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(20px);
}

.btn-primary:hover .btn-text.default, .btn-secondary:hover .btn-text.default, 
.btn-subscribe:hover .btn-text.default, .btn-cta:hover .btn-text.default {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-20px);
}

.btn-primary:hover .btn-text.hover, .btn-secondary:hover .btn-text.hover,
.btn-subscribe:hover .btn-text.hover, .btn-cta:hover .btn-text.hover {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* Mobile Button Improvements */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-subscribe, .btn-cta {
        padding: 18px 40px;
        font-size: 18px;
        min-width: 280px;
        min-height: 56px;
        border-radius: 50px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 100%;
    }
}

.carousel-section .container {
    max-width: none;
    padding: 0;
}

.video-carousel .owl-stage-outer {
    padding: 20px 40px;
}

.video-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 6px;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    color: #F2F2F2;
}

.video-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
}

/* Influencers Section */
.influencers-section {
    padding: 80px 0;
    background: #121212;
}

.influencers-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 20px 0;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.influencer-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4; /* 3:4 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    margin: 0 auto; /* Center the cards in their grid cells */
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.influencer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 69, 69, 0.2);
}

.influencer-card video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-card video,
.influencer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    background-color: #000;
}

.influencer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 30px 20px 20px;
    color: #F2F2F2;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.influencer-card:hover .influencer-overlay {
    transform: translateY(0);
}

.influencer-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #F2F2F2;
}

.influencer-category {
    font-size: 14px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.influencer-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.influencer-stats span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    background: rgba(255, 69, 69, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 69, 69, 0.3);
}

.influencer-bio {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .influencers-carousel {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .influencers-carousel {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .influencers-carousel {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .influencers-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .influencers-carousel {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .influencer-card {
        max-width: 100%;
        aspect-ratio: 9/16; /* Slightly taller for mobile */
    }
}

/* Subscription Section */
.subscription-section {
    padding: 120px 0;
    background: #121212;
}

.subscription-card {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 69, 69, 0.1), rgba(255, 69, 69, 0.05));
    border: 1px solid rgba(255, 69, 69, 0.2);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.subscription-card h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subscription-card > p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
}

.pricing {
    margin-bottom: 50px;
}

.price {
    font-size: 36px;
    font-weight: 600;
    color: #FF4545;
    display: block;
}

.period {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.6;
}

.subscription-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.subscription-form input {
    padding: 18px 25px !important;
    border: 2px solid rgba(242, 242, 242, 0.2) !important;
    background: #F2F2F2 !important;
    color: #121212 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    border-radius: 15px;
    min-width: 250px;
    transition: all 0.3s ease;
}

.subscription-form input:focus {
    outline: none !important;
    border-color: #FF4545 !important;
    background: #F2F2F2 !important;
}

.subscription-form input::placeholder {
    color: rgba(18, 18, 18, 0.6) !important;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #121212;
}

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

.section-tag {
    font-size: 14px;
    font-weight: 500;
    color: #FF4545;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.section-divider {
    font-size: 24px;
    color: #FF4545;
    font-weight: 200;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: #F2F2F2;
    color: #121212;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 69, 69, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 69, 0.1);
}

.service-icon {
    font-size: 32px;
    color: #FF4545;
    margin-bottom: 25px;
    font-weight: 900;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.7;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF4545;
    font-weight: 700;
}

/* Difference Section */
.difference-section {
    padding: 120px 0;
    background: #121212;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(242, 242, 242, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 69, 0.1);
    transition: all 0.3s ease;
}

.difference-item:hover {
    background: rgba(242, 242, 242, 0.08);
    transform: translateY(-5px);
}

.difference-bullet {
    color: #FF4545;
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}

.difference-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #F2F2F2;
}

.difference-content p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.5;
}

/* Creator PR Section */
.creator-pr-section {
    padding: 120px 0;
    background: #121212;
}

.creator-pr-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.section-tag {
    font-size: 14px;
    font-weight: 500;
    color: #FF4545;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.content-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 50px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FF4545;
    font-size: 20px;
    font-weight: 700;
}

.vertical-video-container {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vertical-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: #F2F2F2;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #FF4545;
}

#modalVideo {
    width: 100%;
    border-radius: 15px;
}

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .creator-pr-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vertical-video-container {
        height: 400px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .global-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo {
        font-size: 40px;
    }
    
    .nav-menu {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary, .btn-secondary, .btn-subscribe, .btn-cta {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 250px;
    }
    
    .subscription-form {
        flex-direction: column;
        align-items: center;
    }
    
    .subscription-form input {
        width: 100%;
        max-width: 400px;
    }
    
    .subscription-card {
        padding: 40px 30px;
    }
    
    .content-left h2 {
        font-size: 36px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-section, .difference-section, .clients-section, .global-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .difference-item, .global-item {
        text-align: left;
    }
    
    .contact-options {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle, .hero-copy { font-size: 16px; }
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: #121212;
    overflow: hidden;
}

.timeline-title {
    font-size: 36px;
    font-weight: 700;
    color: #F2F2F2;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.timeline-divider {
    width: 80px;
    height: 2px;
    background: #FF4545;
    margin: 0 auto 80px;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background: rgba(242, 242, 242, 0.2);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-circle {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(242, 242, 242, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121212;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    animation: pulse-glow 3s ease-in-out infinite;
}

.timeline-circle:hover {
    border-color: #FF4545;
    transform: scale(1.05);
}

.timeline-item.animate-in .timeline-circle {
    border-color: #FF4545;
    box-shadow: 0 0 20px rgba(255, 69, 69, 0.3);
}

.step-number {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #FF4545;
    letter-spacing: 1px;
    animation: number-pulse 2s ease-in-out infinite alternate;
}

.circle-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #F2F2F2;
    line-height: 1.2;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

/* Continuous Timeline Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 69, 69, 0.3);
        border-color: #FF4545;
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 69, 69, 0.6), 0 0 40px rgba(255, 69, 69, 0.2);
        border-color: rgba(255, 69, 69, 0.8);
    }
}

@keyframes number-pulse {
    0% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes metric-counter {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Add subtle animation to metrics text */
.timeline-description {
    font-size: 13px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.8);
    line-height: 1.5;
    animation: metric-counter 4s ease-in-out infinite;
}

/* Stagger the metric animations */
.timeline-item[data-step="01"] .timeline-description { animation-delay: 0s; }
.timeline-item[data-step="02"] .timeline-description { animation-delay: 0.5s; }
.timeline-item[data-step="03"] .timeline-description { animation-delay: 1s; }
.timeline-item[data-step="04"] .timeline-description { animation-delay: 1.5s; }
.timeline-item[data-step="05"] .timeline-description { animation-delay: 2s; }
.timeline-item[data-step="06"] .timeline-description { animation-delay: 2.5s; }

/* Timeline Responsive */
@media (max-width: 1200px) {
    .timeline-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 60px;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .timeline-item:nth-child(1),
    .timeline-item:nth-child(2),
    .timeline-item:nth-child(3) {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 80px 0;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-circle {
        width: 120px;
        height: 120px;
    }
    
    .circle-content h3 {
        font-size: 12px;
    }
    
    .timeline-details {
        max-width: 280px;
    }
    
    .timeline-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .timeline-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-number {
        font-size: 12px;
        top: 12px;
    }
    
    .circle-content h3 {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* Brand Banner */
.brand-banner {
    width: 100vw;
    background: #121212;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 40px -50vw 0 -50vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
    font-size: 200px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    white-space: nowrap;
    width: 100%;
    display: block;
    opacity: 1;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .brand-text {
        font-size: 180px;
    }
}

@media (max-width: 992px) {
    .brand-text {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 100px;
        letter-spacing: 4px;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 70px;
        letter-spacing: 2px;
    }
}

/* Footer */
.footer {
    background: #121212;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(242, 242, 242, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto; /* 4 columns: brand, contact, links, social */
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    color: #FF4545; /* red like contact page */
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #F2F2F2;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 16px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.7);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 16px;
    font-weight: 400;
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #FF4545;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align like contact page */
}

.social-label {
    font-size: 12px;
    font-weight: 500;
    color: #FF4545;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(242, 242, 242, 0.05);
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 12px;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF4545;
    border-color: #FF4545;
    color: #F2F2F2;
    transform: translateY(-2px);
}

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

.footer-bottom {
    padding-top: 40px;
}

.footer-divider {
    height: 1px;
    background: rgba(242, 242, 242, 0.1);
    margin-bottom: 40px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-brand-text {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    font-size: 150px;
    font-weight: 900;
    color: #ffffff;
    opacity: 1;
    pointer-events: none;
    text-align: center;
    line-height: 1;
    z-index: 0;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    height: 150px;
    line-height: 150px;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    background: #0A0A0A;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.footer-copyright p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(242, 242, 242, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FF4545;
}

.footer-nav-link {
    font-size: 14px;
    font-weight: 400;
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav-link:link,
.footer-nav-link:visited {
    color: rgba(242, 242, 242, 0.7);
    text-decoration: none;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

@media (max-width: 768px) {
    /* General mobile optimizations */
    body {
        font-size: 16px;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Hero mobile optimization */
    .hero {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px) !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    .hero-tagline {
        font-size: 12px;
    }
    
    /* Portfolio grid mobile */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .video-card {
        max-width: 100%;
        aspect-ratio: 9/16;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    /* Influencers mobile */
    .influencers-section {
        padding: 60px 0;
    }
    
    .influencers-carousel {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
    
    .influencer-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Subscription section mobile */
    .subscription-section {
        padding: 60px 0;
    }
    
    .subscription-card {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .subscription-form input {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    /* Creator PR section mobile */
    .creator-pr-section {
        padding: 60px 0;
    }
    
    .creator-pr-content {
        padding: 0 20px;
    }
    
    .features-list li {
        font-size: 15px;
        padding-left: 25px;
    }
    
    /* Bento grid mobile */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
    
    .bento-item {
        grid-column: 1 / -1 !important;
        padding: 30px 20px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-links-section {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-nav-links {
        align-items: center;
    }
}

/* Force Services and Company to stack vertically in footer */
.footer .footer-links-section {
    display: block !important; /* override any grid/flex */
}

.footer .footer-column {
    display: block;
    margin-bottom: 28px;
}

.footer .footer-column:last-child {
    margin-bottom: 0;
}

/* Ensure footer links stack line-by-line */
.footer .footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footer-nav-link {
    display: block; /* stack anchors */
}

/* Portfolio Grid Section */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.portfolio-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.portfolio-grid .video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 16/9;
}

.portfolio-grid .video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 69, 69, 0.3);
}

.portfolio-grid .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-grid .video-card:hover video {
    transform: scale(1.05);
}

.portfolio-grid .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-grid .video-card:hover .video-overlay {
    transform: translateY(0);
}

.portfolio-grid .video-overlay h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Poppins', sans-serif;
}

.portfolio-grid .video-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .portfolio-grid .video-card {
        aspect-ratio: 16/10;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .portfolio-grid .video-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
}

/* Extra small mobile devices (480px and below) */
@media (max-width: 480px) {
    /* General */
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Hero */
    .hero {
        padding: 80px 15px 50px !important;
    }
    
    .hero-title {
        font-size: clamp(28px, 10vw, 40px) !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }
    
    .hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary, .btn-subscribe, .btn-cta {
        padding: 14px 28px !important;
        font-size: 14px !important;
        min-width: 100% !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 16px 32px !important;
        font-size: 15px !important;
    }
    
    /* Navigation */
    .nav-logo {
        font-size: 28px !important;
    }
    
    /* Portfolio */
    .portfolio-grid {
        padding: 0 !important;
        gap: 15px !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .portfolio-grid .video-card {
        aspect-ratio: 9/16;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    /* Influencers */
    .influencers-section {
        padding: 50px 0 !important;
    }
    
    .influencers-carousel {
        padding: 0 10px !important;
        gap: 15px !important;
    }
    
    .influencer-card {
        aspect-ratio: 3/4;
        max-width: 350px;
    }
    
    /* Subscription */
    .subscription-section {
        padding: 50px 0 !important;
    }
    
    .subscription-card {
        padding: 30px 15px !important;
        margin: 0 10px !important;
    }
    
    .subscription-card h2 {
        font-size: 24px !important;
    }
    
    .subscription-form input {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }
    
    /* Creator PR */
    .creator-pr-section {
        padding: 50px 0 !important;
    }
    
    .features-list li {
        font-size: 14px !important;
        padding-left: 20px !important;
    }
    
    /* Bento grid */
    .bento-grid {
        padding: 0 10px !important;
        gap: 15px !important;
    }
    
    .bento-item {
        padding: 25px 15px !important;
    }
    
    .bento-content h2 {
        font-size: 22px !important;
    }
    
    .bento-content p {
        font-size: 14px !important;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px !important;
    }
    
    .footer-logo .logo-text {
        font-size: 24px !important;
    }
    
    .footer-tagline {
        font-size: 14px !important;
    }
    
    .contact-label {
        font-size: 11px !important;
    }
    
    .contact-value {
        font-size: 14px !important;
    }
    
    .social-links {
        gap: 15px !important;
    }
    
    .social-link svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .footer-nav-link {
        font-size: 13px !important;
    }
    
    .footer-column-title {
        font-size: 11px !important;
    }
}
