
        :root {
            --navy-primary: #001f3f;
            --navy-dark: #001529;
            --navy-light: #003366;
            --navy-accent: #0074D9;
            --navy-hover: #002a52;
            --success: #22c55e;
            --white: #ffffff;
            --gray-100: #eef4fb;
            --gray-200: #e2e8f0;
            --gray-500: #64748b;
            --gray-700: #334155;
        }

        /* Hero Section */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 116, 217, 0.15);
            border: 1px solid rgba(0, 116, 217, 0.3);
            padding: 8px 20px;
            border-radius: 25px;
            color: var(--navy-accent);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge i {
            font-size: 12px;
        }

        /* Trust Indicators */

        .trust-indicators {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            font-weight: 500;
        }

        .trust-item i {
            color: #22c55e;
            font-size: 14px;
        }

        .trust-item .trust-count {
            color: #fff;
            font-weight: 700;
        }

        .hero-title {
            color: var(--white);
            font-size: 56px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-title .accent {
            color: var(--navy-accent);
            position: relative;
        }

        .typewriter-wrapper {
            display: inline-block;
            position: relative;
        }

        .typewriter-text {
            display: inline;
            color: var(--success);
            border-right: 3px solid var(--navy-accent);
            animation: blink 0.75s step-end infinite;
        }

        @keyframes blink {
            from,
            to {
                border-color: transparent;
            }
            50% {
                border-color: var(--navy-accent);
            }
        }

        .hero-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 520px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        /* Hero Logo */

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .logo-circle {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(0, 116, 217, 0.5);
            box-shadow: 0 0 40px rgba(0, 116, 217, 0.3), 0 0 80px rgba(0, 116, 217, 0.1);
            animation: logoPulse 3s ease-in-out infinite;
            position: relative;
        }

        .logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-circle::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--navy-accent);
            animation: spin 8s linear infinite;
        }

        @keyframes logoPulse {
            0%,
            100% {
                box-shadow: 0 0 40px rgba(0, 116, 217, 0.3), 0 0 80px rgba(0, 116, 217, 0.1);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 60px rgba(0, 116, 217, 0.5), 0 0 120px rgba(0, 116, 217, 0.2);
                transform: scale(1.03);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes cardFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes iconBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .accent-line {
            width: 60px;
            height: 4px;
            background: #0074D9;
            border-radius: 2px;
            margin: 15px auto 0;
        }

        /* Expertise Section */

        .section-light {
            background: #f0f6ff;
        }

        .section-gray {
            background: #e8f0fe;
        }

        /* Services Section */

        .service-card {
            background: #f7faff;
            border-radius: 12px;
            padding: 28px;
            animation: cardFloat 4s ease-in-out infinite;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
        }

        .service-card:nth-child(1) {
            animation-delay: 0s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.8s;
        }

        .service-card:nth-child(4) {
            animation-delay: 1.2s;
        }

        .service-card:nth-child(5) {
            animation-delay: 1.6s;
        }

        .service-card:nth-child(6) {
            animation-delay: 2s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-color: var(--navy-accent);
            animation-play-state: paused;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            animation: iconBounce 3s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
        }

        .service-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy-primary);
            margin-bottom: 6px;
        }

        .service-card p {
            font-size: 13px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* Stats Section */

        .stats-section {
            background: linear-gradient(135deg, #001f3f 0%, #001529 30%, #003366 70%, #001f3f 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            padding: 60px 20px;
            color: white;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--navy-accent);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.85;
            font-weight: 500;
            margin-top: 8px;
            display: block;
        }

        /* About Section */
        .about-me-top {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 32px;
        }

        .about-me-image {
            flex-shrink: 0;
        }

        .about-me-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--navy-accent);
            box-shadow: 0 0 40px rgba(0, 116, 217, 0.3);
            position: relative;
        }

        .about-me-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-me-avatar::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(0, 116, 217, 0.4);
            animation: logoPulse 3s ease-in-out infinite;
        }

        .about-me-content {
            color: var(--white);
        }

        .about-me-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 116, 217, 0.15);
            border: 1px solid rgba(0, 116, 217, 0.3);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            color: var(--navy-accent);
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .about-me-content h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--white);
        }

        .about-me-content h2 span {
            color: var(--navy-accent);
        }

        .about-me-role {
            font-size: 16px;
            color: var(--navy-accent);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .about-me-content p {
            font-size: 15.5px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 28px;
        }

        .about-me-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-bottom: 28px;
        }

        .about-me-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-me-highlight i {
            color: var(--success);
            font-size: 14px;
            flex-shrink: 0;
        }

        .about-me-clients-wrapper {
            overflow: hidden;
            width: 100%;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .about-me-clients {
            display: flex;
            gap: 12px;
            width: max-content;
            animation: scrollFlags 30s linear infinite;
        }

        .about-me-clients:hover {
            animation-play-state: paused;
        }

        @keyframes scrollFlags {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .client-flag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 116, 217, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.85);
            white-space: nowrap;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .client-flag:hover {
            background: rgba(0, 116, 217, 0.15);
            border-color: rgba(0, 116, 217, 0.3);
        }

        .client-flag img {
            width: 20px;
            height: 15px;
            border-radius: 2px;
        }

        @media (max-width: 768px) {
            .about-me-section {
                padding: 50px 15px;
            }
            .about-me-top {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }
            .about-me-avatar {
                width: 130px;
                height: 130px;
            }
            .about-me-content h2 {
                font-size: 24px;
            }
            .about-me-role {
                font-size: 14px;
            }
            .about-me-content p {
                font-size: 14px;
                line-height: 1.7;
            }
            .about-me-highlights {
                grid-template-columns: 1fr;
                text-align: left;
                gap: 10px;
            }
            .about-me-highlight {
                font-size: 13px;
            }
            .about-me-label {
                margin: 0 auto 16px;
                font-size: 11px;
                padding: 5px 12px;
            }
        }

        /* Featured Resources */

        .video-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            touch-action: manipulation;
        }

        .video-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            overflow: hidden;
        }

        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }

        .rating-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            color: #fbbf24;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .rating-badge i {
            font-size: 11px;
        }

        .preview-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 31, 63, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .video-card:hover .preview-overlay {
            opacity: 1;
        }

        .preview-overlay-btn {
            background: white;
            color: #001f3f;
            border: none;
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }

        .preview-overlay-btn:hover {
            transform: scale(1.05);
        }

        .card-info {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .video-title {
            font-size: 15px;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-meta {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .video-category {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 2px 8px;
            background: #f1f5f9;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #475569;
        }

        .plan-badges-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
        }

        .plan-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            padding: 3px 4px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 1px solid #93c5fd;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 600;
            color: #0074D9;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .plan-badge i {
            font-size: 9px;
            color: #f59e0b;
        }

        .card-footer {
            padding: 12px 16px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }

        .card-rating {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .card-rating .stars {
            display: flex;
            gap: 2px;
            color: #fbbf24;
            font-size: 13px;
        }

        .card-rating .stars .far {
            color: #d1d5db;
        }

        .card-rating .rating-text {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }

        .card-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
            width: 100%;
        }

        .card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            white-space: nowrap;
            touch-action: manipulation;
        }

        .card-btn-preview {
            background: #0074D9;
            color: white;
        }

        .card-btn-preview:hover {
            background: #003366;
            color: white;
        }

        .card-btn-demo {
            background: linear-gradient(135deg, #10b981 0%, #047857 100%);
            color: white;
        }

        .card-btn-demo:hover {
            background: #047857;
            color: white;
        }

        .card-btn-contact {
            background: #25D366;
            color: white;
        }

        .card-btn-contact:hover {
            background: #128C7E;
            color: white;
        }

        .card-btn-browse {
            background: var(--navy-primary);
            color: white;
        }

        .card-btn-browse:hover {
            background: var(--navy-light);
            color: white;
        }

        .featured-browse-btn {
            text-align: center;
            margin-top: 35px;
        }

        .featured-browse-btn a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: var(--navy-accent);
            color: white;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .featured-browse-btn a:hover {
            background: #0063b8;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 116, 217, 0.4);
        }

        /* VIP Plans Banner */

        .vip-banner {
            background: linear-gradient(135deg, #001f3f 0%, #001529 30%, #003366 70%, #001f3f 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            padding: 50px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .vip-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 116, 217, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .vip-banner::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 116, 217, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .vip-banner-inner {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .vip-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
            border: 1px solid rgba(245, 158, 11, 0.4);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 13px;
            color: #f59e0b;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .vip-banner h3 {
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .vip-banner h3 span {
            color: #f59e0b;
        }

        .vip-banner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .vip-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .vip-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .vip-feature i {
            color: #f59e0b;
        }

        .vip-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
        }

        .vip-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
            background: linear-gradient(135deg, #d97706, #b45309);
        }

        @media (max-width: 768px) {
            .vip-banner {
                padding: 40px 15px;
            }
            .vip-banner h3 {
                font-size: 22px;
            }
            .vip-banner p {
                font-size: 14px;
            }
            .vip-features {
                gap: 12px;
            }
            .vip-feature {
                font-size: 13px;
            }
            .vip-btn {
                padding: 12px 28px;
                font-size: 14px;
            }
        }

        /* Testimonials Section */
        .testimonial-card {
            background: #f7faff;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--navy-accent);
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 60px;
            font-family: Georgia, serif;
            color: rgba(0, 116, 217, 0.1);
            line-height: 1;
        }

        .testimonial-stars {
            display: flex;
            gap: 3px;
            color: #fbbf24;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--gray-200);
            padding-top: 15px;
        }

        .testimonial-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .testimonial-author-info h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy-primary);
            margin-bottom: 2px;
        }

        .testimonial-author-info span {
            font-size: 12px;
            color: var(--gray-500);
        }

        .testimonial-verified {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: #22c55e;
            font-weight: 600;
            margin-left: auto;
        }

        .testimonial-verified i {
            font-size: 12px;
        }

        .testimonials-summary {
            text-align: center;
            margin-top: 35px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .testimonials-summary-inner {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 1px solid #93c5fd;
            padding: 12px 25px;
            border-radius: 12px;
        }

        .testimonials-summary .big-rating {
            font-size: 28px;
            font-weight: 800;
            color: var(--navy-primary);
        }

        .testimonials-summary .summary-stars {
            display: flex;
            gap: 3px;
            color: #fbbf24;
            font-size: 16px;
        }

        .testimonials-summary .summary-text {
            font-size: 13px;
            color: var(--gray-500);
        }

        .write-review-btn {
            text-align: center;
            margin-top: 20px;
        }

        .write-review-btn a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: #dc2626;
            color: white;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .write-review-btn a:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }

        .testimonial-country {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .testimonial-country img {
            width: 16px;
            height: 12px;
            border-radius: 2px;
            object-fit: cover;
        }

        /* Payments Section */

        .payment-shield {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }

        .payment-shield-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-700);
        }

        .payment-shield-item i {
            color: #22c55e;
            font-size: 15px;
        }

        .ticker-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .ticker-track {
            display: flex;
            gap: 50px;
            align-items: center;
            animation: tickerScroll 60s linear infinite;
            width: max-content;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            padding: 15px 20px;
            background: var(--gray-100);
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .ticker-item:hover {
            border-color: var(--navy-accent);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .ticker-item img {
            height: 32px;
            width: auto;
            max-width: 80px;
            object-fit: contain;
            filter: grayscale(30%);
            transition: filter 0.3s;
        }

        .ticker-item:hover img {
            filter: grayscale(0%);
        }

        .ticker-item span {
            font-size: 11px;
            font-weight: 600;
            color: var(--gray-500);
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .ticker-item {
                min-width: 100px;
                padding: 12px 15px;
            }
            .ticker-item img {
                height: 26px;
            }
            .ticker-track {
                gap: 30px;
            }
            .payment-shield {
                gap: 12px;
            }
            .payment-shield-item {
                font-size: 11px;
            }
        }