
        :root {
            --blue:       #1d4ed8;
            --blue-dark:  #0052cc;
            --blue-light: #e8f0ff;
            --accent:     #00c6ff;
            --text:       #1a1a1a;
            --muted:      #6b7280;
            --border:     #e5e7eb;
            --white:      #ffffff;
            --bg:         #f8f9fa;
        }

        /* ===========================
           TRUST STRIP
        =========================== */
        .ab-trust-strip {
            background: white;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .ab-trust-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
        }
        .ab-trust-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 1.5rem 1rem;
            flex: 1;
            transition: background 0.2s;
        }
        .ab-trust-item:hover { background: var(--bg); }
        .ab-trust-icon {
            width: 46px; height: 46px;
            border-radius: 12px;
            background: var(--blue-light);
            color: #1d9cd8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .ab-trust-val {
            font-family: "Mulish", sans-serif !important;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }
        .ab-trust-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
        .ab-trust-divider {
            width: 1px;
            background: var(--border);
            align-self: stretch;
            margin: 0.75rem 0;
            flex-shrink: 0;
        }

        /* ===========================
           LAYOUT WRAPPER
        =========================== */
        .ab-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .ab-section   { padding: 2rem 0; }

        .ab-section-label {
            font-family: "Mulish", sans-serif !important;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #1d9cd8;
            margin-bottom: 0.75rem;
        }

        .ab-section-title {
            font-family: "Mulish", sans-serif !important;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: var(--text);
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 1rem;
        }

        .ab-section-desc {
            color: var(--muted);
            font-size: 1.05rem;
            max-width: 560px;
            line-height: 1.75;
        }

        /* ===========================
           MISSION SPLIT
        =========================== */
        .ab-mission { background: white; }

        .ab-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .ab-mission-visual { position: relative; }

        .ab-globe-wrap {
            width: 100%;
            aspect-ratio: 1;
            max-width: 420px;
            margin: 0 auto;
            position: relative;
        }

        .ab-globe-bg {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #1d9cd8, #00fbff);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ab-globe-bg::before {
            content: '🌍';
            font-size: 8rem;
            position: absolute;
            animation: ab-spin 30s linear infinite;
        }

        @keyframes ab-spin {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .ab-float-pill {
            position: absolute;
            background: white;
            border-radius: 30px;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            animation: ab-float 3s ease-in-out infinite;
        }

        .ab-float-pill:nth-child(2) { top: 8%;  right: -5%;  animation-delay: 0s; }
        .ab-float-pill:nth-child(3) { top: 38%; left: -8%;   animation-delay: 1s; }
        .ab-float-pill:nth-child(4) { bottom: 12%; right: -3%; animation-delay: 2s; }

        @keyframes ab-float {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-8px); }
        }

        .ab-pill-dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #22c55e;
            flex-shrink: 0;
        }
        .ab-pill-dot.orange { background: #1d9cd8; }
        .ab-pill-dot.blue   { background: #1d9cd8; }

        .ab-mission-points {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .ab-point { display: flex; gap: 1rem; align-items: flex-start; }

        .ab-point-icon {
            width: 42px; height: 42px;
            border-radius: 10px;
            background: var(--blue-light);
            color: #1d9cd8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .ab-point-text h4 {
            font-family: "Mulish", sans-serif !important;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }

        .ab-point-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

        /* ===========================
           HOW IT WORKS
        =========================== */
        .ab-steps { background: var(--bg); }

        .ab-steps-head { text-align: center; margin-bottom: 3.5rem; }

        .ab-steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .ab-steps-grid::before {
            content: '';
            position: absolute;
            top: 32px;
            left: calc(12.5% + 20px);
            right: calc(12.5% + 20px);
            height: 2px;
            background: linear-gradient(90deg, #1d9cd8 0%, var(--accent) 100%);
            z-index: 0;
        }

        .ab-step-card { text-align: center; position: relative; z-index: 1; }

        .ab-step-num {
            width: 64px; height: 64px;
            border-radius: 50%;
            background: white;
            border: 3px solid #1d9cd8;
            color: #1d9cd8;
            font-family: "Mulish", sans-serif !important;
            font-size: 1.4rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            box-shadow: 0 4px 16px rgba(0,102,255,0.2);
            transition: all 0.3s;
        }

        .ab-step-card:hover .ab-step-num {
            background: #1d9cd8;
            color: white;
            transform: scale(1.12);
        }

        .ab-step-card h4 {
            font-family: "Mulish", sans-serif !important;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .ab-step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

        /* ===========================
           CTA BANNER
        =========================== */
        .ab-cta-wrap { padding: 4rem 2rem; background: var(--bg); }

        .ab-cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #1d9cd8, #00fbff);
            border-radius: 20px;
            padding: 4rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }

        .ab-cta-inner::before {
            content: '🌍';
            position: absolute;
            font-size: 14rem;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.06;
            pointer-events: none;
        }

        .ab-cta-text h2 {
            font-family: "Mulish", sans-serif !important;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            margin-bottom: 0.5rem;
        }

        .ab-cta-text p { font-size: 1rem; color: rgba(255,255,255,0.85); }

        .ab-cta-btn {
            background: white;
            color: #1d9cd8;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-family: "Mulish", sans-serif !important;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 1;
        }

        .ab-cta-btn:hover {
            background: #f0f5ff;
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.2);
        }

        /* ===========================
           RESPONSIVE
        =========================== */
        @media (max-width: 1024px) {
            .ab-mission-grid   { grid-template-columns: 1fr; gap: 3rem; }
            .ab-steps-grid     { grid-template-columns: repeat(2, 1fr); }
            .ab-steps-grid::before { display: none; }
        }

        @media (max-width: 768px) {
            .ab-trust-inner { flex-wrap: wrap; }
            .ab-trust-item  { flex: 1 1 45%; padding: 1rem 0.75rem; }
            .ab-trust-divider { display: none; }
        }

        @media (max-width: 640px) {
            .ab-steps-grid  { grid-template-columns: 1fr 1fr; }
            .ab-globe-wrap  { max-width: 260px; }
            .ab-float-pill  { display: none; }
            .ab-cta-inner   { padding: 2.5rem 1.5rem; text-align: center; justify-content: center; }
            .ab-section     { padding: 3.5rem 0; }
        }

        @media (max-width: 400px) {
            .ab-trust-item  { flex: 1 1 100%; }
        }