  /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        :root {
            --header-height: 85px;
            --header-height-mobile: 70px;
            --brand-deep-blue: #001a4d;
            --brand-primary: #1e40af;
            --brand-accent: #3b82f6;
            --brand-light: #dbeafe;
            --brand-hover: #2563eb;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border-light: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --radius-lg: 20px;
            --radius-md: 12px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Verdana', sans-serif;
            --grad-gold: linear-gradient(135deg, #d4af37 0%, #f1d35a 50%, #d4af37 100%);
            --grad-vibrant: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { max-width: 100%; overflow-x: hidden; }
        body { font-family: var(--font-family); color: var(--text-dark); background: white; line-height: 1.5; width: 100%; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; width: 100%; }
        h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
        a { text-decoration: none; }
        img { max-width: 100%; height: auto; display: block; }

        .btn {
            display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px;
            border-radius: 50px; font-weight: 600; border: none; font-size: 15px;
            background: var(--grad-primary); color: white; box-shadow: 0 4px 10px rgba(37,99,235,0.2);
        }
        .btn-gold {
            background: var(--grad-gold); color: #001a4d !important; font-weight: 700;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        /*========== HEADER SPACER ==========*/
        .header-spacer { height: var(--header-height, 85px); width: 100%; contain: layout; }
        @media (max-width: 768px) { .header-spacer { height: var(--header-height-mobile, 70px); } }
        .section-divider { width: 80px; height: 4px; background: var(--brand-accent); margin: 20px auto 0; border-radius: 2px; }
        .footer-spacer { height: 80px; }

        /*========== HERO ABOUT ==========*/
        .hero-about {
            position: relative;
            background: linear-gradient(135deg, #001a4d 0%, #1e3a8a 100%);
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            width: 100%;
            contain: layout style paint;
            transform: translateZ(0);
            backface-visibility: hidden;
            padding-top: 100px;
        }
        .hero-about .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            contain: layout;
        }
        .hero-about-content {
            max-width: 1000px;
            color: white;
            padding: 0 20px;
            width: 100%;
            margin: 0 auto;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        }
        .hero-about-content h1 {
            color: white;
            margin-bottom: 20px;
            font-weight: 800;
            font-size: clamp(2.2rem, 6vw, 4rem);
            line-height: 1.2;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
            contain: layout;
        }
        .hero-about-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            padding: 10px 30px;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }
        .hero-about-content p {
            color: rgba(255,255,255,0.95);
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            max-width: 750px;
            margin: 0 auto 40px;
            line-height: 1.6;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        }
        .hero-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .hero-btns .btn { padding: 14px 36px; font-size: 1.1rem; }
        @media (max-width: 768px) {
            .hero-about { padding-top: 80px; }
            .hero-about-content h1 { font-size: clamp(2.4rem, 8vw, 3rem); line-height: 1.15; }
            .hero-about p { font-size: 1.1rem; }
            .hero-about-badge { font-size: 14px; padding: 8px 24px; }
            .hero-btns .btn { padding: 12px 28px; font-size: 1rem; }
        }
        @media (max-width: 480px) {
            .hero-about-content h1 { font-size: clamp(2rem, 7vw, 2.6rem); line-height: 1.15; }
            .hero-about p { font-size: 1rem; }
            .hero-about-badge { font-size: 12px; padding: 6px 18px; }
        }

        /*========== ABOUT MERGED BOX (blue gradient: left content, right image) ==========*/
        .about-merged-section { padding: 48px 0; background: var(--bg-soft); }
        .about-merged-section .container { display: flex; flex-direction: column; gap: 40px; }
        .about-merged-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
            border-radius: 28px;
            overflow: hidden;
            padding: 48px 44px;
            box-shadow: 0 20px 40px rgba(30, 64, 175, 0.25);
        }
        .about-merged-box-pink {
            background: linear-gradient(135deg, #be185d 0%, #db2777 50%, #ec4899 100%);
            box-shadow: 0 20px 40px rgba(190, 24, 93, 0.25);
        }
        .about-merged-content { color: #fff; }
        .about-merged-logo {
            margin-bottom: 20px;
            height: auto;
            max-width: 180px;
        }
        .about-merged-content h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: #fff;
            margin: 0 0 18px;
            text-align: left;
        }
        .about-merged-content h2:not(:first-child) { margin-top: 0; }
        .about-merged-lead { font-size: 1.08rem; line-height: 1.7; color: rgba(255, 255, 255, 0.95); margin-bottom: 14px; font-weight: 500; }
        .about-merged-content p {
            font-size: 1rem;
            line-height: 1.68;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 14px;
        }
        .about-merged-image {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            padding: 16px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .about-merged-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 14px;
        }
        @media (max-width: 992px) {
            .about-merged-box { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
            .about-merged-image { order: 1; }
            .about-merged-content { order: 2; }
        }
        @media (max-width: 768px) {
            .about-merged-section { padding: 36px 0; }
            .about-merged-box { padding: 28px 20px; gap: 24px; border-radius: 20px; }
            .about-merged-content h2 { text-align: center; }
            .about-merged-logo { margin-left: auto; margin-right: auto; display: block; }
        }

        /*========== ABOUT CONTENT SECTIONS ==========*/
        .about-approach-section,
        .about-different-section,
        .about-vision-section,
        .about-grow-section {
            padding: 56px 0;
            background: white;
        }
        .about-approach-section { background: var(--bg-soft); }
        .about-services-section { padding: 56px 0; background: white; }
        .about-different-section { background: var(--bg-soft); }
        .about-grow-section { padding: 60px 0; background: #fff; }
        .about-what-heading {
            color: var(--brand-deep-blue);
        }
        .about-what-heading span {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .about-services-lead {
            text-align: center;
            margin: 0 auto 24px;
            font-size: 1.15rem;
            line-height: 1.75;
            color: var(--text-dark);
            max-width: 700px;
        }
        .about-services-section h2,
        .about-approach-section h2,
        .about-different-section h2,
        .about-vision-section h2,
        .about-grow-section h2 {
            text-align: center;
            color: var(--brand-deep-blue);
            margin-bottom: 0;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
        }
        .about-services-section .section-divider,
        .about-approach-section .section-divider,
        .about-different-section .section-divider,
        .about-vision-section .section-divider,
        .about-grow-section .section-divider {
            margin: 20px auto 28px;
        }
        .about-lead {
            font-size: 1.15rem;
            line-height: 1.75;
            color: var(--text-dark);
            margin-bottom: 18px;
            max-width: 900px;
        }
        .about-vision-section p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .about-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .about-service-card {
            aspect-ratio: 1;
            border-radius: 24px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .about-service-card-1 { background: #2b70e4; color: #fff; }
        .about-service-card-2 { background: #28a745; color: #fff; }
        .about-service-card-3 { background: #dc3545; color: #fff; }
        .about-service-card-4 { background: #8e44ad; color: #fff; }
        .about-service-card-5 { background: #17a2b8; color: #fff; }
        .about-service-card-6 { background: #c69500; color: #fff; }
        .about-service-card-7 { background: #e83e8c; color: #fff; }
        .about-service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
            color: #fff;
        }
        .about-service-card p {
            font-size: 0.9rem;
            line-height: 1.55;
            margin: 0;
            color: rgba(255,255,255,0.95);
        }
        @media (max-width: 1024px) {
            .about-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
            .about-service-card { padding: 18px 14px; border-radius: 20px; min-width: 0; }
            .about-service-card h3 { font-size: 0.9rem; }
            .about-service-card p { font-size: 0.78rem; }
        }
        @media (max-width: 768px) {
            .about-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
            .about-service-card { padding: 16px 12px; border-radius: 20px; min-width: 0; }
            .about-service-card h3 { font-size: 0.85rem; }
            .about-service-card p { font-size: 0.75rem; }
        }
        /*========== OUR APPROACH – teal-indigo gradient card ==========*/
        .about-approach-card {
            background: linear-gradient(135deg, #0d9488 0%, #0891b2 35%, #6366f1 100%);
            border-radius: 24px;
            padding: 48px 56px;
            color: #fff;
            box-shadow: 0 16px 40px rgba(13, 148, 136, 0.2);
        }
        .about-approach-card h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            margin: 0 0 24px;
            text-align: left;
        }
        .about-approach-lead {
            font-size: 1.15rem;
            font-weight: 700;
            line-height: 1.6;
            color: #fff;
            margin: 0 0 20px;
        }
        .about-approach-body {
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.75;
            color: #fff;
            margin: 0 0 20px;
        }
        .about-approach-footer {
            font-size: 1.08rem;
            font-weight: 700;
            line-height: 1.65;
            color: #fff;
            margin: 0;
        }
        @media (max-width: 768px) {
            .about-approach-card { padding: 36px 24px; border-radius: 20px; }
            .about-approach-card h2 { margin-bottom: 20px; }
            .about-approach-lead, .about-approach-body { margin-bottom: 16px; }
        }

        .about-different-card {
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 40%, #34d399 100%);
            border-radius: 28px;
            padding: 50px 56px;
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.2);
            color: #fff;
        }
        .about-different-card h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            margin: 0 0 28px;
            text-align: left;
        }
        .about-different-list {
            list-style: none;
            margin: 0 0 28px;
            padding: 0;
        }
        .about-different-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 18px;
            font-size: 1.08rem;
            line-height: 1.6;
            color: #fff;
        }
        .about-different-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-radius: 50%;
        }
        .about-different-cta {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.6;
            margin: 0 0 28px;
        }
        .about-different-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            background: #facc15;
            color: #0f172a;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            width: fit-content;
        }
        .about-different-btn:hover { background: #fde047; color: #0f172a; }
        @media (max-width: 768px) {
            .about-different-card { padding: 36px 24px; border-radius: 24px; }
            .about-different-card h2 { margin-bottom: 22px; }
            .about-different-list li { margin-bottom: 14px; }
            .about-different-cta { margin-bottom: 22px; font-size: 1rem; }
            .about-different-btn { padding: 16px 30px; font-size: 1rem; }
        }

        /*========== OUR VISION – black-blue gradient box ==========*/
        .about-vision-card {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e40af 100%);
            border-radius: 24px;
            padding: 48px 56px;
            color: #fff;
        }
        .about-vision-card h2 {
            font-size: clamp(1.75rem, 3.5vw, 2.4rem);
            font-weight: 800;
            color: #fff;
            margin: 0 0 20px;
            text-align: left;
        }
        .about-vision-card p {
            font-size: 1.08rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }
        @media (max-width: 768px) {
            .about-vision-card { padding: 36px 24px; border-radius: 20px; }
        }

        /*========== LET'S GROW TOGETHER – merged box (Checkout Our Projects style) ==========*/
        .about-grow-merged-box {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 0;
            align-items: stretch;
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #60a5fa 100%);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(59, 130, 246, 0.35);
        }
        .about-grow-content-side {
            padding: 48px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
            text-align: left;
        }
        .about-grow-content-side h2 {
            font-size: clamp(2rem, 3.8vw, 2.8rem);
            font-weight: 800;
            margin: 0 0 16px;
            color: #fff;
            text-align: left;
        }
        .about-grow-content-side p,
        .about-grow-desc {
            font-size: 1.02rem;
            line-height: 1.75;
            color: #fff;
            margin: 0 0 16px;
        }
        .about-grow-sub {
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.6;
            color: #fff;
            margin: 0 0 24px;
        }
        .about-grow-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            background: #facc15;
            color: #0f172a;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-decoration: none;
            width: fit-content;
        }
        .about-grow-cta-btn:hover { background: #fde047; color: #0f172a; }
        .about-grow-image-side {
            position: relative;
            overflow: hidden;
            min-height: 320px;
        }
        .about-grow-image-side img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            display: block;
        }
        @media (max-width: 992px) {
            .about-grow-merged-box { grid-template-columns: 1fr; }
            .about-grow-image-side { order: -1; min-height: 280px; }
            .about-grow-image-side img { min-height: 280px; }
        }
        @media (max-width: 768px) {
            .about-grow-section { padding: 44px 0; }
            .about-grow-content-side { padding: 36px 24px; }
            .about-grow-content-side h2 { margin-bottom: 14px; }
            .about-grow-desc { font-size: 1rem; margin-bottom: 12px; }
            .about-grow-sub { font-size: 1rem; margin-bottom: 20px; }
            .about-grow-cta-btn { padding: 16px 30px; font-size: 1rem; }
            .about-grow-image-side { min-height: 240px; }
            .about-grow-image-side img { min-height: 240px; }
        }

        /*========== BREADCRUMB ==========*/
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
        }
        .breadcrumb-item a { color: var(--brand-primary); font-weight: 500; }
        .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            padding-right: 8px;
            color: var(--text-muted);
        }

        /*========== DEFINES GRID ==========*/
        .defines-grid-section {
            padding: 70px 0;
            background: white;
            content-visibility: auto;
            contain-intrinsic-size: auto 400px;
        }
        .defines-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        .defines-header h2 { color: var(--brand-deep-blue); }
        .defines-header h2 span { color: var(--brand-primary); }
        .defines-header .lead { color: var(--text-muted); margin-top: 10px; font-size: 1.1rem; }
        .defines-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .defines-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 30px 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .defines-card .icon-box {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
        .icon-whatsapp-green { color: #25d366; fill: #25d366; }
        .defines-card .icon-box .icon-defines { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }
        .defines-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--brand-deep-blue); margin-bottom: 12px; }
        .defines-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
        @media (max-width: 992px) { .defines-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .defines-grid { grid-template-columns: 1fr; } }

        /*========== LEADERSHIP GRID ==========*/
        .leadership-grid-section {
            padding: 70px 0;
            background: var(--bg-soft);
            contain: layout;
        }
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        .leader-card {
            background: white;
            border-radius: 24px;
            padding: 30px 20px;
            border: 1px solid var(--border-light);
            text-align: center;
        }
        .leader-card .member-image {
            width: 120px; height: 120px;
            margin: 0 auto 15px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--brand-light);
            aspect-ratio: 1/1;
            flex-shrink: 0;
            contain: layout;
        }
        .leader-card .member-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .leader-card h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--brand-deep-blue); }
        .leader-card p { color: var(--brand-accent); font-weight: 600; margin-bottom: 10px; }
        .leader-card .bio { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }
        @media (max-width: 992px) { .leadership-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 576px) { .leadership-grid { grid-template-columns: 1fr; } }

        /*========== TRUST SECTION ==========*/
        .trust-section {
            position: relative;
            padding: 60px 20px;
            contain: layout;
            /* Using a solid color background instead of image to avoid LCP issues and sizing problems. 
               If you must use an image, ensure it's properly compressed and has dimensions. */
            background: linear-gradient(135deg, #0f172a, #1e40af);
            display: flex; justify-content: center; align-items: center;
        }
        .trust-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(15,23,42,0.8), rgba(37,99,235,0.7));
        }
        .trust-container {
            position: relative;
            max-width: 900px;
            text-align: center;
            padding: 40px;
            border-radius: 24px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            color: white;
            z-index: 2;
        }
        .trust-container h2 { color: white; margin-bottom: 15px; }
        .trust-container h2 span { color: #52a7ec; }
        .trust-container p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 25px; color: rgba(255,255,255,0.95); }
        .trust-btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 16px 36px; border-radius: 50px;
            background: #fff; color: var(--brand-deep-blue);
            font-weight: 700; font-size: 1.05rem;
            box-shadow: 0 8px 24px rgba(0,0,0,.2);
            transition: none;
        }
        .trust-btn:hover { transform: none; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
        .trust-btn .icon-arrow-right { width: 20px; height: 20px; fill: currentColor; margin-left: 0; }

        /*========== CTA SECTION ==========*/
        .cta-section {
            background: #f8fafc;
            padding: 30px 0 80px;
        }
        .gradient-cta {
            background: var(--grad-vibrant);
            border-radius: 32px;
            padding: 50px;
            display: flex;
            flex-direction: column;
            gap: 35px;
            align-items: flex-start;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 1024px) { .gradient-cta { padding: 40px; } }
        @media (max-width: 768px) {
            .gradient-cta { padding: 30px 20px; align-items: center; text-align: center; }
        }
        .cta-content { max-width: 900px; }
        .cta-content h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; font-weight: 800; }
        .cta-content p { font-size: clamp(1rem, 3vw, 1.35rem); line-height: 1.5; color: rgba(255,255,255,0.95); }
        .cta-buttons { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; width: 100%; }
        @media (max-width: 768px) { .cta-buttons { flex-direction: column; gap: 12px; } }
        .cta-btn {
            display: flex; align-items: center; justify-content: center; gap: 12px;
            background: white; color: #000; padding: 18px 45px; border-radius: 60px;
            font-weight: 700; font-size: 1.2rem; min-width: 200px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: none; cursor: pointer;
        }
        @media (max-width: 1024px) { .cta-btn { padding: 16px 35px; font-size: 1.1rem; min-width: 180px; } }
        @media (max-width: 768px) { .cta-btn { width: 100%; padding: 16px 24px; font-size: 1.1rem; } }
        @media (max-width: 480px) { .cta-btn { padding: 14px 20px; font-size: 1rem; } }
        .cta-btn.cta-whatsapp { background: #25D366; color: white; }
        .cta-btn .icon { width: 20px; height: 20px; fill: currentColor; }
        .cta-btn.cta-whatsapp .icon { fill: currentColor; }

      /* ===== CONTACT FORM ===== */
.contact-merged-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.contact-image-side {
  min-height: 600px;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-side {
  display: flex;
  align-items: center;
  padding: 60px 50px;
  background: white;
}

.contact-form-card {
  width: 100%;
}

.contact-form-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-form-card .sub {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  font-size: 1.1rem;
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 18px 20px;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30,64,175,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.privacy-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  font-size: 1rem;
  color: var(--text-muted);
}

.privacy-note-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.privacy-note .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.privacy-note .privacy-note-inner:last-child .icon,
.privacy-note .icon-whatsapp-green,
.btn-submit .icon-whatsapp-green {
  color: #25d366;
  fill: #25d366;
}
.btn-submit .icon { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .contact-merged-box {
    grid-template-columns: 1fr;
  }
  
  .contact-image-side {
    min-height: 300px;
  }
  
  .contact-form-side {
    padding: 40px 25px;
  }
  
  .contact-form-card h2 {
    font-size: 1.8rem;
  }
}

/*========== ABOUT PAGE: comparison, services grid, tech, life gallery ==========*/
.page-about .about-content-section {
    padding: 56px 0;
    background: #fff;
}
.page-about .about-content-section.about-content-alt {
    background: #f8fafc;
}
.page-about .about-section-intro {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: center;
}
.page-about .about-section-intro h2 {
    margin-bottom: 16px;
    color: var(--text-dark);
}
.page-about .about-section-intro .heading-accent {
    color: var(--brand-accent);
}
.page-about .about-section-intro p,
.page-about .about-prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 16px;
}
.page-about .about-prose:last-child {
    margin-bottom: 0;
}
.page-about .specialist-wrap {
    border: 1px solid #dbe5f3;
    border-radius: 16px;
    overflow: auto;
    margin-top: 8px;
}
.page-about .specialist-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.page-about .specialist-table th {
    background: #0f172a;
    color: #fff;
    padding: 14px;
    text-align: left;
    font-size: 0.9rem;
}
.page-about .specialist-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.5;
    vertical-align: top;
}
.page-about .specialist-table td:nth-child(1) {
    background: #0b0f19;
    color: #f8fafc;
    font-weight: 600;
    min-width: 140px;
}
.page-about .specialist-wrap.compare-pro-con .specialist-table td:nth-child(2) {
    background: #14532d;
    color: #dcfce7;
}
.page-about .specialist-wrap.compare-pro-con .specialist-table td:nth-child(3) {
    background: #7f1d1d;
    color: #fee2e2;
}
.page-about .about-compare-closing {
    max-width: 900px;
    margin: 28px auto 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
}
.page-about .about-pill-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 960px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
@media (min-width: 640px) {
    .page-about .about-pill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.page-about .about-pill-grid li {
    padding: 12px 16px;
    background: #f1f5f9;
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.page-about .about-pill-grid li::before {
    content: "\2713";
    flex: 0 0 auto;
    color: #15803d;
    font-weight: 800;
}
.page-about .about-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-width: 960px;
    margin: 24px auto 0;
    list-style: none;
    padding: 0;
}
.page-about .about-tech-grid li {
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}
.page-about .about-content-alt .about-tech-grid li {
    background: #fff;
}
.page-about .about-life-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .page-about .about-life-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}
.page-about .about-life-gallery figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.page-about .about-life-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.page-about .about-life-gallery figcaption {
    padding: 10px 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}
