:root {
            --primary: #ff7e05;
            --primary-dark: #e56f04;
            --secondary: #388af7;
            --dark: #073b4c;
            --light: #f8f9fa;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(255, 126, 5, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            background: linear-gradient(45deg, var(--primary-dark), var(--secondary));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 126, 5, 0.5);
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 8px 25px rgba(255, 126, 5, 0.5);
            }
            50% {
                box-shadow: 0 8px 25px rgba(255, 126, 5, 0.7), 0 0 0 10px rgba(255, 126, 5, 0.1);
            }
            100% {
                box-shadow: 0 8px 25px rgba(255, 126, 5, 0.5);
            }
        }
        
        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* 支持的浏览器样式 */
        .supported-browsers {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .supported-browsers .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .supported-browsers .section-title h3 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .supported-browsers .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .browser-icon-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            perspective: 1000px;
        }
        
        .browser-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 15px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            color: var(--dark);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d;
            opacity: 0;
            transform: translateY(50px) rotateX(-15deg);
        }
        
        .browser-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 126, 5, 0.1), rgba(56, 138, 247, 0.1));
            transition: left 0.5s ease;
            z-index: 0;
        }
        
        .browser-item:hover::before {
            left: 100%;
        }
        
        .browser-item:hover {
            transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 126, 5, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .browser-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 12px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }
        
        .browser-item:hover .browser-icon {
            transform: scale(1.2) rotate(360deg);
            filter: drop-shadow(0 0 10px rgba(255, 126, 5, 0.5));
        }
        
        .browser-item span {
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .browser-item:hover span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 126, 5, 0.3);
        }
        
        /* 粒子爆发效果 */
        .particle-burst {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            transform: translate(-50%, -50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .browser-item:hover .particle-burst {
            opacity: 1;
            animation: particleBurst 0.6s ease-out;
        }
        
        @keyframes particleBurst {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }
        
        .particle-burst::before,
        .particle-burst::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            animation: particleMove 0.6s ease-out infinite;
        }
        
        .particle-burst::before {
            top: 20%;
            left: 20%;
            animation-delay: 0.1s;
        }
        
        .particle-burst::after {
            top: 70%;
            right: 20%;
            background: var(--secondary);
            animation-delay: 0.2s;
        }
        
        @keyframes particleMove {
            0% {
                transform: scale(0) translate(0, 0);
                opacity: 1;
            }
            100% {
                transform: scale(1) translate(50px, -50px);
                opacity: 0;
            }
        }
        
        /* 3D浮动元素 */
        .floating-3d-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-3d-shape {
            position: absolute;
            font-size: 24px;
            opacity: 0.1;
            animation: float3D 15s infinite linear;
            color: var(--primary);
            text-shadow: 0 0 20px currentColor;
        }
        
        .floating-3d-shape.shape-1 {
            left: 10%;
            animation-delay: 0s;
            color: var(--primary);
        }
        
        .floating-3d-shape.shape-2 {
            left: 30%;
            animation-delay: 3s;
            color: var(--secondary);
        }
        
        .floating-3d-shape.shape-3 {
            left: 50%;
            animation-delay: 6s;
            color: var(--primary);
        }
        
        .floating-3d-shape.shape-4 {
            left: 70%;
            animation-delay: 9s;
            color: var(--secondary);
        }
        
        .floating-3d-shape.shape-5 {
            left: 90%;
            animation-delay: 12s;
            color: var(--primary);
        }
        
        @keyframes float3D {
            0% {
                transform: translateY(100vh) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(0.5);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) rotateX(360deg) rotateY(360deg) rotateZ(360deg) scale(1.2);
                opacity: 0;
            }
        }
        
        /* 鼠标跟随效果 */
        .browser-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 126, 5, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 1;
        }
        
        .browser-item:hover::after {
            opacity: 1;
        }
        
        /* 浏览器图标 */
         .chrome-icon {
             background-image: url('../images/chrome.svg');
         }
         
         .edge-icon {
             background-image: url('../images/edge.svg');
         }
         
         .firefox-icon {
             background-image: url('../images/firefox.svg');
         }
         
         .browser-360-icon {
             background-image: url('../images/360chrome.svg');
         }
         
         .browser-360se-icon {
             background-image: url('../images/360.svg');
         }
         
         .qq-icon {
             background-image: url('../images/qq.svg');
         }
         
         .sogou-icon {
             background-image: url('../images/sogou.svg');
         }
         
         .maxthon-icon {
             background-image: url('../images/maxthon.svg');
         }
         
         .opera-icon {
             background-image: url('../images/opera.svg');
         }
         
         .vivaldi-icon {
              background-image: url('../images/vivaldi.svg');
          }
          
          .yandex-icon {
              background-image: url('../images/yandex.svg');
          }
          
          .liebao-icon {
              background-image: url('../images/liebao.svg');
          }
          
          .twinkstar-icon {
              background-image: url('../images/twinkstar.svg');
          }
          
          .cent-icon {
              background-image: url('../images/cent.svg');
          }
          
          .waterfox-icon {
              background-image: url('../images/waterfox.svg');
          }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .browser-icon-list {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 15px;
            }
            
            .browser-item {
                padding: 15px 10px;
            }
            
            .browser-icon {
                width: 40px;
                height: 40px;
            }
            
            .supported-browsers .section-title h3 {
                 font-size: 1.8rem;
             }
         }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-container a {
            display: flex;
            align-items: center;
        }
        
        .logo {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .logo i {
            font-size: 28px;
            color: white;
        }
        
        .logo-text {
            font-size: 20px;
            font-weight: 700;
        }
        
        .logo-text span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-menu li a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .nav-menu li a:hover:after {
            width: 100%;
        }
        
        .nav-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Three.js Background */
        #threejs-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
             0% {
                 transform: translateY(100vh) rotate(0deg);
             }
             100% {
                 transform: translateY(-100px) rotate(360deg);
             }
         }
         
         /* Page Load Animations */
         .fade-in {
             opacity: 0;
             transform: translateY(30px);
             animation: fadeInUp 1s ease forwards;
         }
         
         .fade-in-delay-1 {
             animation-delay: 0.2s;
         }
         
         .fade-in-delay-2 {
             animation-delay: 0.4s;
         }
         
         .fade-in-delay-3 {
             animation-delay: 0.6s;
         }
         
         @keyframes fadeInUp {
             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }
         
         /* Glowing text effect */
         .glow-text {
             text-shadow: 0 0 10px rgba(255, 126, 5, 0.5),
                         0 0 20px rgba(255, 126, 5, 0.3),
                         0 0 30px rgba(255, 126, 5, 0.2);
             animation: glow 2s ease-in-out infinite alternate;
         }
         
         @keyframes glow {
             from {
                 text-shadow: 0 0 10px rgba(255, 126, 5, 0.5),
                             0 0 20px rgba(255, 126, 5, 0.3),
                             0 0 30px rgba(255, 126, 5, 0.2);
             }
             to {
                 text-shadow: 0 0 15px rgba(255, 126, 5, 0.8),
                             0 0 25px rgba(255, 126, 5, 0.5),
                             0 0 35px rgba(255, 126, 5, 0.3);
             }
         }
        
        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, rgba(255, 126, 5, 0.05) 0%, rgba(56, 138, 247, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 126, 5, 0.1);
        }
        
        .hero:after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(56, 138, 247, 0.1);
            z-index: -1;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .hero-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            position: relative;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .hero-image img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .hero h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: #555;
        }
        
        .hero-cta {
            display: flex;
            gap: 15px;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 126, 5, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .feature-card:hover::before {
            left: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 126, 5, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .feature-icon i {
            font-size: 36px;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
        }
        
        /* Extensions Section */
        .extensions {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(255, 126, 5, 0.03) 0%, rgba(56, 138, 247, 0.03) 100%);
        }
        
        .extensions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .extension-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .extension-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(56, 138, 247, 0.1), transparent);
            transition: left 0.6s;
        }
        
        .extension-card:hover::before {
            left: 100%;
        }
        
        .extension-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .extension-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: rgba(56, 138, 247, 0.1);
        }
        
        .extension-icon i {
            font-size: 30px;
            color: var(--secondary);
        }
        
        .extension-card span {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            margin-top: 10px;
        }
        
        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .cta:after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .cta h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .cta p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 2;
        }
        
        .cta .btn {
            background: white;
            color: var(--primary);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .cta .btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo i {
            font-size: 28px;
            margin-right: 15px;
            color: var(--primary);
        }
        
        .footer-logo span {
            font-size: 22px;
            font-weight: 700;
        }
        
        .footer-logo span.highlight {
            color: var(--primary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #aaa;
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #aaa;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-contact .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: var(--transition);
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h3 {
                font-size: 1.3rem;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .cta p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta {
                padding: 80px 0;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .cta p {
                font-size: 1.1rem;
            }
        }

        /* Cards Section */
        .cards-section {
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .cards-section:before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(255, 126, 5, 0.05);
            z-index: 0;
        }
        
        .cards-section:after {
            content: '';
            position: absolute;
            bottom: -300px;
            left: -200px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(56, 138, 247, 0.05);
            z-index: 0;
        }
        
        .cards-container {
            position: relative;
            z-index: 2;
        }
        
        .cards-description {
            text-align: center;
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cards-slider {
            position: relative;
            padding: 0 50px;
        }
        
        .cards-wrapper {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
            padding: 20px 0;
        }
        
        .card-item {
            min-width: 400px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            /* height: 200px; */
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card-item:hover .card-image img {
            transform: scale(1.05);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .card-content {
            padding: 25px;
        }
        
        .card-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .card-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .card-feature {
            background: rgba(56, 138, 247, 0.1);
            color: var(--secondary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .card-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .card-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 126, 5, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
        }
        
        .slider-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-btn.prev {
            left: 0;
        }
        
        .slider-btn.next {
            right: 0;
        }
        
        .cards-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .indicator.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .cards-wrapper {
                gap: 20px;
            }
            
            .card-item {
                min-width: 280px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cards-section {
                padding: 80px 0;
            }
            
            .cards-slider {
                padding: 0 40px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .cards-description {
                font-size: 1rem;
            }
            
            .cards-section {
                padding: 60px 0;
            }
            
            .cards-slider {
                padding: 0 30px;
            }
            
            .card-item {
                min-width: 260px;
            }
        }