body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
        }

        /* Brand Logos Styles */
        .brand-logo {
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.8;
        }
        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        @media (max-width: 1024px) {
            .brand-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .brand-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .last-brand {
            grid-column: span 4;
            display: flex;
            justify-content: center;
        }
        @media (max-width: 1024px) {
            .last-brand {
                grid-column: span 3;
            }
        }
        @media (max-width: 768px) {
            .last-brand {
                grid-column: span 2;
            }
        }

        /* Benefit Cards Styles */
        .benefit-card {
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(21, 38, 59, 0.18);
            background: linear-gradient(135deg, #15263B 0%, #1e3a5f 100%);
        }
        .benefit-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 15px 30px rgba(21, 38, 59, 0.22);
            border-color: rgba(21, 38, 59, 0.7);
        }
        .icon-wrapper {
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            border-radius: 1rem;
            box-shadow: 0 4px 12px rgba(21,38,59,0.08);
        }
        .benefit-card:hover .icon-wrapper {
            background: linear-gradient(135deg, #1e3a5f 0%, #15263B 100%);
        }
        .benefit-icon {
            color: #15263B;
            transition: color 0.3s;
        }
        .benefit-card:hover .benefit-icon {
            color: #fff;
        }
        .benefit-card h3,
        .benefit-card p {
            color: #fff;
        }

        /* About Section Styles */
        .about-section {
            background-color: #f1f5f9;
        }
        .highlight-text {
            position: relative;
            z-index: 1;
        }
        .highlight-text::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background-color: rgba(0, 107, 255, 0.2);
            z-index: -1;
            transform: skewY(-2deg);
        }

        /* Location Section Styles */
        .map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .map-container:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }
        .address-box {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }
        .address-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .address-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            border-radius: 3px;
        }
        .contact-icon {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .gradient-text {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        /* Hero Section Styles */
        .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/banner-2.webp');
            background-size: cover;
            background-position: bottom;
            background-repeat: no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-content {
            animation: fadeInUp 1s ease-out;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .hero-button {
            background: linear-gradient(135deg, #15263B 0%, #1e3a5f 100%);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(21, 38, 59, 0.3);
        }
        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(21, 38, 59, 0.4);
            background: linear-gradient(135deg, #1e3a5f 0%, #294c6b 100%);
        }
        .hero-stats {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .hero-form {
            backdrop-filter: blur(15px);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .form-input {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .form-input:focus {
            border-color: #15263B;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(21, 38, 59, 0.1);
        }
        .form-select {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .form-select:focus {
            border-color: #15263B;
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 0 0 3px rgba(21, 38, 59, 0.1);
        }
        .form-button {
            background: linear-gradient(135deg, #15263B 0%, #1e3a5f 100%);
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(21, 38, 59, 0.3);
        }
        .form-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(21, 38, 59, 0.4);
            background: linear-gradient(135deg, #1e3a5f 0%, #294c6b 100%);
        }
        
        /* Featured Brand Styles */
        .featured-brand-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 4rem;
            position: relative;
            width: 100%;
        }

        .featured-brand {
            width: 100% !important;
            max-width: 1200px !important;
            height: 180px !important;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .featured-brand:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .featured-brand .brand-card-inner {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100%;
            position: relative;
            z-index: 3;
            transition: transform 0.4s ease;
        }

        .featured-logo {
            height: 140px !important;
            width: auto !important;
            max-width: 400px !important;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }

        .featured-brand:hover .featured-logo {
            transform: scale(1.05);
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
        }

        /* Responsive adjustments for featured brand */
        @media (max-width: 768px) {
            .featured-brand {
                height: 140px !important;
            }
            
            .featured-logo {
                height: 100px !important;
                max-width: 300px !important;
            }
        }

        @media (max-width: 480px) {
            .featured-brand {
                height: 120px !important;
            }
            
            .featured-logo {
                height: 80px !important;
                max-width: 250px !important;
            }
        }
        
        /* About Section Styles */
        .about-section-modern {
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #f1f5f9 70%, #e0e7ff 100%);
        }

        /* Professional About Section Styles */
        .professional-about-section {
            position: relative;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%);
            overflow: hidden;
        }

        .professional-about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(220, 38, 127, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .professional-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .professional-header .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
            border: 1px solid rgba(30, 58, 138, 0.2);
            color: #1e3a8a;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
            transition: all 0.3s ease;
        }

        .professional-header .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
        }

        .professional-header h2 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1.5rem 0 1rem;
            line-height: 1.2;
        }

        .professional-header .subtitle {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .company-description-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .company-description-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .company-description-card p {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #374151;
            margin: 0;
            text-align: center;
        }

        .stats-grid-professional {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .stat-card-professional {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-card-professional:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .stat-card-professional::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220, 38, 127, 0.02), rgba(30, 58, 138, 0.02));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card-professional:hover::before {
            opacity: 1;
        }

        .stat-card-professional:nth-child(1) {
            border-top: 3px solid #1e3a8a;
        }

        .stat-card-professional:nth-child(2) {
            border-top: 3px solid #3b82f6;
        }

        .stat-card-professional:nth-child(3) {
            border-top: 3px solid #1e3a8a;
        }

        .stat-number-professional {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-card-professional:nth-child(1) .stat-number-professional {
            color: #1e3a8a;
        }

        .stat-card-professional:nth-child(2) .stat-number-professional {
            color: #3b82f6;
        }

        .stat-card-professional:nth-child(3) .stat-number-professional {
            color: #1e3a8a;
        }

        .stat-label-professional {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .stat-description-professional {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.5;
        }

        .cta-section-professional {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-section-professional h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .cta-section-professional p {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons-professional {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary-professional {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary-professional:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
        }

        .btn-secondary-professional {
            background: rgba(30, 58, 138, 0.1);
            color: #1e3a8a;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid #1e3a8a;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-secondary-professional:hover {
            background: #1e3a8a;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 58, 138, 0.3);
        }

        /* Modern Glass Morphism Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Modern Gradient Animations */
        @keyframes modernGradientShift {
            0%, 100% { 
                background-position: 0% 50%; 
            }
            50% { 
                background-position: 100% 50%; 
            }
        }

        .animated-gradient {
            background: linear-gradient(-45deg, #f8fafc, #e2e8f0, #cbd5e1, #f1f5f9);
            background-size: 400% 400%;
            animation: modernGradientShift 8s ease infinite;
        }

        /* Light Theme Button Hover Effects */
        .modern-btn {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .modern-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .modern-btn:hover::before {
            left: 100%;
        }

        .modern-btn:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
        }

        /* Footer Logo Specific Styles */
        .footer-logo {
            height: 64px !important;
            width: auto !important;
            max-width: 200px !important;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }

        /* Responsive adjustments for footer logo */
        @media (max-width: 768px) {
            .footer-logo {
                height: 50px !important;
                max-width: 180px !important;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                height: 45px !important;
                max-width: 160px !important;
            }
        }

        /* Sticky Navigation Logo Specific Styles */
        .nav-logo {
            height: 48px !important;
            width: auto !important;
            max-width: 180px !important;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .nav-logo:hover {
            transform: scale(1.05);
            opacity: 0.9;
        }

        /* Responsive adjustments for navigation logo */
        @media (max-width: 768px) {
            .nav-logo {
                height: 36px !important;
                max-width: 140px !important;
            }
        }

        @media (max-width: 480px) {
            .nav-logo {
                height: 32px !important;
                max-width: 120px !important;
            }
        }

        /* Mobile navigation specific adjustments */
        @media (max-width: 640px) {
            #stickyNav .container {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
            
            #stickyNav .flex.items-center.justify-between {
                height: 56px !important;
                min-height: 56px !important;
            }
        }

        /* Modern Floating Elements */
        @keyframes modernFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
            }
            33% { 
                transform: translateY(-20px) rotate(2deg); 
            }
            66% { 
                transform: translateY(-10px) rotate(-1deg); 
            }
        }

        .modern-float {
            animation: modernFloat 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .professional-header h2 {
                font-size: 2.25rem;
            }

            .company-description-card {
                padding: 2rem;
                margin-bottom: 3rem;
            }

            .stats-grid-professional {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            .stat-card-professional {
                padding: 2rem 1.5rem;
            }

            .stat-number-professional {
                font-size: 2.5rem;
            }

            .cta-buttons-professional {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-professional,
            .btn-secondary-professional {
                width: 100%;
                max-width: 300px;
            }

            .professional-image-container {
                max-width: 350px;
            }

            .professional-badge-floating {
                top: -15px;
                right: -15px;
                padding: 0.75rem 1.25rem;
                font-size: 0.75rem;
            }
        }

        /* About Light Theme Floating Orbs */
        .about-floating-orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.1);
            animation: aboutFloatAnimation 8s ease-in-out infinite;
        }

        .about-orb-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .about-orb-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 10%;
            animation-delay: -2s;
        }

        .about-orb-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 15%;
            animation-delay: -4s;
        }

        @keyframes aboutFloatAnimation {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
            75% { transform: translateY(-30px) rotate(270deg); }
        }

        /* About Image Styles */
        .about-image-container {
            animation: aboutSlideInLeft 1s ease-out;
        }

        .about-image-frame {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image-frame:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 35px 70px -12px rgba(0, 0, 0, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.3);
        }

        .about-main-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .about-image-frame:hover .about-main-image {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(59, 130, 246, 0.1) 0%,
                rgba(147, 51, 234, 0.1) 50%,
                rgba(59, 130, 246, 0.2) 100%
            );
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .about-image-frame:hover .about-image-overlay {
            opacity: 1;
        }

        .about-image-glow {
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #3b82f6, #9333ea, #3b82f6);
            border-radius: 28px;
            opacity: 0;
            z-index: -1;
            filter: blur(20px);
            transition: opacity 0.6s ease;
        }

        .about-image-frame:hover .about-image-glow {
            opacity: 0.3;
        }

        /* About Floating Badge */
        .about-floating-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            z-index: 10;
            animation: aboutPulseGlow 2s ease-in-out infinite;
        }

        .about-badge-content {
            background: linear-gradient(135deg, #1e40af, #3730a3);
            padding: 12px 16px;
            border-radius: 16px;
            box-shadow: 
                0 10px 25px rgba(30, 64, 175, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        @keyframes aboutPulseGlow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
            }
        }

        /* About Content Styles */
        .about-content-container {
            animation: aboutSlideInRight 1s ease-out;
        }

        .about-section-badge {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: linear-gradient(135deg, #dbeafe, #e0e7ff);
            color: #1e40af;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
            animation: aboutBadgeEntrance 1s ease-out 0.3s both;
        }

        .about-main-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: aboutTitleEntrance 1s ease-out 0.5s both;
        }

        .about-title-highlight {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: aboutGradientShift 3s ease-in-out infinite;
            display: block;
        }

        .about-title-normal {
            color: #374151;
            display: block;
            margin-top: 8px;
        }

        @keyframes aboutGradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .about-description {
            font-size: 18px;
            line-height: 1.7;
            color: #6b7280;
            margin-bottom: 32px;
            animation: aboutFadeInUp 1s ease-out 0.7s both;
        }

        /* About Features List */
        .about-features-list {
            margin-bottom: 40px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: aboutFeatureEntrance 0.8s ease-out both;
            position: relative;
            overflow: hidden;
        }

        .about-feature-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.4s ease;
        }

        .about-feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
            background: rgba(255, 255, 255, 0.9);
        }

        .about-feature-item:hover::before {
            width: 100%;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-right: 20px;
            transition: transform 0.4s ease;
        }

        .about-feature-item:hover .about-feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .about-feature-content {
            flex: 1;
        }

        .about-feature-number {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: #1e40af;
            line-height: 1;
            margin-bottom: 4px;
        }

        .about-feature-text {
            color: #6b7280;
            font-size: 16px;
            font-weight: 500;
        }

        /* About CTA Buttons */
        .about-cta-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            animation: aboutFadeInUp 1s ease-out 1s both;
        }

        @media (min-width: 640px) {
            .about-cta-container {
                flex-direction: row;
            }
        }

        .about-cta-primary {
            position: relative;
            flex: 1;
            padding: 16px 32px;
            background: linear-gradient(135deg, #1e40af, #3730a3, #1e3a8a);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

        .about-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
            background-position: 100% 0;
        }

        .about-cta-text {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-cta-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .about-cta-primary:hover .about-cta-shine {
            left: 100%;
        }

        .about-cta-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0);
            animation: aboutRipple 0.6s linear;
            pointer-events: none;
        }

        @keyframes aboutRipple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .about-cta-secondary {
            position: relative;
            flex: 1;
            padding: 16px 32px;
            background: transparent;
            color: #1e40af;
            border: 2px solid #3b82f6;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-cta-secondary:hover {
            transform: translateY(-2px);
            background: #3b82f6;
            color: white;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .about-cta-border-glow {
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
            border-radius: 14px;
            opacity: 0;
            z-index: -1;
            filter: blur(8px);
            transition: opacity 0.4s ease;
        }

        .about-cta-secondary:hover .about-cta-border-glow {
            opacity: 0.6;
        }

        /* About Animations */
        @keyframes aboutSlideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutSlideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes aboutBadgeEntrance {
            from {
                opacity: 0;
                transform: translateY(-20px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes aboutTitleEntrance {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes aboutFeatureEntrance {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* About Responsive Design */
        @media (max-width: 1024px) {
            .about-main-title {
                font-size: clamp(2rem, 4vw, 3rem);
            }
            
            .about-feature-item {
                padding: 16px;
            }
            
            .about-feature-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .about-section-modern {
                padding: 60px 0;
            }
            
            .about-floating-orb {
                display: none;
            }
            
            .about-feature-item {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .about-feature-icon {
                margin-right: 0;
                margin-bottom: 12px;
            }
            
            .about-floating-badge {
                position: static;
                margin: 20px auto;
                display: flex;
                justify-content: center;
            }
        }
        
        /* Professional Advantages Section Styles */
        .advantages-section-professional {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e40af 100%);
            min-height: 100vh;
        }

        .grid-pattern {
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            width: 100%;
            height: 100%;
        }

        .professional-badge {
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: badgePulse 3s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
            50% { box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4); }
        }

        .professional-title {
            animation: titleSlideUp 1s ease-out;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes titleSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .professional-divider {
            animation: dividerExpand 1.5s ease-out 0.5s both;
        }

        @keyframes dividerExpand {
            from { width: 0; }
            to { width: 6rem; }
        }

        /* Featured Benefit Card */
        .featured-benefit-card {
            animation: cardSlideIn 0.8s ease-out;
        }

        @keyframes cardSlideIn {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .featured-benefit-inner {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.9) 100%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .featured-benefit-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .featured-benefit-card:hover .featured-benefit-inner::before {
            left: 100%;
        }

        .featured-benefit-card:hover .featured-benefit-inner {
            transform: translateY(-8px);
            box-shadow: 0 35px 70px -12px rgba(59, 130, 246, 0.3);
            border-color: rgba(59, 130, 246, 0.4);
        }

        .featured-benefit-header {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .featured-icon-container {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 16px;
            padding: 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .featured-benefit-card:hover .featured-icon-container {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.3));
        }

        .featured-content {
            flex: 1;
        }

        .featured-title {
            font-size: 1.75rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .featured-description {
            color: #cbd5e1;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .featured-stats {
            display: flex;
            gap: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(59, 130, 246, 0.2);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 900;
            color: #60a5fa;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Secondary Benefit Cards */
        .secondary-benefit-card {
            animation: cardSlideIn 0.8s ease-out;
            animation-delay: 0.2s;
            animation-fill-mode: both;
        }

        .secondary-benefit-inner {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.8) 100%);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .secondary-benefit-card:hover .secondary-benefit-inner {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.25);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .secondary-icon-container {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.15));
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            padding: 0.75rem;
            display: inline-flex;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .secondary-benefit-card:hover .secondary-icon-container {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.25));
        }

        .secondary-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .secondary-description {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .secondary-accent {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .secondary-benefit-card:hover .secondary-accent {
            transform: scaleX(1);
        }

        /* Loyalty Program Card */
        .loyalty-program-card {
            animation: cardSlideIn 0.8s ease-out;
            animation-delay: 0.4s;
            animation-fill-mode: both;
        }

        .loyalty-program-inner {
            background: linear-gradient(135deg, rgba(45, 55, 72, 0.9) 0%, rgba(68, 64, 60, 0.9) 100%);
            border: 1px solid rgba(251, 191, 36, 0.2);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .loyalty-program-card:hover .loyalty-program-inner {
            transform: translateY(-6px);
            box-shadow: 0 30px 60px -12px rgba(251, 191, 36, 0.3);
            border-color: rgba(251, 191, 36, 0.4);
        }

        .loyalty-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .loyalty-icon-container {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 12px;
            padding: 0.75rem;
            transition: all 0.3s ease;
        }

        .loyalty-program-card:hover .loyalty-icon-container {
            transform: scale(1.1) rotate(-5deg);
        }

        .loyalty-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
        }

        .loyalty-description {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .loyalty-benefits {
            space-y: 0.75rem;
        }

        .loyalty-benefit-item {
            display: flex;
            align-items: center;
            color: #e2e8f0;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }

        .loyalty-benefit-item:hover {
            color: #fbbf24;
            transform: translateX(4px);
        }

        /* Professional CTA Card */
        .cta-professional-card {
            animation: cardSlideIn 0.8s ease-out;
            animation-delay: 0.6s;
            animation-fill-mode: both;
        }

        .cta-professional-inner {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            padding: 2.5rem;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-professional-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .cta-professional-subtitle {
            color: #cbd5e1;
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .cta-professional-button {
            position: relative;
            background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
            border: none;
            border-radius: 16px;
            padding: 1rem 2rem;
            width: 100%;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px -5px rgba(59, 130, 246, 0.4);
        }

        .cta-professional-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px -5px rgba(59, 130, 246, 0.6);
        }

        .cta-professional-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-professional-button:hover .cta-professional-bg {
            opacity: 1;
        }

        .cta-professional-text {
            position: relative;
            z-index: 2;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-professional-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-professional-button:hover .cta-professional-shine {
            left: 100%;
        }

        .cta-trust-indicators {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            color: #94a3b8;
            font-size: 0.875rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .professional-layout {
                grid-template-columns: 1fr;
            }
            
            .featured-benefit-header {
                flex-direction: column;
                text-align: center;
            }
            
            .featured-stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .advantages-section-professional {
                padding: 2rem 0;
                min-height: auto;
            }
            
            .professional-title {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
            
            .featured-benefit-inner,
            .secondary-benefit-inner,
            .loyalty-program-inner,
            .cta-professional-inner {
                padding: 1.5rem;
            }
            
            .featured-benefit-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .featured-stats {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }
            
            .stat-item {
                min-width: 80px;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .cta-trust-indicators {
                flex-direction: column;
                gap: 0.75rem;
            }
            
            .professional-layout {
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .advantages-section-professional {
                padding: 1rem 0;
            }
            
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .professional-title {
                font-size: 2rem;
                line-height: 1.1;
            }
            
            .featured-benefit-inner,
            .secondary-benefit-inner,
            .cta-professional-inner {
                padding: 1rem;
            }
            
            .featured-title {
                font-size: 1.25rem;
            }
            
            .featured-description {
                font-size: 0.95rem;
            }
            
            .featured-stats {
                gap: 0.75rem;
            }
            
            .stat-number {
                font-size: 1.25rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            .secondary-title {
                font-size: 1.1rem;
            }
            
            .secondary-description {
                font-size: 0.875rem;
            }
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
            backdrop-filter: blur(20px);
            animation: float 6s ease-in-out infinite;
        }

        .orb-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .advantages-badge {
            animation: pulse-glow 2s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5); }
        }

        .advantages-title {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            animation: title-entrance 1s ease-out;
        }

        @keyframes title-entrance {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .text-gradient-special {
            background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .advantages-divider {
            animation: divider-expand 1s ease-out 0.5s both;
        }

        @keyframes divider-expand {
            0% { width: 0; opacity: 0; }
            100% { width: 8rem; opacity: 1; }
        }

        .advantage-card {
            position: relative;
            height: 100%;
            animation: card-entrance 0.8s ease-out both;
        }

        .advantage-card:nth-child(1) { animation-delay: 0.1s; }
        .advantage-card:nth-child(2) { animation-delay: 0.2s; }
        .advantage-card:nth-child(3) { animation-delay: 0.3s; }
        .advantage-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes card-entrance {
            0% { opacity: 0; transform: translateY(50px) scale(0.9); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .advantage-card-inner {
            position: relative;
            height: 100%;
            padding: 2.5rem 2rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .advantage-card:hover .advantage-card-inner {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .advantage-icon-container {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advantage-icon-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            border-radius: 50%;
            opacity: 0.1;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .advantage-icon-bg {
            opacity: 0.2;
            transform: scale(1.1);
        }

        .advantage-icon {
            font-size: 2.5rem;
            color: #3b82f6;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .advantage-icon {
            color: #1d4ed8;
            transform: scale(1.1);
        }

        .advantage-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .advantage-description {
            color: #64748b;
            text-align: center;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .advantage-highlight {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .advantages-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, #1e40af, #3b82f6, #6366f1);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 10px 30px rgba(59, 130, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .advantages-cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 20px 50px rgba(59, 130, 246, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .cta-bg-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .advantages-cta-button:hover .cta-bg-gradient {
            opacity: 1;
        }

        .cta-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .advantages-cta-button:hover .cta-shine {
            left: 100%;
        }

        .cta-text {
            position: relative;
            z-index: 10;
        }

        .cta-ripple {
            position: absolute;
            inset: 0;
            border-radius: 50px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            opacity: 0;
            transform: scale(0);
            transition: all 0.6s ease;
        }

        .advantages-cta-button:active .cta-ripple {
            opacity: 1;
            transform: scale(1);
            transition: all 0.3s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .advantages-title {
                font-size: 2.5rem;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .advantage-card-inner {
                padding: 2rem 1.5rem;
            }
            
            .advantages-cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .advantages-title {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .advantage-icon-container {
                width: 60px;
                height: 60px;
            }
            
            .advantage-icon {
                font-size: 2rem;
            }
        }
        .cta-section {
            border-radius: 24px;
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer-cta 3s ease-in-out infinite;
            z-index: 1;
        }

        .floating-particles .particle {
            position: absolute;
            background: rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            animation: float-particle 6s ease-in-out infinite;
        }

        .particle-1 {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle-2 {
            width: 12px;
            height: 12px;
            top: 60%;
            left: 80%;
            animation-delay: 1s;
        }

        .particle-3 {
            width: 6px;
            height: 6px;
            top: 80%;
            left: 20%;
            animation-delay: 2s;
        }

        .particle-4 {
            width: 10px;
            height: 10px;
            top: 30%;
            left: 70%;
            animation-delay: 3s;
        }

        .particle-5 {
            width: 14px;
            height: 14px;
            top: 70%;
            left: 50%;
            animation-delay: 4s;
        }

        .cta-button:hover span {
            color: white !important;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            z-index: 0;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        @keyframes shimmer-cta {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes float-particle {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg);
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        /* Responsive adjustments for CTA */
        @media (max-width: 768px) {
            .cta-section {
                margin: 0 10px;
                border-radius: 16px;
            }
            
            .cta-section h3 {
                font-size: 2rem !important;
            }
            
            .cta-section p {
                font-size: 1rem !important;
            }
        }
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        .brands-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(21, 38, 59, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(21, 38, 59, 0.02) 0%, transparent 70%);
            pointer-events: none;
        }
        .brands-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 30%, rgba(21, 38, 59, 0.02) 50%, transparent 70%);
            pointer-events: none;
            animation: shimmer 8s ease-in-out infinite;
        }
        .brand-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px) saturate(1.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 10px 25px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }
        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(21, 38, 59, 0.1), 
                rgba(255, 255, 255, 0.3),
                rgba(21, 38, 59, 0.1),
                transparent);
            transition: left 0.6s ease;
            z-index: 2;
        }
        .brand-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(21, 38, 59, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: rotate 4s linear infinite;
            z-index: 1;
        }
        .brand-card:hover::before {
            left: 100%;
        }
        .brand-card:hover::after {
            opacity: 1;
        }
        .brand-card:hover {
            transform: translateY(-15px) scale(1.05) rotateX(5deg);
            box-shadow: 
                0 25px 50px rgba(21, 38, 59, 0.2),
                0 15px 35px rgba(21, 38, 59, 0.15),
                0 5px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 30px rgba(21, 38, 59, 0.1);
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(248, 250, 252, 0.95) 50%,
                rgba(255, 255, 255, 0.95) 100%);
            border-color: rgba(21, 38, 59, 0.2);
            backdrop-filter: blur(20px) saturate(1.4);
        }
        .brand-logo {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: grayscale(0.3) opacity(0.8) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            position: relative;
            z-index: 3;
        }
        .brand-card:hover .brand-logo {
            filter: grayscale(0) opacity(1) drop-shadow(0 4px 8px rgba(0,0,0,0.15)) brightness(1.1);
            transform: scale(1.15) rotate(2deg);
        }
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
            perspective: 1000px;
        }
        .brand-card-inner {
            padding: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            position: relative;
            z-index: 3;
            transition: transform 0.4s ease;
        }
        .brand-card:hover .brand-card-inner {
            transform: translateZ(20px);
        }
        .brands-title {
            background: linear-gradient(135deg, #15263B 0%, #1e3a5f 50%, #15263B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(21, 38, 59, 0.1);
            position: relative;
        }
        .brands-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #15263B, transparent);
            border-radius: 2px;
        }
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.1), 
                rgba(59, 130, 246, 0.05),
                rgba(37, 99, 235, 0.08));
            animation: float 8s ease-in-out infinite;
            box-shadow: 
                0 4px 15px rgba(37, 99, 235, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }
        .floating-circle::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 10%;
            width: 80%;
            height: 80%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, 
                rgba(147, 197, 253, 0.3), 
                transparent 70%);
        }
        .floating-circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.12), 
                rgba(59, 130, 246, 0.08));
        }
        .floating-circle:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 70%;
            right: 15%;
            animation-delay: 2.5s;
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.1), 
                rgba(37, 99, 235, 0.06));
        }
        .floating-circle:nth-child(3) {
            width: 120px;
            height: 120px;
            bottom: 20%;
            left: 20%;
            animation-delay: 5s;
            background: linear-gradient(135deg, 
                rgba(37, 99, 235, 0.08), 
                rgba(59, 130, 246, 0.12));
        }
        
        /* Advanced Animation Keyframes */
        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
                opacity: 0.6;
            }
            25% { 
                transform: translateY(-15px) rotate(90deg) scale(1.05); 
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-25px) rotate(180deg) scale(1.1); 
                opacity: 1;
            }
            75% { 
                transform: translateY(-15px) rotate(270deg) scale(1.05); 
                opacity: 0.8;
            }
        }
        
        @keyframes shimmer {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes pulse-animation {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes slide-in-up {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes animate-in {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Ripple Effect Styles */
        .ripple-effect {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(21, 38, 59, 0.3) 0%, transparent 70%);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
            z-index: 2;
        }
        
        @keyframes ripple {
            to {
                transform: scale(2);
                opacity: 0;
            }
        }
        
        /* Pulse Animation Class */
        .pulse-animation {
            animation: pulse-animation 0.6s ease-in-out;
        }
        
        /* Slide In Animation Class */
        .slide-in-up {
            animation: slide-in-up 0.6s ease-out forwards;
        }
        
        /* Animate In Class */
        .animate-in {
            animation: animate-in 1s ease-out forwards;
        }
        
        /* Responsive Enhancements */
        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }
            .brand-card-inner {
                padding: 1.5rem;
                min-height: 100px;
            }
            .floating-circle {
                display: none; /* Hide floating elements on mobile for performance */
            }
        }
        
        /* Portal Section Animations */
        .portal-floating-stats {
            animation: portalFloat 3s ease-in-out infinite;
        }
        
        .portal-floating-stats:nth-child(2) {
            animation-delay: 1.5s;
        }
        
        @keyframes portalFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        /* Enhanced Glass Morphism for Portal */
        .portal-glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        /* Portal Gradient Text */
        .portal-gradient-text {
            background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { 
                background-position: 0% 50%; 
                filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(1);
            }
            50% { 
                background-position: 100% 50%; 
                filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) brightness(1.1);
            }
        }
        
        /* Portal Feature Cards */
        .portal-feature-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .portal-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .portal-feature-card:hover::before {
            left: 100%;
        }
        
        .portal-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }
        
        /* Portal Image Effects */
        .portal-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }
        
        .portal-image-glow {
            position: absolute;
            inset: -4px;
            background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
            border-radius: 24px;
            opacity: 0;
            z-index: -1;
            filter: blur(20px);
            transition: opacity 0.6s ease;
        }
        
        .portal-image-container:hover .portal-image-glow {
            opacity: 0.4;
        }
        
        /* Portal Floating Badge */
        .portal-floating-badge {
            animation: portalPulse 2s ease-in-out infinite;
        }
        
        @keyframes portalPulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
            }
        }
        
        /* Portal CTA Buttons */
        .portal-cta-primary {
            position: relative;
            background: linear-gradient(135deg, #ffffff, #e3f2fd);
            color: #15263B;
            background-size: 200% 200%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        
        .portal-cta-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #e3f2fd, #ffffff);
            background-position: 100% 0;
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
            border-color: #ffffff;
        }
        
        .portal-cta-secondary {
            position: relative;
            border: 2px solid #ffffff;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .portal-cta-secondary:hover {
            background: #ffffff;
            color: #15263B;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
        }

        /* Fix for button links - preserve button styling */
        a.hero-button,
        a.cta-button,
        a.cta-professional-button {
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        a.hero-button:hover,
        a.cta-button:hover,
        a.cta-professional-button:hover {
            text-decoration: none !important;
        }

        /* Ensure group hover effects work on anchor tags */
        a.group:hover .group-hover\:translate-x-2 {
            transform: translateX(0.5rem);
        }

        a.group:hover .group-hover\:opacity-100 {
            opacity: 1;
        }

        /* Hero Visual Element Animations */
        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .animate-spin-slow {
            animation: spin-slow 8s linear infinite;
        }

        /* Gradient Border Animation */
        .border-gradient-to-r {
            border-image: linear-gradient(45deg, #60a5fa, #a855f7) 1;
        }

        /* Responsive adjustments for hero visual */
        @media (max-width: 1024px) {
            .hero-visual .w-96 {
                width: 20rem;
                height: 20rem;
            }
        }

        @media (max-width: 768px) {
            .hero-visual .w-96 {
                width: 16rem;
                height: 16rem;
            }
            
            /* Correção do alinhamento do título "Transformando o mercado de beleza" */
            .text-left {
                text-align: center !important;
            }
            
            .text-left h1 {
                text-align: center;
            }
            
            .text-left .inline-flex {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            /* Ajustes adicionais para mobile pequeno */
            .text-left h1 {
                font-size: 2.5rem !important;
                line-height: 1.1;
            }
        }

        /* WhatsApp Float Button Styles */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .whatsapp-float.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: all 0.3s ease;
            animation: whatsappPulse 2s infinite;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float i {
            font-size: 28px;
            color: white;
        }

        @keyframes whatsappPulse {
            0% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
        }

        /* Responsive adjustments for WhatsApp button */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-float a {
                width: 55px;
                height: 55px;
            }
            
            .whatsapp-float i {
                font-size: 24px;
            }
        }
