/* custom brand colors: #394869 (deep blue) and #f88534 (vibrant orange) */
        :root {
            --brand-blue: #394869;
            --brand-orange: #f88534;
            --brand-orange-light: #ff9a4a;
            --brand-blue-dark: #2a3752;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            color: #1a1e2b;
            overflow-x: hidden;
        }
        @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');
        
        .heading-font {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .brand-bg {
            background-color: var(--brand-blue);
        }
        .brand-text {
            color: var(--brand-blue);
        }
        .brand-orange {
            color: var(--brand-orange);
        }
        .brand-orange-bg {
            background-color: var(--brand-orange);
        }
        .btn-orange {
            background: linear-gradient(105deg, var(--brand-orange) 0%, #f56a1a 100%);
            color: white;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 8px 18px rgba(248,133,52,0.25);
        }
        .btn-orange:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(248,133,52,0.35);
            filter: brightness(1.05);
        }
        .btn-outline-blue {
            border: 1.5px solid var(--brand-blue);
            background: transparent;
            color: var(--brand-blue);
            transition: all 0.3s ease;
        }
        .btn-outline-blue:hover {
            background: var(--brand-blue);
            color: white;
            transform: translateY(-2px);
        }
        .glass-card {
            background: rgba(255,255,255,0.96);
            border-radius: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid rgba(57,72,105,0.1);
            transition: all 0.35s ease;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 40px -16px rgba(57,72,105,0.2);
            border-color: var(--brand-orange);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
            position: relative;
        }
        .hero-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 100% 20%, rgba(248,133,52,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .stat-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(57,72,105,0.1);
        }
        .testimonial-card {
            background: white;
            border-radius: 1.8rem;
            transition: all 0.3s;
            border: 1px solid #eef2f6;
        }
        .testimonial-card:hover {
            border-color: var(--brand-orange);
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.05);
        }
        .feature-icon-bg {
            background: rgba(57,72,105,0.08);
            width: 4rem;
            height: 4rem;
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .nav-link {
            position: relative;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-link:hover {
            color: var(--brand-orange);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brand-orange);
            transition: width 0.25s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .pricing-card {
            background: linear-gradient(145deg, #ffffff 0%, #fefaf7 100%);
            border: 1px solid rgba(248,133,52,0.3);
            border-radius: 2rem;
        }
        .badge-orange {
            background: rgba(248,133,52,0.12);
            color: var(--brand-orange);
            border-radius: 2rem;
            padding: 0.25rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
        }
        footer {
            background-color: var(--brand-blue);
        }