 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --dark: #262526;
            --accent: #ff5861;
            --gray-green: #848C84;
            --light-gray: #F2F2F2;
            --medium-gray: #A6A6A6;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: var(--dark);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
        }

        /* PRELOADER */
        #preloader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        #preloader.fade-out {
            opacity: 0;
            transform: scale(0.95);
            pointer-events: none;
        }

        .loader-logo {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--accent);
            font-family: 'Space Grotesk', sans-serif;
            margin-bottom: 2rem;
            letter-spacing: -2px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        .loader-bar {
            width: 250px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-progress {
            position: absolute;
            height: 100%;
            background: var(--accent);
            width: 0;
            animation: loading 2s ease-out forwards;
            border-radius: 10px;
        }

        @keyframes loading {
            to { width: 100%; }
        }

        /* SCROLL TO TOP */
        #scrollTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(255, 88, 97, 0.3);
        }

        #scrollTop.show {
            opacity: 1;
            visibility: visible;
        }

        #scrollTop:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 88, 97, 0.4);
        }

        /* COOKIE CONSENT */
        #cookieConsent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark);
            padding: 2rem;
            z-index: 9999;
            border-top: 3px solid var(--accent);
            transform: translateY(100%);
            transition: transform 0.5s ease;
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
        }

        #cookieConsent.show {
            transform: translateY(0);
        }

        #cookieSettings {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            background: white;
            padding: 3rem;
            border-radius: 16px;
            max-width: 600px;
            width: 90%;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        #cookieSettings.show {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .cookie-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cookie-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-btn {
            padding: 0.875rem 2rem;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 8px;
        }

        .cookie-accept {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
        }

        .cookie-accept:hover {
            background: #ff3d47;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 88, 97, 0.4);
        }

        .cookie-decline {
            background: transparent;
            border-color: white;
            color: white;
        }

        .cookie-decline:hover {
            background: white;
            color: var(--dark);
        }

        .cookie-settings-btn {
            background: transparent;
            border-color: white;
            color: white;
        }

        .cookie-settings-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: #ddd;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--accent);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(24px);
        }
        
        /* Top Bar */
        .top-bar {
            background: var(--dark);
            color: white;
            font-size: 0.875rem;
        }
        
        .top-bar a:hover {
            color: var(--accent);
        }
        
        /* Navigation */
        nav {
            background: white;
            border-bottom: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            box-shadow: 0 4px 20px rgba(38, 37, 38, 0.08);
        }
        
        .nav-link {
            position: relative;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        /* Dropdown */
        .dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 1000;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }
        
        .mega-menu {
            background: white;
            border: 3px solid var(--dark);
            box-shadow: 0 20px 60px rgba(38, 37, 38, 0.2);
            min-width: 900px;
        }
        
        .dropdown-simple {
            background: white;
            border: 3px solid var(--dark);
            box-shadow: 0 20px 60px rgba(38, 37, 38, 0.2);
            min-width: 280px;
        }
        
        .dropdown-item {
            padding: 1rem 1.5rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .dropdown-item:hover {
            background: var(--light-gray);
        }
        
        .dropdown-icon {
            width: 48px;
            height: 48px;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .dropdown-item:hover .dropdown-icon {
            background: var(--accent);
        }

        .view-more-btn {
            background: var(--accent);
            color: white;
            padding: 0.75rem 1.5rem;
            margin: 1rem 1.5rem;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .view-more-btn:hover {
            background: #ff3d47;
        }

        /* Mobile Menu */
        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--dark);
            z-index: 9999;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }

        #mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-close {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
            z-index: 10000;
        }

        .mobile-close:hover {
            transform: rotate(90deg) scale(1.1);
        }

        .mobile-dropdown {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-dropdown-header {
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(0, 0, 0, 0.3);
        }

        .mobile-dropdown.open .mobile-dropdown-content {
            max-height: 1000px;
        }

        .mobile-dropdown-item {
            padding: 1rem 1.5rem 1rem 3rem;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mobile-dropdown-item:hover {
            background: rgba(255, 88, 97, 0.2);
            color: white;
        }

        .mobile-icon {
            width: 36px;
            height: 36px;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
            min-height: 70vh;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(255, 88, 97, 0.03) 50%, transparent 100%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
            pointer-events: none;
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(var(--light-gray) 1px, transparent 1px),
                linear-gradient(90deg, var(--light-gray) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.03;
        }
        
        /* Quick Filters */
        .filter-chip {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .filter-chip:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 16px;
            border: 2px solid var(--light-gray);
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 40px rgba(255, 88, 97, 0.15);
            transform: translateY(-8px);
        }

        .service-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        .service-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon-box {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        /* Job Role Cards */
        .job-card {
            background: white;
            border-radius: 16px;
            border: 2px solid var(--light-gray);
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .job-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 40px rgba(255, 88, 97, 0.15);
            transform: translateY(-8px);
        }

        .job-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .job-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .job-card:hover .job-image img {
            transform: scale(1.1);
        }

        .job-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--light-gray);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            z-index: 10;
        }

        .job-badge.urgent {
            background: #ff9800;
            color: white;
        }

        .job-badge.featured {
            background: var(--accent);
            color: white;
        }

        .rate-tag {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 0.75rem 1.25rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 2px solid var(--light-gray);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
            font-family: 'Space Grotesk', sans-serif;
        }
        
        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 88, 97, 0.1);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        /* Industry Cards */
        .industry-card {
            position: relative;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .industry-image {
            position: absolute;
            inset: 0;
            z-index: 1;
        }
        
        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .industry-card:hover .industry-image img {
            transform: scale(1.1);
        }
        
        .industry-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(38, 37, 38, 0.95), rgba(38, 37, 38, 0.3));
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .industry-card:hover .industry-overlay {
            background: linear-gradient(to top, var(--accent), rgba(255, 88, 97, 0.5));
        }
        
        .industry-content {
            position: relative;
            z-index: 3;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(255, 88, 97, 0.1);
        }
        
        /* Process Steps */
        .process-step {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--light-gray);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
        }

        /* Section Backgrounds */
        .section-with-bg {
            position: relative;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .section-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 24, 0.91);
        }

        .section-content {
            position: relative;
            z-index: 10;
        }
        
        /* Buttons */
        .btn-primary {
            background: var(--accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary:hover {
            background: #ff3d47;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 88, 97, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--dark);
            transform: translateY(-2px);
        }

        /* Quote Form */
        .quote-form {
            background: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        /* Swiper Customization */
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            border: 2px solid var(--light-gray);
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
            color: var(--dark);
            font-weight: bold;
        }
        
        .swiper-button-next:hover::after,
        .swiper-button-prev:hover::after {
            color: white;
        }
        
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: var(--medium-gray);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--accent);
            width: 30px;
            border-radius: 5px;
        }
        
        /* Section Titles */
        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-title-white {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: rgb(0, 0, 0);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-green);
            max-width: 600px;
        }

        .section-subtitle-white {
            font-size: 1.125rem;
            color: rgba(0, 0, 0, 0.9);
            max-width: 600px;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0, 0, 0, 0.05) 10px,
                rgba(0, 0, 0, 0.05) 20px
            );
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
        }
        
        footer a:hover {
            color: var(--accent);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mega-menu {
                min-width: 100%;
                width: calc(100vw - 2rem);
            }
            
            .industry-card {
                height: 300px;
            }

            .service-card {
                margin-bottom: 1rem;
            }
        }
        
        /* Better Padding */
        .section-padding {
            padding-left: 4rem;
            padding-right: 4rem;
        }
        
        @media (max-width: 1024px) {
            .section-padding {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }
        
        @media (max-width: 640px) {
            .section-padding {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

            /* Modern Hero Banner */
.hero-banner-modern {
    position: relative;
    height: 70vh;
    min-height: 600px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide-modern {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(38, 37, 38, 0.95) 0%, rgba(38, 37, 38, 0.75) 50%, rgba(38, 37, 38, 0.6) 100%);
    z-index: 2;
}

.hero-modern-content {
    max-width: 700px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 88, 97, 0.15);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-modern-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-modern-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 88, 97, 0.3);
}

.btn-hero-primary:hover {
    background: #ff3d47;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 88, 97, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-modern-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Desktop Indicators - Right Center */
.hero-indicators-desktop {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.indicator-line {
    width: 2px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.indicator-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent);
    animation: indicatorLine 20s linear infinite;
}

@keyframes indicatorLine {
    0%, 100% { height: 0%; }
    25% { height: 25%; }
    50% { height: 50%; }
    75% { height: 75%; }
}

.indicators-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modern-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.modern-indicator.active {
    opacity: 1;
}

.indicator-circle {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.indicator-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.progress-bar {
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 0.3s ease;
    filter: drop-shadow(0 0 8px var(--accent));
}

.modern-indicator.active .progress-bar {
    animation: progressAnimation 5s linear forwards;
}

@keyframes progressAnimation {
    to { stroke-dashoffset: 0; }
}

.indicator-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.modern-indicator.active .indicator-number {
    color: var(--accent);
}

.indicator-label {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.modern-indicator.active .indicator-label {
    opacity: 1;
    transform: translateX(0);
}

.label-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.label-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Indicators - Bottom */
.hero-indicators-mobile {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 20;
}

.mobile-indicators-wrapper {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.mobile-indicator {
    flex: 1;
    max-width: 120px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.mobile-indicator.active {
    opacity: 1;
}

.mobile-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.mobile-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0;
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent);
}

.mobile-indicator.active .mobile-progress-bar {
    animation: mobileProgress 5s linear forwards;
}

@keyframes mobileProgress {
    to { width: 100%; }
}

.mobile-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-indicators-desktop {
        right: 2rem;
    }
    
    .indicator-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-banner-modern {
        height: 80vh;
        min-height: 550px;
    }
    
    .hero-indicators-desktop {
        display: none;
    }
    
    .hero-indicators-mobile {
        display: block;
    }
    
    .hero-modern-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .hero-modern-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}