/* 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 Process Timeline ─── */
.process-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.process-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 62px;
}

.process-step-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7F5BFE 0%, #F35BF6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(127, 91, 254, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.process-step:hover .process-step-badge {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(127, 91, 254, 0.55);
}

.process-step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, rgba(127,91,254,0.45) 0%, rgba(243,91,246,0.1) 100%);
    margin: 5px 0;
    min-height: 20px;
}

.process-step:last-child .process-step-line {
    display: none;
}

.process-step-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(127, 91, 254, 0.13);
    border-radius: 20px;
    padding: 1.4rem 1.8rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(127, 91, 254, 0.13);
    border-color: rgba(127, 91, 254, 0.28);
}

.process-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(127,91,254,0.11), rgba(243,91,246,0.11));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #7F5BFE;
    transition: transform 0.3s ease, background 0.3s ease;
}

.process-step-card:hover .process-step-icon {
    transform: scale(1.1) rotate(-6deg);
    background: linear-gradient(135deg, rgba(127,91,254,0.2), rgba(243,91,246,0.2));
}

.process-step-body {
    flex: 1;
    min-width: 0;
}

.process-step-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}

.process-step-desc {
    font-size: 0.94rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 640px) {
    .process-step-left {
        width: 46px;
    }
    .process-step-badge {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }
    .process-step-card {
        padding: 1.1rem 1.2rem;
        gap: 0.9rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    .process-step-card:hover {
        transform: none;
    }
    .process-step-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 11px;
    }
    .process-step-title {
        font-size: 0.98rem;
    }
    .process-step-desc {
        font-size: 0.88rem;
    }
}
/* ─── End Process Timeline ─── */

/* 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;
        align-items: center;
        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);
}

/* ═══════════════════════════════════════════════════════
   FAZA 1 - Hero Counters / Kreator Tabs / ROI Kalkulator
   ═══════════════════════════════════════════════════════ */

