        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
            color: #000;
            background: #fff;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 16px 0;
            background: rgba(255,255,255,0.72);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        
        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-cta {
            background: #000;
            color: #fff;
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: transform 0.2s;
            border: none;
            cursor: pointer;
        }
        
        .nav-cta:hover {
            transform: scale(1.05);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 140px 24px 80px;
            background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Animated Background Orbs */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }
        
        .orb1 {
            width: 600px;
            height: 600px;
            background: var(--gradient-1);
            top: -300px;
            right: -200px;
        }
        
        .orb2 {
            width: 400px;
            height: 400px;
            background: var(--gradient-2);
            bottom: -200px;
            left: -100px;
            animation-delay: -5s;
        }
        
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        /* Hero Text */
        .hero-text h1 {
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }
        
        .gradient-text {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-text p {
            font-size: 24px;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: #000;
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.2);
        }
        
        .btn-secondary {
            background: #f5f5f7;
            color: #000;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.2s;
        }
        
        .btn-secondary:hover {
            background: #e8e8ea;
        }
        
        /* 3D Phone Mockup */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .phone-container {
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }
        
        .phone-container:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }
        
        .phone {
            width: 280px;
            height: 570px;
            position: relative;
        }
        
        .phone-frame {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 36px;
            padding: 8px;
            box-shadow: 
                0 30px 60px rgba(0,0,0,0.3),
                inset 0 0 0 1px rgba(255,255,255,0.1);
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
        }
        
        .screen-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #f5f5f7;
        }
        
        /* Status bar */
        .status-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 16px;
            background: white;
            font-size: 12px;
            font-weight: 600;
        }
        
        .status-icons {
            display: flex;
            gap: 4px;
        }
        
        /* Mode switcher */
        .mode-switcher {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            background: white;
            border-bottom: 1px solid #e5e5e7;
            gap: 4px;
            font-size: 11px;
        }
        
        .mode-active {
            background: #e8f4ff;
            padding: 4px 12px;
            border-radius: 16px;
            font-weight: 600;
            color: #007AFF;
            font-size: 11px;
        }
        
        .mode-inactive {
            padding: 4px 12px;
            color: #86868b;
            font-size: 11px;
        }
        
        .settings-icon {
            margin-left: auto;
            font-size: 18px;
        }
        
        /* Balance card */
        .balance-card {
            background: white;
            margin: 12px;
            padding: 16px;
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        
        .balance-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .balance-label {
            color: #86868b;
            font-size: 12px;
        }
        
        .trend {
            color: #34d399;
            font-size: 11px;
            font-weight: 600;
        }
        
        .balance-amount {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        
        .balance-breakdown {
            display: flex;
            justify-content: space-around;
            padding-top: 12px;
            border-top: 1px solid #f5f5f7;
        }
        
        .breakdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        .breakdown-label {
            font-size: 10px;
            color: #86868b;
        }
        
        .breakdown-value {
            font-size: 14px;
            font-weight: 600;
        }
        
        .breakdown-value.income {
            color: #34d399;
        }
        
        .breakdown-value.expense {
            color: #ef4444;
        }
        
        .breakdown-value.savings {
            color: #3b82f6;
        }
        
        /* Budget section */
        .budget-section {
            background: white;
            margin: 12px;
            padding: 16px;
            border-radius: 16px;
            flex: 1;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .section-header h3 {
            font-size: 16px;
            font-weight: 700;
        }
        
        .view-all {
            font-size: 12px;
            color: #007AFF;
            text-decoration: none;
        }
        
        .budget-item {
            margin-bottom: 16px;
        }
        
        .budget-title {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
        }
        
        .budget-bar {
            height: 8px;
            background: #e5e5e7;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 4px;
        }
        
        .budget-fill {
            height: 100%;
            background: #34d399;
            border-radius: 4px;
        }
        
        .budget-fill.blue {
            background: #007AFF;
        }
        
        .budget-amount {
            font-size: 11px;
            color: #86868b;
            text-align: right;
        }
        
        /* Bottom nav */
        .bottom-nav {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 12px;
            background: white;
            border-top: 1px solid #e5e5e7;
            margin-top: auto;
        }
        
        .nav-icon {
            font-size: 20px;
            opacity: 0.4;
        }
        
        .nav-icon.active {
            opacity: 1;
            color: #007AFF;
            font-size: 28px;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: #000;
            color: #fff;
            padding: 32px 24px;
            margin-top: -1px;
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            text-align: center;
        }
        
        .stat-value {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 4px;
        }
        
        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Features Section */
        .features {
            padding: 120px 24px;
            background: #fff;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }
        
        .section-header h2 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        
        .section-header p {
            font-size: 21px;
            color: #666;
        }
        
        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }
        
        .feature-card {
            background: #f5f5f7;
            border-radius: 24px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }
        
        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            font-size: 17px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Why No Banks */
        .why-no-banks {
            padding: 120px 24px;
            background: #000;
            color: #fff;
        }
        
        .why-no-banks .section-header h2,
        .why-no-banks .section-header p {
            color: #fff;
        }
        
        .reasons-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
        }
        
        .reason {
            text-align: center;
        }
        
        .reason-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .reason h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff;
        }
        
        .reason p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255,255,255,0.8);
        }
        
        /* How It Works */
        .how-it-works {
            padding: 120px 24px;
            background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
        }
        
        .steps {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
        }
        
        .step {
            text-align: center;
            position: relative;
        }
        
        .step::after {
            content: '→';
            position: absolute;
            right: -48px;
            top: 60px;
            font-size: 32px;
            color: #ddd;
        }
        
        .step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            font-weight: 800;
            color: white;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }
        
        .step h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .step p {
            font-size: 17px;
            color: #666;
        }
        
        /* Pricing */
        .pricing {
            padding: 120px 24px;
            background: #000;
            color: #fff;
        }
        
        .pricing .section-header h2,
        .pricing .section-header p {
            color: #fff;
        }
        
        .pricing-cards {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        
        .price-card {
            background: #111;
            border: 2px solid #222;
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .price-card:hover {
            transform: translateY(-8px);
            border-color: #667eea;
        }
        
        .price-card.featured {
            background: var(--gradient-1);
            border-color: transparent;
            transform: scale(1.05);
        }
        
        .price-card.featured:hover {
            transform: scale(1.08) translateY(-8px);
        }
        
        .price-tier {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            opacity: 0.8;
        }
        
        .price {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        
        .price-period {
            font-size: 16px;
            opacity: 0.6;
            margin-bottom: 32px;
        }
        
        .price-cta {
            display: block;
            padding: 16px 32px;
            background: #fff;
            color: #000;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            border: 2px solid #000;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
        }
        
        .price-cta:hover {
            transform: scale(1.05);
        }
        
        .price-card.featured .price-cta {
            background: #000;
            color: #fff;
        }
        
        /* FAQ */
        .faq {
            padding: 120px 24px;
            background: #fff;
        }
        
        .faq-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
        }
        
        .faq-item h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #000;
        }
        
        .faq-item p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        /* Stats Section */
        .stats {
            padding: 80px 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            text-align: center;
        }
        
        .stat {
            color: white;
        }
        
        .stat-value {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: #000;
            color: #fff;
            padding: 60px 24px 24px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #fff;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .footer-section a:hover {
            color: #fff;
        }
        
        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        /* CTA Section */
        .cta {
            padding: 160px 24px;
            background: var(--gradient-1);
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 24px;
        }
        
        .cta p {
            font-size: 24px;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 20px 48px;
            background: #fff;
            color: #764ba2;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 48px rgba(0,0,0,0.3);
        }
        
        .cta-btn-secondary {
            display: inline-block;
            padding: 20px 48px;
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: all 0.3s;
            margin-left: 20px;
            cursor: pointer;
        }
        
        .cta-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }
        
        
        @keyframes scrollUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes checkmark {
            0% {
                transform: scale(0) rotate(-45deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.2) rotate(0deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }
        
        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            /* Navigation */
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                right: -100%;
                top: 0;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: start;
                align-items: start;
                padding: 80px 30px 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                z-index: 1000;
                display: flex !important;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links a {
                width: 100%;
                padding: 15px 0;
                font-size: 18px;
                border-bottom: 1px solid #eee;
            }
            
            .nav-cta {
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-visual {
                margin-top: 60px;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }
            
            .steps {
                grid-template-columns: 1fr;
            }
            
            .step::after {
                display: none;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .price-card.featured {
                transform: scale(1);
            }
        }
        
        /* Mobile Phones */
        @media (max-width: 640px) {
            /* Navigation */
            .nav-content {
                padding: 0 16px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            /* Hero */
            .hero {
                padding: 100px 16px 60px;
                min-height: auto;
            }
            .hero-text h1 {
                font-size: 36px;
                margin-bottom: 16px;
            }
            
            .hero-text p {
                font-size: 18px;
                margin-bottom: 30px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 14px 28px;
                font-size: 16px;
            }
            
            .phone {
                transform: scale(0.75);
                margin: 20px 0;
            }
            
            /* Stats Bar */
            .stats-bar {
                padding: 24px 16px;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            
            .stat-value {
                font-size: 28px;
            }
            
            .stat-label {
                font-size: 12px;
            }
            
            /* Features */
            .features {
                padding: 60px 16px;
            }
            
            .section-header h2 {
                font-size: 36px;
            }
            
            .section-header p {
                font-size: 18px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            /* Why No Banks */
            .why-no-banks {
                padding: 60px 16px;
            }
            
            .reasons-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            /* How It Works */
            .how-it-works {
                padding: 60px 16px;
            }
            
            .step-number {
                width: 80px;
                height: 80px;
                font-size: 36px;
            }
            
            .step h3 {
                font-size: 24px;
            }
            
            .step p {
                font-size: 15px;
            }
            
            /* Pricing */
            .pricing {
                padding: 60px 16px;
            }
            
            .price {
                font-size: 40px;
            }
            
            /* FAQ */
            .faq {
                padding: 60px 16px;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            /* CTA */
            .cta {
                padding: 80px 16px;
            }
            
            .cta h2 {
                font-size: 36px;
            }
            
            .cta p {
                font-size: 18px;
            }
            
            .cta-btn, .cta-btn-secondary {
                display: block;
                width: 100%;
                margin: 10px 0;
                padding: 16px 32px;
                font-size: 16px;
            }
            
            /* Footer */
            .footer {
                padding: 40px 16px 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        /* Extra Small Devices */
        @media (max-width: 375px) {
            .hero-text h1 {
                font-size: 32px;
            }
            
            .phone {
                transform: scale(0.65);
            }
        }
        
        /* Touch-friendly adjustments */
        @media (hover: none) and (pointer: coarse) {
            .nav-links a {
                padding: 12px 0;
            }
            
            .btn-primary:active,
            .btn-secondary:active,
            .nav-cta:active,
            .cta-btn:active,
            .price-cta:active {
                transform: scale(0.98);
            }
            
            .feature-card:active {
                transform: translateY(-4px);
            }
        }
        
        /* Landscape Mode */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                padding: 80px 30px 40px;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
            
            .phone {
                transform: scale(0.6);
            }
            
            .stats-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Safe Area Support for modern phones */
        @supports (padding: max(0px)) {
            .nav-content {
                padding-left: max(24px, env(safe-area-inset-left));
                padding-right: max(24px, env(safe-area-inset-right));
            }
            
            .hero {
                padding-left: max(24px, env(safe-area-inset-left));
                padding-right: max(24px, env(safe-area-inset-right));
            }
            
            .footer {
                padding-bottom: max(24px, env(safe-area-inset-bottom));
            }
        }
