        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: linear-gradient(135deg, #fafbfc 0%, #f3f6ff 100%);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 0 50px rgba(102, 126, 234, 0.8); }
        }

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

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

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes rotateIcon {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes highlightBounce {
            0%, 100% { 
                background: #FFCB2E;
                text-shadow: 0 0 10px rgba(255, 203, 46, 0.6);
                transform: scale(1);
            }
            50% { 
                background: #FFCB2E;
                text-shadow: 0 0 20px rgba(255, 203, 46, 0.8), 0 0 30px rgba(255, 203, 46, 0.6);
                transform: scale(1.05);
            }
        }

        .free-website-highlight {
            background: #FFCB2E;
            color: #000000;
            padding: 6px 14px;
            border-radius: 8px;
            display: inline-block;
            text-shadow: 0 0 10px rgba(255, 203, 46, 0.6);
            animation: highlightBounce 2.5s ease-in-out infinite;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 203, 46, 0.3);
        }

        /* Navigation */
        nav {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 20px;
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.35);
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideDown 0.6s ease-out;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav h1 {
            font-size: 24px;
            font-weight: 700;
            flex: 1;
            text-align: center;
            animation: pulse 3s infinite;
            letter-spacing: 0.5px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
            animation: slideDown 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite reverse;
        }

        .hero h2 {
            font-size: 52px;
            margin-bottom: 20px;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.2);
            line-height: 1.2;
            position: relative;
            z-index: 2;
            animation: slideUp 0.8s ease-out;
            letter-spacing: 0.5px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 1;
            color: #ffffff;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            position: relative;
            z-index: 2;
            animation: slideUp 0.9s ease-out 0.1s both;
            font-weight: 500;
        }

        .discount-highlight {
            background: #FFCB2E;
            color: #000000;
            padding: 4px 12px;
            border-radius: 6px;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(255, 203, 46, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        .button-group {
            position: relative;
            z-index: 2;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: #FF5722;
            color: white;
            padding: 16px 45px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(255, 87, 34, 0.45);
            margin: 10px 8px;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.3s ease;
        }

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

        .cta-button:hover {
            background: #E64A19;
            transform: translateY(-5px);
            box-shadow: 0 14px 35px rgba(255, 87, 34, 0.6);
        }

        .cta-button.animated-btn {
            animation: pulse 2s ease-in-out infinite;
        }

        .secondary-button {
            background: white;
            color: #667eea;
            border: 2px solid white;
        }

        .secondary-button:hover {
            background: transparent;
            border-color: white;
        }

        /* Container */
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Styling */
        section {
            padding: 80px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

        section h2 {
            font-size: 42px;
            margin-bottom: 30px;
            color: #2d2d2d;
            text-align: center;
            position: relative;
            padding-bottom: 25px;
            animation: slideUp 0.7s ease-out;
        }

        section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 3px;
            animation: slideUp 0.8s ease-out 0.2s forwards;
        }

        section h3 {
            font-size: 26px;
            color: #667eea;
            text-align: center;
            margin-bottom: 35px;
            font-weight: 700;
        }

        /* Trust Section */
        .trust-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 20px;
        }

        .trust-section h2 {
            font-size: 42px;
            color: #1a006f;
            margin-bottom: 30px;
        }

        .trust-section a[class*="cta-button"] {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-weight: 700;
            border: none;
        }

        .trust-section a[class*="cta-button"]:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
        }

        .trust-section a[class*="cta-button"]:active {
            transform: translateY(-2px);
        }

        .trust-section p {
            font-size: 18px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            color: #444;
            animation: slideUp 0.7s ease-out;
        }

        .trust-highlight {
            background: linear-gradient(135deg, #fff3cd 0%, #ffe66d 100%);
            border-left: 5px solid #ffc107;
            padding: 30px;
            border-radius: 12px;
            margin: 30px auto;
            font-weight: 500;
            max-width: 800px;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
            animation: slideUp 0.8s ease-out 0.2s both;
            border: 2px solid #ffc107;
        }

        /* Benefits Section */
        .benefits {
            background: white;
        }

        .benefits h2 {
            color: #1a006f !important;
        }

        /* Testimonials Section Special Styling */
        section.benefits:has(.testimonials-grid) {
            background: white;
            animation: slideDown 0.8s ease-out;
        }

        section.benefits:has(.testimonials-grid) h2 {
            color: #000000;
            animation: slideUp 0.7s ease-out;
        }

        section.benefits:has(.testimonials-grid) p,
        section.benefits:has(.testimonials-grid) .testimonial-text,
        section.benefits:has(.testimonials-grid) .testimonial-author {
            color: #ffffff;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid #667eea;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
            transform: translateY(-15px);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(1);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .benefit-card:hover::before {
            transform: scaleX(0);
        }

        .benefit-card:nth-child(1) { 
            animation-delay: 0.1s;
            border-color: #667eea;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
        }
        
        .benefit-card:nth-child(1):hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
        }
        
        .benefit-card:nth-child(1):hover h3,
        .benefit-card:nth-child(1):hover p {
            color: #ffffff;
        }

        .benefit-card:nth-child(2) { 
            animation-delay: 0.2s;
            border-color: #FF9800;
            box-shadow: 0 20px 50px rgba(255, 152, 0, 0.25);
        }
        
        .benefit-card:nth-child(2):hover {
            background: linear-gradient(135deg, #FF9800 0%, #FFCB2E 100%);
            border-color: #FF9800;
        }
        
        .benefit-card:nth-child(2):hover h3,
        .benefit-card:nth-child(2):hover p {
            color: #ffffff;
        }

        .benefit-card:nth-child(3) { 
            animation-delay: 0.3s;
            border-color: #00BCD4;
            box-shadow: 0 20px 50px rgba(0, 188, 212, 0.25);
        }
        
        .benefit-card:nth-child(3):hover {
            background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
            border-color: #00BCD4;
        }
        
        .benefit-card:nth-child(3):hover h3,
        .benefit-card:nth-child(3):hover p {
            color: #ffffff;
        }

        .benefit-card:nth-child(4) { 
            animation-delay: 0.4s;
            border-color: #25c481;
            box-shadow: 0 20px 50px rgba(37, 196, 129, 0.25);
        }
        
        .benefit-card:nth-child(4):hover {
            background: linear-gradient(135deg, #25c481 0%, #1a9e62 100%);
            border-color: #25c481;
        }
        
        .benefit-card:nth-child(4):hover h3,
        .benefit-card:nth-child(4):hover p {
            color: #ffffff;
        }

        .benefit-card:nth-child(5) { 
            animation-delay: 0.5s;
            border-color: #ff6b6b;
            box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
        }
        
        .benefit-card:nth-child(5):hover {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a3f 100%);
            border-color: #ff6b6b;
        }
        
        .benefit-card:nth-child(5):hover h3,
        .benefit-card:nth-child(5):hover p {
            color: #ffffff;
        }

        .benefit-card:nth-child(6) { 
            animation-delay: 0.6s;
            border-color: #c44569;
            box-shadow: 0 20px 50px rgba(196, 69, 105, 0.25);
        }
        
        .benefit-card:nth-child(6):hover {
            background: linear-gradient(135deg, #c44569 0%, #5f0a87 100%);
            border-color: #c44569;
        }
        
        .benefit-card:nth-child(6):hover h3,
        .benefit-card:nth-child(6):hover p {
            color: #ffffff;
        }

        .benefit-card:hover {
            transform: translateY(0);
        }

        .benefit-card h3 {
            font-size: 24px;
            color: #667eea;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .benefit-card p {
            font-size: 16px;
            color: #555;
            transition: color 0.3s ease;
            line-height: 1.6;
        }

        .benefit-icon {
            font-size: 56px;
            margin-bottom: 20px;
            display: inline-block;
            padding: 15px 20px;
            background: white;
            border-radius: 14px;
            transform: scale(1.25) rotateZ(10deg);
            transition: all 0.4s ease;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4));
        }

        .benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) .benefit-icon { animation-delay: 0.4s; }
        .benefit-card:nth-child(4) .benefit-icon { animation-delay: 0.1s; }
        .benefit-card:nth-child(5) .benefit-icon { animation-delay: 0.3s; }
        .benefit-card:nth-child(6) .benefit-icon { animation-delay: 0.5s; }

        .benefit-card:hover .benefit-icon {
            transform: scale(1);
            background: linear-gradient(135deg, #667eea, #764ba2);
            filter: none;
        }

        /* Showcase Section */
        .showcase-section {
            background: white;
            padding: 80px 20px;
        }

        .showcase-section h2 {
            font-size: 42px;
            color: #1a006f;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .showcase-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
            transform: translateY(-20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .showcase-card:nth-child(1) { animation-delay: 0.1s; }
        .showcase-card:nth-child(2) { animation-delay: 0.2s; }
        .showcase-card:nth-child(3) { animation-delay: 0.3s; }
        .showcase-card:nth-child(4) { animation-delay: 0.4s; }
        .showcase-card:nth-child(5) { animation-delay: 0.5s; }
        .showcase-card:nth-child(6) { animation-delay: 0.6s; }

        .showcase-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: #667eea;
        }

        .showcase-preview {
            position: relative;
            overflow: hidden;
            background: #f5f5f5;
        }

        .showcase-info {
            padding: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .showcase-card:nth-child(1) .showcase-info {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .showcase-card:nth-child(2) .showcase-info {
            background: linear-gradient(135deg, #FF9800 0%, #FFCB2E 100%);
        }

        .showcase-card:nth-child(3) .showcase-info {
            background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
        }

        .showcase-card:nth-child(4) .showcase-info {
            background: linear-gradient(135deg, #25c481 0%, #1a9e62 100%);
        }

        .showcase-card:nth-child(5) .showcase-info {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a3f 100%);
        }

        .showcase-card:nth-child(6) .showcase-info {
            background: linear-gradient(135deg, #c44569 0%, #5f0a87 100%);
        }

        .showcase-info span {
            background: rgba(255, 255, 255, 0.25) !important;
            color: #ffffff !important;
            border: 1px solid rgba(255, 255, 255, 0.4);
            font-weight: 600;
        }

        .showcase-info h4 {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 12px 0;
        }

        .showcase-info p {
            font-size: 14px;
            color: #ffffff;
            line-height: 1.6;
            margin: 0;
        }

        /* How It Works Section */
        .how-it-works {
            background: linear-gradient(135deg, #f5f7ff 0%, #fafbfc 100%);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 50px;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2, transparent);
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
            animation: slideUp 0.7s ease-out forwards;
            opacity: 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 40px 30px;
            border-radius: 16px;
            border: 2px solid #667eea;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .step-card:nth-child(1) { 
            animation-delay: 0.1s;
            border-color: #667eea;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
        }

        .step-card:nth-child(1):hover {
            border-color: #667eea;
            box-shadow: 0 18px 50px rgba(102, 126, 234, 0.4);
        }

        .step-card:nth-child(1) .step-number {
            background: linear-gradient(135deg, #667eea, #764ba2);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
        }

        .step-card:nth-child(2) { 
            animation-delay: 0.3s;
            border-color: #FF9800;
            box-shadow: 0 12px 35px rgba(255, 152, 0, 0.25);
        }

        .step-card:nth-child(2):hover {
            border-color: #FF9800;
            box-shadow: 0 18px 50px rgba(255, 152, 0, 0.4);
        }

        .step-card:nth-child(2) .step-number {
            background: linear-gradient(135deg, #FF9800, #FFCB2E);
            box-shadow: 0 20px 50px rgba(255, 152, 0, 0.5);
        }

        .step-card:nth-child(3) { 
            animation-delay: 0.5s;
            border-color: #00BCD4;
            box-shadow: 0 12px 35px rgba(0, 188, 212, 0.25);
        }

        .step-card:nth-child(3):hover {
            border-color: #00BCD4;
            box-shadow: 0 18px 50px rgba(0, 188, 212, 0.4);
        }

        .step-card:nth-child(3) .step-number {
            background: linear-gradient(135deg, #00BCD4, #009688);
            box-shadow: 0 20px 50px rgba(0, 188, 212, 0.5);
        }

        .step-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #f5f7ff 0%, #fafbfc 100%);
        }

        .step-number {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            font-weight: bold;
            margin: 0 auto 30px;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
            transform: scale(1.15);
        }

        .step-card:nth-child(2) .step-number { animation-delay: 0.2s; }
        .step-card:nth-child(3) .step-number { animation-delay: 0.4s; }

        .step-card:nth-child(1):hover .step-number {
            transform: scale(1);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
        }

        .step-card:nth-child(2):hover .step-number {
            transform: scale(1);
            box-shadow: 0 12px 30px rgba(255, 152, 0, 0.6);
        }

        .step-card:nth-child(3):hover .step-number {
            transform: scale(1);
            box-shadow: 0 12px 30px rgba(0, 188, 212, 0.6);
        }

        .step-card h3 {
            color: #667eea;
            font-size: 26px;
            margin-bottom: 20px;
            font-weight: 800;
            transition: color 0.3s ease;
        }

        .step-card:nth-child(1) h3 {
            color: #667eea;
        }

        .step-card:nth-child(1):hover h3 {
            color: #667eea;
        }

        .step-card:nth-child(2) h3 {
            color: #FF9800;
        }

        .step-card:nth-child(2):hover h3 {
            color: #FF9800;
        }

        .step-card:nth-child(3) h3 {
            color: #00BCD4;
        }

        .step-card:nth-child(3):hover h3 {
            color: #00BCD4;
        }

        .step-card p {
            color: #444;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .feature-box {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 40px;
            border-radius: 16px;
            border: 2px solid #667eea;
            text-align: center;
            transition: all 0.4s ease;
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
            position: relative;
            transform: translateY(-12px);
            box-shadow: 0 18px 45px rgba(102, 126, 234, 0.25);
        }

        .feature-box:nth-child(1) { animation-delay: 0.1s; }
        .feature-box:nth-child(2) { animation-delay: 0.2s; }
        .feature-box:nth-child(3) { animation-delay: 0.3s; }
        .feature-box:nth-child(4) { animation-delay: 0.4s; }
        .feature-box:nth-child(5) { animation-delay: 0.5s; }
        .feature-box:nth-child(6) { animation-delay: 0.6s; }

        .feature-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            border-radius: 16px;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .feature-box:hover::after {
            opacity: 0;
        }

        .feature-box:hover {
            transform: translateY(0);
            border-color: #e8e8e8;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.08);
        }

        .feature-box h4 {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .feature-box:hover h4 {
            color: #ffffff;
        }

        .feature-box p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }

        /* What You Get Section Special Styling */
        section.benefits:has(.features-grid) {
            background: linear-gradient(135deg, #f0f4ff 0%, #fef5ff 100%);
            padding: 80px 20px;
        }

        section.benefits:has(.features-grid) h2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff !important;
            padding: 30px 40px;
            border-radius: 16px;
            text-shadow: none;
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
            font-size: 42px;
            margin-bottom: 50px !important;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        section.benefits:has(.features-grid) h2::before {
            content: '🎁 ';
            margin-right: 10px;
        }

        section.benefits:has(.features-grid) .feature-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: 2px solid #667eea;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
            padding: 40px 30px;
            border-radius: 14px;
            text-align: center;
            transition: all 0.4s ease;
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
            position: relative;
            transform: translateY(-12px);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(1) { 
            animation-delay: 0.1s;
            border-color: #667eea;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(1):hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(2) { 
            animation-delay: 0.2s;
            border-color: #FF9800;
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(2):hover {
            background: linear-gradient(135deg, #FF9800 0%, #FFCB2E 100%);
            border-color: #FF9800;
            box-shadow: 0 15px 40px rgba(255, 152, 0, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(3) { 
            animation-delay: 0.3s;
            border-color: #00BCD4;
            box-shadow: 0 8px 25px rgba(0, 188, 212, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(3):hover {
            background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
            border-color: #00BCD4;
            box-shadow: 0 15px 40px rgba(0, 188, 212, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(4) { 
            animation-delay: 0.4s;
            border-color: #25c481;
            box-shadow: 0 8px 25px rgba(37, 196, 129, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(4):hover {
            background: linear-gradient(135deg, #25c481 0%, #1a9e62 100%);
            border-color: #25c481;
            box-shadow: 0 15px 40px rgba(37, 196, 129, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(5) { 
            animation-delay: 0.5s;
            border-color: #ff6b6b;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(5):hover {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a3f 100%);
            border-color: #ff6b6b;
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:nth-child(6) { 
            animation-delay: 0.6s;
            border-color: #c44569;
            box-shadow: 0 8px 25px rgba(196, 69, 105, 0.25);
        }
        
        section.benefits:has(.features-grid) .feature-box:nth-child(6):hover {
            background: linear-gradient(135deg, #c44569 0%, #5f0a87 100%);
            border-color: #c44569;
            box-shadow: 0 15px 40px rgba(196, 69, 105, 0.35);
        }

        section.benefits:has(.features-grid) .feature-box:hover {
            transform: translateY(0);
        }

        section.benefits:has(.features-grid) .feature-box:hover h4,
        section.benefits:has(.features-grid) .feature-box:hover p {
            color: #ffffff;
        }

        section.benefits:has(.features-grid) .feature-box h4 {
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        section.benefits:has(.features-grid) .feature-box p {
            color: #ffffff;
            font-size: 15px;
            line-height: 1.7;
        }

        /* Remove individual color hover states */

        /* How It Works Section Special Styling */
        .how-it-works h2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 40px;
            border-radius: 16px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
            font-size: 42px;
            margin-bottom: 50px !important;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        .how-it-works h2::before {
            content: '⚙️ ';
            margin-right: 10px;
        }

        .how-it-works h2::after {
            display: none;
        }

        .how-it-works h2:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 50px rgba(102, 126, 234, 0.5);
        }

        /* FAQ Section Special Styling */
        .faq-section h2 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 40px;
            border-radius: 16px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
            font-size: 42px;
            margin-bottom: 40px !important;
            position: relative;
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        .faq-section h2::before {
            content: '❓ ';
            margin-right: 10px;
        }

        .faq-section h2::after {
            display: none;
        }

        .faq-section h2:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 50px rgba(102, 126, 234, 0.5);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 14px;
            overflow: hidden;
            border: 2px solid #667eea;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            animation: slideUp 0.6s ease-out forwards;
            opacity: 0;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
            transform: translateY(-5px);
        }

        .faq-item:nth-child(1) { 
            animation-delay: 0.05s;
            border-color: #667eea;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
        }

        .faq-item:nth-child(2) { 
            animation-delay: 0.1s;
            border-color: #FF9800;
            box-shadow: 0 12px 35px rgba(255, 152, 0, 0.2);
        }

        .faq-item:nth-child(3) { 
            animation-delay: 0.15s;
            border-color: #00BCD4;
            box-shadow: 0 12px 35px rgba(0, 188, 212, 0.2);
        }

        .faq-item:nth-child(4) { 
            animation-delay: 0.2s;
            border-color: #25c481;
            box-shadow: 0 12px 35px rgba(37, 196, 129, 0.2);
        }

        .faq-item:nth-child(5) { 
            animation-delay: 0.25s;
            border-color: #ff6b6b;
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.2);
        }

        .faq-item:nth-child(6) { 
            animation-delay: 0.3s;
            border-color: #c44569;
            box-shadow: 0 12px 35px rgba(196, 69, 105, 0.2);
        }

        .faq-item:nth-child(7) { 
            animation-delay: 0.35s;
            border-color: #9C27B0;
            box-shadow: 0 12px 35px rgba(156, 39, 176, 0.2);
        }

        .faq-item:nth-child(8) { 
            animation-delay: 0.4s;
            border-color: #3F51B5;
            box-shadow: 0 12px 35px rgba(63, 81, 181, 0.2);
        }

        .faq-item:nth-child(9) { 
            animation-delay: 0.45s;
            border-color: #E91E63;
            box-shadow: 0 12px 35px rgba(233, 30, 99, 0.2);
        }

        .faq-item:hover {
            border-color: #e8e8e8;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transform: translateY(0);
        }

        .faq-item.active {
            border-color: #667eea;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: #667eea;
            font-size: 17px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            border-left: 5px solid #FFCB2E;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
            position: relative;
            letter-spacing: 0.3px;
        }

        .faq-question::before {
            content: '🎯 ';
            margin-right: 8px;
            font-size: 18px;
        }

        .faq-item:nth-child(1) .faq-question {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-left-color: #667eea;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .faq-item:nth-child(2) .faq-question {
            background: linear-gradient(135deg, #FF9800 0%, #FFCB2E 100%);
            border-left-color: #FF9800;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
        }

        .faq-item:nth-child(3) .faq-question {
            background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
            border-left-color: #00BCD4;
            box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
        }

        .faq-item:nth-child(4) .faq-question {
            background: linear-gradient(135deg, #25c481 0%, #1a9e62 100%);
            border-left-color: #25c481;
            box-shadow: 0 4px 15px rgba(37, 196, 129, 0.3);
        }

        .faq-item:nth-child(5) .faq-question {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a3f 100%);
            border-left-color: #ff6b6b;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .faq-item:nth-child(6) .faq-question {
            background: linear-gradient(135deg, #c44569 0%, #5f0a87 100%);
            border-left-color: #c44569;
            box-shadow: 0 4px 15px rgba(196, 69, 105, 0.3);
        }

        .faq-item:nth-child(7) .faq-question {
            background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
            border-left-color: #9C27B0;
            box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
        }

        .faq-item:nth-child(8) .faq-question {
            background: linear-gradient(135deg, #3F51B5 0%, #283593 100%);
            border-left-color: #3F51B5;
            box-shadow: 0 4px 15px rgba(63, 81, 181, 0.3);
        }

        .faq-item:nth-child(9) .faq-question {
            background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
            border-left-color: #E91E63;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            color: #ffffff;
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            border-left-color: #ff9800;
        }

        .faq-answer {
            padding: 0 25px 22px;
            color: #555;
            font-size: 15px;
            line-height: 1.9;
            display: none;
            animation: slideUp 0.4s ease-out;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f9f9f9;
            border-left: 3px solid #667eea;
            margin-left: 0;
            padding-left: 22px;
        }

        .faq-item.active .faq-answer {
            display: block;
            max-height: 500px;
            padding: 22px 25px;
            background: linear-gradient(135deg, #f5f7ff 0%, #fafbfc 100%);
        }

        .faq-toggle {
            font-size: 24px;
            transition: transform 0.4s ease, color 0.3s ease;
            color: #FFCB2E;
            font-weight: bold;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            color: #ff9800;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 35px;
            border-radius: 16px;
            border-left: 5px solid #ffffff;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
            transition: all 0.4s ease;
            animation: slideUp 0.6s ease-out forwards, glow 3s ease-in-out infinite;
            opacity: 0;
            position: relative;
        }

        .testimonial-card:nth-child(1) { 
            animation-delay: 0.1s;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
        }
        
        .testimonial-card:nth-child(1):hover {
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6);
        }

        .testimonial-card:nth-child(2) { 
            animation-delay: 0.2s;
            background: linear-gradient(135deg, #FF9800 0%, #FFCB2E 100%);
            box-shadow: 0 20px 50px rgba(255, 152, 0, 0.4);
        }
        
        .testimonial-card:nth-child(2):hover {
            box-shadow: 0 25px 60px rgba(255, 152, 0, 0.6);
        }

        .testimonial-card:nth-child(3) { 
            animation-delay: 0.3s;
            background: linear-gradient(135deg, #00BCD4 0%, #009688 100%);
            box-shadow: 0 20px 50px rgba(0, 188, 212, 0.4);
        }
        
        .testimonial-card:nth-child(3):hover {
            box-shadow: 0 25px 60px rgba(0, 188, 212, 0.6);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-left-color: #ffffff;
        }

        .testimonial-text {
            color: #ffffff;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.8;
            font-style: italic;
        }

        .testimonial-author {
            color: #ffffff;
            font-weight: 700;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .testimonial-card:hover .testimonial-author {
            color: #ffffff;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 50px 20px;
            box-shadow: 0 -8px 25px rgba(102, 126, 234, 0.2);
            animation: slideUp 0.7s ease-out;
        }

        footer p {
            font-size: 14px;
            opacity: 0.95;
        }

        footer a {
            color: #FFCB2E;
            text-decoration: none;
            font-weight: 600;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-links {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-divider {
            color: #FFCB2E;
            margin: 0 5px;
        }

        /* Modal/Popup Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 40px;
            border: 2px solid #667eea;
            border-radius: 16px;
            width: 90%;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideDown 0.3s ease;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
        }

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

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #667eea;
            padding-bottom: 15px;
        }

        .modal-header h2 {
            color: #1a006f;
            font-size: 28px;
            margin: 0;
        }

        .close-btn {
            color: #667eea;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #764ba2;
        }

        .modal-body {
            color: #333;
            line-height: 1.8;
            font-size: 15px;
        }

        .modal-body h3 {
            color: #667eea;
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .modal-body p {
            margin-bottom: 12px;
        }

        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 12px;
        }

        .modal-body li {
            margin-bottom: 8px;
        }

        /* Mobile Responsive */
        .lang-switcher {
            display: flex;
            gap: 15px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .lang-btn {
            font-size: 14px;
            padding: 8px 15px;
            background: #667eea;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .lang-btn:hover {
            background: #FF9800;
            transform: scale(1.05);
        }

        .lang-btn:nth-child(2) {
            background: #FF9800;
        }

        .lang-btn:nth-child(2):hover {
            background: #667eea;
        }

        /* ===== MOBILE RESPONSIVE DESIGN ===== */

        /* Extra Small Devices (320px to 480px) */
        @media (max-width: 480px) {
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-size: 14px;
                line-height: 1.4;
            }

            /* Navigation */
            nav {
                padding: 12px 10px;
                flex-direction: column;
                gap: 10px;
                align-items: stretch;
            }

            nav h1 {
                font-size: 16px;
                margin: 0 0 8px 0;
                text-align: center;
            }

            nav div {
                display: flex !important;
                gap: 8px !important;
                justify-content: center !important;
                flex-wrap: wrap;
                position: relative !important;
                right: 0 !important;
                top: 0 !important;
            }

            nav a {
                font-size: 12px !important;
                padding: 6px 12px !important;
                border-radius: 4px !important;
            }

            /* Hero Section */
            .hero {
                padding: 60px 15px;
            }

            .hero h2 {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .button-group {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .cta-button {
                display: block;
                width: 100%;
                padding: 12px 20px !important;
                font-size: 14px !important;
                margin: 5px 0 !important;
                text-align: center;
            }

            /* Sections */
            section {
                padding: 40px 15px !important;
            }

            section h2 {
                font-size: 22px !important;
                margin-bottom: 25px;
            }

            section p {
                font-size: 14px;
            }

            /* Container */
            .container {
                padding: 0 10px;
                max-width: 100%;
            }

            /* Grid Layouts */
            .benefits-grid,
            .showcase-grid,
            .steps-container,
            .features-grid,
            .testimonials-grid,
            .faq-container {
                grid-template-columns: 1fr !important;
                gap: 15px;
            }

            /* Benefit Cards */
            .benefit-card,
            .showcase-card,
            .step-card,
            .feature-box,
            .testimonial-card,
            .faq-item {
                padding: 15px;
            }

            .benefit-icon {
                font-size: 32px;
            }

            /* Showcase Cards */
            .showcase-preview {
                min-height: 150px !important;
            }

            .showcase-preview div {
                height: 150px !important;
            }

            .showcase-preview h3 {
                font-size: 20px !important;
            }

            /* Step Card */
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .step-card h3 {
                font-size: 18px;
            }

            /* FAQ */
            .faq-question {
                font-size: 14px;
                padding: 12px;
            }

            .faq-answer {
                font-size: 13px;
                padding: 12px;
            }

            /* Modals */
            .modal-content {
                width: 95vw !important;
                margin: auto;
                border-radius: 12px;
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-body {
                padding: 15px !important;
            }

            .modal-body h3 {
                font-size: 16px;
            }

            .modal-body p,
            .modal-body ul {
                font-size: 13px;
            }

            /* Footer */
            footer {
                padding: 20px 15px;
            }

            footer p {
                font-size: 12px;
            }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            .footer-links a,
            .footer-divider {
                font-size: 12px;
            }
        }

        /* Small Devices (481px to 768px) */
        @media (max-width: 768px) and (min-width: 481px) {
            nav {
                padding: 15px 15px;
            }

            nav h1 {
                font-size: 20px;
            }

            nav div {
                display: flex !important;
                gap: 10px !important;
                position: relative !important;
                right: 0 !important;
                top: 0 !important;
            }

            nav a {
                font-size: 13px !important;
                padding: 7px 14px !important;
            }

            .hero {
                padding: 80px 20px;
            }

            .hero h2 {
                font-size: 36px;
                margin-bottom: 20px;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .button-group {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .cta-button {
                display: block;
                width: 100%;
                padding: 14px 30px !important;
                font-size: 15px !important;
                margin: 6px 0 !important;
            }

            section {
                padding: 50px 20px !important;
            }

            section h2 {
                font-size: 28px !important;
            }

            .benefits-grid,
            .showcase-grid,
            .steps-container,
            .features-grid,
            .testimonials-grid,
            .faq-container {
                grid-template-columns: 1fr !important;
                gap: 20px;
            }

            .showcase-preview {
                min-height: 180px !important;
            }

            .showcase-preview div {
                height: 180px !important;
            }

            .modal-content {
                width: 90vw !important;
            }

            footer {
                padding: 25px 20px;
            }
        }

        /* Medium to Large Devices (769px and above) */
        @media (min-width: 769px) {
            nav div {
                display: flex !important;
                gap: 15px !important;
                position: absolute !important;
                right: 20px !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
            }

            nav a {
                font-size: 14px !important;
                padding: 8px 16px !important;
            }

            .button-group {
                display: flex;
                flex-direction: row;
                gap: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }

            .cta-button {
                padding: 16px 45px;
                font-size: 18px;
                margin: 10px 8px;
            }

            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .showcase-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .steps-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Tablet Landscape (769px to 1024px) */
        @media (min-width: 769px) and (max-width: 1024px) {
            .benefits-grid,
            .showcase-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            section h2 {
                font-size: 32px;
            }

            .hero h2 {
                font-size: 44px;
            }
        }

        /* Responsive Text */
        @media (max-width: 768px) {
            .hero h2 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            section h2 {
                font-size: 28px;
            }

            nav h1 {
                font-size: 18px;
            }

            .cta-button {
                padding: 14px 35px;
                font-size: 16px;
            }
        }

        /* Touch-friendly buttons */
        @media (hover: none) and (pointer: coarse) {
            .cta-button,
            .faq-question,
            .footer-links a,
            nav a {
                min-height: 44px;
                min-width: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Prevent horizontal scroll */
        @media (max-width: 480px) {
            html, body {
                width: 100%;
                overflow-x: hidden;
            }

            .hero::before,
            .hero::after {
                display: none;
            }

            .steps-container::before {
                display: none;
            }

            .showcase-grid,
            .benefits-grid {
                gap: 10px;
            }
        }
