  .tmv-premium-section {
            background: transparent;
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        @keyframes tmv-float-pulse {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .tmv-section-header {
            text-align: center;
           margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
            animation: tmv-fade-up 1s ease-out forwards;
        }

        @keyframes tmv-fade-up {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tmv-section-subtitle {
            color: var(--accent-orange);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .tmv-section-title {
            color: var(--primary-blue);
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .tmv-section-description {
            color: var(--text-medium);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tmv-card-wrapper {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            filter: blur(10px);
        }

        .tmv-card-wrapper.tmv-visible {
            animation: tmv-card-reveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .tmv-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .tmv-card-wrapper:nth-child(2) { animation-delay: 0.3s; }
        .tmv-card-wrapper:nth-child(3) { animation-delay: 0.5s; }

        @keyframes tmv-card-reveal {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .tmv-premium-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border: 2px solid var(--light-gray);
            box-shadow: var(--shadow-md), 0 0 40px rgba(20, 47, 118, 0.08);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .tmv-premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(20, 47, 118, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .tmv-premium-card:hover::before {
            left: 100%;
        }

        .tmv-premium-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 32px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange), var(--accent-gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .tmv-premium-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg), 0 20px 60px rgba(20, 47, 118, 0.15);
            border-color: var(--primary-blue);
            background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
        }

        .tmv-premium-card:hover::after {
            opacity: 1;
        }

        .tmv-card-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            position: relative;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tmv-card-trust .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(20, 47, 118, 0.15), rgba(59, 130, 246, 0.15));
            box-shadow: 0 8px 32px rgba(20, 47, 118, 0.2);
            border: 2px solid rgba(20, 47, 118, 0.2);
        }

        .tmv-card-mission .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.15));
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.2);
        }

        .tmv-card-vision .tmv-card-icon-wrapper {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.15));
            box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
            border: 2px solid rgba(6, 182, 212, 0.2);
        }

        .tmv-premium-card:hover .tmv-card-icon-wrapper {
            transform: rotateY(360deg) scale(1.1);
        }

        .tmv-card-icon {
            font-size: 40px;
            transition: all 0.4s ease;
        }

        .tmv-card-trust .tmv-card-icon {
            color: #3b82f6;
        }

        .tmv-card-mission .tmv-card-icon {
            color: #a855f7;
        }

        .tmv-card-vision .tmv-card-icon {
            color: #06b6d4;
        }

        .tmv-premium-card:hover .tmv-card-icon {
            animation: tmv-icon-pulse 1s ease infinite;
        }

        @keyframes tmv-icon-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .tmv-card-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
            text-align: center;
            letter-spacing: 0.5px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .tmv-card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            border-radius: 2px;
            transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .tmv-card-trust .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #3b82f6, transparent);
        }

        .tmv-card-mission .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #a855f7, transparent);
        }

        .tmv-card-vision .tmv-card-title::after {
            background: linear-gradient(90deg, transparent, #06b6d4, transparent);
        }

        .tmv-premium-card:hover .tmv-card-title::after {
            width: 120px;
        }

        .tmv-card-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-medium);
            text-align: center;
            flex-grow: 1;
        }

        .tmv-card-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .tmv-card-trust .tmv-card-glow {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
            top: -50px;
            left: -50px;
        }

        .tmv-card-mission .tmv-card-glow {
            background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
            top: -50px;
            right: -50px;
        }

        .tmv-card-vision .tmv-card-glow {
            background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .tmv-premium-card:hover .tmv-card-glow {
            opacity: 0.6;
        }

        /* Large Desktop (1400px+) */
        @media (min-width: 1400px) {
            .tmv-premium-section {
                padding: 35px 0;
            }

            .tmv-section-title {
                font-size: 40px;
            }

            .tmv-section-description {
                font-size: 20px;
                max-width: 700px;
            }

            .tmv-premium-card {
                padding: 19px 27px;
            }

            .tmv-card-icon-wrapper {
                width: 80px;
                height: 80px;
            }

            .tmv-card-icon {
                font-size: 32px;
            }

            .tmv-card-title {
                font-size: 32px;
            }

            .tmv-card-description {
                font-size: 17px;
            }
        }

        /* Desktop (1200px - 1399px) */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .tmv-premium-section {
                padding: 120px 0;
            }

            .tmv-premium-card {
                padding: 50px 40px;
            }
        }

        /* Tablet Landscape (992px - 1199px) */
        @media (min-width: 992px) and (max-width: 1199px) {
            .tmv-premium-section {
                padding: 100px 0;
            }

            .tmv-section-title {
                font-size: 42px;
            }

            .tmv-section-description {
                font-size: 17px;
            }

            .tmv-premium-card {
                padding: 45px 35px;
            }

            .tmv-card-icon-wrapper {
                width: 85px;
                height: 85px;
            }

            .tmv-card-icon {
                font-size: 38px;
            }

            .tmv-card-title {
                font-size: 26px;
            }

            .tmv-card-description {
                font-size: 15px;
            }
        }

        /* Tablet Portrait (768px - 991px) */
        @media (min-width: 768px) and (max-width: 991px) {
            .tmv-premium-section {
                padding: 90px 0;
            }

            .tmv-section-header {
                margin-bottom: 60px;
            }

            .tmv-section-subtitle {
                font-size: 13px;
                letter-spacing: 2.5px;
            }

            .tmv-section-title {
                font-size: 38px;
            }

            .tmv-section-description {
                font-size: 16px;
                max-width: 550px;
            }

            .tmv-premium-card {
                padding: 40px 30px;
                margin-bottom: 25px;
            }

            .tmv-card-icon-wrapper {
                width: 80px;
                height: 80px;
                margin-bottom: 30px;
            }

            .tmv-card-icon {
                font-size: 36px;
            }

            .tmv-card-title {
                font-size: 25px;
                margin-bottom: 18px;
            }

            .tmv-card-description {
                font-size: 15px;
                line-height: 1.7;
            }

            .tmv-premium-card:hover {
                transform: translateY(-10px);
            }

            .row.g-4 {
                row-gap: 1.5rem !important;
            }
        }

        /* Mobile Large (576px - 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            .tmv-premium-section {
                padding: 70px 0;
            }

            .tmv-section-header {
                margin-bottom: 50px;
            }

            .tmv-section-subtitle {
                font-size: 12px;
                letter-spacing: 2px;
                margin-bottom: 12px;
            }

            .tmv-section-title {
                font-size: 34px;
                margin-bottom: 16px;
            }

            .tmv-section-description {
                font-size: 15px;
                max-width: 480px;
                padding: 0 15px;
            }

            .tmv-premium-card {
                padding: 40px 30px;
                margin-bottom: 20px;
                border-radius: 28px;
            }

            .tmv-card-icon-wrapper {
                width: 75px;
                height: 75px;
                margin-bottom: 25px;
            }

            .tmv-card-icon {
                font-size: 34px;
            }

            .tmv-card-title {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .tmv-card-description {
                font-size: 14px;
                line-height: 1.7;
            }

            .tmv-premium-card:hover {
                transform: translateY(-8px);
            }

            .tmv-premium-card:hover .tmv-card-title::after {
                width: 100px;
            }
        }

        /* Mobile Medium (400px - 575px) */
        @media (min-width: 400px) and (max-width: 575px) {
            .tmv-premium-section {
                padding: 30px 0;
                min-height: auto;
            }

            .tmv-section-header {
                margin-bottom: 45px;
            }

            .tmv-section-subtitle {
                font-size: 11px;
                letter-spacing: 1.8px;
                margin-bottom: 10px;
            }

            .tmv-section-title {
                font-size: 30px;
                margin-bottom: 14px;
                line-height: 1.2;
            }

            .tmv-section-description {
                font-size: 14px;
                max-width: 100%;
                padding: 0 10px;
                line-height: 1.6;
            }

            .tmv-premium-card {
                padding: 35px 25px;
                margin-bottom: 20px;
                border-radius: 24px;
                border-width: 1.5px;
            }

            .tmv-card-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 22px;
            }

            .tmv-card-icon {
                font-size: 32px;
            }

            .tmv-card-title {
                font-size: 22px;
                margin-bottom: 14px;
            }

            .tmv-card-description {
                font-size: 14px;
                line-height: 1.65;
            }

            .tmv-premium-card:hover {
                transform: translateY(-6px);
            }

            .tmv-premium-card:hover .tmv-card-title::after {
                width: 80px;
            }

            .container {
                padding: 0 20px;
            }
        }

        /* Mobile Small (320px - 399px) */
        @media (max-width: 399px) {
            .tmv-premium-section {
                padding: 50px 0;
                min-height: auto;
            }

            .tmv-section-header {
                margin-bottom: 40px;
            }

            .tmv-section-subtitle {
                font-size: 10px;
                letter-spacing: 1.5px;
                margin-bottom: 8px;
            }

            .tmv-section-title {
                font-size: 26px;
                margin-bottom: 12px;
                line-height: 1.2;
            }

            .tmv-section-description {
                font-size: 13px;
                max-width: 100%;
                padding: 0 5px;
                line-height: 1.6;
            }

            .tmv-premium-card {
                padding: 30px 20px;
                margin-bottom: 18px;
                border-radius: 20px;
                border-width: 1.5px;
            }

            .tmv-card-icon-wrapper {
                width: 65px;
                height: 65px;
                margin-bottom: 20px;
                border-width: 1.5px;
            }

            .tmv-card-icon {
                font-size: 28px;
            }

            .tmv-card-title {
                font-size: 20px;
                margin-bottom: 12px;
                letter-spacing: 0.3px;
            }

            .tmv-card-title::after {
                height: 2px;
                bottom: -6px;
            }

            .tmv-card-description {
                font-size: 13px;
                line-height: 1.6;
            }

            .tmv-premium-card:hover {
                transform: translateY(-5px);
            }

            .tmv-premium-card:hover .tmv-card-title::after {
                width: 70px;
            }

            .tmv-card-glow {
                width: 150px;
                height: 150px;
                filter: blur(50px);
            }

            .container {
                padding: 0 15px;
            }

            .row.g-4 {
                row-gap: 1rem !important;
            }
        }

        /* Ultra Small Devices (280px - 319px) */
        @media (max-width: 319px) {
            .tmv-premium-section {
                padding: 40px 0;
            }

            .tmv-section-subtitle {
                font-size: 9px;
                letter-spacing: 1.2px;
            }

            .tmv-section-title {
                font-size: 22px;
            }

            .tmv-section-description {
                font-size: 12px;
            }

            .tmv-premium-card {
                padding: 25px 18px;
                border-radius: 18px;
            }

            .tmv-card-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .tmv-card-icon {
                font-size: 26px;
            }

            .tmv-card-title {
                font-size: 18px;
            }

            .tmv-card-description {
                font-size: 12px;
            }

            .container {
                padding: 0 12px;
            }
        }

        /* Landscape Mobile Optimization */
        @media (max-height: 500px) and (orientation: landscape) {
            .tmv-premium-section {
                padding: 40px 0;
                min-height: auto;
            }

            .tmv-section-header {
                margin-bottom: 30px;
            }

            .tmv-section-title {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .tmv-section-description {
                font-size: 14px;
            }

            .tmv-premium-card {
                padding: 30px 25px;
            }

            .tmv-card-icon-wrapper {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .tmv-card-icon {
                font-size: 28px;
            }

            .tmv-card-title {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .tmv-card-description {
                font-size: 13px;
                line-height: 1.5;
            }
        }

        /* Reduce animations on mobile for performance */
        @media (max-width: 767px) {
            .tmv-premium-card {
                transition: all 0.4s ease;
            }

            .tmv-card-icon-wrapper {
                transition: all 0.4s ease;
            }

            .tmv-premium-card:hover .tmv-card-icon-wrapper {
                transform: rotateY(180deg) scale(1.05);
            }

            .tmv-premium-card:hover .tmv-card-icon {
                animation: none;
            }

            .tmv-card-glow {
                display: none;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .tmv-premium-card:hover {
                transform: translateY(0);
            }

            .tmv-premium-card:active {
                transform: scale(0.98);
            }

            .tmv-premium-card::before {
                display: none;
            }
        }





        