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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            overflow-x: hidden;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(2deg); }
            66% { transform: translateY(-10px) rotate(-2deg); }
        }
        
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.8; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }
        
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        .animate-slide-up { animation: slideInUp 0.8s ease-out forwards; }
        .animate-slide-left { animation: slideInLeft 0.8s ease-out forwards; }
        .animate-slide-right { animation: slideInRight 0.8s ease-out forwards; }
        .animate-fade-scale { animation: fadeInScale 0.8s ease-out forwards; }
        .animate-pulse { animation: pulse 2s infinite; }
        
        .shimmer {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }
        
        .hover-lift {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        /* Background Elements */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
        }

        .bg-element:nth-child(1) {
            top: 10%;
            left: 5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(99, 99, 156, 0.08) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .bg-element:nth-child(2) {
            top: 50%;
            right: 5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(46, 46, 77, 0.06) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite 2s;
        }

        .bg-element:nth-child(3) {
            bottom: 20%;
            left: 30%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(99, 99, 156, 0.05) 0%, transparent 70%);
            animation: float 12s ease-in-out infinite 4s;
        }

        /* Material Icons */
        .material-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            vertical-align: middle;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(99, 99, 156, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(99, 99, 156, 0.3);
            position: relative;
            overflow: hidden;
            color: #ffffff;
            font-weight: bold;
            font-size: 20px;
        }

        .logo-text {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(135deg, #2e2e4d 0%, #63639c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-subtitle {
            font-size: 12px;
            color: #63639c;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link {
            color: #2e2e4d;
            background: none;
            border: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
            text-decoration: none;
        }

        .nav-link:hover {
            color: #63639c;
            transform: translateY(-2px);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(99, 99, 156, 0.3);
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .btn-secondary {
            border: 2px solid #63639c;
            color: #63639c;
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 18px;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-width: 200px;
            text-decoration: none;
        }

        .btn-large {
            padding: 18px 36px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 18px;
            min-width: 200px;
            justify-content: center;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 140px 32px 100px;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: rgba(99, 99, 156, 0.1);
            border-radius: 50px;
            color: #63639c;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(99, 99, 156, 0.2);
            align-self: flex-start;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 22px;
            color: #64748b;
            line-height: 1.7;
            max-width: 580px;
            margin: 0;
            font-weight: 400;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 12px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            border: 1px solid rgba(99, 99, 156, 0.1);
            transition: all 0.3s ease;
            color: #2e2e4d;
            font-weight: 600;
            font-size: 15px;
        }

        .feature-item:hover {
            transform: translateX(8px);
            background: rgba(99, 99, 156, 0.05);
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding-top: 32px;
            border-top: 1px solid rgba(99, 99, 156, 0.1);
            margin-top: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #2e2e4d;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
        }

        /* Dashboard Preview */
        .dashboard-preview {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(99, 99, 156, 0.1);
            overflow: hidden;
            width: 100%;
            max-width: 500px;
            position: relative;
        }

        .browser-header {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(99, 99, 156, 0.1);
        }

        .browser-dots {
            display: flex;
            gap: 8px;
        }

        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dot-red { background: #ff5f57; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #28ca42; }

        .address-bar {
            flex: 1;
            background: #ffffff;
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 12px;
            color: #64748b;
            border: 1px solid rgba(99, 99, 156, 0.1);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .dashboard-content {
            padding: 24px;
            background: linear-gradient(135deg, rgba(99, 99, 156, 0.02) 0%, rgba(46, 46, 77, 0.02) 100%);
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .stat-card {
            background: #ffffff;
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(99, 99, 156, 0.08);
            border: 1px solid rgba(99, 99, 156, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 99, 156, 0.15);
        }

        .stat-card-icon {
            position: absolute;
            top: 8px;
            right: 8px;
            opacity: 0.5;
        }

        .stat-card-value {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .stat-card-label {
            font-size: 11px;
            color: #64748b;
            font-weight: 500;
        }

        .stat-card-progress {
            height: 3px;
            background: #f1f5f9;
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }

        .stat-card-fill {
            height: 3px;
            border-radius: 2px;
            transition: width 2s ease;
        }

        .activity-feed {
            background: #ffffff;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(99, 99, 156, 0.08);
            border: 1px solid rgba(99, 99, 156, 0.05);
        }

        .activity-header {
            font-size: 14px;
            font-weight: bold;
            color: #2e2e4d;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .activity-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .activity-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
        }

        .activity-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .activity-text {
            flex: 1;
        }

        .activity-content {
            font-size: 12px;
            color: #2e2e4d;
            font-weight: 500;
        }

        .activity-time {
            font-size: 10px;
            color: #64748b;
            margin-top: 2px;
        }

        /* Sections */
        .section {
            padding: 100px 0;
            position: relative;
            z-index: 1;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: rgba(99, 99, 156, 0.1);
            border-radius: 50px;
            color: #63639c;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .section-title {
            font-size: 52px;
            font-weight: 800;
            color: #2e2e4d;
            margin: 0 0 24px 0;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 20px;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .gradient-text {
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .feature-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 8px 24px rgba(99, 99, 156, 0.08);
            border: 1px solid rgba(99, 99, 156, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(99, 99, 156, 0.3);
            color: #ffffff;
        }

        .feature-title {
            font-size: 24px;
            font-weight: bold;
            color: #2e2e4d;
            margin: 0 0 12px 0;
        }

        .feature-description {
            color: #64748b;
            margin: 0 0 24px 0;
            line-height: 1.6;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #374151;
            font-size: 15px;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            position: relative;
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 32px;
            box-shadow: 0 8px 24px rgba(99, 99, 156, 0.08);
            border: 1px solid rgba(99, 99, 156, 0.1);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .pricing-card.popular {
            border: 2px solid #63639c;
            box-shadow: 0 20px 40px rgba(99, 99, 156, 0.15);
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .pricing-icon {
            margin-bottom: 20px;
        }

        .pricing-name {
            font-size: 28px;
            font-weight: bold;
            color: #2e2e4d;
            margin: 0 0 8px 0;
        }

        .pricing-description {
            color: #64748b;
            margin: 0 0 24px 0;
        }

        .pricing-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
            margin-bottom: 20px;
        }

        .price-currency {
            font-size: 16px;
            color: #64748b;
        }

        .price-amount {
            font-size: 48px;
            font-weight: bold;
            color: #2e2e4d;
        }

        .price-period {
            color: #64748b;
            font-size: 16px;
        }

        .price-original {
            font-size: 14px;
            color: #94a3b8;
            text-decoration: line-through;
            margin-top: 4px;
        }

        .price-savings {
            font-size: 14px;
            color: #22c55e;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-top: 4px;
        }

        .pricing-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #374151;
            font-size: 15px;
            line-height: 1.5;
        }

        .pricing-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .pricing-cta.primary {
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            color: #ffffff;
        }

        .pricing-cta.secondary {
            background: #f8fafc;
            color: #2e2e4d;
            border: 1px solid #e2e8f0;
        }

        /* Trust Badges */
        .trust-badges {
            margin-top: 80px;
            text-align: center;
        }

        .trust-text {
            color: #64748b;
            margin: 0 0 32px 0;
            font-size: 16px;
        }

        .trust-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            opacity: 0.6;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64748b;
            font-size: 16px;
            font-weight: 600;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            color: #ffffff;
            overflow: hidden;
        }

        .stats-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .stats-bg-element {
            position: absolute;
            background: #ffffff;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
        }

        .stats-title {
            font-size: 48px;
            font-weight: 800;
            margin: 0 0 16px 0;
        }

        .stats-subtitle {
            font-size: 20px;
            opacity: 0.9;
            margin: 0;
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stats-card {
            text-align: center;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .stats-card-icon {
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .stats-card-number {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .stats-card-label {
            opacity: 0.9;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        /* Testimonials */
        .testimonials-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 24px;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .testimonial-slide {
            min-width: 100%;
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 12px 40px rgba(99, 99, 156, 0.1);
            border: 1px solid rgba(99, 99, 156, 0.08);
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .testimonial-stripe {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
        }

        .testimonial-content {
            display: flex;
            align-items: flex-start;
            gap: 40px;
        }

        .testimonial-text {
            flex: 1;
        }

        .testimonial-rating {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
        }

        .testimonial-quote {
            font-size: 22px;
            color: #2e2e4d;
            margin: 0 0 32px 0;
            line-height: 1.7;
            font-style: italic;
            position: relative;
        }

        .testimonial-quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: -20px;
            font-size: 60px;
            color: #63639c;
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 200px;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: bold;
            font-size: 24px;
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(99, 99, 156, 0.3);
        }

        .testimonial-name {
            font-size: 20px;
            font-weight: bold;
            color: #2e2e4d;
            margin-bottom: 6px;
        }

        .testimonial-role {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 4px;
        }

        .testimonial-company {
            font-size: 14px;
            color: #63639c;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .testimonial-growth {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 12px;
        }

        .testimonial-dot {
            width: 16px;
            height: 16px;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            cursor: pointer;
            background: #e2e8f0;
        }

        .testimonial-dot.active {
            width: 40px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #2e2e4d 0%, #63639c 50%, #2e2e4d 100%);
            color: #ffffff;
            text-align: center;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 32px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-title {
            font-size: 64px;
            font-weight: 800;
            margin: 0 0 24px 0;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 24px;
            margin: 0 auto 20px auto;
            opacity: 0.9;
            max-width: 800px;
            line-height: 1.6;
        }

        .cta-description {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 48px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            align-items: center;
            margin-bottom: 60px;
        }

        .cta-btn-white {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            border-radius: 16px;
            font-size: 20px;
            font-weight: bold;
            text-decoration: none;
            background: #ffffff;
            color: #2e2e4d;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            min-width: 200px;
            justify-content: center;
        }

        .cta-btn-outline {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 600;
            background: transparent;
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            backdrop-filter: blur(20px);
            min-width: 200px;
            justify-content: center;
            text-decoration: none;
        }

        .cta-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .cta-feature {
            text-align: center;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-feature-icon {
            margin-bottom: 20px;
        }

        .cta-feature-title {
            font-size: 20px;
            font-weight: bold;
            margin: 0 0 12px 0;
        }

        .cta-feature-desc {
            opacity: 0.9;
            margin: 0;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background: #1a1a2e;
            color: #ffffff;
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .footer-logo {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #63639c 0%, #2e2e4d 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: bold;
            font-size: 20px;
        }

        .footer-brand-name {
            font-size: 28px;
            font-weight: bold;
        }

        .footer-brand-tagline {
            font-size: 12px;
            opacity: 0.8;
        }

        .footer-description {
            opacity: 0.9;
            line-height: 1.7;
            margin: 0 0 32px 0;
            max-width: 400px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social-link {
            width: 44px;
            height: 44px;
            background: rgba(99, 99, 156, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 1px solid rgba(99, 99, 156, 0.2);
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .footer-social-link:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .footer-section-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0 0 24px 0;
        }

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

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 4px 0;
            font-size: 16px;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }

        .footer-link:hover {
            color: #ffffff;
            transform: translateX(8px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .footer-copyright {
            opacity: 0.8;
            margin: 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-bottom-right {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-status {
            font-size: 12px;
            opacity: 0.8;
            padding: 4px 12px;
            background: rgba(34, 197, 94, 0.2);
            border-radius: 12px;
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .footer-legal {
            display: flex;
            gap: 16px;
        }

        .footer-legal-link {
            opacity: 0.8;
            text-decoration: none;
            transition: opacity 0.3s ease;
            font-size: 14px;
            color: #ffffff;
        }

        .footer-legal-link:hover {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .cta-title {
                font-size: 48px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .stats-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 16px 20px;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero {
                padding: 120px 20px 80px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .section-container {
                padding: 0 20px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-cards {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 36px;
            }
            
            .cta-subtitle {
                font-size: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-features {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 40px 20px;
            }
            
            .testimonial-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Material Icons SVG */
        .icon-check { fill: #22c55e; }
        .icon-star { fill: #fbbf24; }
        .icon-primary { fill: #63639c; }
        .icon-secondary { fill: #2e2e4d; }
        .icon-success { fill: #22c55e; }
        .icon-warning { fill: #f59e0b; }
        .icon-white { fill: #ffffff; }