/* two‑color palette – strict blue (#17479e) & red (#e11b22) */
        :root {
            --blue: #17479e;
            --red: #e11b22;
            --bg-light: #f8fafd;
            --border-light: #e2e8f0;
        }

        /* main container – fresh & airy */
        .solutions-page {
            max-width: 1320px;
            width: 100%;
            background: #ffffff;
            border-radius: 3rem;
            box-shadow: 0 30px 60px -20px rgba(23,71,158,0.15);
            padding: 3.5rem 3rem;
        }

        /* ===== fresh two‑color components ===== */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .hero-left .tag {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 1rem;
        }

        .hero-left h1 {
            font-size: clamp(2.8rem, 6vw, 4.2rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: #17479e;
        }

        .hero-left h1 span {
            color: var(--red);
            position: relative;
            display: inline-block;
        }

        .hero-left h1 span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(225,27,34,0.15);
            z-index: -1;
        }

        .hero-left p {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #2b405c;
            margin: 1.8rem 0 2.2rem;
        }

        .btn-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--blue);
            color: white;
            border: none;
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.3px;
            box-shadow: 0 10px 20px -8px var(--blue);
            transition: 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: #0e3a7a;
            transform: translateY(-2px);
            box-shadow: 0 16px 24px -10px var(--blue);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--blue);
            color: var(--blue);
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            transition: 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline:hover {
            background: var(--blue);
            color: white;
            border-color: var(--blue);
        }

        .hero-right img {
            width: 100%;
            border-radius: 2rem;
            box-shadow: 0 25px 40px -16px #132b44;
            border: 2px solid white;
            transition: 0.3s;
        }

        .hero-right img:hover {
            transform: scale(1.01);
        }

        /* section headers – clean, with red accent */
        .section-header {
            margin: 3.5rem 0 2.2rem 0;
            border-bottom: 3px solid var(--red);
            padding-bottom: 1rem;
            display: flex;
            align-items: baseline;
            gap: 1rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #17479e;
            letter-spacing: -0.01em;
        }

        .section-header h2 span {
            color: var(--red);
            font-weight: 800;
        }

        .section-header .section-num {
            background: var(--blue);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
        }

        /* cards – minimal, two‑color borders */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .card-minimal {
            background: #ffffff;
            border-radius: 2rem;
            padding: 2.2rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 10px 30px -14px rgba(23,71,158,0.08);
            transition: 0.2s;
        }

        .card-minimal:hover {
            border-color: var(--blue);
            box-shadow: 0 20px 30px -14px rgba(23,71,158,0.15);
        }

        .card-minimal h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 1.2rem;
        }

        .card-minimal p {
            color: #2e4a66;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .blue-list {
            list-style: none;
        }
        .blue-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
            color: #1a324a;
        }
        .blue-list li i {
            color: var(--blue);
            font-size: 1.4rem;
            width: 1.8rem;
        }
        .red-list li i {
            color: var(--red);
        }

        /* badge row */
        .badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1.5rem 0 0.5rem;
        }
        .badge {
            background: #f0f4fc;
            color: var(--blue);
            padding: 0.4rem 1.2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid #dae3f0;
        }
        .badge-red {
            background: #fee9ea;
            color: var(--red);
            border-color: #fad1d3;
        }

        /* solutions grid – 10 items */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .solution-tile {
            background: #ffffff;
            border-radius: 1.8rem;
            padding: 1.8rem 1.5rem;
            border-left: 5px solid var(--blue);
            box-shadow: 0 8px 20px -12px rgba(0,0,0,0.1);
            transition: 0.2s;
            border: 1px solid var(--border-light);
            border-left-width: 5px;
            border-left-color: var(--blue);
        }
        .solution-tile:hover {
            transform: translateX(6px);
            box-shadow: 0 12px 24px -12px var(--blue);
        }
        .solution-num {
            color: var(--red);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }
        .solution-tile h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 0.6rem;
        }
        .solution-tile p {
            color: #335577;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* split panel (bad/good) fresh */
        .split-panel {
            border-radius: 2rem;
            padding: 2rem;
            height: 100%;
            border: 1px solid var(--border-light);
        }
        .split-panel.bad {
            background: #fff7f7;
            border-left: 6px solid var(--red);
        }
        .split-panel.good {
            background: #f7faff;
            border-left: 6px solid var(--blue);
        }

        .check-list {
            list-style: none;
            margin-top: 1.2rem;
        }
        .check-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .check-list li i {
            font-size: 1.3rem;
        }
        .bad .check-list i {
            color: var(--red);
        }
        .good .check-list i {
            color: var(--blue);
        }

        /* ===== ATTRACTIVE SLIDER SECTION (standalone, scoped) ===== */
        .solidpro-showcase {
            display: block;
            width: 100%;
            margin: 4rem 0;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        .solidpro-showcase .showcase-header {
            margin-bottom: 2rem;
            text-align: left;
        }

        .solidpro-showcase .showcase-header h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #17479e;
            display: inline-block;
            border-bottom: 3px solid #e11b22;
            padding-bottom: 0.5rem;
            margin: 0;
            line-height: 1.3;
            letter-spacing: -0.01em;
        }

        .solidpro-showcase .showcase-slider {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 45%;
            border-radius: 2.5rem;
            overflow: hidden;
            box-shadow: 0 25px 40px -15px rgba(23,71,158,0.25);
            background: #f0f4fa;
        }

        .solidpro-showcase .slider-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .solidpro-showcase .slider-slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .solidpro-showcase .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 7s ease-out;
        }

        .solidpro-showcase .slider-slide.active img {
            transform: scale(1.1);
        }

        .solidpro-showcase .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
            color: white;
            padding: 2rem 2rem 1.5rem 2rem;
            text-align: left;
            pointer-events: none;
        }

        .solidpro-showcase .slide-overlay h4 {
            font-size: clamp(1.4rem, 4vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: white;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }

        .solidpro-showcase .slide-overlay p {
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            opacity: 0.9;
            margin: 0;
            color: rgba(255,255,255,0.95);
            font-weight: 400;
            border-left: 4px solid #e11b22;
            padding-left: 1rem;
        }

        .solidpro-showcase .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(23,71,158,0.7);
            border: none;
            border-radius: 60px;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            z-index: 10;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
        }

        .solidpro-showcase .slider-arrow:hover {
            background: #17479e;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 8px 16px -4px #17479e;
        }

        .solidpro-showcase .slider-arrow.prev {
            left: 20px;
        }

        .solidpro-showcase .slider-arrow.next {
            right: 20px;
        }

        .solidpro-showcase .slider-pagination {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 10;
        }

        .solidpro-showcase .pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 30px;
            background: #17479e;
            opacity: 0.5;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0;
        }

        .solidpro-showcase .pagination-dot.active {
            opacity: 1;
            background: #e11b22;
            width: 30px;
            cursor: default;
        }

        .solidpro-showcase .pagination-dot:not(.active):hover {
            opacity: 0.8;
            background: #17479e;
            transform: scale(1.2);
        }

        /* slider responsive */
        @media (max-width: 1024px) {
            .solidpro-showcase .showcase-slider {
                padding-bottom: 50%;
                border-radius: 2rem;
            }
            .solidpro-showcase .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .solidpro-showcase .slide-overlay {
                padding: 1.5rem 1.5rem 1rem;
            }
        }

        @media (max-width: 640px) {
            .solidpro-showcase {
                margin: 2.5rem 0;
            }
            .solidpro-showcase .showcase-header h3 {
                font-size: 1.6rem;
            }
            .solidpro-showcase .showcase-slider {
                padding-bottom: 60%;
                border-radius: 1.5rem;
            }
            .solidpro-showcase .slider-arrow {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }
            .solidpro-showcase .slider-arrow.prev {
                left: 10px;
            }
            .solidpro-showcase .slider-arrow.next {
                right: 10px;
            }
            .solidpro-showcase .slide-overlay {
                padding: 1rem 1rem 0.8rem;
            }
            .solidpro-showcase .slide-overlay h4 {
                font-size: 1.2rem;
            }
            .solidpro-showcase .slide-overlay p {
                font-size: 0.85rem;
                border-left-width: 3px;
                padding-left: 0.6rem;
            }
            .solidpro-showcase .pagination-dot {
                width: 10px;
                height: 10px;
            }
            .solidpro-showcase .pagination-dot.active {
                width: 24px;
            }
        }

        @media (max-width: 480px) {
            .solidpro-showcase .showcase-slider {
                padding-bottom: 70%;
                border-radius: 1.2rem;
            }
            .solidpro-showcase .slider-arrow {
                display: none;
            }
        }

        /* CTA section */
        .cta-block {
            background: linear-gradient(145deg, #ffffff, #f3f7ff);
            border-radius: 3rem;
            padding: 3.5rem 2.5rem;
            text-align: center;
            border: 1px solid #dde5f0;
            margin-top: 3rem;
        }
        .cta-block h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #10243e;
            margin-bottom: 1rem;
        }
        .cta-block p {
            font-size: 1.3rem;
            color: #2e4a66;
            margin-bottom: 2.2rem;
        }
        .cta-btn {
            background: var(--red);
            color: white;
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 12px 20px -12px var(--red);
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .cta-btn:hover {
            background: #b0171f;
            transform: scale(1.03);
            box-shadow: 0 20px 28px -12px var(--red);
        }

        /* responsive for main grid */
        @media (max-width: 800px) {
            .hero-split { grid-template-columns: 1fr; }
            .grid-2 { grid-template-columns: 1fr; }
            .solutions-page { padding: 2rem 1.5rem; }
        }

/* solutions grid – 10 items with clickable tiles */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.solution-tile {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 1.8rem;
    padding: 1.8rem 1.5rem;
    border-left: 5px solid var(--blue, #17479e);
    box-shadow: 0 8px 20px -12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light, #e2e8f0);
    border-left-width: 5px;
    border-left-color: var(--blue, #17479e);
    color: inherit;
    position: relative;
    overflow: hidden;
}

/* Button style that appears on hover */
.solution-tile::after {
    content: '→';
    position: absolute;
    bottom: -40px;
    right: 20px;
    font-size: 1.5rem;
    color: white;
    background: var(--red, #e11b22);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.3s ease;
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(225,27,34,0.3);
}

.solution-tile:hover::after {
    bottom: 20px;
}

.solution-tile:hover {
    transform: translateX(6px) translateY(-4px);
    box-shadow: 0 20px 30px -12px var(--blue, #17479e);
    border-left-color: var(--red, #e11b22);
}

.solution-num {
    color: var(--red, #e11b22);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.solution-tile h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue, #17479e);
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    padding-right: 30px;
}

.solution-tile:hover h4 {
    color: var(--red, #e11b22);
}

.solution-tile p {
    color: #335577;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    padding-right: 30px;
}

/* responsive */
@media (max-width: 640px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}     
     
     * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #17479e;
            overflow-x: hidden;
            line-height: 1.5;
            position: relative;
        }
        /* subtle background noise and light effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(23,71,158,0.02) 0%, transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(225,27,34,0.02) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

        .tagline-section .container {
  max-width:1200px;
  width:80%!important;
}

        /* color palette – strictly blue and red + grayscale */
        :root {
            --blue-deep: #17479e;
            --red-bright: #e11b22;
            --dark-navy: #17479e;
            --light-bg: #f8fafc;
            --gray-soft: #e2e8f0;
            --light-blue-bg: #eef4ff;
            --light-red-bg: #fee2e2;
        }

        /* section background with light effects */
        .section {
            padding: 4rem 0;
            position: relative;
            z-index: 1;
        }
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 40%, rgba(23,71,158,0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 60%, rgba(225,27,34,0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .approach-section {
            padding: 70px 0;
            background: white;
            position: relative;
            z-index: 1;
        }
        .approach-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 30%, rgba(23,71,158,0.04) 0%, transparent 60%),
                        radial-gradient(ellipse at 90% 70%, rgba(225,27,34,0.04) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }

        .split-section {
            padding: 80px 0;
            background: var(--light-bg);
            position: relative;
            z-index: 1;
        }
        .split-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 50%, rgba(23,71,158,0.03) 0%, transparent 50%),
                        radial-gradient(circle at 90% 30%, rgba(225,27,34,0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* ===== original hero sections ===== */
        .ve-hero {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        .ve-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: radial-gradient(circle, rgba(23,71,158,0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-left .tagline {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red-bright);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .hero-left .tagline i { font-size: 18px; color: var(--blue-deep); }
        .hero-left h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--dark-navy);
            margin-bottom: 25px;
        }
        .hero-left h1 span {
            background: linear-gradient(135deg, var(--blue-deep), var(--red-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-left p {
            font-size: 18px;
            color: #334155;
            margin-bottom: 35px;
            max-width: 500px;
        }
        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .btn-primary {
            background: var(--blue-deep);
            color: white;
            border: none;
            padding: 16px 38px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 25px -8px var(--blue-deep);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-primary:hover {
            background: #0e3a7a;
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -10px var(--blue-deep);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--gray-soft);
            color: var(--dark-navy);
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .btn-outline:hover {
            border-color: var(--blue-deep);
            color: var(--blue-deep);
            background: rgba(23,71,158,0.02);
        }
        .hero-right {
            position: relative;
            height: 400px;
        }
        .graphic-element {
            position: absolute;
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, var(--blue-deep), var(--red-bright));
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            opacity: 0.1;
            filter: blur(30px);
            animation: morph 15s infinite ease-in-out;
        }
        @keyframes morph {
            0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
            50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
        }
        .floating-icons {
            position: absolute;
            inset: 0;
        }
        .floating-icons i {
            position: absolute;
            color: var(--blue-deep);
            opacity: 0.2;
            font-size: 32px;
        }
        .fi1 { top: 10%; left: 20%; animation: float 8s infinite; }
        .fi2 { bottom: 15%; right: 10%; animation: float 10s infinite reverse; }
        .fi3 { top: 40%; right: 30%; animation: float 12s infinite; }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        /* ===== stats banner ===== */
        .stats-banner {
            background: white;
            box-shadow: 0 -20px 40px -20px rgba(0,0,0,0.05);
            padding: 40px 0;
            border-bottom: 1px solid var(--gray-soft);
            position: relative;
            z-index: 1;
        }
        .stats-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, rgba(23,71,158,0.02) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }
        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--blue-deep), var(--red-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .stat-label {
            font-size: 16px;
            color: #475569;
            font-weight: 500;
            max-width: 200px;
        }

        /* ===== split section ===== */
        .split-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        .split-left, .split-right {
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
            border: 1px solid var(--gray-soft);
            transition: transform 0.3s ease;
        }
        .split-left:hover, .split-right:hover { transform: translateY(-8px); }
        .split-left h3, .split-right h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .split-left h3 i { color: var(--red-bright); }
        .split-right h3 i { color: var(--blue-deep); }
        .split-left ul, .split-right ul {
            list-style: none;
            margin-top: 20px;
        }
        .split-left li, .split-right li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--gray-soft);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .split-left li i { color: var(--red-bright); width: 24px; }
        .split-right li i { color: var(--blue-deep); width: 24px; }

        /* ===== approach cards ===== */
        .approach-section {
            padding: 70px 0;
            background: white;
        }
        .section-header {
            text-align: center;
           
            margin: 0 auto 60px;
        }
        .section-header h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--dark-navy);
        }
        .section-header h2 span { color: var(--red-bright); }
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }
        .approach-card {
            background: white;
            border-radius: 24px;
            padding: 30px 20px;
            border: 1px solid var(--gray-soft);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .approach-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--blue-deep), var(--red-bright));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .approach-card:hover::before { transform: scaleX(1); }
        .approach-card:hover {
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
            transform: translateY(-8px);
        }
        .approach-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(23,71,158,0.1), rgba(225,27,34,0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
            color: var(--blue-deep);
        }
        .approach-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .approach-card p {
            color: #475569;
            font-size: 15px;
        }

        /* ===== metrics showcase ===== */
        .metrics-showcase {
            background: linear-gradient(135deg, #17479e 0%, #1e293b 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        .metrics-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .metric-block .number {
            font-size: 52px;
            font-weight: 800;
            color: white;
            background: linear-gradient(135deg, #fff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .metric-block .desc {
            font-size: 16px;
            color: #94a3b8;
            margin-top: 10px;
        }

        /* ===== case studies ===== */
        .cases-section {
            padding: 80px 0;
            background: var(--light-bg);
            position: relative;
            z-index: 1;
        }
        .cases-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(23,71,158,0.03) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(225,27,34,0.03) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .case-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-soft);
        }
        .case-card:hover {
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        .case-image {
            height: 200px;
            background: linear-gradient(135deg, #d9e2ef, #bdd3eb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-deep);
            font-size: 48px;
        }
        .case-content { padding: 25px; }
        .case-tag {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--red-bright);
            letter-spacing: 1px;
        }
        .case-content h4 {
            font-size: 20px;
            margin: 10px 0 15px;
        }
        .case-stats {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            font-weight: 600;
        }
        .case-stats span i { color: var(--blue-deep); margin-right: 6px; }

        /* ===== why solidpro ===== */
        .why-section {
            padding: 70px 0;
            background: white;
        }
        .why-flex {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }
        .why-text {
            flex: 1 1 400px;
        }
        .why-text h2 {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 25px;
        }
        .why-text .highlight { color: var(--red-bright); }
        .why-list {
            list-style: none;
        }
        .why-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        .why-list li i {
            font-size: 24px;
            color: var(--blue-deep);
            background: rgba(23,71,158,0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .why-list li strong {
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }
        .why-visual {
            flex: 1 1 300px;
            background: linear-gradient(135deg, #17479e10, #e11b2210);
            border-radius: 40px;
            padding: 40px;
            text-align: center;
        }
        .why-visual i {
            font-size: 120px;
            color: var(--blue-deep);
            opacity: 0.5;
        }

        /* ===== final CTA ===== */
        .final-cta {
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            padding: 60px 0;
            border-top: 1px solid var(--gray-soft);
            position: relative;
            z-index: 1;
        }
        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(23,71,158,0.02) 0%, transparent 60%);
            pointer-events: none;
            z-index: -1;
        }
        .final-cta .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }
        .cta-text h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark-navy);
        }
        .cta-text p {
            color: #475569;
            max-width: 500px;
        }
        .cta-buttons { display: flex; gap: 16px; }
        .btn-large { padding: 18px 45px; font-size: 18px; }

        /* ----- new component styles ----- */
        .section { padding: 4rem 0; }
        .text-center { text-align: center; }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .grid-2 { grid-template-columns: 1fr; }
        }

        .card {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
            border: 1px solid var(--gray-soft);
            transition: all 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 50px -20px rgba(23,71,158,0.2);
            border-color: var(--blue-deep);
        }
        .card-lead-text {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        .badge-container {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-weight: 600;
        }
        .badge i { margin-right: 0.5rem; }
        .badge-red {
            background: var(--light-red-bg);
            color: var(--red-bright);
        }
        .badge-blue {
            background: var(--light-blue-bg);
            color: var(--blue-deep);
        }

        .card-gradient-blue {
            background: linear-gradient(145deg, var(--blue-deep) 0%, #1e3a8a 100%);
            color: white;
        }
        .card-gradient-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        .card-gradient-title {
            color: white;
        }
        .card-gradient-text {
            color: #e0f2fe;
        }

        .value-chip {
            background: white;
            border: 1px solid var(--gray-soft);
            border-radius: 100px;
            padding: 1rem 1.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 5px 15px -5px rgba(0,0,0,0.05);
        }
        .value-chip i {
            color: var(--red-bright);
            font-size: 1.4rem;
        }

        .final-tagline {
            background: linear-gradient(135deg, var(--blue-deep), #0f2b5c);
            color: white;
            border-radius: 4rem;
            padding: 2.5rem 3rem;
            text-align: center;
            margin: 4rem 0 2rem;
            position: relative;
            z-index: 1;
        }
        .final-tagline::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 120%;
            height: 140%;
            background: radial-gradient(circle, rgba(225,27,34,0.2) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
        }
        .final-tagline p {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 0;
        }
        .final-tagline strong { color: var(--red-bright); }

        .split-panel {
            background: var(--light-bg);
            border-radius: 2rem;
            padding: 2rem;
            height: 100%;
        }
        .split-panel h3 {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }
        .split-panel.bad h3 i { color: var(--red-bright); }
        .split-panel.good h3 i { color: #10b981; }

        /* responsive */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-left p { margin-left: auto; margin-right: auto; }
            .split-grid { grid-template-columns: 1fr; }
            .metrics-grid { grid-template-columns: repeat(2,1fr); }
        }
        @media (max-width: 640px) {
            .metrics-grid { grid-template-columns: 1fr; }
            .hero-left h1 { font-size: 40px; }
        }

        /* Typography */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--dark-navy);
        }
        .section-title span {
            color: var(--red-bright);
            position: relative;
            display: inline-block;
        }
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--red-bright), var(--blue-deep));
            border-radius: 4px;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            padding: 5rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 200%;
            background: radial-gradient(circle, rgba(225,27,34,0.03) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .hero-tagline {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red-bright);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--dark-navy);
        }
        .hero h1 .big-i {
            font-size: 5rem;
            color: var(--blue-deep);
            margin-right: 0.2rem;
        }
        .hero h1 .title-highlight {
            background: linear-gradient(135deg, var(--blue-deep), #17479e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.5rem;
            color: #334155;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto 2rem;
            border-left: 4px solid var(--red-bright);
            padding-left: 1.5rem;
            text-align: left;
        }



         
        /* any minor addition for glocal cards (using existing class patterns) */
        .glocal-grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 1.5rem;
        }
        /* reuse existing .card and .split-panel styles from main css, but define fallbacks */
        .badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }
        .badge {
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            background: #f0f5fe;
        }
        .badge-red {
            background: rgba(225,27,34,0.08);
            color: #b11;
        }
        .badge-blue {
            background: rgba(23,71,158,0.08);
            color: #17479e;
        }
        .grid-4 {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        .value-chip {
            background: white;
            border: 1px solid #dbe6f2;
            border-radius: 60px;
            padding: 0.9rem 1.8rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }
        .section-header h2 span {
            color: var(--red-bright);
        }
       
.final-tagline-box .container {
  width: 80% !important;
  max-width:1200px!important;
}


       