/* GplanSIM About Page Styles — extracted from /fe/ design */

                    *,
                    *::before,
                    *::after {
                        box-sizing: border-box;
                        margin: 0;
                        padding: 0;
                    }

                    .ab-page {
                        background: #F7F9FC;
                        min-height: 100vh;
                        font-family: 'Poppins', system-ui, sans-serif;
                    }

                    /* ── shared wrapper ── */
                    .ab-wrap {
                        max-width: 1160px;
                        margin: 0 auto;
                        padding: 0 clamp(16px, 4vw, 48px);
                    }

                    /* ════════════════════════════
           HERO — full bleed
        ════════════════════════════ */
                    .ab-hero {
                        background: linear-gradient(135deg, #0a1f44 0%, #0a1f44 55%, #6c5ce7 100%);
                        padding: clamp(72px, 12vw, 140px) 24px clamp(100px, 15vw, 168px);
                        text-align: center;
                        position: relative;
                        overflow: hidden;
                    }

                    .ab-hero::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        pointer-events: none;
                        background:
                            radial-gradient(circle at 80% 20%, rgba(29, 161, 242, 0.18) 0%, transparent 50%),
                            radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
                    }

                    .ab-hero-content {
                        position: relative;
                        z-index: 1;
                        max-width: 680px;
                        margin: 0 auto;
                    }

                    .ab-badge {
                        display: inline-block;
                        background: rgba(255, 255, 255, 0.14);
                        border: 1px solid rgba(255, 255, 255, 0.25);
                        color: #fff;
                        font-size: 0.75rem;
                        font-weight: 700;
                        letter-spacing: 1.5px;
                        text-transform: uppercase;
                        padding: 5px 16px;
                        border-radius: 100px;
                        margin-bottom: 18px;
                    }

                    .ab-hero h1 {
                        color: #fff;
                        font-size: clamp(2rem, 5.5vw, 3.5rem);
                        font-weight: 900;
                        line-height: 1.1;
                        margin-bottom: 16px;
                    }

                    .ab-hero h1 em {
                        font-style: normal;
                        color: #6ee7b7;
                    }

                    .ab-hero p {
                        color: rgba(255, 255, 255, 0.82);
                        font-size: clamp(0.92rem, 2vw, 1.1rem);
                        line-height: 1.75;
                        max-width: 520px;
                        margin: 0 auto;
                    }

                    /* ════════════════════════════
           LIFTED INTRO CARD
        ════════════════════════════ */
                    .ab-intro-card {
                        margin-top: clamp(-56px, -9vw, -80px);
                        border-radius: clamp(18px, 3vw, 28px);
                        overflow: hidden;
                        display: grid;
                        grid-template-columns: 1fr;
                        box-shadow: 0 28px 72px rgba(15, 42, 90, 0.2);
                        position: relative;
                        z-index: 2;
                        margin-bottom: clamp(56px, 9vw, 88px);
                    }

                    @media (min-width: 800px) {
                        .ab-intro-card {
                            grid-template-columns: 1fr 1fr;
                        }
                    }

                    /* image side */
                    .ab-img-panel {
                        min-height: clamp(240px, 40vw, 480px);
                        position: relative;
                        overflow: hidden;
                        /* gradient bg so white PNG areas dissolve into it */
                        background: linear-gradient(135deg, #0a1f44 0%, #0a1f44 55%, #6c5ce7 100%);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }

                    .ab-img-panel img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        /* contain keeps PNG proportions */
                        display: block;
                        transition: transform 0.6s ease;
                        /* multiply makes white pixels transparent against the gradient bg */
                        mix-blend-mode: multiply;
                        padding: clamp(24px, 4vw, 48px);
                    }

                    .ab-img-panel:hover img {
                        transform: scale(1.04);
                    }

                    /* subtle green tint overlay for cohesion */
                    .ab-img-panel::after {
                        content: "";
                        position: absolute;
                        inset: 0;
                        background: radial-gradient(circle at 60% 40%, rgba(29, 161, 242, 0.12) 0%, transparent 70%);
                        pointer-events: none;
                    }

                    /* text side */
                    .ab-text-panel {
                        background: #fff;
                        padding: clamp(32px, 5vw, 60px);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 22px;
                    }

                    .ab-text-panel .ab-badge2 {
                        display: inline-block;
                        background: rgba(29, 161, 242, 0.1);
                        color: #6c5ce7;
                        font-size: 0.75rem;
                        font-weight: 700;
                        letter-spacing: 1.3px;
                        text-transform: uppercase;
                        padding: 5px 14px;
                        border-radius: 100px;
                        width: fit-content;
                    }

                    .ab-text-panel h2 {
                        font-size: clamp(1.5rem, 3.5vw, 2.1rem);
                        font-weight: 800;
                        color: #0a1f44;
                        line-height: 1.18;
                    }

                    .ab-text-panel h2 em {
                        font-style: normal;
                        color: #6c5ce7;
                    }

                    .ab-text-panel p {
                        font-size: clamp(0.875rem, 1.6vw, 1rem);
                        color: #555;
                        line-height: 1.78;
                    }

                    /* stats grid inside card */
                    .ab-stats {
                        display: grid;
                        grid-template-columns: repeat(4, 1fr);
                        gap: 10px;
                    }

                    @media (max-width: 480px) {
                        .ab-stats {
                            grid-template-columns: repeat(2, 1fr);
                        }
                    }

                    .ab-stat {
                        background: #f4fbf7;
                        border: 1.5px solid rgba(29, 161, 242, 0.15);
                        border-radius: 14px;
                        padding: 12px 8px;
                        text-align: center;
                    }

                    .ab-stat-val {
                        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
                        font-weight: 800;
                        color: #6c5ce7;
                    }

                    .ab-stat-lbl {
                        font-size: 0.72rem;
                        color: #777;
                        font-weight: 600;
                        margin-top: 3px;
                    }

                    .ab-explore-btn {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        background: linear-gradient(90deg, #0a1f44, #0a1f44 50%, #6c5ce7);
                        background-size: 200% auto;
                        color: #fff;
                        font-weight: 700;
                        font-size: 0.95rem;
                        padding: 13px 28px;
                        border-radius: 12px;
                        border: none;
                        cursor: pointer;
                        width: fit-content;
                        box-shadow: 0 6px 20px rgba(29, 161, 242, 0.35);
                        transition: background-position 0.45s, transform 0.2s, box-shadow 0.2s;
                        text-decoration: none;
                        font-family: inherit;
                    }

                    .ab-explore-btn:hover {
                        background-position: right center;
                        transform: translateY(-2px);
                        box-shadow: 0 10px 28px rgba(29, 161, 242, 0.5);
                    }

                    /* ════════════════════════════
           FEATURES
        ════════════════════════════ */
                    .ab-features {
                        background: #fff;
                        padding: clamp(56px, 9vw, 100px) 0;
                        position: relative;
                        overflow: hidden;
                    }

                    .ab-features::before,
                    .ab-features::after {
                        content: "";
                        position: absolute;
                        border-radius: 50%;
                        pointer-events: none;
                    }

                    .ab-features::before {
                        width: 280px;
                        height: 280px;
                        background: rgba(29, 161, 242, 0.08);
                        top: -90px;
                        left: -80px;
                    }

                    .ab-features::after {
                        width: 360px;
                        height: 360px;
                        background: rgba(15, 42, 90, 0.05);
                        bottom: -130px;
                        right: -110px;
                    }

                    .ab-sec-head {
                        text-align: center;
                        margin-bottom: clamp(32px, 5vw, 52px);
                        position: relative;
                        z-index: 1;
                    }

                    .ab-sec-head .ab-badge2 {
                        display: inline-block;
                        background: rgba(29, 161, 242, 0.1);
                        color: #6c5ce7;
                        font-size: 0.75rem;
                        font-weight: 700;
                        letter-spacing: 1.3px;
                        text-transform: uppercase;
                        padding: 5px 14px;
                        border-radius: 100px;
                        margin-bottom: 12px;
                    }

                    .ab-sec-head h2 {
                        font-size: clamp(1.5rem, 3.5vw, 2.2rem);
                        font-weight: 800;
                        color: #0a1f44;
                    }

                    .ab-sec-head p {
                        font-size: clamp(0.875rem, 1.6vw, 1rem);
                        color: #666;
                        max-width: 480px;
                        margin: 10px auto 0;
                        line-height: 1.7;
                    }

                    .ab-feat-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                        gap: clamp(16px, 3vw, 28px);
                        position: relative;
                        z-index: 1;
                    }

                    .ab-feat-card {
                        background: #f4fbf7;
                        border: 1.5px solid rgba(29, 161, 242, 0.13);
                        border-radius: 22px;
                        padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        text-align: center;
                        gap: 14px;
                        transition: transform 0.3s, box-shadow 0.3s;
                        cursor: default;
                    }

                    .ab-feat-card:hover {
                        transform: translateY(-8px);
                        box-shadow: 0 18px 48px rgba(29, 161, 242, 0.18);
                    }

                    .ab-feat-icon {
                        width: 66px;
                        height: 66px;
                        border-radius: 18px;
                        background: linear-gradient(135deg, rgba(29, 161, 242, 0.15), rgba(15, 42, 90, 0.07));
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;
                    }

                    .ab-feat-card h3 {
                        font-size: 1rem;
                        font-weight: 700;
                        color: #0a1f44;
                    }

                    .ab-feat-card p {
                        font-size: 0.875rem;
                        color: #666;
                        line-height: 1.65;
                    }

                    /* ════════════════════════════
           TRAVELER — two-panel card
        ════════════════════════════ */
                    .ab-traveler-card {
                        border-radius: clamp(18px, 3vw, 28px);
                        overflow: hidden;
                        display: grid;
                        grid-template-columns: 1fr;
                        box-shadow: 0 20px 60px rgba(15, 42, 90, 0.14);
                        margin-bottom: clamp(56px, 9vw, 88px);
                    }

                    @media (min-width: 800px) {
                        .ab-traveler-card {
                            grid-template-columns: 1fr 1fr;
                        }

                        /* image right */
                        .ab-traveler-img-col {
                            order: 2;
                        }

                        .ab-traveler-text-col {
                            order: 1;
                        }
                    }

                    .ab-traveler-text-col {
                        background: #fff;
                        padding: clamp(32px, 5vw, 60px);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 22px;
                    }

                    .ab-traveler-text-col h2 {
                        font-size: clamp(1.4rem, 3vw, 2rem);
                        font-weight: 800;
                        color: #0a1f44;
                        line-height: 1.2;
                    }

                    .ab-traveler-text-col p {
                        font-size: clamp(0.875rem, 1.6vw, 0.98rem);
                        color: #555;
                        line-height: 1.78;
                    }

                    .ab-checklist {
                        display: flex;
                        flex-direction: column;
                        gap: 11px;
                        list-style: none;
                    }

                    .ab-checklist li {
                        display: flex;
                        align-items: flex-start;
                        gap: 10px;
                        font-size: 0.9rem;
                        color: #444;
                        line-height: 1.55;
                    }

                    .ab-check-icon {
                        color: #6c5ce7;
                        font-size: 18px !important;
                        flex-shrink: 0;
                        margin-top: 1px;
                    }

                    .ab-traveler-img-col {
                        min-height: clamp(260px, 40vw, 480px);
                        position: relative;
                        overflow: hidden;
                    }

                    .ab-traveler-img-col img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        display: block;
                        transition: transform 0.6s ease;
                    }

                    .ab-traveler-img-col:hover img {
                        transform: scale(1.04);
                    }

                    /* navy overlay on traveler image */
                    .ab-traveler-img-col::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        z-index: 1;
                        background: linear-gradient(to bottom, transparent 60%, rgba(15, 42, 90, 0.35));
                        pointer-events: none;
                    }

                    /* ════════════════════════════
           CTA BAND
        ════════════════════════════ */
                    .ab-cta {
                        background: linear-gradient(135deg, #0a1f44 0%, #0a1f44 50%, #6c5ce7 100%);
                        padding: clamp(60px, 10vw, 104px) 0;
                        text-align: center;
                        position: relative;
                        overflow: hidden;
                    }

                    .ab-cta::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        pointer-events: none;
                        background:
                            radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 50%),
                            radial-gradient(circle at 85% 30%, rgba(29, 161, 242, 0.2) 0%, transparent 45%);
                    }

                    .ab-cta-inner {
                        position: relative;
                        z-index: 1;
                    }

                    .ab-cta h2 {
                        font-size: clamp(1.7rem, 4.5vw, 2.8rem);
                        font-weight: 900;
                        color: #fff;
                        margin-bottom: 14px;
                    }

                    .ab-cta p {
                        font-size: clamp(0.9rem, 2vw, 1.05rem);
                        color: rgba(255, 255, 255, 0.8);
                        max-width: 460px;
                        margin: 0 auto 36px;
                        line-height: 1.7;
                    }

                    .ab-cta-btn {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        background: #fff;
                        color: #6c5ce7;
                        font-weight: 800;
                        font-size: 1rem;
                        padding: 14px 40px;
                        border-radius: 12px;
                        border: none;
                        cursor: pointer;
                        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
                        transition: transform 0.2s, box-shadow 0.2s;
                        font-family: inherit;
                        text-decoration: none;
                    }

                    .ab-cta-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
                    }
                