 /* ------------------------------------------------------------------
        ROOT VARIABLES & CORE STYLES
        ------------------------------------------------------------------
        */
        :root {
            --primary-orange: #ff6a00;
            --primary-orange-hover: #e65f00;
            --secondary-dark: #1a1a1a;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --border-color: #e5e5e5;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--secondary-dark);
        }

        a {
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        /* ------------------------------------------------------------------
        REUSABLE COMPONENTS
        ------------------------------------------------------------------
        */
        .btn-orange {
            background-color: var(--primary-orange);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-orange:hover {
            background-color: var(--primary-orange-hover);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
        }

        .btn-outline-orange {
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 10px 26px;
            border-radius: 8px;
            font-weight: 600;
            background: transparent;
        }

        .btn-outline-orange:hover {
            background-color: var(--primary-orange);
            color: var(--white);
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .highlight-orange {
            color: var(--primary-orange);
        }

        .bg-dark-section {
            background-color: var(--secondary-dark);
            color: var(--white);
        }

        .bg-dark-section h2, .bg-dark-section h3 {
            color: var(--white);
        }

        /* ------------------------------------------------------------------
        1. NAVIGATION BAR
        ------------------------------------------------------------------
        */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
            transition: var(--transition-smooth);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }

        .navbar-brand span {
            color: var(--primary-orange);
        }

        .nav-link {
            font-weight: 500;
            color: var(--secondary-dark) !important;
            margin: 0 10px;
            font-size: 0.95rem;
        }

        .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        /* ------------------------------------------------------------------
        2. HERO SECTION
        ------------------------------------------------------------------
        */
        .hero-section {
            background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.05), transparent),
                        radial-gradient(circle at bottom left, rgba(255, 106, 0, 0.05), transparent);
            padding: 60px 0 100px;
            position: relative;
        }

        .hero-headline {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 25px;
            letter-spacing: -1.5px;
        }

        .hero-subheadline {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 35px;
            max-width: 600px;
        }

        .hero-features {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .hero-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .hero-features i {
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .hero-img-container {
            position: relative;
        }

        .hero-img-container img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 15px;
            animation: float 4s ease-in-out infinite;
        }

        .card-1 { top: 10%; left: -50px; }
        .card-2 { bottom: 15%; right: -30px; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* ------------------------------------------------------------------
        3. TRUST BAR
        ------------------------------------------------------------------
        */
        .trust-bar {
            background-color: var(--white);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 40px 0;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: center;
        }

        .trust-item i {
            font-size: 2rem;
            color: var(--primary-orange);
            opacity: 0.8;
        }

        .trust-item span {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        /* ------------------------------------------------------------------
        4. SOCIAL PROOF STATS
        ------------------------------------------------------------------
        */
        .stats-section {
            background-color: var(--secondary-dark);
            padding: 60px 0;
        }

        .stat-box {
            text-align: center;
            color: var(--white);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-orange);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        /* ------------------------------------------------------------------
        5. REAL WORLD LEARNING SECTION
        ------------------------------------------------------------------
        */
        .learning-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            transition: var(--transition-smooth);
            overflow: hidden;
            position: relative;
        }

        .learning-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .learning-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 106, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .learning-icon i {
            font-size: 1.8rem;
            color: var(--primary-orange);
        }

        .learning-card h4 {
            margin-bottom: 15px;
        }

        .learning-card .example-tag {
            display: inline-block;
            background: #fff0e6;
            color: var(--primary-orange);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
        }

        /* ------------------------------------------------------------------
        6. CURRICULUM OVERVIEW
        ------------------------------------------------------------------
        */
        .curriculum-module {
            background: var(--light-bg);
            border-radius: 12px;
            margin-bottom: 15px;
            padding: 20px 30px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border-left: 4px solid transparent;
        }

        .curriculum-module:hover {
            background: var(--white);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            border-left-color: var(--primary-orange);
        }

        .module-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .module-title {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .module-details {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* ------------------------------------------------------------------
        7. LEARNING ROADMAP
        ------------------------------------------------------------------
        */
        .roadmap-container {
            position: relative;
            padding: 40px 0;
        }

        .roadmap-line {
            position: absolute;
            width: 4px;
            background: var(--border-color);
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .roadmap-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 60px;
        }

        .roadmap-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .roadmap-dot {
            position: absolute;
            width: 24px;
            height: 24px;
            background: var(--primary-orange);
            border: 4px solid white;
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .roadmap-content {
            width: 85%;
            background: var(--white);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin: 0 40px;
            position: relative;
        }

        .roadmap-step-num {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--primary-orange);
            color: white;
            padding: 2px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* ------------------------------------------------------------------
        8. PROJECTS SECTION
        ------------------------------------------------------------------
        */
        .project-card {
            border-radius: 20px;
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--border-color);
            transition: var(--transition-smooth);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .project-img-wrapper {
            position: relative;
            overflow: hidden;
        }

        .project-img-wrapper img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .project-card:hover .project-img-wrapper img {
            transform: scale(1.1);
        }

        .project-body {
            padding: 25px;
        }

        .tech-stack {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .tech-badge {
            background: #f0f0f0;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* ------------------------------------------------------------------
        9. STUDENT SUCCESS STORIES
        ------------------------------------------------------------------
        */
        .success-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border-color);
            display: flex;
            gap: 30px;
            align-items: center;
            margin-bottom: 30px;
        }

        .success-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 5px solid rgba(255, 106, 0, 0.1);
        }

        .transformation-badge {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-block;
        }

        /* ------------------------------------------------------------------
        10. COURSE BATCHES
        ------------------------------------------------------------------
        */
        .batch-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            border: 2px solid var(--border-color);
            transition: var(--transition-smooth);
            height: 100%;
        }

        .batch-card.featured {
            border-color: var(--primary-orange);
            position: relative;
        }

        .batch-tag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-orange);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .batch-price {
            font-size: 3rem;
            font-weight: 800;
            margin: 20px 0;
        }

        .batch-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
            text-align: left;
        }

        .batch-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05rem;
        }

        .batch-features i {
            color: #2ecc71;
        }

        /* ------------------------------------------------------------------
        11. INSTRUCTOR SECTION
        ------------------------------------------------------------------
        */
        .instructor-card {
            background: var(--white);
            border-radius: 24px;
            display: flex;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }

        .instructor-img {
            width: 40%;
            object-fit: cover;
        }

        .instructor-info {
            padding: 60px;
            width: 60%;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .expertise-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .expertise-item i {
            color: var(--primary-orange);
        }

        /* ------------------------------------------------------------------
        12. CERTIFICATION
        ------------------------------------------------------------------
        */
        .cert-preview {
            position: relative;
            padding: 20px;
            background: var(--light-bg);
            border-radius: 12px;
        }

        .cert-preview img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* ------------------------------------------------------------------
        14. DEMO CLASS SIGNUP
        ------------------------------------------------------------------
        */
        .demo-signup-section {
            background: var(--primary-orange);
            border-radius: 30px;
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .demo-signup-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }

        .demo-form .form-control, .demo-form .form-select {
            padding: 15px;
            border-radius: 10px;
            border: none;
            margin-bottom: 15px;
        }

        .demo-form .btn-submit {
            background: var(--secondary-dark);
            color: white;
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            transition: var(--transition-smooth);
        }

        .demo-form .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* ------------------------------------------------------------------
        15. FAQ
        ------------------------------------------------------------------
        */
        .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: 12px !important;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 700;
            padding: 20px 25px;
        }

        .accordion-button:not(.collapsed) {
            background-color: #fff0e6;
            color: var(--primary-orange);
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        /* ------------------------------------------------------------------
        17. FOOTER
        ------------------------------------------------------------------
        */
        .footer {
            background-color: #0d0d0d;
            padding: 80px 0 30px;
            color: rgba(255,255,255,0.6);
        }

        .footer-logo {
            color: white;
            font-weight: 800;
            font-size: 1.8rem;
            margin-bottom: 25px;
            display: block;
        }

        .footer-logo span {
            color: var(--primary-orange);
        }

        .footer-title {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
        }

        .footer-links a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition-smooth);
        }

        .social-icon:hover {
            background: var(--primary-orange);
            transform: translateY(-3px);
        }

        .copyright-bar {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive Fixes */
        @media (max-width: 992px) {
            .hero-headline { font-size: 2.8rem; }
            .instructor-card { flex-direction: column; }
            .instructor-img, .instructor-info { width: 100%; }
            .roadmap-line { left: 40px; }
            .roadmap-item, .roadmap-item:nth-child(even) { justify-content: flex-start; padding-left: 80px; padding-right: 0; }
            .roadmap-dot { left: 40px; }
            .success-card { flex-direction: column; text-align: center; }
        }

        @media (max-width: 768px) {
            .section-title { font-size: 2rem; }
            .hero-section { padding: 40px 0 60px; }
            .hero-floating-card { display: none; }
        }



        /* INTQUES PREMIUM HERO STYLES
            Optimized for Conversion & Professional Tech Aesthetic
        */

        .hero-section {
            background: #ffffff;
            /* Increased top padding to account for fixed nav and breathe more */
            padding: 60px 0 100px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        /* Subtle Technical Grid Overlay */
        .hero-tech-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(var(--primary-orange) 0.5px, transparent 0.5px),
                linear-gradient(to bottom, #ffffff, rgba(255,255,255,0));
            background-size: 40px 40px, 100% 100%;
            opacity: 0.12;
            z-index: -1;
        }

        /* Badge Styling */
        .hero-badge-container {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 106, 0, 0.05);
            padding: 8px 18px;
            border-radius: 100px;
            border: 1px solid rgba(255, 106, 0, 0.15);
            backdrop-filter: blur(4px);
        }

        .badge-new {
            background: var(--primary-orange);
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 3px 12px;
            border-radius: 50px;
            margin-right: 12px;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
        }

        .badge-text {
            color: var(--primary-orange);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Typography Hierarchy */
        .hero-headline {
            font-size: clamp(2.5rem, 5vw, 4.2rem); /* Fluid typography */
            font-weight: 850;
            line-height: 1.05;
            margin-bottom: 28px;
            letter-spacing: -0.04em;
            color: var(--secondary-dark);
        }

        .highlight-orange {
            color: var(--primary-orange);
            position: relative;
            display: inline-block;
        }

        .hero-subheadline {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 45px;
            max-width: 620px;
        }

        /* Interactive Value Props */
        .hero-value-props .icon-circle {
            width: 36px;
            height: 36px;
            background: white;
            color: var(--primary-orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition-smooth);
        }

        .hero-value-props span {
            font-weight: 600;
            font-size: 1rem;
            color: #333;
        }

        .hero-value-props .col-md-6:hover .icon-circle {
            background: var(--primary-orange);
            color: white;
            transform: scale(1.1);
        }

        /* CTA Optimization */
        .main-cta {
            padding: 20px 45px !important;
            font-size: 1.15rem !important;
            font-weight: 800 !important;
            box-shadow: 0 20px 40px rgba(255, 106, 0, 0.25);
            border-radius: 12px !important;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .main-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(255, 106, 0, 0.35);
        }

        .btn-outline-dark {
            border: 2px solid #e5e5e5 !important;
            background: transparent;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 700;
            color: #444;
        }

        .btn-outline-dark:hover {
            background: #f8f9fa;
            border-color: #222 !important;
            color: #222;
        }

        /* Visual Wrapper & Floating UI */
        .hero-visual-wrapper {
            position: relative;
            perspective: 1200px;
        }

        .hero-main-frame {
            background: white;
            padding: 12px;
            border-radius: 24px;
            box-shadow: 0 50px 100px rgba(0,0,0,0.12);
            transform: rotateX(5deg) rotateY(-10deg) rotateZ(1deg);
            transition: all 0.6s ease;
        }

        .hero-visual-wrapper:hover .hero-main-frame {
            transform: rotateX(0) rotateY(0) rotateZ(0);
        }

        .floating-pill {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            padding: 14px 22px;
            border-radius: 14px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            font-weight: 800;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .pill-1 { top: -20px; right: 10%; animation: floatY 4s ease-in-out infinite; }
        .pill-2 { bottom: 40px; left: -40px; animation: floatY 5s ease-in-out infinite 1s; }
        .pill-3 { top: 45%; right: -30px; animation: floatY 4.5s ease-in-out infinite 0.5s; }

        .architecture-tag {
            position: absolute;
            bottom: -40px;
            right: 20px;
            background: #1a1a1a;
            color: white;
            padding: 18px 28px;
            border-radius: 20px;
            z-index: 12;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        /* Animations */
        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Mobile Responsive Overrides */
        @media (max-width: 992px) {
            .hero-section { padding: 40px 0 80px; text-align: center; }
            .hero-subheadline { margin: 0 auto 40px; }
            .hero-value-props { text-align: left; max-width: 540px; margin: 0 auto 40px !important; }
            .hero-cta-group { justify-content: center; }
            .trust-indicator { justify-content: center; flex-direction: column; text-align: center; }
        }

        @media (max-width: 576px) {
            .hero-headline { font-size: 2.4rem; }
            .hero-cta-group .btn { width: 100%; margin-bottom: 10px; }
            .avatar-group { margin-right: 0; margin-bottom: 10px; }
        }


        /* ------------------------------------------------------------------
                TRUST SECTION STYLES (INTEGRATED WITH INTQUES ROOT)
                ------------------------------------------------------------------
                */

                /* Local overrides to match your provided root variables */
                .trust-section {
                    padding: 100px 0;
                    background-color: #fcfcfc; /* Very subtle contrast from white body */
                    position: relative;
                }

                .section-tagline {
                    color: var(--primary-orange);
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 1.5px;
                    font-size: 0.85rem;
                    display: block;
                    margin-bottom: 12px;
                }

                /* Using your .section-title and .section-subtitle classes */
                .trust-section .section-title {
                    margin-bottom: 20px;
                    color: var(--secondary-dark);
                }

                /* Card Styling - Optimized for Tech Aesthetic */
                .feature-card {
                    background: var(--white);
                    border: 1px solid var(--border-color);
                    border-radius: 20px;
                    padding: 45px 35px;
                    height: 100%;
                    transition: var(--transition-smooth);
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }

                .feature-card:hover {
                    transform: translateY(-10px);
                    border-color: var(--primary-orange);
                    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
                }

                .icon-wrapper {
                    width: 64px;
                    height: 64px;
                    background: rgba(255, 106, 0, 0.08); /* Light Orange tint */
                    border-radius: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 25px;
                    transition: var(--transition-smooth);
                }

                .icon-wrapper i {
                    font-size: 1.6rem;
                    color: var(--primary-orange);
                }

                .feature-card:hover .icon-wrapper {
                    background: var(--primary-orange);
                }

                .feature-card:hover .icon-wrapper i {
                    color: var(--white);
                }

                .feature-card h3 {
                    font-size: 1.25rem;
                    font-weight: 700;
                    margin-bottom: 15px;
                    color: var(--secondary-dark);
                }

                .feature-card p {
                    color: var(--text-muted);
                    font-size: 0.95rem;
                    line-height: 1.6;
                    margin-bottom: 0;
                }

                /* Mobile responsiveness */
                @media (max-width: 768px) {
                    .trust-section { padding: 70px 0; }
                    .feature-card { padding: 35px 25px; }
                }



                .systems-section {
                        padding: 100px 0;
                        background-color: var(--light-bg);
                        overflow: hidden;
                    }

                    .section-tagline {
                        color: var(--primary-orange);
                        font-weight: 700;
                        text-transform: uppercase;
                        letter-spacing: 1.5px;
                        font-size: 0.85rem;
                        margin-bottom: 1rem;
                        display: block;
                    }

                    /* System Card Styling - Updated for INTQUES Branding */
                    .system-card {
                        background: var(--white);
                        border: 1px solid var(--border-color);
                        border-radius: 20px;
                        padding: 40px 30px;
                        height: 100%;
                        transition: var(--transition-smooth);
                        position: relative;
                        z-index: 1;
                        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
                    }

                    .system-card:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 20px 40px -15px rgba(255, 106, 0, 0.15);
                        border-color: var(--primary-orange);
                    }

                    .icon-wrapper {
                        width: 64px;
                        height: 64px;
                        border-radius: 16px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin-bottom: 25px;
                        background: rgba(255, 106, 0, 0.08); /* Brand orange tint */
                        color: var(--primary-orange);
                        transition: var(--transition-smooth);
                    }

                    .system-card:hover .icon-wrapper {
                        background: var(--primary-orange);
                        color: var(--white);
                    }

                    .card-heading {
                        font-size: 1.35rem;
                        font-weight: 700;
                        margin-bottom: 15px;
                        color: var(--secondary-dark);
                    }

                    .card-description {
                        font-size: 0.95rem;
                        line-height: 1.6;
                        color: var(--text-muted);
                        margin-bottom: 0;
                    }

                    .architecture-tags {
                        margin-top: 20px;
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                    }

                    .tech-tag {
                        font-size: 0.75rem;
                        background: #fff0e6; /* Light orange background */
                        color: var(--primary-orange);
                        padding: 4px 12px;
                        border-radius: 6px;
                        font-weight: 700;
                    }

                    /* Mobile Responsive Adjustments */
                    @media (max-width: 768px) {
                        .systems-section {
                            padding: 70px 0;
                        }
                        .system-card {
                            padding: 35px 25px;
                        }
                    }