  :root {
            --primary-navy: #092c4c;
            --brand-teal-dark: #004d5a;
            --brand-teal-hover: #003a45;
            --text-dark: #1e293b;
            --border-gray: #e2e8f0;
            --bg-light: #f8fafc;
        }

       

        /* Container Section Alignment */
        .strategic-section {
            padding: 80px 0;
            position: relative;
        }

        /* Seamless Integration Pill Badge styling */
        .badge-seamless {
            background-color: #e2f5f1;
            color: #004d5a;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0, 77, 90, 0.05);
            text-transform: uppercase;
        }

        /* Glowing green status indicator dot */
        .status-dot {
            width: 11px;
            height: 11px;
            background-color: #10b981;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
            }
        }

        /* Left Side Title Typography */
        .section-title {
            font-weight: 800;
            font-size: 44px;
            line-height: 1.2;
            color: var(--primary-navy);
            margin-bottom: 30px;
            letter-spacing: -0.8px;
        }

        /* Dynamic SVG Illustration Container */
        .illustration-container {
            width: 100%;
            max-width: 540px;
            margin: 0 auto;
            position: relative;
            transition: transform 0.4s ease;
        }
        
        .illustration-container:hover {
            transform: translateY(-5px);
        }

        /* Value Cards / List Items */
        .value-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .value-pill-card {
            background-color: #ffffff;
            border: 1.5px solid var(--border-gray);
            border-radius: 50px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            outline: none;
        }

        /* Icon Badge in Neutral State */
        .icon-circle-badge {
            width: 48px;
            height: 48px;
            background-color: #0b2d4f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 18px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-right: 18px;
            box-shadow: 0 3px 6px rgba(11, 45, 79, 0.15);
        }

        /* Inner Icon Specific styling */
        .icon-circle-badge i {
            transition: transform 0.3s ease;
        }

        /* Text Block in Neutral State */
        .value-pill-text {
            font-size: 17px;
            font-weight: 600;
            color: var(--primary-navy);
            line-height: 1.4;
            transition: all 0.3s ease;
            padding-right: 15px;
        }

        /* High fidelity hover state and default active state mimicking screenshot item #2 */
        .value-pill-card:hover, 
        .value-pill-card.active-state {
            background-color: var(--brand-teal-dark);
            border-color: var(--brand-teal-dark);
            transform: translateX(12px);
            box-shadow: 0 8px 24px rgba(0, 77, 90, 0.18);
        }

        .value-pill-card:hover .value-pill-text,
        .value-pill-card.active-state .value-pill-text {
            color: #ffffff !important;
        }

        /* Icon badge in Hover/Active State */
        .value-pill-card:hover .icon-circle-badge,
        .value-pill-card.active-state .icon-circle-badge {
            background-color: #ffffff;
            color: var(--brand-teal-dark);
        }

        .value-pill-card:hover .icon-circle-badge i,
        .value-pill-card.active-state .icon-circle-badge i {
            transform: rotate(15deg) scale(1.1);
        }

        /* Footer compliance area */
        .section-footer-note {
            font-size: 13px;
            color: #64748b;
            text-align: center;
            margin-top: 50px;
            font-weight: 500;
        }

        .section-footer-note a {
            color: var(--brand-teal-dark);
            text-decoration: underline;
            font-weight: 600;
        }

        /* Responsive Breakpoints Adjustment */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 36px;
                text-align: center;
            }
            .badge-wrapper {
                text-align: center;
            }
            .strategic-section {
                padding: 50px 0;
            }
            .illustration-container {
                margin-bottom: 50px;
                max-width: 440px;
            }
            .value-pill-card:hover, 
            .value-pill-card.active-state {
                transform: translateX(8px);
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 28px;
            }
            .value-pill-text {
                font-size: 15px;
            }
            .icon-circle-badge {
                width: 40px;
                height: 40px;
                margin-right: 12px;
                font-size: 15px;
            }
            .badge-seamless {
                font-size: 11px;
                padding: 8px 16px;
            }
        }
        
        
        
        :root {
            --color-primary-navy: #0a2e5c;      /* Title deep navy */
            --color-sub-navy: #062541;          /* Sub-header strong navy */
            --color-body-text: #4a5e74;         /* Body copy slate gray */
            --color-btn-navy: #1a3b68;          /* Primary button navy */
            --color-btn-navy-hover: #112746;    /* Button hover state */
            --color-accent-green: #12b25c;      /* Brand mascot green */
            --color-accent-green-bright: #22c55e;
            --color-metric-green: #005a2b;      /* Dark green for the 3X metric card */
            --color-metric-bg: #f1f5f9;         /* Off-white background for normal metric cards */
            --color-bg-gradient-start: #f1faf4; /* Light green-teal corner */
            --color-bg-gradient-end: #ffffff;   /* Pure white blending */
        }

        body {
            font-family: 'Inter', sans-serif;
            background: radial-gradient(circle at top left, var(--color-bg-gradient-start) 0%, var(--color-bg-gradient-end) 60%);
            color: var(--color-body-text);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* --- FIRST SECTION: HERO --- */
        .hero-section {
            padding: 130px 0 60px 0;
            width: 100%;
        }

        .hero-title {
            font-weight: 800;
            font-size: 3.2rem;
            line-height: 1.15;
            color: var(--color-primary-navy);
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-weight: 700;
            font-size: 1.15rem;
            line-height: 1.5;
            color: var(--color-sub-navy);
            margin-bottom: 24px;
        }

        .hero-description {
            font-weight: 400;
            font-size: 1.0rem;
            line-height: 1.65;
            color: var(--color-body-text);
            margin-bottom: 40px;
            max-width: 530px;
        }

        .btn-schedule {
            background-color: var(--color-btn-navy);
            color: #ffffff;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            padding: 16px 36px;
            border-radius: 8px;
            text-transform: uppercase;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 59, 104, 0.15);
        }

        .btn-schedule:hover {
            background-color: var(--color-btn-navy-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(26, 59, 104, 0.25);
            color: #ffffff;
        }

        .btn-signup {
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            color: var(--color-btn-navy);
            text-decoration: none;
            padding: 16px 24px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            transition: all 0.2s ease;
        }

        .btn-signup:hover {
            color: var(--color-btn-navy-hover);
            transform: translateX(3px);
        }

        .btn-signup span {
            margin-left: 6px;
            font-size: 0.95rem;
        }

        @keyframes hoverFloat {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        .animated-graphic {
            animation: hoverFloat 6s ease-in-out infinite;
        }

        /* --- SECOND SECTION: METRICS & BENEFITS --- */
        .features-section {
            padding: 40px 0 100px 0;
            background-color: #ffffff;
        }

        .metric-card {
            background-color: var(--color-metric-bg);
            border-radius: 16px;
            padding: 20px 10px;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .metric-card.active-green {
            background-color: var(--color-metric-green);
            color: #ffffff;
        }

        .metric-number {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--color-primary-navy);
            letter-spacing: -0.02em;
        }

        .metric-card.active-green .metric-number {
            color: #ffffff;
        }

        .metric-label {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-sub-navy);
            margin-bottom: 0;
        }

        .metric-card.active-green .metric-label {
            color: #ffffff;
        }

        .benefits-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-primary-navy);
            margin-top: 80px;
            margin-bottom: 50px;
            letter-spacing: -0.01em;
        }

        .benefit-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 18px;
            padding: 35px 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
            border-color: rgba(18, 178, 92, 0.3);
        }

        .benefit-icon-wrapper {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background-color: rgba(18, 178, 92, 0.06);
            margin-bottom: 24px;
            color: var(--color-accent-green);
        }

        .benefit-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-primary-navy);
            margin-bottom: 16px;
        }

        .benefit-card-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-body-text);
            margin-bottom: 0;
        }

        /* --- THIRD SECTION: CORE FEATURES --- */
        .core-features-section {
            background-color: #fafbfc;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .features-header-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-primary-navy);
            margin-bottom: 60px;
            letter-spacing: -0.015em;
        }

        .feature-item {
            position: relative;
            margin-bottom: 40px;
        }

        .feature-item-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-primary-navy);
            margin-bottom: 12px;
        }

        .feature-item-desc {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--color-body-text);
        }

        .feature-divider {
            border: 0;
            border-top: 1px dashed rgba(74, 94, 116, 0.2);
            margin: 30px 0;
        }

        .arrow-pointer-right, .arrow-pointer-left {
            color: #94a3b8;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }

        .feature-item:hover .arrow-pointer-right {
            transform: translateX(4px) translateY(-2px);
            color: var(--color-accent-green);
        }

        .feature-item:hover .arrow-pointer-left {
            transform: translateX(-4px) translateY(-2px);
            color: var(--color-accent-green);
        }

        .graphics-showcase-container {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .organic-green-bg {
            position: absolute;
            z-index: 1;
            width: 100%;
            max-width: 480px;
            opacity: 0.95;
            animation: hoverFloat 8s ease-in-out infinite;
        }

        .smartphone-mockup {
            position: absolute;
            left: 20px;
            bottom: 60px;
            width: 180px;
            background-color: #1e293b;
            border-radius: 28px;
            padding: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            z-index: 3;
            border: 3px solid #475569;
        }

        .smartphone-inner {
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            height: 310px;
            font-size: 0.65rem;
            color: #1e293b;
            padding: 8px;
        }

        .mascot-girl-wrapper {
            position: absolute;
            right: 15px;
            bottom: 20px;
            width: 250px;
            z-index: 4;
            animation: hoverFloat 5s ease-in-out infinite alternate;
        }

        .badge-user-friendly {
            position: absolute;
            top: 25%;
            right: 40px;
            z-index: 5;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
            border-radius: 12px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--color-primary-navy);
        }

        .badge-user-friendly span {
            background: #12b25c;
            color: white;
            border-radius: 6px;
            padding: 2px 6px;
            font-size: 0.75rem;
        }

        .badge-real-time {
            position: absolute;
            bottom: 70px;
            left: 10px;
            z-index: 5;
            background: #0a2e5c;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
            border-radius: 12px;
            padding: 8px 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #ffffff;
        }

        .badge-real-time span {
            background: #0ea5e9;
            border-radius: 6px;
            padding: 2px 6px;
        }

        .badge-no1-billing {
            position: absolute;
            top: 40%;
            right: -10px;
            z-index: 5;
            background: linear-gradient(135deg, #12b25c 0%, #005a2b 100%);
            box-shadow: 0 10px 15px -3px rgba(18, 178, 142, 0.2);
            color: white;
            border-radius: 50%;
            width: 85px;
            height: 85px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.1;
        }

        .badge-no1-billing .no1 {
            font-weight: 800;
            font-size: 1.1rem;
        }

        .badge-no1-billing .subtxt {
            font-size: 0.55rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .deco-icon {
            position: absolute;
            opacity: 0.06;
            z-index: 1;
        }

        /* --- FOURTH SECTION: PROFORMA STEPS --- */
        .proforma-section {
            background-color: #ffffff;
            padding: 100px 0;
        }

        .proforma-title {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--color-primary-navy);
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 440px;
        }

        .step-container {
            margin-bottom: 35px;
        }

        .step-container:last-child {
            margin-bottom: 0;
        }

        .step-label {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--color-primary-navy);
            margin-bottom: 8px;
        }

        .step-description {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--color-body-text);
            max-width: 630px;
            font-weight: 400;
        }

        /* --- FIFTH SECTION: FAQ SECTION --- */
        .faq-section {
            background-color: #f8fafc;
            padding: 100px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.03);
        }

        .faq-tagline {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            color: #64748b;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .faq-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--color-primary-navy);
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .faq-subtitle {
            font-size: 1.05rem;
            color: var(--color-body-text);
            max-width: 820px;
            margin: 0 auto 55px auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .faq-wrapper {
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-card {
            background: #ffffff;
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
            margin-bottom: 20px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .faq-header-btn {
            width: 100%;
            padding: 26px 32px;
            background: none;
            border: none;
            text-align: left;
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s ease-in-out;
        }

        .faq-header-btn:focus {
            outline: none;
            box-shadow: none;
        }

        .faq-header-btn:hover {
            color: var(--color-primary-navy);
        }

        .faq-arrow {
            transition: transform 0.3s ease, color 0.3s ease;
            color: #64748b;
            flex-shrink: 0;
            margin-left: 20px;
        }

        /* Rotate/Animate diagonal arrow when expanded */
        .faq-header-btn[aria-expanded="true"] .faq-arrow {
            transform: rotate(45deg);
            color: var(--color-accent-green);
        }

        .faq-header-btn[aria-expanded="true"] {
            color: var(--color-primary-navy);
        }

        .faq-answer-container {
            border-top: 1px solid rgba(0, 0, 0, 0.02);
        }

        .faq-answer {
            padding: 24px 32px 30px 32px;
            color: var(--color-body-text);
            font-size: 0.95rem;
            line-height: 1.7;
            background-color: #fcfdfe;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 40px 0;
            }
            .hero-title {
                font-size: 2.5rem;
                text-align: center;
            }
            .hero-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-description {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }
            .button-group {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            .graphic-container {
                margin-top: 50px;
            }
            .benefits-title {
                font-size: 1.8rem;
                margin-top: 60px;
            }
            .graphics-showcase-container {
                min-height: 480px;
                margin: 40px 0;
            }
            .smartphone-mockup {
                width: 150px;
                left: 10%;
            }
            .mascot-girl-wrapper {
                width: 210px;
                right: 10%;
            }
            .proforma-section {
                padding: 60px 0;
            }
            .proforma-title {
                font-size: 2.1rem;
                text-align: center;
                max-width: 100%;
                margin-bottom: 45px;
            }
            .step-container {
                padding-left: 15px;
                padding-right: 15px;
            }
            .faq-section {
                padding: 60px 0;
            }
            .faq-title {
                font-size: 2rem;
            }
            .faq-header-btn {
                padding: 20px 24px;
                font-size: 1rem;
            }
            .faq-answer {
                padding: 20px 24px 24px 24px;
            }
        }


/* Desktop */
.mobile-img{
    width:auto;
    max-width:100%;
}

/* Mobile only */
@media (max-width:767px){
    .mobile-img{
        width:300px !important;
        max-width:300px;
        height:auto;
    }
    
     /* --- FIRST SECTION: HERO --- */
        .hero-section {
            padding: 160px 0 60px 0;
            width: 100%;
        }
}

 .metric-card.active-green {
            background-color: green;
            color: #ffffff;
        }
        
        
        /* ===== BRANDS SECTOR SECTION ===== */
 .brands-section {
     padding: 70px 0 35px;
     background-color: #ffffff;
     text-align: center;
     
 }

 .brands-title {
     color: #4b5563;
     font-size: 20px;
     margin-bottom: 0.25rem;
     font-weight: 500;
     letter-spacing: 0.01em;
 }

 .brands-title strong {
     color: #111827;
     font-weight: 700;
 }

 .brands-carousel-container {
     width: 100%;
     overflow: hidden;
     position: relative;
     padding: 20px 0;
     background-color: #fff;
 }

 /* Continuous Scroll Track */
 .brands-track {
     display: flex;
     width: calc(250px * 14);
     /* Approximate width of all logos cloned */
     animation: scroll-brands 30s linear infinite;
     gap: 60px;
     align-items: center;
 }

 .brands-track img {
     height: 45px;
     width: auto;
     object-fit: contain;
     filter: grayscale(100%);
     opacity: 0.6;
     transition: all 0.3s ease;
 }

 .brands-track img:hover {
     filter: grayscale(0%);
     opacity: 1;
     transform: scale(1.05);
 }

 @keyframes scroll-brands {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-250px * 7));
     }
 }

 /* Gradient Overlays for Smooth Fading */
 .brands-carousel-container::before,
 .brands-carousel-container::after {
     content: "";
     position: absolute;
     top: 0;
     width: 150px;
     height: 100%;
     z-index: 2;
 }

 .brands-carousel-container::before {
     left: 0;
     background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
 }

 .brands-carousel-container::after {
     right: 0;
     background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
 }

 @media (max-width: 768px) {
     .brands-track {
         gap: 40px;
         animation: scroll-brands 20s linear infinite;
     }

     .brands-track img {
         height: 35px;
     }

     .brands-carousel-container::before,
     .brands-carousel-container::after {
         width: 50px;
     }
 }


