:root {
            --primary-navy: #19202e;
            --primary-blue: #157fb9;
            --primary-blue-hover: #11699a;
            --accent-cyan: #1c83bb;
            --accent-teal: #01ad97;
            --accent-red: #ff111f;
            --accent-soft-blue: #f0f7fb;
            --accent-green: #25d366;
            --accent-green-hover: #20ba59;
            --text-main: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --border-light: #e2e8f0;
            --border-card: #e5e9f0;
            --bg-page: #f8fafc;
            --bg-card: #ffffff;
            --bg-dark-section: #19202e;
            --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
            --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
            --shadow-float: 0 20px 35px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
            --radius-md: 10px;
            --radius-lg: 14px;
            --radius-xl: 18px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--text-main);
            background-color: var(--bg-page);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
            line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        * {
            -webkit-tap-highlight-color: transparent;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--text-main);
            font-weight: 700;
            letter-spacing: -0.025em;
        }


        .btn-whatsapp {
            background-color: var(--accent-green);
            color: #ffffff !important;
            font-weight: 600;
            font-size: 14px;
            border-radius: 50px;
            padding: 8px 18px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
        }

        .btn-whatsapp:hover {
            background-color: var(--accent-green-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
        }

        .btn-theme-primary {
            background-color: var(--primary-blue);
            color: #ffffff !important;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            padding: 9px 20px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 3px 10px rgba(21, 127, 185, 0.25);
        }

        .btn-theme-primary:hover {
            background-color: var(--primary-blue-hover);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(21, 127, 185, 0.32);
        }

        /* Hero Section with UAE Full-Width Background & Deep Blue Overlay */
        .hero-section {
            background: linear-gradient(135deg, rgba(16, 23, 38, 0.95) 0%, rgba(21, 127, 185, 0.88) 52%, rgba(11, 89, 137, 0.96) 100%),
                url('../img/hero-uae-bg.jpg') center center / cover no-repeat;
            padding: 38px 0 44px 0;
            position: relative;
            color: #ffffff;
            margin-top:85px;
        }
        @media (max-width: 991px){
            .hero-section{
                margin-top:0px;
            }
        }
        @media (max-width: 767.98px) {
            .hero-section {
                padding: 30px 0 36px 0;
            }
        }

        .eyebrow-tag {
            display: inline-block;
            color: #38bdf8;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 10px;
            background: rgba(56, 189, 248, 0.12);
            border: 1px solid rgba(56, 189, 248, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
        }

        .hero-title {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.18;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.03em;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 30px;
            }
        }

        .hero-subhead {
            font-size: 15.5px;
            line-height: 1.55;
            color: #e2e8f0;
            margin-bottom: 18px;
            max-width: 580px;
        }

        .trust-chips-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            margin-bottom: 20px;
        }

        .trust-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: #ffffff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .trust-chip .chip-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: #38bdf8;
            box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-bottom: 0;
        }

        .hero-cta-primary {
            background-color: var(--primary-blue);
            color: #ffffff !important;
            font-weight: 700;
            font-size: 14px;
            border-radius: 7px;
            padding: 10px 22px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 14px rgba(21, 127, 185, 0.45);
        }

        .hero-cta-primary:hover {
            background-color: var(--primary-blue-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(21, 127, 185, 0.55);
        }

        .hero-cta-whatsapp {
            background-color: var(--accent-green);
            color: #ffffff !important;
            font-weight: 700;
            font-size: 14px;
            border-radius: 7px;
            padding: 10px 20px;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
        }

        .hero-cta-whatsapp:hover {
            background-color: var(--accent-green-hover);
            transform: translateY(-1px);
        }

        /* Hero Swiper Styles */
        .hero-swiper {
            width: 100%;
            overflow: hidden;
            padding: 0 0 6px 0;
        }

        .hero-swiper-slide {
            height: auto;
            opacity: 0 !important;
            transition: opacity 0.4s ease;
        }

        .hero-swiper-slide.swiper-slide-active {
            opacity: 1 !important;
        }

        .hero-swiper-controls {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            padding-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
        }

        .hero-swiper-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .hero-swiper-nav-btn:hover {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(21, 127, 185, 0.4);
        }

        .hero-swiper-pagination {
            position: static !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            width: auto !important;
        }

        .hero-swiper-pagination .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.35);
            opacity: 1;
            border-radius: 20px;
            transition: all 0.25s ease;
            margin: 0 !important;
            cursor: pointer;
        }

        .hero-swiper-pagination .swiper-pagination-bullet-active {
            background: #38bdf8;
            width: 24px;
        }

        .slide-motif-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(56, 189, 248, 0.15);
            border: 1px solid rgba(56, 189, 248, 0.35);
            color: #38bdf8;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }

        /* Lead Form Card (Right Side) */
        .lead-form-card {
            background: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.48), 0 8px 20px -4px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .lead-form-card .form-heading {
            font-size: 19px;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 13px;
            letter-spacing: -0.02em;
        }

        .form-floating-custom {
            margin-bottom: 10px;
            position: relative;
        }

        .form-floating-custom label {
            display: block;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 3px;
        }

        .form-floating-custom .form-control,
        .form-floating-custom .form-select {
            display: block;
            width: 100%;
            height: 38px;
            border-radius: 6px;
            border: 1px solid #cbd5e1!important;
            font-size: 13px;
            color: var(--text-main);
            padding: 6px 10px;
            background-color: #fdfdfe;
            transition: border-color 0.15s ease, box-shadow 0.15s ease;
        }

        .form-floating-custom .form-control:focus,
        .form-floating-custom .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(21, 127, 185, 0.15);
            background-color: #ffffff;
            outline: none;
        }

        .phone-group-wrapper {
            display: flex;
            gap: 7px;
            width: 100%;
        }

        .phone-prefix-addon {
            flex: 0 0 72px;
            background-color: #f1f5f9;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .consent-text-row {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 8px;
            margin-bottom: 12px;
        }

        .consent-text-row input[type="checkbox"] {
            margin-top: 2.5px;
            width: 14px;
            height: 14px;
            accent-color: var(--primary-blue);
            cursor: pointer;
        }

        .consent-label {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.4;
            cursor: pointer;
            margin-bottom: 0;
        }

        .btn-submit-form {
            width: 100%;
            height: 42px;
            background: linear-gradient(180deg, #157fb9 0%, #0b5989 100%);
            color: #ffffff;
            font-weight: 700;
            font-size: 14.5px;
            border-radius: 7px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 4px 14px rgba(21, 127, 185, 0.35);
            transition: all 0.2s;
            cursor: pointer;
        }

        .btn-submit-form:hover {
            background: linear-gradient(180deg, #11699a 0%, #145285 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(21, 127, 185, 0.42);
        }

        .validation-error {
            color: #dc2626;
            font-size: 11.5px;
            margin-top: 4px;
            display: none;
            font-weight: 500;
        }

        .form-success-banner {
            display: none;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            color: #065f46;
            padding: 14px;
            border-radius: 8px;
            font-size: 13.5px;
            margin-bottom: 14px;
            text-align: center;
        }

        /* 3. Logo / Trust Strip */
        .trust-strip-section {
            background: #ffffff;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            padding: 24px 0;
        }

        .partner-badge-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 13.5px;
            color: var(--primary-navy);
            padding: 6px 12px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
        }

        .partner-badge-icon {
            color: var(--primary-blue);
            display: flex;
            align-items: center;
        }

        .client-logo-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px 28px;
        }

        .client-logo-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 68px;
            padding: 0 4px;
            transition: all 0.25s ease;
        }

        .client-logo-item:hover {
            transform: translateY(-2px);
        }

        .client-logo-img {
            max-height: 64px;
            max-width: 155px;
            width: auto;
            height: auto;
            object-fit: contain;
            mix-blend-mode: multiply;
            transition: transform 0.25s ease;
        }

        .client-logo-item:hover .client-logo-img {
            transform: scale(1.05);
        }

        .trust-strip-caption {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-muted);
            text-align: right;
        }

        @media (max-width: 991.98px) {
            .trust-strip-caption {
                text-align: left;
                margin-top: 10px;
            }
        }

        /* Section Global Styles */
        .page-section {
            padding: 80px 0;
            position: relative;
        }

        .section-eyebrow {
            display: block;
            text-align: center;
            color: var(--primary-blue);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-heading {
            text-align: center;
            font-size: 34px;
            font-weight: 800;
            color: var(--primary-navy);
            margin-bottom: 48px;
            letter-spacing: -0.03em;
        }

        @media (max-width: 767.98px) {
            .page-section {
                padding: 56px 0;
            }

            .section-heading {
                font-size: 26px;
                margin-bottom: 32px;
            }
        }

        /* 4. Problem Block ("Is This You?") - Executive Light Canvas */
        #problemSection {
            background-color: #f6fafe;
            background-image:
                radial-gradient(circle at 50% -20%, #e0f0fa 0%, rgba(246, 250, 254, 0.7) 50%, #f6fafe 100%);
            border-top: 1px solid #e1edf5;
            border-bottom: 1px solid #e1edf5;
            position: relative;
        }

        #problemSection .section-eyebrow {
            color: var(--primary-blue);
            background: #e6f3fa;
            border: 1px solid #cce5f5;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
        }

        #problemSection .section-heading {
            color: var(--primary-navy);
        }

        .problem-card {
            background: #ffffff;
            border: 1px solid #dbe7f2;
            border-top: 3.5px solid var(--primary-blue);
            border-radius: var(--radius-lg);
            padding: 28px 24px 22px 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 16px -2px rgba(21, 127, 185, 0.06), 0 2px 6px -1px rgba(25, 32, 46, 0.04);
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            border-color: #b2d7ef;
            border-top-color: var(--primary-blue-hover);
            box-shadow: 0 16px 32px -4px rgba(21, 127, 185, 0.14), 0 6px 12px -2px rgba(25, 32, 46, 0.04);
        }

        .problem-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .problem-num {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 0.08em;
            background: #edf6fb;
            border: 1px solid #d4eaf7;
            padding: 3px 10px;
            border-radius: 6px;
        }

        .problem-quote-icon {
            color: #94a3b8;
            display: flex;
            align-items: center;
            transition: all 0.25s ease;
        }

        .problem-card:hover .problem-quote-icon {
            color: var(--primary-blue);
            transform: scale(1.1);
        }

        .problem-card-text {
            font-size: 15.5px;
            font-weight: 600;
            color: var(--primary-navy);
            line-height: 1.58;
            margin-bottom: 22px;
            position: relative;
            flex-grow: 1;
        }

        .problem-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 11.5px;
            font-weight: 600;
            color: #475569;
            background: #f3f7fa;
            border: 1px solid #e1ebf2;
            padding: 4px 11px;
            border-radius: 6px;
            width: fit-content;
            transition: all 0.2s ease;
        }

        .problem-card:hover .problem-chip {
            color: var(--primary-blue);
            border-color: #c4e1f4;
            background: #e9f4fb;
        }

        .problem-chip::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary-blue);
            box-shadow: 0 0 6px rgba(21, 127, 185, 0.4);
        }

        /* 5. Capability Cards (Solution Block) - Corporate Premium */
        #solutionSection {
            background-color: #ffffff;
            position: relative;
        }

        #solutionSection .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
        }

        #solutionSection [class*="col-"] {
            margin-bottom: 28px;
            display: flex;
            flex-direction: column;
        }

        .capability-card {
            background: #ffffff;
            border: 1px solid #e1eaf1;
            border-radius: var(--radius-lg);
            padding: 32px 28px 30px 28px;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 18px -2px rgba(25, 32, 46, 0.05);
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .capability-card:hover {
            border-color: #aed5ee;
            box-shadow: 0 16px 36px -4px rgba(21, 127, 185, 0.14), 0 4px 12px rgba(25, 32, 46, 0.03);
            transform: translateY(-5px);
        }

        .cap-icon-box {
            width: 58px;
            height: 58px;
            border-radius: 14px;
            background: linear-gradient(135deg, #edf6fb 0%, #e1f1fa 100%);
            border: 1px solid #d4ebf8;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            transition: all 0.25s ease;
        }

        .capability-card:hover .cap-icon-box {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: scale(1.06);
            box-shadow: 0 8px 18px rgba(21, 127, 185, 0.28);
        }

        .cap-card-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 12px;
            letter-spacing: -0.015em;
        }

        .cap-card-desc {
            font-size: 14.5px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .cap-proof-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-blue);
            background: #f1f8fc;
            border: 1px solid #d6ecf8;
            padding: 6px 14px;
            border-radius: 20px;
            align-self: flex-start;
            transition: all 0.2s ease;
        }

        .capability-card:hover .cap-proof-pill {
            background: #e5f3fb;
            border-color: #bfe0f5;
        }

        .cap-proof-pill svg {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        /* 6. Why Bounce Back Comparison Table - Light Blue Variant */
        #whyBounceBack {
            background-color: #f1f7fc;
            background-image:
                radial-gradient(ellipse at 50% 0%, #e1f0fa 0%, rgba(241, 247, 252, 0.75) 50%, #eaf4fb 100%);
            border-top: 1px solid #d9eaf5;
            border-bottom: 1px solid #d9eaf5;
        }

        #whyBounceBack .section-eyebrow {
            color: var(--primary-blue);
            background: #ffffff;
            border: 1px solid #c8e2f4;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(21, 127, 185, 0.08);
        }

        .comparison-table-wrapper {
            background: #ffffff;
            border: 1px solid #d5e6f3;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 36px -6px rgba(21, 127, 185, 0.1), 0 4px 12px -2px rgba(25, 32, 46, 0.04);
            margin-top: 10px;
        }

        .table-modern {
            width: 100%;
            margin-bottom: 0;
            border-collapse: separate;
            border-spacing: 0;
            min-width: 760px;
        }

        /* Modern Table Headers */
        .table-modern thead th {
            padding: 24px 22px;
            vertical-align: bottom;
            border-bottom: 2px solid #e1edf6;
            background: #ffffff;
        }

        .table-modern thead th.col-feature {
            width: 26%;
            background: #ffffff;
            padding-left: 28px;
        }

        .table-modern thead th.col-feature .th-label {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #64748b;
        }

        /* Featured Bounce Back Header Column */
        .table-modern thead th.col-bounceback {
            width: 36%;
            background: linear-gradient(180deg, #157fb9 0%, #0e679c 100%);
            color: #ffffff;
            position: relative;
            box-shadow: 0 -4px 16px rgba(21, 127, 185, 0.15);
            border-top: none;
            padding: 24px 24px 22px 24px;
        }

        .bounceback-badge {
            display: inline-block;
            font-size: 10.5px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.22);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .th-brand-title {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }

        .th-brand-sub {
            font-size: 12.5px;
            opacity: 0.88;
            font-weight: 400;
        }

        /* Competitor Headers */
        .table-modern thead th.col-direct {
            width: 19%;
            background: #f8fbfe;
            border-left: 1px solid #e5eff6;
        }

        .table-modern thead th.col-reseller {
            width: 19%;
            background: #f8fbfe;
            border-left: 1px solid #e5eff6;
            padding-right: 28px;
        }

        .th-competitor-title {
            font-size: 15.5px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 4px;
        }

        .th-competitor-sub {
            font-size: 12px;
            color: #64748b;
            font-weight: 400;
        }

        /* Table Body */
        .table-modern tbody tr {
            border-bottom: 1px solid #eaf2f8;
            transition: background-color 0.2s ease;
        }

        .table-modern tbody tr:last-child {
            border-bottom: none;
        }

        .table-modern tbody tr:hover {
            background-color: #f7fbfe;
        }

        .table-modern tbody td {
            padding: 20px 22px;
            vertical-align: middle;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Feature Title Column */
        .table-modern tbody td.feature-title {
            padding-left: 28px;
            background: #ffffff;
        }

        .feature-name {
            display: block;
            font-size: 14.5px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 2px;
        }

        .feature-hint {
            display: block;
            font-size: 12px;
            color: #64748b;
        }

        /* Featured Bounce Back Column Cells */
        .table-modern tbody td.cell-bounceback {
            background: #f1f8fc;
            border-left: 2px solid #157fb9;
            border-right: 2px solid #157fb9;
            padding: 20px 24px;
        }

        .table-modern tbody tr:hover td.cell-bounceback {
            background: #e7f4fb;
        }

        .table-modern tbody tr:last-child td.cell-bounceback {
            border-bottom: 2px solid #157fb9;
        }

        /* Cell Content Layout */
        .cell-content {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .cell-text {
            flex: 1;
        }

        .cell-bounceback .cell-text {
            font-weight: 600;
            color: #0b4f77;
        }

        /* Cell Status Icons */
        .cell-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .cell-icon.icon-success {
            background: #d4eaf7;
            color: #157fb9;
        }

        .cell-icon.icon-negative {
            background: #fee2e2;
            color: #ef4444;
        }

        .cell-icon.icon-neutral {
            background: #f1f5f9;
            color: #94a3b8;
        }

        /* Competitor Cells */
        .table-modern tbody td.cell-direct {
            color: #475569;
            border-left: 1px solid #edf4f9;
        }

        .table-modern tbody td.cell-reseller {
            color: #475569;
            border-left: 1px solid #edf4f9;
            padding-right: 28px;
        }

        /* Scrollbar Styling */
        .table-responsive::-webkit-scrollbar {
            height: 7px;
        }

        .table-responsive::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .table-responsive::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        .table-responsive::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        @media (max-width: 991.98px) {
            .table-modern thead th {
                padding: 18px 16px;
            }

            .table-modern tbody td {
                padding: 16px 16px;
            }

            .table-modern thead th.col-feature,
            .table-modern tbody td.feature-title {
                padding-left: 18px;
            }

            .table-modern thead th.col-reseller,
            .table-modern tbody td.cell-reseller {
                padding-right: 18px;
            }
        }

        /* 7. Industry Use Cases - Modern Corporate */
        #industries {
            background-color: #ffffff;
            position: relative;
        }

        #industries .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
        }

        .industry-card {
            background: #ffffff;
            border: 1px solid #e1eaf1;
            border-top: 3.5px solid var(--primary-blue);
            border-radius: var(--radius-lg);
            padding: 32px 28px 26px 28px;
            height: 100%;
            box-shadow: 0 4px 18px -2px rgba(25, 32, 46, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px -4px rgba(21, 127, 185, 0.14), 0 4px 12px rgba(25, 32, 46, 0.03);
            border-color: #aed5ee;
            border-top-color: var(--primary-blue-hover);
        }

        .industry-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .industry-icon-box {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background: linear-gradient(135deg, #edf6fb 0%, #e1f1fa 100%);
            border: 1px solid #d4ebf8;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }

        .industry-card:hover .industry-icon-box {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: scale(1.06);
            box-shadow: 0 8px 18px rgba(21, 127, 185, 0.25);
        }

        .industry-tag-badge {
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--primary-blue);
            background: #f0f7fb;
            border: 1px solid #d8ecf8;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .industry-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 12px;
            letter-spacing: -0.015em;
        }

        .industry-text {
            font-size: 14.5px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .industry-outcome-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            color: #0c4a6e;
            background: #f1f8fc;
            border: 1px solid #d6ecf8;
            padding: 6px 14px;
            border-radius: 20px;
            align-self: flex-start;
            transition: all 0.2s ease;
        }

        .industry-card:hover .industry-outcome-pill {
            background: #e5f3fb;
            border-color: #bfe0f5;
            color: var(--primary-blue);
        }

        .industry-outcome-pill svg {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        /* 7b. Enterprise Readiness (Dark Governance Section) */
        .enterprise-section {
            background-color: var(--bg-dark-section);
            color: #ffffff;
            padding: 84px 0;
            position: relative;
        }

        .enterprise-section .section-eyebrow {
            color: #38bdf8;
            background: rgba(56, 189, 248, 0.12);
            border: 1px solid rgba(56, 189, 248, 0.28);
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            font-size: 11.5px;
        }

        .enterprise-section .section-heading {
            color: #ffffff;
            margin-bottom: 36px;
        }

        #enterpriseReadiness [class*="col-"] {
            margin-bottom: 28px;
        }

        .readiness-grid-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.085);
            border-radius: var(--radius-lg);
            padding: 26px 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
            transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .readiness-grid-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.065);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
        }

        /* Odd cards - Premium enhanced corporate gradient & cyan highlight */
        #enterpriseReadiness [class*="col-"]:nth-child(odd) .readiness-grid-card {
            background: linear-gradient(145deg, rgba(21, 127, 185, 0.16) 0%, rgba(20, 27, 39, 0.7) 100%);
            border: 1px solid rgba(56, 189, 248, 0.26);
            border-top: 2.5px solid rgba(56, 189, 248, 0.65);
            box-shadow: 0 6px 20px -2px rgba(0, 0, 0, 0.35);
        }

        #enterpriseReadiness [class*="col-"]:nth-child(odd) .readiness-grid-card:hover {
            transform: translateY(-4px);
            background: linear-gradient(145deg, rgba(21, 127, 185, 0.24) 0%, rgba(20, 27, 39, 0.85) 100%);
            border-color: rgba(56, 189, 248, 0.45);
            border-top-color: #38bdf8;
            box-shadow: 0 14px 32px -4px rgba(0, 0, 0, 0.45), 0 0 20px rgba(21, 127, 185, 0.2);
        }

        .readiness-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.01em;
        }

        .readiness-title-icon {
            color: #38bdf8;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        .readiness-grid-card:hover .readiness-title-icon {
            transform: scale(1.1);
        }

        .readiness-desc {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* 8. Pricing / Licensing Explainer */
        #pricingSection {
            background: radial-gradient(circle at 50% 10%, #f0f7fb 0%, #f8fafc 70%);
            padding: 86px 0;
            position: relative;
        }

        #pricingSection .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            font-size: 11.5px;
        }

        .pricing-header-sub {
            font-size: 16.5px;
            color: #475569;
            max-width: 820px;
            margin: 0 auto;
            line-height: 1.65;
        }

        #pricingSection [class*="col-"] {
            margin-bottom: 24px;
        }

        @media (min-width: 992px) {
            #pricingSection [class*="col-"] {
                margin-bottom: 0;
            }
        }

        .pricing-model-card {
            background: #ffffff;
            border: 1px solid #dce8f2;
            border-top: 3.5px solid var(--primary-blue);
            border-radius: var(--radius-lg);
            padding: 32px 26px 26px 26px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 18px -2px rgba(25, 32, 46, 0.05);
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .pricing-model-card:hover {
            transform: translateY(-5px);
            border-color: #bfe0f5;
            box-shadow: 0 16px 36px -4px rgba(21, 127, 185, 0.14), 0 4px 12px rgba(25, 32, 46, 0.03);
        }

        .pricing-model-card.featured-model {
            border-color: #b5dcf6;
            box-shadow: 0 8px 26px -2px rgba(21, 127, 185, 0.12);
        }

        .featured-model-badge {
            position: absolute;
            top: -12px;
            right: 22px;
            background: linear-gradient(135deg, #157fb9 0%, #0c6394 100%);
            color: #ffffff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.06em;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(21, 127, 185, 0.35);
            text-transform: uppercase;
        }

        .pricing-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .pricing-icon-box {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, #edf6fb 0%, #e1f1fa 100%);
            border: 1px solid #d4ebf8;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }

        .pricing-model-card:hover .pricing-icon-box {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: scale(1.06);
            box-shadow: 0 6px 16px rgba(21, 127, 185, 0.25);
        }

        .pricing-model-badge {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--primary-blue);
            background: #f0f7fb;
            border: 1px solid #d8ecf8;
            padding: 4px 12px;
            border-radius: 20px;
        }

        .pricing-model-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 6px;
            letter-spacing: -0.015em;
        }

        .pricing-model-subtitle {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .pricing-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            flex-grow: 1;
        }

        .pricing-feature-list li {
            font-size: 13.5px;
            color: #334155;
            line-height: 1.55;
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin-bottom: 12px;
        }

        .pricing-feature-list li svg {
            color: var(--primary-blue);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .pricing-best-for {
            border-top: 1px solid #eef3f7;
            padding-top: 14px;
            font-size: 12px;
            color: #64748b;
        }

        .pricing-best-for strong {
            color: var(--primary-navy);
            font-weight: 600;
        }

        /* Pricing Turnkey Package Box */
        .pricing-turnkey-wrapper {
            background: #ffffff;
            border: 1px solid #dce7f0;
            border-radius: var(--radius-xl);
            padding: 34px 38px;
            box-shadow: 0 10px 30px -4px rgba(25, 32, 46, 0.07);
            margin-top: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 28px;
            position: relative;
            overflow: hidden;
        }

        .pricing-turnkey-wrapper::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, var(--primary-blue) 0%, #38bdf8 100%);
        }

        .pricing-turnkey-content {
            max-width: 620px;
        }

        .pricing-turnkey-badge {
            display: inline-block;
            background: #eef7fc;
            border: 1px solid #cae4f7;
            color: #0c5784;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 3px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .pricing-turnkey-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 10px;
            letter-spacing: -0.015em;
        }

        .pricing-turnkey-desc {
            font-size: 14px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .pricing-bundle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
        }

        @media (max-width: 575.98px) {
            .pricing-bundle-grid {
                grid-template-columns: 1fr;
            }
        }

        .pricing-bundle-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            font-weight: 600;
            color: #334155;
        }

        .pricing-bundle-item svg {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .pricing-turnkey-action {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
            gap: 10px;
        }

        @media (max-width: 991.98px) {
            .pricing-turnkey-action {
                align-items: flex-start;
                width: 100%;
            }
        }

        .pricing-turnkey-note {
            font-size: 12px;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 9. Implementation & Support ("HOW WE DELIVER") Corporate Style */
        #implementation {
            background-color: #ffffff;
            padding: 80px 0;
            position: relative;
        }

        #implementation .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            font-size: 11.5px;
        }

        .delivery-process-grid {
            position: relative;
            margin-top: 10px;
        }

        @media (min-width: 992px) {
            .delivery-process-grid::before {
                content: '';
                position: absolute;
                top: 48px;
                left: 7%;
                right: 7%;
                height: 2px;
                background: linear-gradient(90deg, #e2e8f0 0%, #cae2f5 30%, #cae2f5 70%, #e2e8f0 100%);
                z-index: 1;
            }
        }

        .process-step-card {
            background: #ffffff;
            border: 1px solid #e2eaf1;
            border-top: 3.5px solid var(--primary-blue);
            border-radius: var(--radius-lg);
            padding: 28px 24px 30px 24px;
            height: 100%;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 18px -2px rgba(25, 32, 46, 0.05);
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .process-step-card:hover {
            transform: translateY(-5px);
            border-color: #bfe0f5;
            box-shadow: 0 16px 36px -4px rgba(21, 127, 185, 0.14), 0 4px 12px rgba(25, 32, 46, 0.03);
        }

        .step-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .step-num-badge {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #edf6fb 0%, #e1f1fa 100%);
            border: 1px solid #cde5f6;
            color: var(--primary-blue);
            font-size: 16px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-variant-numeric: tabular-nums;
            transition: all 0.25s ease;
        }

        .process-step-card:hover .step-num-badge {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(21, 127, 185, 0.25);
        }

        .step-icon-box {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }

        .process-step-card:hover .step-icon-box {
            color: var(--primary-blue);
            border-color: #cde5f6;
            background: #edf6fb;
        }

        .step-name {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 12px;
            letter-spacing: -0.015em;
        }

        .step-desc {
            font-size: 13.5px;
            color: #475569;
            line-height: 1.65;
            margin-bottom: 0;
            flex-grow: 1;
        }

        /* 10. Social Proof 2x2 Grid */
        #socialProof {
            background-color: #f8fafc;
            padding: 85px 0;
            position: relative;
        }

        #socialProof .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            font-size: 11.5px;
        }

        .social-proof-card {
            background: #ffffff;
            border: 1px solid #e2eaf1;
            border-radius: var(--radius-lg);
            padding: 30px 28px;
            height: 100%;
            box-shadow: 0 4px 18px -2px rgba(25, 32, 46, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .social-proof-card:hover {
            transform: translateY(-4px);
            border-color: #bfe0f5;
            box-shadow: 0 16px 36px -4px rgba(21, 127, 185, 0.12), 0 4px 12px rgba(25, 32, 46, 0.03);
        }

        .proof-client-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .proof-client-meta {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .client-avatar-badge {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #edf6fb 0%, #e1f1fa 100%);
            border: 1.5px solid #cce5f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--primary-blue);
            font-size: 16px;
            letter-spacing: 0.04em;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        .social-proof-card:hover .client-avatar-badge {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(21, 127, 185, 0.25);
            transform: scale(1.04);
        }

        .client-name-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 4px;
            letter-spacing: -0.01em;
        }

        .client-verified-tag {
            font-size: 11.5px;
            color: #059669;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #ecfdf5;
            border: 1px solid #d1fae5;
            padding: 2px 10px;
            border-radius: 12px;
        }

        .proof-quote-icon {
            color: #d0e2ef;
            transition: color 0.25s ease;
        }

        .social-proof-card:hover .proof-quote-icon {
            color: #93c5fd;
        }

        .proof-factual-quote-box {
            background: #f8fbfe;
            border-left: 3.5px solid var(--primary-blue);
            border-radius: 0 10px 10px 0;
            padding: 16px 20px;
            margin-top: 4px;
        }

        .proof-factual-quote {
            font-size: 14.5px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0;
            line-height: 1.55;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .proof-factual-quote svg {
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        /* 11. FAQ Accordion */
        #faqSection {
            background-color: #ffffff;
            padding: 85px 0;
            position: relative;
        }

        #faqSection .section-eyebrow {
            color: var(--primary-blue);
            background: #edf6fb;
            border: 1px solid #d0e7f7;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
            letter-spacing: 0.12em;
            font-weight: 700;
            font-size: 11.5px;
        }

        .faq-wrapper {
            max-width: 860px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #e2eaf1;
            border-left: 4px solid transparent;
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: 0 3px 12px -2px rgba(25, 32, 46, 0.04);
            transition: border-color 0.3s ease, border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .faq-item:hover {
            border-color: #bfe0f5;
            box-shadow: 0 10px 28px -4px rgba(21, 127, 185, 0.10);
            transform: translateY(-2px);
        }

        .faq-item.active {
            border-color: #a8d5f2;
            border-left-color: var(--primary-blue);
            box-shadow: 0 12px 32px -4px rgba(21, 127, 185, 0.12);
        }

        .faq-question-btn {
            width: 100%;
            background: transparent;
            border: none;
            outline: none !important;
            box-shadow: none !important;
            padding: 22px 26px;
            text-align: left;
            font-size: 16.5px;
            font-weight: 700;
            color: var(--primary-navy);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            cursor: pointer;
            transition: color 0.25s ease, padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            -webkit-tap-highlight-color: transparent;
        }

        .faq-question-btn:focus,
        .faq-question-btn:focus-visible,
        .faq-question-btn:active {
            outline: none !important;
            box-shadow: none !important;
        }

        .faq-question-btn:hover {
            color: var(--primary-blue);
        }

        .faq-item.active .faq-question-btn {
            color: var(--primary-blue);
            padding-bottom: 14px;
        }

        .faq-chevron-box {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #edf6fb;
            border: 1px solid #d4ebf8;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-chevron {
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item:hover .faq-chevron-box {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
            transform: scale(1.06);
        }

        .faq-item.active .faq-chevron-box {
            background: var(--primary-blue);
            color: #ffffff;
            border-color: var(--primary-blue);
        }

        .faq-item.active .faq-chevron {
            transform: rotate(180deg);
        }

        /* Smooth CSS Grid Transition for Answer */
        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
            opacity: 0;
            visibility: hidden;
        }

        .faq-item.active .faq-answer {
            grid-template-rows: 1fr;
            opacity: 1;
            visibility: visible;
        }

        .faq-answer-inner {
            overflow: hidden;
            font-size: 14.5px;
            color: #475569;
            line-height: 1.65;
            padding: 0 26px 0 26px;
            transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item.active .faq-answer-inner {
            padding: 0 26px 24px 26px;
        }

        /* 12. Final CTA Band with UAE Enterprise Cloud Infrastructure Image Background & Deep Overlay */
        .final-cta-section {
            background:
                linear-gradient(180deg, #0b1320 0%, rgba(13, 22, 37, 0.88) 45%, rgba(10, 16, 26, 0.95) 100%),
                url('../img/cta-bg.jpg') center center / cover no-repeat;
            color: #ffffff;
            padding: 95px 0;
            border-top: 1px solid rgba(56, 189, 248, 0.22);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 35%, rgba(21, 127, 185, 0.24) 0%, transparent 65%);
            pointer-events: none;
        }

        .final-cta-section .container {
            position: relative;
            z-index: 2;
        }

        /* Live Advisory Eyebrow with Pulsing Indicator */
        .final-cta-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #38bdf8;
            background: rgba(14, 165, 233, 0.12);
            border: 1px solid rgba(56, 189, 248, 0.35);
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 22px;
            box-shadow: 0 2px 10px rgba(56, 189, 248, 0.15);
        }

        .final-cta-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #38bdf8;
            position: relative;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
            animation: cta-beacon-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
        }

        @keyframes cta-beacon-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.8);
            }

            70% {
                box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
            }
        }

        .final-cta-heading {
            font-size: 36px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.028em;
            line-height: 1.22;
            max-width: 840px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
        }

        .final-cta-highlight {
            background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 45%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .final-cta-sub {
            font-size: 16.5px;
            color: #cbd5e1;
            margin-bottom: 28px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.65;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
        }

        /* Frosted Glass Trust Chips */
        .final-cta-trust-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px 18px;
            margin-bottom: 38px;
        }

        .final-cta-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #e2e8f0;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            padding: 7px 18px;
            border-radius: 30px;
            backdrop-filter: blur(6px);
            transition: all 0.25s ease;
        }

        .final-cta-tag:hover {
            background: rgba(56, 189, 248, 0.12);
            border-color: rgba(56, 189, 248, 0.4);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .final-cta-tag svg {
            color: #38bdf8;
            flex-shrink: 0;
        }

        .contact-quick-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 18px;
        }

        /* 1. Request a Quote - Primary Vibrant Blue with Dynamic Shimmer */
        .btn-cta-quote {
            background: linear-gradient(135deg, #157fb9 0%, #0369a1 100%);
            color: #ffffff !important;
            padding: 13px 28px;
            border-radius: 14px;
            font-size: 15.5px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow:
                0 8px 24px -4px rgba(21, 127, 185, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.22);
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-cta-quote::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transform: skewX(-20deg);
            transition: left 0.6s ease;
        }

        .btn-cta-quote:hover::after {
            left: 150%;
        }

        .btn-cta-quote svg {
            transition: transform 0.25s ease;
        }

        .btn-cta-quote:hover {
            background: linear-gradient(135deg, #1994d6 0%, #0284c7 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 14px 34px -4px rgba(21, 127, 185, 0.65),
                0 0 20px rgba(56, 189, 248, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.45);
            color: #ffffff !important;
        }

        .btn-cta-quote:hover svg {
            transform: translateX(4px) translateY(-1px);
        }

        /* 2. Highlighted Direct Phone Button - Pure White Luxury Tech Card */
        .btn-cta-phone {
            background: #ffffff;
            color: #0f172a !important;
            padding: 9px 22px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 2px solid #38bdf8;
            box-shadow:
                0 8px 26px -4px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(56, 189, 248, 0.28);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-cta-phone:hover {
            background: #ffffff;
            border-color: #0284c7;
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 16px 38px -4px rgba(56, 189, 248, 0.5),
                0 0 26px rgba(56, 189, 248, 0.4);
            color: #0f172a !important;
        }

        .btn-cta-phone-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #e0f2fe;
            color: #0284c7;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.25s ease;
        }

        .btn-cta-phone:hover .btn-cta-phone-icon {
            background: #0284c7;
            color: #ffffff;
            transform: scale(1.1) rotate(-6deg);
        }

        .btn-cta-phone-label {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.25;
        }

        .btn-cta-phone-label small {
            font-size: 10px;
            font-weight: 700;
            color: #0284c7;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .btn-cta-phone-label strong {
            font-size: 15.5px;
            font-weight: 800;
            color: var(--primary-navy);
            font-variant-numeric: tabular-nums;
        }

        /* 3. WhatsApp Button - Emerald Gradient with Inset Glow */
        .btn-cta-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff !important;
            padding: 13px 24px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow:
                0 8px 24px -4px rgba(37, 211, 102, 0.45),
                inset 0 1px 1px rgba(255, 255, 255, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-cta-whatsapp svg {
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }

        .btn-cta-whatsapp:hover {
            background: linear-gradient(135deg, #2ae06d 0%, #1cb465 100%);
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 14px 32px -4px rgba(37, 211, 102, 0.6),
                0 0 22px rgba(37, 211, 102, 0.35),
                inset 0 1px 2px rgba(255, 255, 255, 0.45);
            color: #ffffff !important;
        }

        .btn-cta-whatsapp:hover svg {
            transform: scale(1.12) rotate(6deg);
        }

        /* -------------------------------------------------------------
           Native App Feeling & Touch Interaction Feedback
        ------------------------------------------------------------- */
        button:active,
        .btn:active,
        .hero-cta-primary:active,
        .hero-cta-whatsapp:active,
        .btn-submit-form:active,
        .btn-cta-quote:active,
        .btn-cta-phone:active,
        .btn-cta-whatsapp:active,
        .faq-question-btn:active,
        .hero-swiper-nav-btn:active,
        .dock-action-btn:active,
        .problem-card:active,
        .capability-card:active,
        .pricing-model-card:active {
            transform: scale(0.975) !important;
            transition: transform 0.08s ease-in-out !important;
        }

        /* -------------------------------------------------------------
           Table Touch & Mobile Horizontal Swipe Indicator
        ------------------------------------------------------------- */
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior-x: contain;
        }

        .table-mobile-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 9px 14px;
            background: #eef7fc;
            border: 1px solid #cde5f6;
            border-radius: 8px;
            margin-bottom: 14px;
            color: var(--primary-blue);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .table-mobile-hint svg {
            animation: hint-swipe 1.6s ease-in-out infinite;
        }

        @keyframes hint-swipe {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(3px);
            }
        }

        /* -------------------------------------------------------------
           Mobile Sticky Action Dock ("App Feeling" on < 768px)
        ------------------------------------------------------------- */
        .mobile-app-dock {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            background: rgba(15, 23, 42, 0.94);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-top: 1px solid rgba(56, 189, 248, 0.28);
            padding: 8px 12px max(8px, env(safe-area-inset-bottom)) 12px;
            box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
            display: none;
        }

        @media (max-width: 767.98px) {
            body {
                padding-bottom: 74px !important;
            }

            .mobile-app-dock {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 8px;
            }
        }

        .dock-action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 10px;
            padding: 6px 10px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.02em;
            transition: all 0.2s ease;
            gap: 2px;
            flex: 1;
            text-align: center;
            border: 1px solid transparent;
            min-height: 48px;
        }

        .dock-btn-call {
            background: rgba(255, 255, 255, 0.09);
            border-color: rgba(255, 255, 255, 0.18);
            color: #ffffff !important;
        }

        .dock-btn-call:hover {
            background: rgba(255, 255, 255, 0.16);
            color: #38bdf8 !important;
        }

        .dock-btn-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff !important;
            box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
        }

        .dock-btn-whatsapp:hover {
            background: linear-gradient(135deg, #2ae06d 0%, #17a493 100%);
        }

        .dock-btn-quote {
            background: linear-gradient(135deg, #157fb9 0%, #0e679c 100%);
            color: #ffffff !important;
            box-shadow: 0 2px 12px rgba(21, 127, 185, 0.4);
            flex: 1.35;
            font-size: 12px;
            font-weight: 800;
            border-color: rgba(56, 189, 248, 0.45);
        }

        .dock-btn-quote:hover {
            background: linear-gradient(135deg, #1994d8 0%, #117cb8 100%);
        }

        /* -------------------------------------------------------------
           Tablet Breakpoint Refinements (768px - 1024px)
        ------------------------------------------------------------- */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 36px 0 40px 0;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subhead {
                font-size: 15px;
            }

            .client-logo-grid {
                justify-content: center;
                gap: 16px 24px;
            }

            .trust-strip-caption {
                text-align: center;
                margin-top: 10px;
            }

            .pricing-turnkey-wrapper {
                padding: 28px 24px;
            }

            .pricing-turnkey-action {
                align-items: flex-start;
                width: 100%;
            }
        }

        /* -------------------------------------------------------------
           Mobile Breakpoint Refinements (< 768px)
        ------------------------------------------------------------- */
        @media (max-width: 767.98px) {
            .page-section {
                padding: 50px 0;
            }

            .section-heading {
                font-size: clamp(23px, 6vw, 28px);
                margin-bottom: 28px;
            }

            /* Prevent iOS Safari input auto-zoom (< 16px) & touch sizing */
            .form-floating-custom .form-control,
            .form-floating-custom .form-select {
                font-size: 16px !important;
                height: 44px;
                padding: 8px 12px;
            }

            .phone-group-wrapper .phone-prefix-addon {
                height: 44px;
                font-size: 14px;
            }

            .lead-form-card {
                padding: 20px 18px;
                border-radius: 14px;
                box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.35);
            }

            .lead-form-card .form-heading {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .btn-submit-form {
                height: 46px;
                font-size: 15px;
            }

            /* Hero adjustments */
            .hero-section {
                padding: 28px 0 34px 0;
            }

            .hero-title {
                font-size: clamp(23px, 6.2vw, 30px);
                line-height: 1.22;
                margin-bottom: 12px;
            }

            .hero-subhead {
                font-size: 14.5px;
                line-height: 1.52;
                margin-bottom: 16px;
            }

            .trust-chips-row {
                gap: 6px 8px;
                margin-bottom: 16px;
            }

            .trust-chip {
                padding: 5px 10px;
                font-size: 11.5px;
            }

            .hero-cta-group {
                gap: 10px;
            }

            .hero-cta-primary,
            .hero-cta-whatsapp {
                padding: 10px 18px;
                font-size: 13.5px;
            }

            /* FAQ Touch Optimization */
            .faq-question-btn {
                padding: 16px 18px;
                font-size: 15px;
                gap: 12px;
            }

            .faq-chevron-box {
                width: 32px;
                height: 32px;
            }

            .faq-answer-inner {
                padding: 0 18px 0 18px;
                font-size: 14px;
            }

            .faq-item.active .faq-answer-inner {
                padding: 0 18px 20px 18px;
            }

            /* Final CTA Band */
            .final-cta-section {
                padding: 65px 0 70px 0;
            }

            .final-cta-heading {
                font-size: clamp(24px, 6.2vw, 30px);
                line-height: 1.25;
            }

            .final-cta-sub {
                font-size: 15px;
                margin-bottom: 22px;
            }

            .final-cta-trust-tags {
                gap: 8px;
                margin-bottom: 24px;
            }

            .final-cta-tag {
                font-size: 11.5px;
                padding: 6px 12px;
            }
        }

        /* -------------------------------------------------------------
           Small Phone Breakpoint (< 576px)
        ------------------------------------------------------------- */
        @media (max-width: 575.98px) {
            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-cta-primary,
            .hero-cta-whatsapp {
                justify-content: center;
                width: 100%;
                text-align: center;
            }

            .contact-quick-links {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .btn-cta-quote,
            .btn-cta-phone,
            .btn-cta-whatsapp {
                justify-content: center;
                width: 100%;
            }

            .partner-badge-item {
                width: 100%;
                justify-content: center;
            }

            .client-logo-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px 16px;
                text-align: center;
            }

            .client-logo-item {
                justify-content: center;
                height: 60px;
            }

            .client-logo-item .client-logo-img {
                max-height: 56px;
                max-width: 135px;
            }
        }

        /* Utility classes */
        [hidden] {
            display: none !important;
        }


svg {
    width: inherit;
    display: inherit;
    margin: inherit;
}
.btn-submit-form span{
    white-space:nowrap;
}
.btn-submit-form svg{
    width:16px;
}