/* Kreator Tabs */
.kreator-tab {
    cursor: pointer;
    background: transparent;
    border: none;
    color: #374151;
    transition: all 0.3s ease;
}
.kreator-tab.active-tab {
    background: linear-gradient(135deg, #8B5CF6, #EC4899) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}
.kreator-panel { transition: opacity 0.3s ease; }
.kreator-panel.hidden { display: none; }

/* ROI Slider */
.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #8B5CF6, #EC4899);
    outline: none;
    border-radius: 999px;
}
.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 3px solid #8B5CF6;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139,92,246,0.4);
    transition: all 0.2s;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.roi-bar { transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

/* Modal Backdrop */
.modal-backdrop {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}
.modal-backdrop.hidden { display: none; }
.modal-box {
    background: #fff;
    border-radius: 24px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* EU Reach Flag Badges */
.eu-flag-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #E5E7EB;
    border-radius: 999px; padding: 6px 14px;
    font-size: 0.85rem; font-weight: 600; color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.eu-flag-badge:hover { border-color: #8B5CF6; color: #8B5CF6; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(139,92,246,0.2); }
.eu-flag-badge img { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 3px rgba(0,0,0,0.18); flex-shrink: 0; }

/* Agency Card */
.agency-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #F3E8FF;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(139,92,246,0.06);
}
.agency-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(139,92,246,0.18); border-color: #C4B5FD; }

/* Campaign Platform Tabs */
.platform-tab-btn {
    padding: 10px 20px; border-radius: 12px; border: 2px solid transparent;
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
    transition: all 0.3s; background: #F9FAFB; color: #6B7280;
}
.platform-tab-btn.active-platform { border-color: #8B5CF6; background: #F3E8FF; color: #7C3AED; }

/* FAQ Accordion */
.faq-item { border-bottom: 1px solid #F3F4F6; }
.faq-question {
    width: 100%; text-align: left; padding: 20px 0;
    font-weight: 700; font-size: 1rem; color: #1F2937;
    background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; transition: color 0.2s;
}
.faq-question:hover { color: #8B5CF6; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: #6B7280; line-height: 1.7; font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 18px; }
.faq-icon { transition: transform 0.3s; flex-shrink: 0; color: #8B5CF6; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Testimonial Cards */
.testimonial-card {
    background: #fff; border-radius: 20px;
    border: 1px solid #F3E8FF; padding: 28px;
    box-shadow: 0 4px 16px rgba(139,92,246,0.08);
    transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(139,92,246,0.15); }

/* ============================================================
   PHASE 1 — HERO + STATS BAR
   ============================================================ */

/* --- Hero Badge --- */
.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    padding: 8px 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.badge-dot {
    width: 9px;
    height: 9px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80, 0 0 20px rgba(74,222,128,0.4);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Hero CTA Group --- */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.9s ease 0.3s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px 16px 28px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6, #f04a13);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #fff;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 36px rgba(127, 91, 254, 0.55);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 16px 52px rgba(127, 91, 254, 0.75);
}

.hero-cta-primary .cta-glow-fx {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.hero-cta-primary:hover .cta-glow-fx {
    opacity: 1;
}

.hero-cta-primary .cta-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: transform 0.3s;
}

.hero-cta-primary:hover .cta-arrow-wrap {
    transform: translateX(4px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.55);
}

.cta-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    font-size: 0.85rem;
}

.cta-label {
    font-weight: 700;
}

/* --- Hero Trust Bar --- */
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    max-width: fit-content;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.5s both;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
}

.trust-badge-item i {
    color: #c4b5fd;
    font-size: 0.85rem;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    user-select: none;
}

/* --- Stats Bar Section --- */
.stats-bar-section {
    background: linear-gradient(135deg, #110225 0%, #1e0840 40%, #2d1255 70%, #110225 100%);
    position: relative;
    border-top: 1px solid rgba(127, 91, 254, 0.2);
    border-bottom: 1px solid rgba(127, 91, 254, 0.2);
}

.stats-bar-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(127,91,254,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.stats-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    flex: 1;
    min-width: 190px;
    max-width: 260px;
}

.stats-bar-icon-box {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(127,91,254,0.25), rgba(243,91,246,0.25));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #c4b5fd;
    flex-shrink: 0;
    border: 1px solid rgba(127, 91, 254, 0.3);
    box-shadow: 0 4px 16px rgba(127,91,254,0.15);
}

.stats-bar-content {
    flex: 1;
}

.stats-count {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stats-count::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
}

.stats-count-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stats-main-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
}

.stats-sub-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 3px;
}

.stats-bar-sep {
    width: 1px;
    height: 58px;
    background: linear-gradient(to bottom, transparent, rgba(127,91,254,0.4), transparent);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        justify-content: center;
    }

    .hero-trust-bar {
        border-radius: 20px;
        padding: 12px 16px;
    }

    .trust-sep {
        display: none;
    }

    .stats-bar-sep {
        display: none;
    }

    .stats-bar-grid {
        gap: 6px;
        justify-content: flex-start;
    }

    .stats-bar-item {
        min-width: 160px;
        padding: 12px 10px;
    }

    .stats-count {
        font-size: 1.75rem;
    }

    .stats-count-text {
        font-size: 1.6rem;
    }
}
/* ============================================================ */

/* ============================================================
   PHASE 2 — ABOUT + ZA BRENDOVE + BRIDGE + MODALS
   ============================================================ */

/* --- Reusable Section Badge --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(127,91,254,0.1), rgba(243,91,246,0.08));
    border: 1px solid rgba(127,91,254,0.22);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.83rem;
    font-weight: 700;
    color: #7F5BFE;
    letter-spacing: 0.02em;
}
.section-badge i { font-size: 0.88rem; }

.section-badge.brand-badge {
    background: linear-gradient(135deg, rgba(37,99,235,0.07), rgba(127,91,254,0.07));
    border-color: rgba(37,99,235,0.18);
    color: #2563eb;
}

/* --- About Cards Grid (Phase 2 redesign) --- */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.about-card-wide {
    grid-column: 1 / -1;
}
.about-card {
    background: linear-gradient(135deg, rgba(127,91,254,0.06), rgba(243,91,246,0.04));
    border: 1px solid rgba(127,91,254,0.13);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}
.about-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7F5BFE, #F35BF6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.about-card:hover::after { transform: scaleX(1); }
.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(127,91,254,0.28);
    box-shadow: 0 20px 48px rgba(127,91,254,0.13);
}
.about-card-icon-wrap {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(127,91,254,0.3);
    transition: transform 0.3s;
}
.about-card:hover .about-card-icon-wrap { transform: scale(1.08) rotate(-3deg); }
.about-card-num {
    position: absolute; top: 20px; right: 20px;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(127,91,254,0.05);
    line-height: 1;
    user-select: none;
}
.about-card h3 {
    font-size: 1.1rem; font-weight: 800;
    color: #1e1b4b; margin-bottom: 10px;
}
.about-card p {
    font-size: 0.9rem; color: #6b7280;
    line-height: 1.65; margin-bottom: 14px;
}
.about-card-tag {
    display: inline-flex; align-items: center;
    background: rgba(127,91,254,0.08);
    color: #7F5BFE;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.72rem; font-weight: 700;
}
@media (max-width: 768px) {
    .about-cards-grid { grid-template-columns: 1fr; }
    .about-card-wide { grid-column: auto; }
}

/* --- Za Brendove Main Section --- */
.brand-main-section {
    background: linear-gradient(160deg, #f9f7ff 0%, #fff 50%, #f0f7ff 100%);
    position: relative;
}
.brand-main-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 15% 20%, rgba(127,91,254,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 85% 80%, rgba(37,99,235,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Pain Cards */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1024px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
    background: #fff;
    border: 1px solid #fee2e2;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pain-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(239,68,68,0.1);
}
.pain-icon-wrap {
    width: 44px; height: 44px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: #ef4444;
    margin-bottom: 14px;
}
.pain-card h4 {
    font-size: 0.92rem; font-weight: 800;
    color: #1f2937; margin-bottom: 8px;
}
.pain-card p {
    font-size: 0.82rem; color: #9ca3af; line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .solutions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .solutions-grid { grid-template-columns: 1fr; } }

.solution-card {
    background: #fff;
    border: 1px solid rgba(127,91,254,0.12);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #7F5BFE, #F35BF6);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card.clickable { cursor: pointer; }
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(127,91,254,0.14);
    border-color: rgba(127,91,254,0.28);
}
.solution-icon-wrap {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(127,91,254,0.09), rgba(243,91,246,0.09));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #7F5BFE;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}
.solution-card:hover .solution-icon-wrap {
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white; transform: scale(1.1);
}
.solution-card h4 {
    font-size: 1rem; font-weight: 800;
    color: #1e1b4b; margin-bottom: 8px;
}
.solution-card p {
    font-size: 0.84rem; color: #6b7280;
    line-height: 1.6; margin-bottom: 14px;
}
.solution-link {
    font-size: 0.8rem; font-weight: 700;
    color: #7F5BFE;
    display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.solution-card:hover .solution-link { gap: 10px; }

/* Brand CTA Block */
.brand-cta-block {
    background: linear-gradient(135deg, #140330 0%, #221051 50%, #140330 100%);
    border-radius: 28px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.brand-cta-block::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 25% 50%, rgba(127,91,254,0.22) 0%, transparent 70%);
    pointer-events: none;
}
.brand-cta-left { flex: 1; min-width: 260px; position: relative; }
.brand-cta-left h3 {
    font-size: 1.75rem; font-weight: 800;
    color: white; margin-bottom: 10px;
}
.brand-cta-left p {
    font-size: 0.92rem; color: rgba(255,255,255,0.6);
    line-height: 1.6; margin-bottom: 24px;
}
.brand-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.bcta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(127,91,254,0.4);
}
.bcta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(127,91,254,0.55); }
.bcta-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 24px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s;
}
.bcta-secondary:hover { background: rgba(255,255,255,0.18); }
.brand-cta-right {
    display: flex; gap: 32px; flex-wrap: wrap;
    position: relative;
}
.bcta-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.bcta-num {
    font-size: 2rem; font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.bcta-desc {
    font-size: 0.7rem; color: rgba(255,255,255,0.45);
    font-weight: 600; text-align: center; max-width: 90px;
}
@media (max-width: 768px) {
    .brand-cta-block { padding: 28px 20px; }
    .brand-cta-right { gap: 20px; justify-content: center; width: 100%; }
}

/* --- Bridge Enhancements --- */
.bridge-badge { margin: 0 auto; }

.bridge-intro-desc {
    text-align: center;
    color: #6b7280;
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 0.98rem;
    line-height: 1.65;
}

.bridge-side-stats {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 10px;
}
.bss-item {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(127,91,254,0.08);
    border: 1px solid rgba(127,91,254,0.18);
    border-radius: 12px;
    padding: 7px 13px; min-width: 58px;
}
.bss-num {
    font-size: 0.95rem; font-weight: 800;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.bss-lbl {
    font-size: 0.62rem; color: #9ca3af;
    font-weight: 600; text-align: center; margin-top: 2px;
}

/* Data Flow Pills on Bridge */
.bridge-data-flow {
    position: absolute;
    bottom: -16px;
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 5;
    white-space: nowrap;
}
.data-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(127,91,254,0.18);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.66rem; font-weight: 700; color: #7F5BFE;
    box-shadow: 0 4px 12px rgba(127,91,254,0.15);
}
.data-pill.dp-1 { animation: dataPillFloat 3s ease-in-out infinite 0s; }
.data-pill.dp-2 { animation: dataPillFloat 3s ease-in-out infinite 1s; }
.data-pill.dp-3 { animation: dataPillFloat 3s ease-in-out infinite 2s; }
@keyframes dataPillFloat {
    0%, 100% { transform: translateY(0); opacity: 0.75; }
    50%       { transform: translateY(-8px); opacity: 1; }
}

/* Bridge Bottom Stats Bar */
.bridge-bottom-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; flex-wrap: wrap;
    margin-top: 48px;
    padding: 22px 32px;
    background: rgba(127,91,254,0.05);
    border: 1px solid rgba(127,91,254,0.1);
    border-radius: 20px;
}
.bbs-item {
    display: flex; align-items: center; gap: 14px;
    flex: 1; min-width: 190px;
}
.bbs-item i { font-size: 1.35rem; color: #7F5BFE; flex-shrink: 0; }
.bbs-item strong { display: block; font-size: 0.92rem; color: #1e1b4b; font-weight: 800; }
.bbs-item span { font-size: 0.76rem; color: #9ca3af; }
.bbs-sep { width: 1px; height: 36px; background: rgba(127,91,254,0.18); flex-shrink: 0; }

/* Bridge CTA Row */
.bridge-cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    justify-content: center; margin-top: 20px;
}
.bridge-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 50px;
    font-weight: 700; font-size: 0.86rem;
    text-decoration: none; transition: all 0.3s;
}
.bridge-cta-btn.brand-btn {
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white;
    box-shadow: 0 6px 18px rgba(127,91,254,0.35);
}
.bridge-cta-btn.brand-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(127,91,254,0.5); }
.bridge-cta-btn.creator-btn {
    background: rgba(127,91,254,0.07);
    color: #7F5BFE;
    border: 1px solid rgba(127,91,254,0.18);
}
.bridge-cta-btn.creator-btn:hover { background: rgba(127,91,254,0.14); transform: translateY(-2px); }

/* --- Modal System --- */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10, 4, 20, 0.65);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-box {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
    animation: modalSlideUp 0.32s cubic-bezier(0.34,1.56,0.64,1) both;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 36px; height: 36px;
    background: #f3f4f6; border: none; border-radius: 50%;
    font-size: 0.95rem; color: #6b7280; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: #e5e7eb; color: #111; transform: scale(1.08); }
.modal-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, rgba(127,91,254,0.1), rgba(243,91,246,0.1));
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem; color: #7F5BFE;
    margin-bottom: 16px;
}
.modal-title { font-size: 1.35rem; font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.modal-desc { color: #6b7280; font-size: 0.9rem; line-height: 1.55; margin-bottom: 22px; }
.modal-steps { margin-bottom: 24px; display: flex; flex-direction: column; gap: 14px; }
.modal-step { display: flex; gap: 14px; align-items: flex-start; }
.ms-num {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white; border-radius: 50%;
    font-size: 0.72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.ms-text { font-size: 0.87rem; color: #374151; line-height: 1.55; }
.ms-text strong { color: #1e1b4b; }
.modal-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.modal-feature { display: flex; gap: 12px; align-items: flex-start; }
.modal-feature i { color: #7F5BFE; margin-top: 3px; font-size: 0.95rem; flex-shrink: 0; }
.modal-feature span { font-size: 0.87rem; color: #374151; line-height: 1.55; }
.modal-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white; padding: 12px 24px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(127,91,254,0.35);
}
.modal-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(127,91,254,0.5); }
@media (max-width: 640px) {
    .modal-box { padding: 28px 20px; border-radius: 20px; }
    .bridge-bottom-stats { padding: 16px; }
    .bbs-sep { display: none; }
}
/* ============================================================ */

/* ============================================================
   PHASE 3 — KREATORI GALLERY + ZA KREATORE
   ============================================================ */

/* --- Gallery Section --- */
.gallery-section {
    background: linear-gradient(160deg, #0c0220 0%, #170430 50%, #0c0220 100%);
    position: relative;
}
.gallery-dark-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(127,91,254,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.section-badge.gallery-badge {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.88);
}
.gallery-wrapper { position: relative; user-select: none; }

/* Scroll Hint */
.gallery-scroll-hint {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; color: rgba(255,255,255,0.45);
    font-size: 0.78rem; font-weight: 600;
    margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase;
}
.scroll-hint-arrows { display: flex; gap: 2px; }
.scroll-hint-arrows i { color: #a78bfa; font-size: 0.7rem; animation: arrowSequence 1.2s ease-in-out infinite; }
.scroll-hint-arrows i:nth-child(1) { animation-delay: 0s; }
.scroll-hint-arrows i:nth-child(2) { animation-delay: 0.2s; }
.scroll-hint-arrows i:nth-child(3) { animation-delay: 0.4s; }
@keyframes arrowSequence {
    0%, 60%, 100% { opacity: 0.3; transform: translateX(0); }
    30%            { opacity: 1;   transform: translateX(4px); }
}

/* Nav Arrows */
.gallery-nav {
    position: absolute; top: 44%; transform: translateY(-50%);
    width: 46px; height: 46px;
    background: rgba(127,91,254,0.85);
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 50%; color: white; font-size: 0.95rem;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s; backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(127,91,254,0.4);
}
.gallery-nav:hover { background: #7F5BFE; transform: translateY(-50%) scale(1.1); box-shadow: 0 10px 28px rgba(127,91,254,0.6); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* Gallery Track */
.gallery-track {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 16px 70px 24px;
    scrollbar-width: thin; scrollbar-color: rgba(127,91,254,0.5) rgba(255,255,255,0.04);
    cursor: grab; -webkit-overflow-scrolling: touch;
}
.gallery-track.dragging { cursor: grabbing; scroll-behavior: auto; }
/* Disable snap during auto-scroll so RAF can move smoothly frame-by-frame */
.gallery-track.auto-scrolling { scroll-snap-type: none; scroll-behavior: auto; }
.gallery-track::-webkit-scrollbar { height: 5px; }
.gallery-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
.gallery-track::-webkit-scrollbar-thumb { background: rgba(127,91,254,0.45); border-radius: 3px; }
.gallery-track::-webkit-scrollbar-thumb:hover { background: rgba(127,91,254,0.75); }

/* Gallery Card */
.gallery-card {
    flex-shrink: 0; width: 258px;
    scroll-snap-align: start; display: block;
    text-decoration: none; position: relative;
    border-radius: 18px; overflow: visible;
    transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-card img {
    width: 100%; height: auto; display: block;
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.45);
    transition: box-shadow 0.3s; pointer-events: none;
}
.gallery-card:hover { transform: translateY(-8px) scale(1.025); }
.gallery-card:hover img { box-shadow: 0 20px 52px rgba(127,91,254,0.45); }
.gallery-card-overlay {
    position: absolute; inset: 0; border-radius: 18px;
    background: linear-gradient(to top, rgba(80,20,180,0.88) 0%, rgba(127,91,254,0.3) 50%, transparent 75%);
    opacity: 0; transition: opacity 0.3s ease;
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 18px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-cta {
    display: flex; align-items: center; gap: 7px;
    color: white; font-weight: 700; font-size: 0.82rem;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50px; padding: 7px 16px;
}
.gallery-card:hover .gallery-card-cta { background: rgba(255,255,255,0.28); }

/* Progress Bar */
.gallery-progress-wrap {
    height: 4px; background: rgba(255,255,255,0.07);
    border-radius: 2px; margin: 8px 70px 0; overflow: hidden;
}
.gallery-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #7F5BFE, #F35BF6, #f04a13);
    border-radius: 2px; width: 0%; transition: width 0.15s ease;
}

/* Gallery CTA */
.gallery-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: white; border-radius: 50px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(127,91,254,0.45);
}
.gallery-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(127,91,254,0.65); }

/* --- Za Kreatore Section --- */
.creators-section {
    background: linear-gradient(160deg, #fdfbff 0%, #fff 50%, #f8f5ff 100%);
    position: relative;
}
.creators-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 30%, rgba(243,91,246,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 90% 70%, rgba(127,91,254,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.section-badge.creator-badge {
    background: linear-gradient(135deg, rgba(243,91,246,0.1), rgba(127,91,254,0.08));
    border-color: rgba(243,91,246,0.2); color: #c026d3;
}

/* Creator Types Grid */
.creator-types-grid {
    display: grid; grid-template-columns: 1fr 60px 1fr;
    gap: 0; align-items: stretch;
}
.creator-type-card {
    background: #fff; border-radius: 28px; padding: 36px;
    position: relative; overflow: hidden; transition: all 0.35s ease;
}
.influencer-type {
    border: 1.5px solid rgba(127,91,254,0.18);
    box-shadow: 0 8px 32px rgba(127,91,254,0.07);
}
.influencer-type:hover { border-color: rgba(127,91,254,0.35); box-shadow: 0 20px 52px rgba(127,91,254,0.13); transform: translateY(-4px); }
.ugc-type {
    border: 1.5px solid rgba(236,72,153,0.18);
    box-shadow: 0 8px 32px rgba(236,72,153,0.07);
}
.ugc-type:hover { border-color: rgba(236,72,153,0.35); box-shadow: 0 20px 52px rgba(236,72,153,0.12); transform: translateY(-4px); }

.ct-badge-top {
    display: inline-block;
    background: linear-gradient(135deg, rgba(127,91,254,0.1), rgba(167,139,250,0.1));
    color: #7F5BFE; border-radius: 20px; padding: 4px 14px;
    font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px;
}
.ct-badge-top.ugc-badge-top {
    background: linear-gradient(135deg, rgba(236,72,153,0.1), rgba(244,63,94,0.08));
    color: #db2777;
}
.ct-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.ct-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.influencer-icon-wrap { background: linear-gradient(135deg, #7F5BFE, #c084fc); color: white; box-shadow: 0 6px 16px rgba(127,91,254,0.35); }
.ugc-icon-wrap        { background: linear-gradient(135deg, #ec4899, #f43f5e); color: white; box-shadow: 0 6px 16px rgba(236,72,153,0.35); }
.ct-header h3 { font-size: 1.2rem; font-weight: 800; color: #1e1b4b; }
.ct-header p  { font-size: 0.8rem; color: #9ca3af; margin-top: 2px; }
.ct-features  { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.ct-feature   { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: #374151; line-height: 1.5; }
.influencer-type .ct-feature i { color: #7F5BFE; flex-shrink: 0; margin-top: 2px; }
.ugc-type .ct-feature i        { color: #ec4899; flex-shrink: 0; margin-top: 2px; }
.ct-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 50px;
    font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.3s;
}
.influencer-cta { background: linear-gradient(135deg, #7F5BFE, #c084fc); color: white; box-shadow: 0 6px 18px rgba(127,91,254,0.3); }
.influencer-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(127,91,254,0.45); }
.ugc-cta { background: linear-gradient(135deg, #ec4899, #f43f5e); color: white; box-shadow: 0 6px 18px rgba(236,72,153,0.3); }
.ugc-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(236,72,153,0.45); }

.creator-type-divider {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px; padding: 0 5px;
}
.divider-line-v {
    flex: 1; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(127,91,254,0.2), transparent);
}
.divider-chip {
    font-size: 0.75rem; font-weight: 700; color: #9ca3af;
    background: #f3f4f6; border-radius: 20px; padding: 6px 10px; white-space: nowrap;
}

/* Common Benefits */
.creator-common-benefits {
    background: linear-gradient(135deg, rgba(127,91,254,0.04), rgba(243,91,246,0.03));
    border: 1px solid rgba(127,91,254,0.1); border-radius: 24px; padding: 40px;
}
.ccb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ccb-item { display: flex; gap: 14px; align-items: flex-start; }
.ccb-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, rgba(127,91,254,0.12), rgba(243,91,246,0.1));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #7F5BFE; flex-shrink: 0;
}
.ccb-item strong { display: block; font-size: 0.93rem; color: #1e1b4b; margin-bottom: 3px; }
.ccb-item span   { font-size: 0.8rem; color: #6b7280; line-height: 1.55; }

/* Responsive */
@media (max-width: 900px) {
    .creator-types-grid { grid-template-columns: 1fr; }
    .creator-type-divider { flex-direction: row; height: 40px; padding: 0; }
    .divider-line-v { flex: 1; width: auto; height: 1px; }
    .gallery-nav { display: none; }
    .gallery-track { padding: 16px 16px 24px; }
    .gallery-progress-wrap { margin: 8px 16px 0; }
    .ccb-grid { grid-template-columns: 1fr; }
}
/* ============================================================ */

/* ============================================================
   PHASE 4 — HOW IT WORKS + PREDNOSTI + EU SECTION
   ============================================================ */

/* --- How it Works Section --- */
.how-section {
    background: linear-gradient(160deg, #faf8ff 0%, #fff 50%, #f5f3ff 100%);
    position: relative;
}
.how-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(127,91,254,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(243,91,246,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Tab Switcher */
.how-tabs-wrap {
    display: flex;
    justify-content: center;
}
.how-tabs {
    display: inline-flex;
    background: rgba(127,91,254,0.07);
    border: 1px solid rgba(127,91,254,0.15);
    border-radius: 60px;
    padding: 5px;
    gap: 4px;
}
.how-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 30px;
    border-radius: 54px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}
.how-tab i { font-size: 0.95rem; }
.how-tab:hover { color: #7F5BFE; background: rgba(127,91,254,0.08); }
.how-tab.active {
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: #fff;
    box-shadow: 0 6px 20px rgba(127,91,254,0.4);
}

/* Tab Content Panels */
.how-tab-content {
    display: none;
    animation: fadeInUp 0.4s ease both;
}
.how-tab-content.active { display: block; }

/* Steps Grid */
.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Brand Steps */
.how-step {
    background: #fff;
    border: 1px solid rgba(127,91,254,0.12);
    border-radius: 24px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.how-step::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #7F5BFE, #F35BF6);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.how-step:hover::before { transform: scaleX(1); }
.how-step:hover {
    transform: translateY(-5px);
    border-color: rgba(127,91,254,0.28);
    box-shadow: 0 20px 48px rgba(127,91,254,0.13);
}
.how-step-num {
    position: absolute; top: 16px; right: 18px;
    font-size: 2.8rem; font-weight: 900;
    color: rgba(127,91,254,0.07);
    line-height: 1; user-select: none;
}
.how-step-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(127,91,254,0.12), rgba(243,91,246,0.1));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #7F5BFE;
    margin-bottom: 16px;
    transition: transform 0.3s;
}
.how-step:hover .how-step-icon { transform: scale(1.1) rotate(-5deg); }
.how-step h3 {
    font-size: 1rem; font-weight: 800;
    color: #1e1b4b; margin-bottom: 10px;
}
.how-step p {
    font-size: 0.83rem; color: #6b7280; line-height: 1.65; margin-bottom: 0;
}
.how-step-arrow {
    position: absolute; top: 50%; right: -14px;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    background: #fff;
    border: 1px solid rgba(127,91,254,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: #7F5BFE;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(127,91,254,0.1);
}

/* Kreator Step Variants (pink/magenta) */
.kreator-step {
    border-color: rgba(236,72,153,0.12);
}
.kreator-step::before {
    background: linear-gradient(90deg, #ec4899, #f43f5e);
}
.kreator-step:hover {
    border-color: rgba(236,72,153,0.28);
    box-shadow: 0 20px 48px rgba(236,72,153,0.11);
}
.kreator-num { color: rgba(236,72,153,0.07); }
.kreator-icon {
    background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(244,63,94,0.1));
    color: #ec4899;
}
.kreator-step:hover .kreator-icon { transform: scale(1.1) rotate(-5deg); }
.kreator-arrow {
    border-color: rgba(236,72,153,0.2);
    color: #ec4899;
    box-shadow: 0 2px 8px rgba(236,72,153,0.1);
}

/* Hide arrow on last step */
.how-step:last-child .how-step-arrow,
.kreator-step:last-child .kreator-arrow { display: none; }

@media (max-width: 1024px) {
    .how-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .how-step-arrow,
    .kreator-arrow { display: none; }
}
@media (max-width: 640px) {
    .how-steps-grid { grid-template-columns: 1fr; }
    .how-tab { padding: 10px 20px; font-size: 0.88rem; }
}

/* --- Prednosti Platforme Section --- */
.advantages-section {
    background: linear-gradient(135deg, #0d0020 0%, #1a0533 35%, #2d1255 70%, #0d0020 100%);
    position: relative;
}
.advantages-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(127,91,254,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 90% 80%, rgba(243,91,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.adv-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 22px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.adv-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(127,91,254,0.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(127,91,254,0.18);
}
.adv-card.adv-featured {
    border-color: rgba(127,91,254,0.35);
    background: rgba(127,91,254,0.1);
    cursor: pointer;
}
.adv-card.adv-featured::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(127,91,254,0.12), rgba(243,91,246,0.08));
    opacity: 0; transition: opacity 0.3s;
}
.adv-card.adv-featured:hover::after { opacity: 1; }

.adv-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(127,91,254,0.3), rgba(243,91,246,0.25));
    color: #c4b5fd;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}

.adv-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(127,91,254,0.2), rgba(243,91,246,0.18));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #c4b5fd;
    margin-bottom: 16px;
    position: relative; z-index: 1;
    transition: transform 0.3s;
    border: 1px solid rgba(127,91,254,0.2);
}
.adv-card:hover .adv-icon { transform: scale(1.1) rotate(-5deg); }
.adv-card.adv-featured .adv-icon {
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: #fff;
    box-shadow: 0 8px 20px rgba(127,91,254,0.45);
    border: none;
}

.adv-card h3 {
    font-size: 0.93rem; font-weight: 800;
    color: #e9d5ff; margin-bottom: 10px;
    position: relative; z-index: 1;
}
.adv-card p {
    font-size: 0.8rem; color: rgba(196,181,253,0.7);
    line-height: 1.65; margin-bottom: 0;
    position: relative; z-index: 1;
}
.adv-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px;
    font-size: 0.8rem; font-weight: 700; color: #c4b5fd;
    position: relative; z-index: 1;
    transition: gap 0.2s;
}
.adv-card:hover .adv-more { gap: 10px; }

/* Section badge override for dark bg */
.advantages-section .section-badge {
    background: rgba(127,91,254,0.2);
    border-color: rgba(127,91,254,0.4);
    color: #c4b5fd;
}
.advantages-section h2 { color: #fff; }
.advantages-section p.text-gray-600 { color: rgba(196,181,253,0.75); }

@media (max-width: 1280px) { .advantages-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .advantages-grid { grid-template-columns: 1fr; } }

/* --- Izvoz u EU Section --- */
.eu-section {
    background: linear-gradient(160deg, #f9f7ff 0%, #fff 50%, #eef2ff 100%);
    position: relative;
}
.eu-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 0% 50%, rgba(37,99,235,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 100% 30%, rgba(127,91,254,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.eu-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* EU Stats */
.eu-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.eu-stat {
    display: flex; flex-direction: column; gap: 4px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(127,91,254,0.06), rgba(37,99,235,0.04));
    border: 1px solid rgba(127,91,254,0.12);
    border-radius: 18px;
    transition: all 0.3s;
}
.eu-stat:hover {
    border-color: rgba(127,91,254,0.25);
    box-shadow: 0 8px 24px rgba(127,91,254,0.1);
    transform: translateY(-2px);
}
.eu-stat-num {
    font-size: 1.7rem; font-weight: 900;
    background: linear-gradient(135deg, #7F5BFE, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.eu-stat-lbl {
    font-size: 0.72rem; color: #6b7280;
    font-weight: 600; line-height: 1.4;
}

/* EU Feature Cards */
.eu-features {
    display: flex; flex-direction: column; gap: 12px;
}
.eu-feature-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid rgba(127,91,254,0.1);
    border-radius: 18px;
    transition: all 0.3s ease;
}
.eu-feature-card:hover {
    border-color: rgba(127,91,254,0.25);
    box-shadow: 0 8px 28px rgba(127,91,254,0.1);
    transform: translateX(4px);
}
.eu-feature-card.eu-fc-cta {
    border-color: rgba(127,91,254,0.25);
    background: linear-gradient(135deg, rgba(127,91,254,0.04), rgba(243,91,246,0.03));
    cursor: pointer;
}
.eu-feature-card.eu-fc-cta:hover {
    border-color: rgba(127,91,254,0.45);
    box-shadow: 0 12px 32px rgba(127,91,254,0.14);
}
.eu-fc-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(127,91,254,0.1), rgba(37,99,235,0.08));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #7F5BFE;
    border: 1px solid rgba(127,91,254,0.14);
    transition: transform 0.3s;
}
.eu-feature-card:hover .eu-fc-icon { transform: scale(1.1) rotate(-5deg); }
.eu-feature-card h4 {
    font-size: 0.93rem; font-weight: 800;
    color: #1e1b4b; margin-bottom: 4px;
}
.eu-feature-card p {
    font-size: 0.8rem; color: #6b7280; line-height: 1.6; margin: 0;
}

@media (max-width: 1024px) {
    .eu-main-layout { grid-template-columns: 1fr; gap: 40px; }
    .eu-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .eu-stats-row { grid-template-columns: 1fr; }
}
/* ============================================================ */

/* ============================================================
   GLOBAL — Hide nav status badges on mobile
   ============================================================ */
@media (max-width: 768px) {
    .hero-badge-wrapper,
    .hero-badge-pill,
    .ugc-badge,
    .nav-status-badge { display: none !important; }
}
/* ============================================================ */

/* ============================================================
   PHASE 5 — TESTIMONIJALI + FAQ + ZAVRŠNI CTA + FOOTER
   ============================================================ */

/* --- Testimonijali Section --- */
.testi-section {
    background: linear-gradient(160deg, #fff 0%, #faf8ff 50%, #fff 100%);
    position: relative;
}
.testi-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 20%, rgba(127,91,254,0.05) 0%, transparent 70%),
        radial-gradient(ellipse 45% 35% at 90% 80%, rgba(243,91,246,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.testi-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}
.testi-card::before {
    content: '"';
    position: absolute; top: 12px; right: 20px;
    font-size: 5rem; font-weight: 900; line-height: 1;
    opacity: 0.06; user-select: none;
    font-family: Georgia, serif;
}
.testi-brand {
    border: 1px solid rgba(37,99,235,0.12);
    box-shadow: 0 4px 20px rgba(37,99,235,0.06);
}
.testi-brand::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #2563eb, #7F5BFE);
}
.testi-creator {
    border: 1px solid rgba(243,91,246,0.14);
    box-shadow: 0 4px 20px rgba(243,91,246,0.06);
}
.testi-creator::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #F35BF6, #7F5BFE);
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(127,91,254,0.13);
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars i { color: #f59e0b; font-size: 0.85rem; }

.testi-quote {
    font-size: 0.88rem; color: #374151;
    line-height: 1.7; margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
}
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.brand-avatar {
    background: linear-gradient(135deg, #2563eb, #7F5BFE);
    color: white;
}
.creator-avatar {
    background: linear-gradient(135deg, #F35BF6, #7F5BFE);
    color: white;
}
.testi-author strong {
    display: block; font-size: 0.9rem;
    color: #1e1b4b; font-weight: 800;
}
.testi-author span {
    font-size: 0.75rem; color: #9ca3af;
}

.testi-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.7rem; font-weight: 800;
    border-radius: 20px; padding: 4px 10px;
}
.brand-testi-badge {
    background: rgba(37,99,235,0.07); color: #2563eb;
}
.creator-testi-badge {
    background: rgba(243,91,246,0.07); color: #c026d3;
}

/* Rating Summary Bar */
.testi-rating-bar {
    display: flex; align-items: center; gap: 40px;
    background: linear-gradient(135deg, rgba(127,91,254,0.06), rgba(243,91,246,0.04));
    border: 1px solid rgba(127,91,254,0.12);
    border-radius: 24px; padding: 32px 40px;
    flex-wrap: wrap;
}
.testi-rating-main {
    display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.testi-big-score {
    font-size: 3.5rem; font-weight: 900;
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.testi-big-stars { display: flex; gap: 4px; }
.testi-big-stars i { color: #f59e0b; font-size: 1.1rem; }
.testi-big-label { font-size: 0.8rem; color: #6b7280; font-weight: 600; max-width: 100px; }
.testi-rating-sep {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(127,91,254,0.25), transparent);
    flex-shrink: 0;
}
.testi-rating-breakdown { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.testi-rb-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: #6b7280; font-weight: 600; }
.testi-rb-bar { flex: 1; height: 7px; background: rgba(127,91,254,0.1); border-radius: 10px; overflow: hidden; }
.testi-rb-fill { height: 100%; background: linear-gradient(90deg, #7F5BFE, #F35BF6); border-radius: 10px; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-rating-bar { flex-direction: column; gap: 20px; padding: 24px; }
    .testi-rating-sep { width: 80px; height: 1px; }
}

/* --- FAQ Section --- */
.faq-section {
    background: linear-gradient(160deg, #f5f3ff 0%, #fff 50%, #f0f7ff 100%);
    position: relative;
}
.faq-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(127,91,254,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    background: #fff;
    border: 1px solid rgba(127,91,254,0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item:hover { border-color: rgba(127,91,254,0.25); }
.faq-item.open {
    border-color: rgba(127,91,254,0.3);
    box-shadow: 0 8px 28px rgba(127,91,254,0.1);
}

.faq-question {
    width: 100%; display: flex;
    align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent; border: none;
    text-align: left; cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 0.97rem; font-weight: 700;
    color: #1e1b4b;
    transition: color 0.2s;
}
.faq-question:hover { color: #7F5BFE; }
.faq-item.open .faq-question { color: #7F5BFE; }

.faq-icon {
    flex-shrink: 0; font-size: 0.85rem; color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #7F5BFE;
}

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 0.87rem; color: #4b5563;
    line-height: 1.75; margin: 0;
    border-top: 1px solid rgba(127,91,254,0.08);
    padding-top: 16px;
}

/* --- Završni CTA Section --- */
.final-cta-section {
    background: linear-gradient(135deg, #0a0018 0%, #1a0533 40%, #2d1255 70%, #0a0018 100%);
    position: relative;
    text-align: center;
}
.final-cta-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 50%, rgba(127,91,254,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 15% 80%, rgba(243,91,246,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-glow-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
    width: 400px; height: 400px;
    background: rgba(127,91,254,0.15);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.orb-2 {
    width: 300px; height: 300px;
    background: rgba(243,91,246,0.12);
    bottom: -80px; right: -80px;
    animation-delay: 4s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.final-cta-badge {
    background: rgba(127,91,254,0.2);
    border-color: rgba(127,91,254,0.4);
    color: #c4b5fd;
}

.final-cta-h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; color: #fff;
    line-height: 1.15;
}

.final-cta-sub {
    font-size: 1.1rem; color: rgba(196,181,253,0.8);
    line-height: 1.7; max-width: 550px; margin: 0 auto;
}
.final-cta-sub strong { color: #c4b5fd; }

.final-cta-btns {
    display: flex; gap: 20px;
    justify-content: center; flex-wrap: wrap;
}

.final-cta-brand,
.final-cta-creator {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 32px;
    border-radius: 20px;
    text-decoration: none;
    min-width: 260px;
    transition: all 0.35s ease;
    position: relative; overflow: hidden;
}
.final-cta-brand {
    background: linear-gradient(135deg, #2563eb, #7F5BFE);
    color: #fff;
    box-shadow: 0 12px 40px rgba(37,99,235,0.45);
}
.final-cta-brand:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 56px rgba(37,99,235,0.6);
}
.final-cta-creator {
    background: linear-gradient(135deg, #7F5BFE, #F35BF6);
    color: #fff;
    box-shadow: 0 12px 40px rgba(127,91,254,0.45);
}
.final-cta-creator:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 56px rgba(127,91,254,0.6);
}

.fcta-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.fcta-text { flex: 1; text-align: left; }
.fcta-text strong { display: block; font-size: 1.05rem; font-weight: 800; }
.fcta-text span { font-size: 0.8rem; opacity: 0.82; }
.fcta-arrow { font-size: 0.9rem; opacity: 0.8; transition: transform 0.3s; }
.final-cta-brand:hover .fcta-arrow,
.final-cta-creator:hover .fcta-arrow { transform: translateX(5px); }

.final-cta-trust {
    display: flex; gap: 28px; justify-content: center;
    flex-wrap: wrap;
}
.final-cta-trust span {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.83rem; font-weight: 600;
    color: rgba(196,181,253,0.75);
}
.final-cta-trust i { color: #a78bfa; }

@media (max-width: 640px) {
    .final-cta-btns { flex-direction: column; align-items: center; }
    .final-cta-brand, .final-cta-creator { min-width: unset; width: 100%; max-width: 340px; }
    .final-cta-trust { gap: 14px; }
}

/* ============================================================
   UNIFIED SITE FOOTER — sf-* classes (used on ALL pages)
   ============================================================ */

.site-footer {
    background: #070010;
    border-top: 1px solid rgba(127,91,254,0.15);
    position: relative;
    font-family: 'Nunito', sans-serif;
}

/* Top gradient bar */
.sf-accent-bar {
    height: 2px;
    background: linear-gradient(90deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
}

/* CTA Strip */
.sf-cta-strip {
    background: linear-gradient(135deg, rgba(127,91,254,0.13) 0%, rgba(243,91,246,0.08) 100%);
    border-bottom: 1px solid rgba(127,91,254,0.1);
    padding: 20px 16px;
}
.sf-cta-inner {
    max-width: 1152px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.sf-cta-text { display: flex; flex-direction: column; gap: 3px; }
.sf-cta-text strong { font-size: 1rem; font-weight: 800; color: #fff; }
.sf-cta-text span { font-size: 0.78rem; color: rgba(196,181,253,0.6); }
.sf-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.sf-cta-brand, .sf-cta-kreator {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 50px;
    font-size: 0.83rem; font-weight: 700;
    text-decoration: none; transition: all 0.3s;
    white-space: nowrap;
}
.sf-cta-brand {
    background: linear-gradient(135deg, #2563eb, #7F5BFE);
    color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.sf-cta-brand:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,99,235,0.55); }
.sf-cta-kreator {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(196,181,253,0.85);
}
.sf-cta-kreator:hover { background: rgba(127,91,254,0.2); border-color: rgba(127,91,254,0.4); color: #fff; }

/* Main footer area */
.sf-main { padding: 60px 16px 44px; }

.sf-grid {
    max-width: 1152px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
    gap: 44px;
}

/* --- Brand Column --- */
.sf-logo {
    display: inline-flex; align-items: center;
    gap: 10px; text-decoration: none; margin-bottom: 14px;
}
.sf-logo-img { width: 36px; height: 36px; object-fit: contain; }
.sf-logo span {
    font-size: 1.4rem; font-weight: 900;
    background: linear-gradient(135deg, #c4b5fd, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sf-tagline {
    font-size: 0.82rem; color: rgba(196,181,253,0.55);
    line-height: 1.72; margin-bottom: 16px;
}
.sf-tagline strong { color: rgba(196,181,253,0.85); font-weight: 700; }

/* Trust pills */
.sf-trust {
    display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px;
}
.sf-trust-item {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.67rem; font-weight: 700;
    color: rgba(196,181,253,0.55);
    background: rgba(127,91,254,0.09);
    border: 1px solid rgba(127,91,254,0.14);
    border-radius: 20px; padding: 4px 10px;
}
.sf-trust-item i { color: #a78bfa; font-size: 0.68rem; }

/* Social row */
.sf-social { display: flex; gap: 8px; }
.sf-soc {
    width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.09);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; color: rgba(196,181,253,0.6);
    text-decoration: none; transition: all 0.3s;
    background: rgba(255,255,255,0.04);
}
.sf-soc:hover { transform: translateY(-2px); color: #fff; }
.sf-soc-ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.sf-soc-tt:hover { background: #111; border-color: #69c9d0; }
.sf-soc-fb:hover { background: #1877f2; border-color: transparent; }
.sf-soc-li:hover { background: #0a66c2; border-color: transparent; }

/* --- Nav Columns --- */
.sf-col-title {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.7rem; font-weight: 800;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.sf-col-title i { font-size: 0.78rem; color: #a78bfa; }

.sf-links {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.sf-links a {
    font-size: 0.82rem; color: rgba(196,181,253,0.52);
    text-decoration: none; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 6px;
}
.sf-links a:hover { color: #c4b5fd; transform: translateX(3px); }
.sf-links a i { width: 13px; font-size: 0.72rem; color: #a78bfa; flex-shrink: 0; }
.sf-link-cta {
    color: #a78bfa !important; font-weight: 700;
    margin-top: 4px;
}
.sf-link-cta:hover { color: #e9d5ff !important; }

/* --- Community / #rastimozajedno block --- */
.sf-community {
    padding: 16px;
    background: rgba(127,91,254,0.07);
    border: 1px solid rgba(127,91,254,0.16);
    border-radius: 16px;
    margin-top: 28px;
}
.sf-comm-tag {
    font-size: 0.92rem; font-weight: 900; letter-spacing: -0.01em;
    background: linear-gradient(90deg, #7F5BFE 0%, #F35BF6 50%, #f04a13 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sfCommGrad 3.5s ease-in-out infinite;
    margin-bottom: 4px;
}
@keyframes sfCommGrad {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.sf-comm-msg {
    font-size: 0.69rem; color: rgba(196,181,253,0.4);
    line-height: 1.55; margin-bottom: 12px;
}
.sf-comm-share-label {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: rgba(196,181,253,0.3);
    display: block; margin-bottom: 7px;
}
.sf-comm-btns { display: flex; gap: 7px; }
.sf-comm-btn {
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; text-decoration: none;
    border: 1px solid transparent; cursor: pointer;
    transition: all 0.25s ease;
}
.sf-comm-btn:hover { transform: translateY(-2px) scale(1.1); }
.sf-cb-ig { background: rgba(243,91,246,0.14); border-color: rgba(243,91,246,0.24); color: #F35BF6; }
.sf-cb-tt { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }
.sf-cb-fb { background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.22); color: #93c5fd; }
.sf-cb-li { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.22); color: #7dd3fc; }
.sf-cb-cp { background: rgba(127,91,254,0.14); border-color: rgba(127,91,254,0.24); color: #a78bfa; }

/* --- Bottom bar --- */
.sf-bottom {
    border-top: 1px solid rgba(127,91,254,0.09);
    padding: 18px 16px;
}
.sf-bottom-inner {
    max-width: 1152px; margin: 0 auto;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
}
.sf-copy { font-size: 0.74rem; color: rgba(196,181,253,0.28); }
.sf-countries { display: flex; gap: 12px; flex-wrap: wrap; }
.sf-countries span { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(196,181,253,0.35); }
.sf-countries img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; opacity: 0.55; flex-shrink: 0; }
.sf-bottom-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sf-bottom-tags span {
    font-size: 0.62rem; font-weight: 700;
    color: rgba(127,91,254,0.45);
    text-transform: uppercase; letter-spacing: 0.07em;
    border: 1px solid rgba(127,91,254,0.14);
    border-radius: 20px; padding: 3px 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .sf-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .sf-col-last { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
    .sf-community { margin-top: 0; }
}
@media (max-width: 900px) {
    .sf-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .sf-brand { grid-column: 1 / -1; }
    .sf-col-last { display: block; }
    .sf-community { margin-top: 20px; }
}
@media (max-width: 560px) {
    .sf-grid { grid-template-columns: 1fr; }
    .sf-cta-inner { flex-direction: column; align-items: flex-start; }
    .sf-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .sf-bottom-tags { display: none; }
}
/* ============================================================ */
