:root {
            --primary: #1890ff;
            --primary-dark: #0050b3;
            --secondary: #2f54eb;
            --bg-color: #f0f5ff;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --accent: #52c41a;
            --accent-light: #f6ffed;
            --border-color: #e5e7eb;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background: rgba(240, 245, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(24, 144, 255, 0.08);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 1rem 5%;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn-login {
            background: rgba(24, 144, 255, 0.1);
            border: 1px solid rgba(24, 144, 255, 0.2);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            color: var(--primary) !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: var(--primary);
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(24, 144, 255, 0.2);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 8rem 5% 4rem;
            overflow: hidden;
            background: radial-gradient(circle at top right, #e6f7ff 0%, #f0f5ff 100%);
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            top: -100px;
            right: -200px;
            z-index: 0;
            animation: pulse 10s infinite alternate;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #52c41a 0%, #1890ff 100%);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            bottom: -50px;
            left: -100px;
            z-index: 0;
            animation: pulse 8s infinite alternate-reverse;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.1; }
            100% { transform: scale(1.1); opacity: 0.2; }
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            text-align: left;
            animation: fadeInUp 1s ease-out;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease-out;
        }

        .hero-image img, .hero-image svg {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .hero-image svg {
            box-shadow: none; /* SVG doesn't need box shadow */
            border-radius: 0;
        }

        .hero-image img:hover, .hero-image svg:hover {
            transform: translateY(-10px);
        }

        /* SVG Animations */
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }
        .animate-float {
            animation: floatIcon 3.5s ease-in-out infinite;
        }
        
        @keyframes dataFlow {
            0% { stroke-dashoffset: 16; }
            100% { stroke-dashoffset: 0; }
        }
        .animate-data {
            animation: dataFlow 0.8s linear infinite;
        }
        
        @keyframes bobble {
            0%, 100% { transform: translateX(0px); }
            50% { transform: translateX(8px); }
        }
        .animate-bobble {
            animation: bobble 4s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(24, 144, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(24, 144, 255, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--text-dark);
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.08);
            color: var(--primary);
        }

        /* Common Section Layout */
        section.content-section {
            padding: 6rem 5%;
            background: var(--white);
            position: relative;
            z-index: 1;
            border-bottom: 1px solid var(--border-color);
        }

        section.content-section.alt {
            background: linear-gradient(180deg, #f8faff 0%, #f0f5ff 100%);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--bg-color);
            padding: 2.5rem;
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .feature-card:hover {
            background: var(--white);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(24, 144, 255, 0.08);
            border: 1px solid rgba(24, 144, 255, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(24, 144, 255, 0.1);
            color: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: var(--white);
            transform: rotate(-5deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Pricing Section */
        .pricing-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2.5rem;
            max-width: 1000px;
            margin: 0 auto;
            align-items: stretch;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(24, 144, 255, 0.05);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(24, 144, 255, 0.08);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
            box-shadow: 0 15px 35px rgba(24, 144, 255, 0.1);
        }

        .pricing-card.popular::before {
            content: "BEST VALUE";
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        .plan-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .pricing-card.popular .plan-name {
            color: var(--primary);
        }

        .price {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 2rem;
            display: flex;
            align-items: baseline;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
            margin-left: 5px;
        }

        .savings-tag {
            background: var(--accent-light);
            color: var(--accent);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            flex: 1;
        }

        .features-list li {
            font-size: 1rem;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .features-list li i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .btn-pricing {
            width: 100%;
            text-align: center;
            padding: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-pricing.primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            box-shadow: 0 8px 16px rgba(24, 144, 255, 0.2);
        }

        .btn-pricing.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(24, 144, 255, 0.3);
        }

        .btn-pricing.secondary {
            background: var(--bg-color);
            color: var(--primary);
            border: 1px solid rgba(24, 144, 255, 0.2);
        }

        .btn-pricing.secondary:hover {
            background: var(--white);
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .trial-text {
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 1.2rem;
        }

        /* Contact Section */
        .contact-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info {
            flex: 1 1 350px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(24, 144, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(24, 144, 255, 0.1);
            color: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-details h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .info-details p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-form-container {
            flex: 2 1 500px;
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(24, 144, 255, 0.05);
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 1.5rem;
        }

        .hero {
            padding: 4rem 5%;
        }

        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: flex-start;
        }

        .form-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #4b5563;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.15);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px rgba(24, 144, 255, 0.2);
            width: 100%;
            margin-top: 1rem;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(24, 144, 255, 0.3);
        }

        .success-box {
            background: #f6ffed;
            border: 1px solid #b7eb8f;
            color: #52c41a;
            padding: 16px 20px;
            border-radius: 10px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 3rem 5%;
            text-align: center;
        }
        
        footer p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 45px;
            height: 45px;
            gap: 6px;
            z-index: 999;
        }

        .mobile-menu-toggle .bar {
            width: 32px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 4px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }

        /* Creative Animation: Hamburger to X */
        .mobile-menu-toggle.active .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background-color: var(--primary-dark);
        }
        .mobile-menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }
        .mobile-menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background-color: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
                margin-top: 2rem;
            }
            .hero-content {
                text-align: center;
            }
            .hero-btns {
                justify-content: center;
            }
            .hero-image {
                margin-top: 2rem;
            }
            .hero h1 { font-size: 2.5rem; }
            .mobile-menu-toggle { display: flex; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 1rem 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            .nav-links.show { display: flex; }
            .nav-links a {
                padding: 15px 20px;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }
            .nav-links .btn-login {
                margin: 15px 20px;
                width: calc(100% - 40px);
            }
            .hero-btns { flex-direction: column; }
            .hero-btns a {
                text-align: center;
                justify-content: center;
            }
            .pricing-wrapper { flex-direction: column; align-items: center; }
            .contact-form-container { padding: 2rem; }
        }

    /* Mobile - Very Small Screens */
    @media (max-width: 480px) {
        body {
            font-size: 13px;
        }
        .content-area, .container {
            padding: 12px;
        }
        .header-nav {
            padding: 0 10px;
        }
        .header-right {
            gap: 8px;
        }
        .header-btn {
            padding: 6px;
        }
        .stat-card, .card {
            padding: 16px;
        }
        .split-data {
            grid-template-columns: 1fr;
        }
        .form-row {
            flex-direction: column;
        }
        /* Make inputs and buttons more touch friendly */
        input, select, .btn {
            font-size: 14px; /* prevents iOS zoom */
        }
        .btn-full-mobile {
            width: 100%;
            margin-top: 10px;
        }
        table {
            font-size: 12px;
        }
    }