.page-about .about-office-placeholder {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== Contact section (matches services pages; not loading home-page-overrides to protect About hero) ========== */
.page-about .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.page-about .contact-section {
    padding-top: 56px;
}
.page-about .contact-merged-box {
    align-items: stretch;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 24px;
    overflow: hidden;
}
.page-about .contact-info-side,
.page-about .contact-form-side {
    height: 100%;
}
.page-about .contact-info-side {
    padding: 52px 44px;
    background: linear-gradient(135deg, #041a4f 0%, #0b2d78 52%, #103d97 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-about .contact-info-eyebrow {
    margin: 0 0 12px;
    color: #93c5fd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.page-about .contact-info-side h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2rem, 2.9vw, 2.9rem);
    line-height: 1.12;
    font-weight: 800;
}
.page-about .contact-info-lead {
    margin: 0 0 18px;
    color: rgba(226, 232, 240, 0.92);
    font-size: 1.12rem;
    line-height: 1.82;
}
.page-about .contact-info-points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.page-about .contact-info-points li {
    position: relative;
    padding-left: 24px;
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 600;
}
.page-about .contact-info-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-weight: 700;
}
.page-about .contact-connect-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 160px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    font-weight: 700;
    font-size: 1.02rem;
}
.page-about .contact-form-side {
    position: relative;
    padding: 28px 26px;
    background: #ffffff;
    display: flex;
    align-items: flex-start;
}
.page-about .contact-form-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform: none !important;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    padding: 22px 18px;
    box-shadow: none !important;
    position: relative;
    top: 0;
}
.page-about .contact-form-card h2 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    color: #0f172a;
    font-weight: 800;
}
.page-about .contact-form-card .sub {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 0.94rem;
}
.page-about .contact-form-card .form-group {
    margin-bottom: 12px;
}
.page-about .contact-form-card input,
.page-about .contact-form-card textarea {
    border-radius: 10px !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    font-size: 0.94rem;
    padding: 12px 14px !important;
    width: 100%;
}
.page-about .contact-form-card textarea {
    min-height: 108px;
    resize: vertical;
}
.page-about .contact-form-card .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 12px 16px !important;
    border: none;
    border-radius: 12px !important;
    min-height: 46px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    box-shadow: none !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
}
.page-about .contact-form-card .privacy-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
}
.page-about .contact-form-card .privacy-note-inner {
    display: inline;
}
.page-about .contact-merged-box,
.page-about .contact-form-side,
.page-about .contact-form-card {
    transition: none !important;
    animation: none !important;
}
.page-about #whatsappForm,
.page-about #whatsappForm .form-group,
.page-about #whatsappForm input,
.page-about #whatsappForm textarea {
    transition: none !important;
    animation: none !important;
}
@media (max-width: 1024px) {
    .page-about .contact-merged-box {
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .page-about .contact-info-side {
        padding: 30px 22px;
    }
    .page-about .contact-form-side {
        padding: 18px 14px 20px;
    }
}
