        :root {
            --primary-color: #2196F3;
            --primary-dark: #1976D2;
            --secondary-color: #0d47a1;
            --accent-color: #FF6F00;
            --accent-light: #FF8F00;
            --success-color: #28a745;
            --warning-color: #FFA000;
            --danger-color: #dc3545;
            --light-gray: #f5f7fa;
            --medium-gray: #6c757d;
            --dark-gray: #1a2332;
            --border-color: #e0e6ed;
            --text-color: #2c3e50;
            --white: #ffffff;
            --shadow: 0 2px 4px rgba(0,0,0,0.08);
            --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar */
        .navbar {
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 0.75rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
        }
        .nav-brand img {
            height: 24px;
            max-height: 24px;
            width: auto;
        }
        .nav-brand i { color: var(--accent-color); }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary-color); }
        .nav-cta {
            display: flex;
            gap: 0.75rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.6rem 1.25rem;
            font-size: 0.95rem;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: 2px solid transparent;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
            color: var(--white);
        }
        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        .btn-lg {
            padding: 0.85rem 2rem;
            font-size: 1.1rem;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            padding: 8rem 0 5rem;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 1.25rem;
        }
        .hero-content h1 span { color: var(--accent-color); }
        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }
        .hero-image {
            text-align: center;
        }
        .hero-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .hero-mockup {
            background: var(--white);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .mockup-header {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 0.75rem;
        }
        .mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .mockup-dot.red { background: #ff5f57; }
        .mockup-dot.yellow { background: #febc2e; }
        .mockup-dot.green { background: #28c840; }
        .mockup-content {
            background: var(--light-gray);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: left;
        }
        .mockup-stat {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .mockup-stat-item {
            text-align: center;
        }
        .mockup-stat-item .number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .mockup-stat-item .label {
            font-size: 0.75rem;
            color: var(--medium-gray);
        }
        .mockup-bar {
            height: 8px;
            background: var(--border-color);
            border-radius: 4px;
            margin-bottom: 0.5rem;
            overflow: hidden;
        }
        .mockup-bar-fill {
            height: 100%;
            border-radius: 4px;
        }
        .mockup-bar-fill.blue { background: var(--primary-color); width: 75%; }
        .mockup-bar-fill.orange { background: var(--accent-color); width: 60%; }
        .mockup-bar-fill.green { background: var(--success-color); width: 90%; }

        /* Trust Badges */
        .trust-section {
            background: var(--white);
            padding: 2rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .trust-section .container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--medium-gray);
            font-size: 0.95rem;
        }
        .trust-item i {
            color: var(--success-color);
            font-size: 1.25rem;
        }

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .section-header p {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
        }
        .feature-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }
        .feature-icon.accent {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
        }
        .feature-card h3 {
            font-size: 1.25rem;
            color: var(--text-color);
            margin-bottom: 0.75rem;
        }
        .feature-card p {
            color: var(--medium-gray);
            font-size: 0.95rem;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
            background: var(--white);
        }
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .step {
            text-align: center;
            position: relative;
        }
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -1rem;
            width: calc(100% - 60px);
            height: 3px;
            background: var(--border-color);
            transform: translateX(50%);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.25rem;
            position: relative;
            z-index: 1;
        }
        .step h3 {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 0.5rem;
        }
        .step p {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 3rem 0;
            background: var(--light-gray);
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
            margin-top: 2rem;
        }
        .pricing-card {
            background: var(--white);
            border-radius: 10px;
            padding: 1.5rem 1.25rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: all 0.3s;
        }
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.popular {
            border: 2px solid var(--accent-color);
            transform: scale(1.03);
        }
        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-5px);
        }
        .popular-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-color);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }
        .pricing-header h3 {
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 0.25rem;
        }
        .pricing-header .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .pricing-header .price .price-amount {
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
        }
        .pricing-header .price span:not(.price-amount) {
            font-size: 0.85rem;
            font-weight: 400;
            color: var(--medium-gray);
        }
        .pricing-header .billing {
            font-size: 0.8rem;
            color: var(--medium-gray);
        }
        .pricing-features {
            list-style: none;
            margin-bottom: 1.25rem;
        }
        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            padding: 0.35rem 0;
            font-size: 0.85rem;
            color: var(--text-color);
        }
        .pricing-features li i {
            color: var(--success-color);
            margin-top: 0.15rem;
            font-size: 0.75rem;
        }
        .pricing-features li.disabled {
            color: var(--medium-gray);
            text-decoration: line-through;
        }
        .pricing-features li.disabled i {
            color: var(--border-color);
        }
        .pricing-card .btn {
            width: 100%;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
        }
        
        /* Billing Toggle */
        .billing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0 2rem 0;
        }
        .billing-toggle span {
            font-weight: 500;
            color: var(--medium-gray);
            transition: color 0.3s;
        }
        .billing-toggle span.active {
            color: var(--secondary-color);
        }
        .toggle-switch {
            position: relative;
            width: 56px;
            height: 28px;
            background: var(--border-color);
            border-radius: 14px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .toggle-switch.yearly {
            background: var(--secondary-color);
        }
        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .toggle-switch.yearly::after {
            transform: translateX(28px);
        }
        .save-badge {
            background: var(--success-color);
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .price-yearly-info {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-top: 0.25rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 0;
            background: var(--white);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        .testimonial-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .testimonial-content {
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text-color);
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
        }
        .testimonial-info h4 {
            font-size: 1rem;
            color: var(--text-color);
        }
        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--medium-gray);
        }

        /* FAQ Section */
        .faq {
            padding: 5rem 0;
            background: var(--light-gray);
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .faq-item {
            background: var(--white);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .faq-item h3 {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        .faq-item h3 i {
            color: var(--primary-color);
            margin-top: 0.2rem;
        }
        .faq-item p {
            color: var(--medium-gray);
            font-size: 0.95rem;
            margin-left: 1.75rem;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            text-align: center;
        }
        .cta h2 {
            font-size: 2.25rem;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .cta p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .cta .btn-white {
            background: var(--white);
            color: var(--secondary-color);
        }
        .cta .btn-white:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: rgba(255,255,255,0.7);
            padding: 4rem 0 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .footer-brand i { color: var(--accent-color); }
        .footer-about p {
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .footer h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: var(--accent-color);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p {
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.2s;
        }
        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; }
            .hero-content h1 { font-size: 2.25rem; }
            .hero-cta { justify-content: center; }
            .hero-image { display: none; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .steps-container { grid-template-columns: repeat(2, 1fr); }
            .step:not(:last-child)::after { display: none; }
            .pricing-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
            .pricing-card.popular { transform: none; }
            .pricing-card.popular:hover { transform: translateY(-5px); }
            .testimonials-grid { grid-template-columns: 1fr; }
            .faq-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .hero { padding: 6rem 0 3rem; }
            .hero-content h1 { font-size: 1.85rem; }
            .section-header h2 { font-size: 1.75rem; }
            .features-grid { grid-template-columns: 1fr; }
            .steps-container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { justify-content: center; text-align: center; }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: var(--shadow-lg);
            padding: 1rem;
            z-index: 999;
        }
        .mobile-menu.active { display: block; }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: var(--text-color);
            text-decoration: none;
            border-radius: 6px;
        }
        .mobile-menu a:hover {
            background: var(--light-gray);
            color: var(--primary-color);
        }
        .mobile-menu .btn {
            width: 100%;
            margin-top: 0.5rem;
        }

/* Additional styles moved from inline */
.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-yearly-info {
    display: none;
}

.footer-logo {
    height: 40px;
    background: white;
    border-radius: 6px;
    padding: 3px;
}
