/* Influexus - Custom Styles */

/* Tailwind Config Extensions */
.gradient-text {
    background: linear-gradient(45deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-gradient {
    background: linear-gradient(30deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
}

.instagram-gradient-reverse {
    background: linear-gradient(200deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
}

.brand-gradient {
    background: linear-gradient(135deg, 
        rgba(127, 91, 254, 0.08) 0%, 
        rgba(139, 69, 221, 0.08) 35%, 
        rgba(88, 86, 214, 0.08) 70%, 
        rgba(67, 56, 202, 0.08) 100%);
    -webkit-backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
    border: 1px solid rgba(127, 91, 254, 0.25);
    box-shadow: 0 8px 32px rgba(127, 91, 254, 0.12);
    transition: all 0.3s ease;
    color: #4c4c4c;
}

.brand-gradient:hover {
    background: linear-gradient(135deg, 
        rgba(127, 91, 254, 0.9) 0%, 
        rgba(139, 69, 221, 0.9) 35%, 
        rgba(88, 86, 214, 0.9) 70%, 
        rgba(67, 56, 202, 0.9) 100%);
    border: 1px solid rgba(67, 56, 202, 0.8);
    box-shadow: 0 12px 40px rgba(127, 91, 254, 0.25);
    transform: translateY(-2px);
    color: white !important;
}

/* Glass Morphism Effects */
.glass {
    background: rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Typography */
* {
    font-family: 'Nunito', system-ui, sans-serif;
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', system-ui, sans-serif;
    font-weight: 700;
}

p, span, div, a, button {
    font-family: 'Nunito', system-ui, sans-serif;
}

/* Site-wide gradient background */
.site-gradient {
    background: linear-gradient(135deg, 
        #f2efef 0%,     /* vrlo svijetlo ljubičasta */
        #f2efef 25%,    /* još svjetlija ljubičasta */
        #f2efef 50%,    /* skoro bijela sa namjenom roze */
        #f2efef 75%,    /* vrlo svijetlo roze */
        #f2efef 100%    /* gotovo bijela */
    );
    min-height: 100vh;
}

/* Custom Animations */
@keyframes gradient {
    0%, 100% {
        background-size: 200% 200%;
        background-position: left center;
    }
    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

/* Utility Classes */
.animate-gradient {
    animation: gradient 6s ease infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .glass {
        background: rgba(255, 255, 255, 0.4);
        -webkit-backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
    }
    
    /* Hide registration button on mobile in navbar */
    .mobile-hide-register {
        display: none !important;
    }
    
    /* Mobile menu auth buttons */
    .mobile-auth-buttons {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .mobile-auth-buttons a {
        width: 80%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        border-radius: 1.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-auth-buttons .login-btn {
        background: rgba(127, 91, 254, 0.1);
        color: #7F5BFE;
        border: 1px solid rgba(127, 91, 254, 0.3);
    }
    
    .mobile-auth-buttons .login-btn:hover {
        background: rgba(127, 91, 254, 0.2);
    }
    
    .mobile-auth-buttons .register-btn {
        background: linear-gradient(30deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(127, 91, 254, 0.3);
    }
    
    .mobile-auth-buttons .register-btn:hover {
        box-shadow: 0 6px 20px rgba(127, 91, 254, 0.4);
        transform: translateY(-1px);
    }
}

/* Hamburger Menu Animation */
.hamburger {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #374151;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 4px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Hamburger to X transformation */
.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Feature Cards with Gradient */
.gradient-card {
    background: linear-gradient(45deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
    color: white;
    text-align: center;
    border: none;
    box-shadow: 0 12px 40px rgba(127, 91, 254, 0.3);
}

.gradient-card:hover {
    box-shadow: 0 20px 50px rgba(127, 91, 254, 0.4);
}

/* Video Background Styles */
.gradient-text-video {
    background: linear-gradient(45deg, #ffffff 0%, #f8fafc 30%, #e2e8f0 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.glass-button {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Video element styling */
video {
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
    transition: filter 0.3s ease;
}

/* Ensure video covers the entire container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Modern overlay effects */
.video-overlay {
    background: linear-gradient(
        135deg,
        rgba(127, 91, 254, 0.3) 0%,
        rgba(139, 69, 221, 0.2) 35%,
        rgba(88, 86, 214, 0.3) 70%,
        rgba(67, 56, 202, 0.4) 100%
    );
}

/* Mobile optimizations for video */
@media (max-width: 768px) {
    /* Reduce video effects on mobile for better performance */
    video {
        filter: brightness(0.9) contrast(1.05);
    }

    /* Adjust text shadows for mobile */
    .gradient-text-video {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Ensure video background doesn't interfere with mobile navigation */
    #home {
        padding-top: 6rem;
    }

    /* Optimize trend text animation for mobile */
    .trend-text {
        animation: trendGradientMove 4s ease-in-out infinite;
        font-size: 0.95em;
    }

    .trend-text:hover {
        animation: trendGradientMove 2s ease-in-out infinite;
        transform: scale(1.02);
    }
}

/* Modern About Section Styles */
.gradient-text-animated {
    background: linear-gradient(45deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Background Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #7F5BFE, #F35BF6);
    animation: floatAround 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, -60px) rotate(180deg); }
    75% { transform: translate(-40px, 20px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Modern Card Styles */
.modern-card, .modern-card-wide {
    position: relative;
    background: linear-gradient(135deg,
        rgba(127, 91, 254, 0.9) 0%,
        rgba(139, 69, 221, 0.9) 35%,
        rgba(88, 86, 214, 0.9) 70%,
        rgba(67, 56, 202, 0.9) 100%);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
    transform: translateY(20px);
    opacity: 0;
}

.modern-card-wide {
    grid-column: span 2;
}

.modern-card:hover, .modern-card-wide:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(127, 91, 254, 0.4);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7F5BFE, #F35BF6, #f04a13, #7F5BFE);
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -1;
    animation: glowRotate 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .card-glow,
.modern-card-wide:hover .card-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Modern Icon Container */
.modern-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modern-icon-container i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-card:hover .modern-icon-container,
.modern-card-wide:hover .modern-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.modern-card:hover .modern-icon-container i,
.modern-card-wide:hover .modern-icon-container i {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Icon Pulse Effect */
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(0);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Card Numbers */
.card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modern-card:hover .card-number,
.modern-card-wide:hover .card-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.modern-card.revealed,
.modern-card-wide.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .modern-card, .modern-card-wide {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .modern-card-wide {
        grid-column: span 1;
    }

    .modern-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .modern-icon-container i {
        font-size: 1.5rem;
    }

    .card-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .floating-shape {
        display: none; /* Hide floating shapes on mobile for performance */
    }

    /* Reduce animation intensity on mobile */
    .modern-card:hover, .modern-card-wide:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Interactive Step Section Styles */
.step-pattern {
    background-image: radial-gradient(circle at 25% 25%, rgba(127, 91, 254, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(243, 91, 246, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
}

.step-container {
    background: rgba(255, 255, 255, 0.05);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-nav-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #7F5BFE;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}

/* Gradient border for inactive state */
.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
    border-radius: 50%;
    z-index: -1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    z-index: -1;
}

.step-nav-item.active .step-number {
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(127, 91, 254, 0.4);
}

.step-nav-item.active .step-number::after {
    display: none;
}

.step-nav-item:hover .step-number {
    transform: scale(1.05);
    color: #5a3fd4;
}

.step-nav-item:hover .step-number::after {
    background: rgba(255, 255, 255, 0.85);
}

.step-nav-item.active:hover .step-number {
    transform: scale(1.15);
}

/* Progress Line */
.step-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.step-progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #7F5BFE 0%, #F35BF6 100%);
    width: 0%;
    transition: width 0.6s ease;
    border-radius: 2px;
}

/* Step Content */
.step-content-container {
    position: relative;
    min-height: 400px;
    margin-bottom: 2rem;
}

.step-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    padding: 2rem;
}

.step-content.active {
    opacity: 1;
    transform: translateX(0);
}

.step-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem auto;
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(127, 91, 254, 0.3);
    transition: all 0.4s ease;
}

.step-icon-container i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.step-icon-container:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px rgba(127, 91, 254, 0.4);
}

.icon-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #7F5BFE, #F35BF6, #f04a13, #7F5BFE);
    background-size: 400% 400%;
    border-radius: 34px;
    z-index: -1;
    animation: glowRotate 3s ease-in-out infinite;
    opacity: 0.7;
}

.step-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7F5BFE 0%, #F35BF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

/* Step Visual Elements */
.step-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.visual-element {
    width: 80px;
    height: 80px;
    background: rgba(127, 91, 254, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(127, 91, 254, 0.2);
    transition: all 0.3s ease;
    animation: floatUp 2s ease-in-out infinite;
}

.visual-element:nth-child(2) {
    animation-delay: 0.5s;
}

.visual-element i {
    font-size: 2rem;
    color: #7F5BFE;
}

.visual-element:hover {
    background: rgba(127, 91, 254, 0.2);
    border-color: rgba(127, 91, 254, 0.4);
    transform: scale(1.1);
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Step Controls */
.step-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.step-btn {
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(127, 91, 254, 0.3);
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(127, 91, 254, 0.4);
}

.step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 5px 15px rgba(127, 91, 254, 0.2);
}

.step-indicator {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-step {
    color: #7F5BFE;
    font-weight: bold;
}

/* Click Hint */
.click-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(127, 91, 254, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.click-hint i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Mobile Optimizations for Steps */
@media (max-width: 768px) {
    .step-container {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .step-navigation {
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
        overflow-x: auto;
        padding: 1rem 0.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        min-width: 40px;
        flex-shrink: 0;
    }

    .step-number::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }

    .step-progress-line {
        display: none; /* Hide on mobile for cleaner look */
    }

    .step-content {
        padding: 1rem;
        min-height: 350px;
    }

    .step-icon-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .step-icon-container i {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 1rem;
    }

    .step-visual {
        gap: 1rem;
    }

    .visual-element {
        width: 60px;
        height: 60px;
    }

    .visual-element i {
        font-size: 1.5rem;
    }

    .step-controls {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0;
        justify-content: space-between;
        align-items: center;
    }

    .step-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        max-width: 120px;
        justify-content: center;
    }

    .step-btn i {
        font-size: 0.7rem;
    }

    .step-indicator {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 60px;
        text-align: center;
    }

    .click-hint {
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .step-navigation {
        gap: 0.3rem;
        padding: 1rem 0.2rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        min-width: 35px;
    }

    .step-number::before {
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
    }

    .step-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        max-width: 100px;
    }

    .step-btn i {
        font-size: 0.6rem;
    }

    .step-indicator {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 50px;
    }

    .step-container {
        padding: 1.5rem 0.8rem;
    }
}

/* Additional animations for step interactions */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Smooth transitions for step morphing */
.step-content {
    will-change: transform, opacity;
}

.step-nav-item {
    will-change: transform;
}

/* Enhanced hover states */
.step-nav-item:hover {
    animation: pulse 0.3s ease-in-out;
}

/* Modern Feature Cards */
.modern-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.modern-feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.modern-feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(127, 91, 254, 0.3);
}

/* Gradient Border Animation */
.card-gradient-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7F5BFE, #F35BF6, #f04a13, #7F5BFE);
    background-size: 400% 400%;
    border-radius: 34px;
    z-index: -1;
    animation: gradientBorderMove 6s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-feature-card:hover .card-gradient-border {
    opacity: 0.1;
}

@keyframes gradientBorderMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(127, 91, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(127, 91, 254, 0.6);
    font-size: 1.2rem;
    animation: floatAround 15s infinite linear;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem auto;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.influencer-icon {
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
}

.brand-icon {
    background: linear-gradient(135deg, #f04a13 0%, #F35BF6 100%);
}

.main-icon i {
    font-size: 3rem;
    color: white;
    z-index: 2;
}

.main-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Pulse Ring */
.icon-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(127, 91, 254, 0.3);
    border-radius: 25px;
    transform: translate(-50%, -50%) scale(0);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Card Title */
.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-gradient {
    background: linear-gradient(45deg, #7F5BFE 0%, #F35BF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    color: #333;
    font-weight: 600;
}

/* Card Content */
.card-content {
    flex: 1;
    margin-bottom: 2rem;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(127, 91, 254, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(127, 91, 254, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(127, 91, 254, 0.1);
    border-color: rgba(127, 91, 254, 0.2);
    transform: translateX(10px);
}

.feature-item i {
    color: #7F5BFE;
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

/* Card Footer */
.card-footer {
    margin-top: auto;
}

.modern-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.influencer-button {
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(127, 91, 254, 0.3);
}

.brand-button {
    background: linear-gradient(135deg, #f04a13 0%, #F35BF6 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(240, 74, 19, 0.3);
}

.modern-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(127, 91, 254, 0.4);
}

.button-text {
    z-index: 2;
    transition: all 0.3s ease;
}

.button-icon {
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-cta-button:hover .button-glow {
    transform: translateX(100%);
}

/* Floating Animation */
@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -30px) rotate(180deg); }
    75% { transform: translate(-30px, 10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1rem;
    }

    .modern-feature-card {
        padding: 2rem;
        min-height: auto;
    }

    .main-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .main-icon i {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 2rem;
    }

    .card-description {
        font-size: 1rem;
    }

    .floating-icons {
        display: none; /* Hide floating icons on mobile for performance */
    }

    .modern-feature-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .feature-item:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .modern-feature-card {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .main-icon {
        width: 70px;
        height: 70px;
    }

    .main-icon i {
        font-size: 2rem;
    }

    .modern-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Bridge Animation Section */
.bridge-section {
    background: linear-gradient(135deg, rgba(127, 91, 254, 0.02) 0%, rgba(243, 91, 246, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.bridge-container {
    position: relative;
    padding: 2rem;
}

.bridge-title-container {
    text-align: center;
    margin-bottom: 4rem;
}

.bridge-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.bridge-subtitle {
    color: #333;
    font-weight: 600;
}

.bridge-animation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4rem 0;
    position: relative;
    min-height: 300px;
}

/* Bridge Sides */
.bridge-side {
    flex: 1;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.side-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.6s ease;
}

.brand-side {
    background: linear-gradient(135deg, #f04a13 0%, #F35BF6 100%);
}

.influencer-side {
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
}

.side-icon i {
    font-size: 3.5rem;
    color: white;
    z-index: 2;
}

.side-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 35px;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: sideGlow 3s ease-in-out infinite;
}

.brand-glow {
    background: radial-gradient(circle, rgba(240, 74, 19, 0.3) 0%, transparent 70%);
}

.influencer-glow {
    background: radial-gradient(circle, rgba(127, 91, 254, 0.3) 0%, transparent 70%);
}

.side-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.side-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.4;
}

/* Protection Shields */
.protection-shield {
    position: absolute;
    top: -20px;
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.bridge-section.bridge-animate .protection-shield {
    animation: shieldAppear 2s ease-in-out 3s forwards;
}

.left-shield {
    right: -10px;
}

.right-shield {
    left: -10px;
}

/* Bridge Structure */
.bridge-structure {
    flex: 2;
    position: relative;
    height: 200px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bridge base removed - only deck and pillars remain */

.bridge-pillar {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 100px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 4px;
    transform: scaleY(0);
    transform-origin: bottom;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* Animation classes - added when section is visible */
.bridge-section.bridge-animate .left-pillar {
    animation: pillarGrow 1.5s ease-in-out 0.5s forwards;
}

.bridge-section.bridge-animate .right-pillar {
    animation: pillarGrow 1.5s ease-in-out 0.7s forwards;
}

.bridge-deck {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 6px;
    transform: scaleX(0) translateY(-50%);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.bridge-section.bridge-animate .bridge-deck {
    animation: deckGrow 1.8s ease-in-out 1.2s forwards;
}

/* Bridge Cables */
.bridge-cables {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cable {
    position: absolute;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    width: 2px;
    opacity: 0;
    transform-origin: top;
    animation: cableAppear 0.8s ease-in-out forwards;
}

.bridge-section.bridge-animate .cable-1 {
    left: 30%;
    top: 30%;
    height: 60px;
    transform: rotate(15deg);
    animation: cableAppear 0.8s ease-in-out 2s forwards;
}

.bridge-section.bridge-animate .cable-2 {
    left: 40%;
    top: 25%;
    height: 70px;
    transform: rotate(8deg);
    animation: cableAppear 0.8s ease-in-out 2.2s forwards;
}

.bridge-section.bridge-animate .cable-3 {
    right: 40%;
    top: 25%;
    height: 70px;
    transform: rotate(-8deg);
    animation: cableAppear 0.8s ease-in-out 2.4s forwards;
}

.bridge-section.bridge-animate .cable-4 {
    right: 30%;
    top: 30%;
    height: 60px;
    transform: rotate(-15deg);
    animation: cableAppear 0.8s ease-in-out 2.6s forwards;
}

/* Bridge Logo */
.bridge-logo {
    position: absolute;
    top: -40px;
    left: 59%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(127, 91, 254, 0.3);
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.bridge-section.bridge-animate .logo-container {
    animation: logoAppear 1s ease-in-out 2.8s forwards;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: white;
    border-radius: 28px;
    z-index: -1;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
}

.bridge-section.bridge-animate .logo-glow {
    animation: logoGlow 2s ease-in-out 3.5s infinite;
}

/* Trust Particles */
.trust-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.bridge-section.bridge-animate .particle-1 {
    left: 20%;
    top: 40%;
    animation: particleFloat 3s ease-in-out 4s infinite;
}

.bridge-section.bridge-animate .particle-2 {
    left: 35%;
    top: 60%;
    animation: particleFloat 3s ease-in-out 4.5s infinite;
}

.bridge-section.bridge-animate .particle-3 {
    right: 35%;
    top: 60%;
    animation: particleFloat 3s ease-in-out 5s infinite;
}

.bridge-section.bridge-animate .particle-4 {
    right: 20%;
    top: 40%;
    animation: particleFloat 3s ease-in-out 5.5s infinite;
}

.bridge-section.bridge-animate .particle-5 {
    left: 50%;
    top: 30%;
    animation: particleFloat 3s ease-in-out 6s infinite;
}

/* Bridge Description */
.bridge-description {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.bridge-section.bridge-animate .bridge-description {
    animation: descriptionAppear 1s ease-in-out 4s forwards;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Bridge Animations */
@keyframes bridgeGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes pillarGrow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

@keyframes deckGrow {
    0% { transform: scaleX(0) translateY(-50%); }
    100% { transform: scaleX(1) translateY(-50%); }
}

@keyframes cableAppear {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes shieldAppear {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sideGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes descriptionAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bridge Mobile Responsive */
@media (max-width: 768px) {
    .bridge-main-title {
        font-size: 2.5rem;
    }

    .bridge-animation-container {
        /* Keep horizontal layout like desktop */
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 2rem 0;
        position: relative;
        min-height: 200px;
        padding: 0 0.5rem;
    }

    .bridge-structure {
        flex: 1.5;
        position: relative;
        height: 120px;
        margin: 0 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bridge-side {
        flex: 1;
        max-width: 140px;
        text-align: center;
        position: relative;
    }

    .side-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 0.8rem auto;
    }

    .side-icon i {
        font-size: 2.2rem;
    }

    .side-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .side-text p {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .bridge-pillar {
        height: 60px;
        width: 5px;
    }

    .bridge-deck {
        height: 6px;
    }

    .logo-container {
        padding: 0.4rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .protection-shield {
        position: absolute;
        top: -12px;
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        border-radius: 12px;
    }

    .left-shield {
        right: -3px;
    }

    .right-shield {
        left: -3px;
    }

    .description-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .bridge-container {
        padding: 1rem;
    }

    .bridge-logo {
        left: 59%;
        transform: translateX(-50%);
    }

    .cable {
        width: 1.5px;
    }

    .particle {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .bridge-main-title {
        font-size: 1.8rem;
    }

    .bridge-container {
        padding: 1rem;
    }

    .bridge-animation-container {
        min-height: 160px;
        margin: 1.5rem 0;
        padding: 0 0.3rem;
    }

    .bridge-structure {
        height: 100px;
        margin: 0 0.4rem;
        flex: 1.2;
    }

    .bridge-side {
        max-width: 110px;
    }

    .side-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
    }

    .side-icon i {
        font-size: 1.8rem;
    }

    .side-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }

    .side-text p {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .bridge-pillar {
        height: 50px;
        width: 4px;
    }

    .bridge-deck {
        height: 5px;
    }

    .logo-container {
        padding: 0.5rem;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .protection-shield {
        font-size: 0.5rem;
        padding: 0.15rem 0.4rem;
        border-radius: 10px;
        top: -10px;
    }

    .description-text {
        font-size: 0.8rem;
        padding: 0 0.3rem;
    }

    .cable {
        width: 1px;
    }

    .particle {
        width: 4px;
        height: 4px;
    }

    .bridge-title-container {
        margin-bottom: 2rem;
    }

    .bridge-logo {
        left: 66%;
        transform: translateX(-50%);
    }
}

/* Fallback background for when video fails to load */
#home {
    background: linear-gradient(135deg,
        rgba(226, 225, 231, 0.1) 0%,
        rgba(139, 69, 221, 0.1) 35%,
        rgba(88, 86, 214, 0.1) 70%,
        rgba(67, 56, 202, 0.1) 100%);
}

/* Animation for video fade-in */
@keyframes videoFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-background {
    animation: videoFadeIn 1s ease-in-out;
}

.video-fallback {
    background-image: url('../images/video-poster.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    background-image: url('../images/video-poster.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Mobile video positioning for za-brendove.html */
@media (max-width: 768px) {
    .video-background video {
        object-position: 60% center;
        transform: translateX(0%);
    }
}

/* Animated Trend Text */
.trend-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #7F5BFE 25%,
        #F35BF6 50%,
        #f04a13 75%,
        #ffffff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: trendGradientMove 3s ease-in-out infinite;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(127, 91, 254, 0.5);
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect - faster animation */
.trend-text:hover {
    animation: trendGradientMove 1s ease-in-out infinite;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(127, 91, 254, 0.8);
}

/* Gradient animation that moves across the text */
@keyframes trendGradientMove {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Add a subtle glow effect */
.trend-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(127, 91, 254, 0.3) 25%,
        rgba(243, 91, 246, 0.3) 50%,
        rgba(240, 74, 19, 0.3) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: trendGlowMove 3s ease-in-out infinite;
    border-radius: 4px;
    z-index: -1;
    filter: blur(8px);
}

@keyframes trendGlowMove {
    0% {
        background-position: -200% 0;
        opacity: 0;
    }
    50% {
        background-position: 200% 0;
        opacity: 1;
    }
    100% {
        background-position: -200% 0;
        opacity: 0;
    }
}

.gradient-card .icon-container {
    margin: 0 auto 1.5rem auto;
    background: rgba(255, 255, 255, 0.2);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gradient-card h3,
.gradient-card p {
    color: white;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;
}

/* CTA Background Pattern - Same as other sections */

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 3;
}

/* Header Section */
.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7f5af0, #6366f1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(127, 90, 240, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(127, 90, 240, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(127, 90, 240, 0.5);
    }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-line-1 {
    display: block;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 1s ease-out 0.3s forwards;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideUp 1s ease-out 0.6s forwards;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 1.2s forwards;
}

@keyframes titleSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGrow {
    to {
        width: 200px;
    }
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: descriptionFadeIn 1s ease-out 0.9s forwards;
}

@keyframes descriptionFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choice Cards Container */
.cta-choice-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(40px);
    animation: choiceContainerAppear 1s ease-out 1.5s forwards;
}

@keyframes choiceContainerAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Choice Cards */
.choice-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
}

.choice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.choice-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.influencer-choice .choice-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.brand-choice .choice-gradient-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.choice-card:hover .choice-gradient-bg {
    opacity: 0.05;
}

.choice-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Choice Icons */
.choice-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: all 0.3s ease;
}

.choice-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.influencer-choice .choice-icon i {
    color: #667eea;
}

.brand-choice .choice-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.brand-choice .choice-icon i {
    color: white;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.influencer-choice:hover .icon-ring {
    border-color: #667eea;
    animation: iconRingPulse 2s ease-in-out infinite;
}

.brand-choice:hover .icon-ring {
    border-color: #f5576c;
    animation: iconRingPulse 2s ease-in-out infinite;
}

@keyframes iconRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.choice-card:hover .choice-icon {
    transform: scale(1.1);
}

/* Choice Logo for Influencers */
.choice-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cta-influencer-icon {
    background: white;
    border: 3px solid #667eea;
}

.influencer-choice:hover .cta-influencer-icon {
    border-color: #5a67d8;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* Choice Text */
.choice-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.choice-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Choice Features */
.choice-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.choice-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

.choice-features i {
    color: #22c55e;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Choice Buttons */
.choice-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.influencer-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.brand-button {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.choice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.button-text {
    transition: transform 0.3s ease;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.choice-button:hover .button-text {
    transform: translateX(-5px);
}

.choice-button:hover .button-arrow {
    transform: translateX(5px);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.choice-button:active .button-ripple {
    width: 300px;
    height: 300px;
}

/* Choice Divider */
.choice-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.1rem;
}

.divider-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.divider-text {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f1f5f9;
}

/* Trust Indicators */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: trustIndicatorsAppear 1s ease-out 2s forwards;
}

@keyframes trustIndicatorsAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: #6ad80f;
    font-size: 1.2rem;
}

/* Choice Glow Effect */
.choice-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.influencer-choice .choice-glow {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
}

.brand-choice .choice-glow {
    background: radial-gradient(circle, rgba(245, 87, 108, 0.2) 0%, transparent 70%);
}

.choice-card:hover .choice-glow {
    opacity: 1;
}

/* CTA Responsive Styles */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-choice-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .choice-card.influencer-choice {
        order: 1;
    }

    .choice-divider {
        order: 2;
        justify-content: center;
    }

    .choice-card.brand-choice {
        order: 3;
    }

    .choice-card {
        padding: 2rem;
    }

    .choice-icon {
        width: 70px;
        height: 70px;
    }

    .choice-icon i {
        font-size: 1.8rem;
    }

    .choice-title {
        font-size: 1.6rem;
    }

    .choice-button {
        min-width: 180px;
        padding: 0.9rem 1.8rem;
    }

    .cta-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .choice-card {
        padding: 1.5rem;
    }

    .choice-icon {
        width: 60px;
        height: 60px;
    }

    .choice-icon i {
        font-size: 1.6rem;
    }

    .choice-title {
        font-size: 1.4rem;
    }

    .choice-button {
        min-width: 160px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* ===== PRICING HIGHLIGHT STYLES ===== */
.pricing-highlight {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(127, 91, 254, 0.3);
    -webkit-backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-input,
.price-output {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    min-width: 160px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.price-output {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.price-amount.highlight {
    color: #d97706;
    text-shadow: none;
}

.price-arrow {
    color: #7c3aed;
    font-size: 1.8rem;
    animation: arrowPulse 2s ease-in-out infinite;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.pricing-note {
    text-align: center;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Single Card Styles */
.single-card {
    max-width: none;
    margin: 0 auto;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-example {
        flex-direction: column;
        gap: 1rem;
    }

    .price-arrow {
        transform: rotate(90deg);
    }

    .pricing-highlight {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }
}

/* ===== INFLUENCER TYPES SECTION ===== */
.influencer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.influencer-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.influencer-type-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.influencer-type-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.youtube-card .card-glow-effect {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.instagram-card .card-glow-effect {
    background: radial-gradient(circle, rgba(225, 48, 108, 0.1) 0%, transparent 70%);
}

.tiktok-card .card-glow-effect {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
}

.micro-card .card-glow-effect {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
}

.influencer-type-card:hover .card-glow-effect {
    opacity: 1;
}

/* Platform Icon Container */
.platform-icon-container {
    position: relative;
    margin: 0 auto 1.5rem auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.youtube-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.instagram-icon {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
}

.tiktok-icon {
    background: linear-gradient(135deg, #000000, #ff0050);
}

.micro-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.influencer-type-card:hover .platform-icon {
    transform: scale(1.1);
}

/* Icon Orbit Animation */
.icon-orbit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: iconOrbit 8s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.dot-1 {
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.dot-2 {
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    animation-delay: 2.67s;
}

.dot-3 {
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 5.33s;
}

@keyframes iconOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Platform Text Styles */
.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.platform-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.follower-range {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #cbd5e1;
}

.range-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.platform-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-item i {
    color: #6366f1;
    font-size: 1.2rem;
}

.stat-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

/* CTA Highlight Box */
.cta-highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.cta-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: highlightGlow 4s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.cta-highlight-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-highlight-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-highlight-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-highlight-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #5a67d8;
}

.cta-highlight-button .button-icon {
    transition: transform 0.3s ease;
}

.cta-highlight-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-highlight-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-highlight-button:active .button-glow {
    width: 300px;
    height: 300px;
}

/* Responsive Styles for Influencer Types */
@media (max-width: 1200px) {
    .influencer-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .influencer-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .influencer-type-card {
        padding: 1.5rem;
    }

    .platform-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .platform-title {
        font-size: 1.3rem;
    }

    .platform-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-item {
        flex-direction: row;
        justify-content: center;
        padding: 0.5rem;
    }

    .stat-item span {
        font-size: 0.9rem;
    }

    .cta-highlight-box {
        padding: 2rem 1.5rem;
    }

    .cta-highlight-title {
        font-size: 1.6rem;
    }

    .cta-highlight-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .influencer-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .influencer-type-card {
        padding: 1.25rem;
    }

    .platform-title {
        font-size: 1.2rem;
    }

    .platform-description {
        font-size: 0.9rem;
    }

    .cta-highlight-title {
        font-size: 1.4rem;
    }

    .cta-highlight-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== SINGLE CHOICE CTA STYLES ===== */
.cta-single-choice-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.single-choice {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.single-choice .choice-content {
    text-align: center;
}

.single-choice .choice-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.single-choice .choice-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.single-choice .choice-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.single-choice .choice-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.single-choice .choice-features i {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.single-choice .choice-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.single-choice .choice-button .button-arrow i {
    font-size: 1.3rem;
}

/* Trust Indicators Enhancement */
.cta-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-item i {
    color: #58d120;
    font-size: 1.2rem;
}

.trust-item span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive for Single Choice */
@media (max-width: 768px) {
    .single-choice .choice-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .single-choice .choice-title {
        font-size: 1.5rem;
    }

    .single-choice .choice-subtitle {
        font-size: 1.1rem;
    }

    .single-choice .choice-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .cta-trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .trust-item i {
        font-size: 1rem;
    }
}

/* ===== MODERN BENEFITS SECTION ===== */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.benefits-modern-container {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.benefits-modern-container .grid {
    align-items: start;
}

.benefits-modern-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Image Section Styles */
.image-section {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 32px;
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-stats {
    position: relative;
    width: 100%;
    height: 100%;
}

.stat-bubble {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    animation: float 3s ease-in-out infinite;
    -webkit-backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stat-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.stat-bubble i {
    color: #667eea;
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Compact Benefits Section Styles */
.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item:hover {
    padding-left: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-bottom-color: transparent;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #667eea;
}

.benefit-description {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Benefits CTA */
.benefits-cta {
    margin-top: 2rem;
    text-align: center;
    grid-column: 1 / -1;
}

.benefits-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.benefits-cta-button .button-icon {
    transition: transform 0.3s ease;
}

.benefits-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.benefits-cta-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.benefits-cta-button:active .button-glow {
    width: 300px;
    height: 300px;
}

/* Responsive Benefits Section */
@media (max-width: 1024px) {
    .benefits-modern-container {
        padding: 2rem;
    }

    .main-image {
        height: 400px;
    }

    .stat-bubble {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .benefits-modern-container {
        padding: 1.5rem;
    }

    .benefits-modern-container .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .image-section {
        order: 2;
    }

    .benefits-section {
        order: 1;
    }

    .main-image {
        height: 300px;
    }

    .benefit-item {
        padding: 1rem 0;
    }

    .benefit-item:hover {
        padding-left: 0.5rem;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 0.75rem 0;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-description {
        font-size: 0.85rem;
    }

    .benefits-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== BRAND PRICING ENHANCEMENTS ===== */
.brand-card .pricing-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-platform {
    text-align: center;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.1);
}

.price-platform .price-label {
    color: #92400e;
    font-weight: 600;
}

.price-platform .price-amount {
    color: #d97706;
}

.brand-card .price-arrow {
    color: #7c3aed;
    font-size: 1.2rem;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.2);
    animation: none;
}

.brand-card .pricing-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

/* Brand Icon Styling */
.brand-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Responsive Brand Pricing */
@media (max-width: 768px) {
    .brand-card .pricing-example {
        flex-direction: column;
        gap: 0.75rem;
    }

    .price-platform {
        min-width: 140px;
    }

    .brand-card .price-arrow {
        transform: rotate(90deg);
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== CUSTOM OFFERS SECTION ===== */
.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.custom-offers-container {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.custom-offers-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #ec4899, #f97316);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Custom Image Section */
.custom-image-section {
    position: relative;
}

.custom-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.custom-image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 32px;
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.custom-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-image-container:hover .custom-main-image {
    transform: scale(1.05);
}

.custom-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-features-floating {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-feature-bubble {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    animation: customFloat 4s ease-in-out infinite;
    -webkit-backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.bubble-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 45%;
    right: 15%;
    animation-delay: 1.5s;
}

.bubble-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.custom-feature-bubble i {
    color: #8b5cf6;
    font-size: 1rem;
}

@keyframes customFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(1deg);
    }
    66% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

/* Custom Content Section */
.custom-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-content-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.custom-content-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.custom-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.custom-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-icon-container i {
    color: white;
    font-size: 1.5rem;
    z-index: 2;
}

.custom-icon-pulse {
    position: absolute;
    inset: -5px;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    opacity: 0;
    animation: customIconPulse 2s ease-in-out infinite;
}

.custom-content-card:hover .custom-icon-pulse {
    opacity: 1;
}

@keyframes customIconPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.custom-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.custom-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.custom-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.custom-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.custom-benefit-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.1);
}

.custom-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-benefit-icon i {
    color: white;
    font-size: 1rem;
}

.custom-benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.custom-benefit-text p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.custom-card-footer {
    text-align: center;
}

.custom-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.custom-cta-button .button-icon {
    transition: transform 0.3s ease;
}

.custom-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.custom-cta-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.custom-cta-button:active .button-glow {
    width: 300px;
    height: 300px;
}

/* Responsive Custom Offers */
@media (max-width: 1024px) {
    .custom-offers-container {
        padding: 2rem;
    }

    .custom-main-image {
        height: 350px;
    }

    .custom-content-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .custom-offers-container {
        padding: 1.5rem;
    }

    .custom-offers-container .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-image-section {
        order: 2;
    }

    .custom-content-section {
        order: 1;
    }

    .custom-main-image {
        height: 300px;
    }

    .custom-content-card {
        padding: 1.5rem;
    }

    .custom-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .custom-icon-container {
        width: 50px;
        height: 50px;
    }

    .custom-icon-container i {
        font-size: 1.3rem;
    }

    .custom-card-title {
        font-size: 1.3rem;
    }

    .custom-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .custom-benefit-item:hover {
        transform: translateY(-3px);
    }

    .custom-feature-bubble {
        position: relative;
        margin: 0.5rem;
        display: inline-flex;
        animation: none;
    }

    .custom-features-floating {
        position: static;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .bubble-1, .bubble-2, .bubble-3 {
        position: static;
    }
}

@media (max-width: 480px) {
    .custom-content-card {
        padding: 1.25rem;
    }

    .custom-card-title {
        font-size: 1.2rem;
    }

    .custom-description {
        font-size: 1rem;
    }

    .custom-benefit-text h4 {
        font-size: 1rem;
    }

    .custom-benefit-text p {
        font-size: 0.9rem;
    }

    .custom-cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .custom-feature-bubble {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ===== BRAND PLATFORM MARKETING SECTION ===== */
.brand-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

.brand-platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.brand-platform-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.youtube-brand-card:hover {
    border-color: #ff0000;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2);
}

.instagram-brand-card:hover {
    border-color: #e4405f;
    box-shadow: 0 20px 50px rgba(228, 64, 95, 0.2);
}

.tiktok-brand-card:hover {
    border-color: #000000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}



.brand-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.benefit-tag {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.youtube-brand-card .benefit-tag {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.2);
}

.instagram-brand-card .benefit-tag {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    color: #be185d;
    border-color: rgba(190, 24, 93, 0.2);
}

.tiktok-brand-card .benefit-tag {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    color: #111827;
    border-color: rgba(17, 24, 39, 0.2);
}



/* Marketing Advantage Section */
.marketing-advantage-section {
    margin-top: 4rem;
}

.advantage-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    -webkit-backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.advantage-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.advantage-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.advantage-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Responsive Brand Platforms */
@media (max-width: 1024px) {
    .brand-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 2.5rem;
    }

    .advantage-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .brand-platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-platform-card {
        padding: 1.5rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .advantage-title {
        font-size: 1.5rem;
    }

    .advantage-description {
        font-size: 1.1rem;
    }

    .advantage-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brand-platform-card {
        padding: 1.25rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }

    .advantage-title {
        font-size: 1.3rem;
    }

    .advantage-description {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* ===== BRAND CTA CUSTOMIZATIONS ===== */
.cta-brand-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.brand-button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.brand-button:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}


