/* ============================================================
   PRSH Technologies — About Us — Premium Redesign
   Inspired by: Stripe · Linear · Vercel · Framer
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
    --ab2-blue:      #2563EB;
    --ab2-blue-lt:   #3B82F6;
    --ab2-cyan:      #06B6D4;
    --ab2-navy:      #0F172A;
    --ab2-navy-2:    #1E293B;
    --ab2-bg:        #F8FAFC;
    --ab2-bg-2:      #F1F5F9;
    --ab2-white:     #FFFFFF;
    --ab2-border:    #E2E8F0;
    --ab2-t1:        #0F172A;
    --ab2-t2:        #334155;
    --ab2-t3:        #64748B;
    --ab2-grd-main:  linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --ab2-grd-dark:  linear-gradient(135deg, #0F172A 0%, #0D2D5E 55%, #0E4D79 100%);
    --ab2-grd-purple:linear-gradient(135deg, #7C3AED, #A78BFA);
    --ab2-grd-green: linear-gradient(135deg, #059669, #34D399);
    --ab2-grd-orange:linear-gradient(135deg, #D97706, #FCD34D);
    --ab2-grd-teal:  linear-gradient(135deg, #0F766E, #14B8A6);
    --ab2-sh-sm:     0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
    --ab2-sh-md:     0 4px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --ab2-sh-lg:     0 12px 40px rgba(0,0,0,.11), 0 4px 12px rgba(0,0,0,.06);
    --ab2-sh-xl:     0 24px 80px rgba(0,0,0,.14), 0 8px 24px rgba(0,0,0,.07);
    --ab2-r-xs:  8px;
    --ab2-r-sm: 12px;
    --ab2-r:    18px;
    --ab2-r-lg: 24px;
    --ab2-r-xl: 32px;
    --ab2-ease: cubic-bezier(.4,0,.2,1);
    --ab2-t:    all .3s var(--ab2-ease);
    --ab2-tl:   all .55s var(--ab2-ease);
}

/* ═══════════════════════════════════════════════════════════
   1. HERO — Full redesign
   ═══════════════════════════════════════════════════════════ */
.ab-hero {
    position: relative;
    min-height: 100vh;
    background: var(--ab2-grd-dark) !important;
    padding: 130px 0 0 !important;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Animated gradient orbs */
.ab-hero::before {
    content: '';
    position: absolute;
    width: 750px; height: 750px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.45) 0%, transparent 70%);
    top: -220px; right: -180px;
    animation: ab2-orb1 13s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}
.ab-hero::after {
    content: '';
    position: absolute;
    width: 550px; height: 550px; border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,.35) 0%, transparent 70%);
    bottom: -120px; left: -100px;
    animation: ab2-orb2 17s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}
@keyframes ab2-orb1 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-80px,60px) scale(1.18); }
}
@keyframes ab2-orb2 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(60px,-50px) scale(1.22); }
}

/* Dot grid */
.ab-hero::after {
    background-image: radial-gradient(rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 30px 30px;
    width: auto; height: auto;
    border-radius: 0;
    inset: 0;
    animation: none;
    bottom: 0; left: 0;
}
/* Use pseudo on inner for orb 2 (workaround — hero uses before for orb, after for grid) */
.ab-hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.11) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}
.ab-hero-orb1 {
    position: absolute;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.42) 0%, transparent 70%);
    top: -200px; right: -160px;
    animation: ab2-orb1 13s ease-in-out infinite alternate;
    pointer-events: none; z-index: 1;
}
.ab-hero-orb2 {
    position: absolute;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,.32) 0%, transparent 70%);
    bottom: -100px; left: -80px;
    animation: ab2-orb2 17s ease-in-out infinite alternate;
    pointer-events: none; z-index: 1;
}

.ab-hero-inner { position: relative; z-index: 3; flex: 1; display: flex; align-items: center; }

/* Badge */
.ab-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 12.5px; font-weight: 700;
    color: #fff; letter-spacing: .6px; text-transform: uppercase;
    margin-bottom: 24px;
}
.ab-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #7DD3FC;
    box-shadow: 0 0 0 3px rgba(125,211,252,.3);
    animation: ab2-pulse 2.5s ease-in-out infinite;
}
@keyframes ab2-pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(125,211,252,.3); }
    50%      { box-shadow: 0 0 0 8px rgba(125,211,252,.07); }
}

/* Breadcrumb */
.ab-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 28px; }
.ab-breadcrumb li { font-size: 13px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; }
.ab-breadcrumb li::after { content: '/'; }
.ab-breadcrumb li:last-child::after { display: none; }
.ab-breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; transition: var(--ab2-t); }
.ab-breadcrumb a:hover { color: #fff; }

/* H1 */
.ab-hero h1 {
    font-size: clamp(34px,5.5vw,66px) !important;
    font-weight: 900 !important; color: #fff !important;
    line-height: 1.05 !important; letter-spacing: -.028em !important;
    margin-bottom: 24px !important;
}
.ab-hero h1 .hi {
    background: linear-gradient(90deg,#7DD3FC,#93C5FD,#BAE6FD) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.ab-hero p.sub {
    font-size: 17px !important; color: rgba(255,255,255,.78) !important;
    line-height: 1.78 !important; max-width: 500px !important; margin-bottom: 40px !important;
}
.ab-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

/* Hero CTA buttons */
.btn-hero-main {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; background: #fff; color: var(--ab2-blue) !important;
    font-size: 15px; font-weight: 700; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
    transition: var(--ab2-t);
}
.btn-hero-main:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(0,0,0,.32); color: var(--ab2-blue) !important; }
.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.3);
    color: #fff !important; font-size: 15px; font-weight: 600;
    border-radius: 50px; text-decoration: none; transition: var(--ab2-t);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.2); color: #fff !important; }

/* Hero image panel */
.ab-hero-img-panel {
    position: relative; display: flex;
    align-items: flex-end; justify-content: center; height: 100%;
}
.ab-hero-img-panel .img-card {
    background: rgba(255,255,255,.09); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px 24px 0 0; padding: 30px 30px 0;
    box-shadow: var(--ab2-sh-xl); overflow: hidden; max-width: 420px; width: 100%;
    animation: ab2-rise .9s var(--ab2-ease) both;
}
@keyframes ab2-rise {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ab-hero-img-panel .img-card img {
    width: 100%; display: block;
    filter: drop-shadow(0 -10px 30px rgba(0,0,0,.2));
    animation: ab2-float 6s ease-in-out infinite;
}
@keyframes ab2-float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-12px); }
}

/* Floating chips */
.float-chip {
    position: absolute; z-index: 5;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-radius: 14px; padding: 10px 16px; box-shadow: var(--ab2-sh-lg);
    display: flex; align-items: center; gap: 12px;
    animation: ab2-bob 4.5s ease-in-out infinite;
    white-space: nowrap;
}
.float-chip.c1 { top: 12%; right: -4%; animation-delay: .6s; }
.float-chip.c2 { bottom: 30%; left: -6%; animation-delay: 1.4s; }
@keyframes ab2-bob {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}
.float-chip .chip-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; flex-shrink: 0;
}
.float-chip .chip-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--ab2-t1); line-height: 1.1; }
.float-chip .chip-text span   { font-size: 11px; color: var(--ab2-t3); }

/* Hero wave */
.ab-hero-wave { position: relative; z-index: 4; line-height: 0; margin-top: 16px; }
.ab-hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════
   2. STATS STRIP
   ═══════════════════════════════════════════════════════════ */
.ab2-stats {
    background: var(--ab2-white);
    border-bottom: 1px solid var(--ab2-border);
    position: relative; z-index: 5;
}
.ab2-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.ab2-stat-item {
    text-align: center;
    padding: 52px 28px;
    border-right: 1px solid var(--ab2-border);
    transition: var(--ab2-t);
    position: relative; overflow: hidden;
    cursor: default;
}
.ab2-stat-item:last-child { border-right: none; }
.ab2-stat-item::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--ab2-grd-main);
    opacity: 0; transition: var(--ab2-t);
}
.ab2-stat-item:hover::before { opacity: .04; }
.ab2-stat-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff;
    margin: 0 auto 16px;
    position: relative; z-index: 1; transition: var(--ab2-t);
}
.ab2-stat-item:hover .ab2-stat-icon { transform: scale(1.1) rotate(-6deg); }
.ab2-stat-num {
    font-size: clamp(38px,4vw,54px);
    font-weight: 900; color: var(--ab2-t1);
    line-height: 1; margin-bottom: 8px;
    letter-spacing: -.03em;
    position: relative; z-index: 1;
}
.ab2-stat-label {
    font-size: 14px; font-weight: 600; color: var(--ab2-t3);
    position: relative; z-index: 1; letter-spacing: .2px;
}

/* ═══════════════════════════════════════════════════════════
   3. BODY SECTION — premium cards + sidebar
   ═══════════════════════════════════════════════════════════ */
.ab-body { padding: 90px 0 !important; background: var(--ab2-bg) !important; }

/* Section label pill */
.sec-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.sec-label.blue   { background: rgba(37,99,235,.09);  color: var(--ab2-blue); }
.sec-label.teal   { background: rgba(15,118,110,.09); color: #0F766E; }
.sec-label.green  { background: rgba(5,150,105,.09);  color: #059669; }
.sec-label.purple { background: rgba(124,58,237,.09); color: #7C3AED; }
.sec-label.orange { background: rgba(217,119,6,.09);  color: #D97706; }
.sec-label.white  { background: rgba(255,255,255,.18); color: #fff; }

/* Premium content card */
.pc {
    background: var(--ab2-white) !important;
    border: 1.5px solid var(--ab2-border) !important;
    border-radius: var(--ab2-r) !important;
    padding: 38px !important;
    margin-bottom: 26px !important;
    box-shadow: var(--ab2-sh-sm) !important;
    transition: var(--ab2-t) !important;
    position: relative; overflow: hidden;
}
.pc:last-child { margin-bottom: 0 !important; }
.pc:hover { box-shadow: var(--ab2-sh-md) !important; transform: translateY(-3px) !important; }
.pc .acc-bar {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    border-radius: var(--ab2-r) var(--ab2-r) 0 0;
}
.pc .acc-bar.blue   { background: var(--ab2-grd-main); }
.pc .acc-bar.teal   { background: var(--ab2-grd-teal); }
.pc .acc-bar.green  { background: var(--ab2-grd-green); }
.pc .acc-bar.purple { background: var(--ab2-grd-purple); }
.pc .acc-bar.orange { background: var(--ab2-grd-orange); }
.pc h2 { font-size: clamp(20px,2.8vw,28px); font-weight: 800; color: var(--ab2-t1); margin-bottom: 16px; line-height: 1.2; }
.pc h3 { font-size: clamp(18px,2.3vw,22px); font-weight: 700; color: var(--ab2-t1); margin-bottom: 14px; }
.pc p  { font-size: 15px; color: var(--ab2-t2); line-height: 1.8; margin: 0; }

/* Large icon */
.licon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff; margin-bottom: 20px; flex-shrink: 0;
}
.licon.blue   { background: var(--ab2-grd-main);   box-shadow: 0 6px 20px rgba(37,99,235,.3); }
.licon.teal   { background: var(--ab2-grd-teal);   box-shadow: 0 6px 20px rgba(15,118,110,.3); }
.licon.green  { background: var(--ab2-grd-green);  box-shadow: 0 6px 20px rgba(5,150,105,.3); }
.licon.purple { background: var(--ab2-grd-purple); box-shadow: 0 6px 20px rgba(124,58,237,.3); }
.licon.orange { background: var(--ab2-grd-orange); box-shadow: 0 6px 20px rgba(217,119,6,.3); }

/* Feature grid 2×2 */
.feat-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 16px; }
.fg-card {
    border-radius: var(--ab2-r-sm); border: 1.5px solid var(--ab2-border);
    padding: 26px 22px; background: var(--ab2-bg);
    transition: var(--ab2-t); position: relative; overflow: hidden;
}
.fg-card .glow-bg {
    position: absolute; bottom: -20px; right: -20px;
    width: 80px; height: 80px; border-radius: 50%;
    opacity: .08; transition: var(--ab2-t);
}
.fg-card:hover .glow-bg { opacity: .2; transform: scale(1.5); }
.fg-card:hover { border-color: rgba(37,99,235,.25); box-shadow: var(--ab2-sh-md); transform: translateY(-4px); }
.fg-card.fb { border-top: 3px solid var(--ab2-blue); }
.fg-card.ft { border-top: 3px solid #0F766E; }
.fg-card.fo { border-top: 3px solid #D97706; }
.fg-card.fp { border-top: 3px solid #7C3AED; }
.fg-icon {
    width: 50px; height: 50px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 14px; background: var(--ab2-white); transition: var(--ab2-t);
}
.fg-card.fb .fg-icon { color: var(--ab2-blue); }
.fg-card.ft .fg-icon { color: #0F766E; }
.fg-card.fo .fg-icon { color: #D97706; }
.fg-card.fp .fg-icon { color: #7C3AED; }
.fg-card:hover .fg-icon { transform: scale(1.15) rotate(-5deg); }
.fg-card h4 { font-size: 15px; font-weight: 700; color: var(--ab2-t1); margin-bottom: 8px; }
.fg-card p  { font-size: 13px; color: var(--ab2-t3); line-height: 1.65; margin: 0; }

/* Stats grid (inside .pc card) */
.ab-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 26px; }
.ab-stat-card {
    background: var(--ab2-bg); border: 1.5px solid var(--ab2-border);
    border-radius: var(--ab2-r-sm); padding: 26px 20px;
    text-align: center; transition: var(--ab2-t);
}
.ab-stat-card:hover { box-shadow: var(--ab2-sh-md); transform: translateY(-3px); }
.ab-stat-card .sc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; margin: 0 auto 14px; transition: var(--ab2-t);
}
.ab-stat-card:hover .sc-icon { transform: scale(1.1) rotate(-5deg); }
.ab-stat-card strong { display: block; font-size: 34px; font-weight: 900; color: var(--ab2-t1); line-height: 1; margin-bottom: 6px; letter-spacing: -.02em; }
.ab-stat-card span   { font-size: 13px; color: var(--ab2-t3); font-weight: 500; }

/* Engagement model cards */
.em-card {
    background: var(--ab2-white); border: 1.5px solid var(--ab2-border);
    border-radius: var(--ab2-r); padding: 34px; margin-bottom: 18px;
    box-shadow: var(--ab2-sh-sm); transition: var(--ab2-t);
    position: relative; overflow: hidden; display: flex; gap: 22px; align-items: flex-start;
}
.em-card:hover { box-shadow: var(--ab2-sh-md); transform: translateY(-3px); border-color: rgba(37,99,235,.2); }
.em-card .em-num {
    font-size: 52px; font-weight: 900; opacity: .05; color: var(--ab2-t1);
    position: absolute; right: 18px; top: 10px; line-height: 1; font-family: monospace;
}
.em-card .em-icon {
    width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; transition: var(--ab2-t);
}
.em-card:hover .em-icon { transform: scale(1.1) rotate(-5deg); }
.em-card .em-body { flex: 1; }
.em-card .em-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.em-card h4 { font-size: 18px; font-weight: 800; color: var(--ab2-t1); margin-bottom: 10px; }
.em-card p  { font-size: 14px; color: var(--ab2-t3); line-height: 1.78; margin: 0; }

/* Why list rows */
.why-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.wl-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; border-radius: var(--ab2-r-sm);
    border: 1.5px solid var(--ab2-border); background: var(--ab2-white); transition: var(--ab2-t);
}
.wl-row:hover { border-color: var(--ab2-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.07); transform: translateX(5px); }
.wl-ico {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; color: #fff; flex-shrink: 0; transition: var(--ab2-t);
}
.wl-row:hover .wl-ico { transform: scale(1.1); }
.wl-txt { flex: 1; }
.wl-txt h5 { font-size: 14px; font-weight: 700; color: var(--ab2-t1); margin: 0 0 3px; }
.wl-txt p  { font-size: 13px; color: var(--ab2-t3); margin: 0; line-height: 1.55; }
.wl-check  { font-size: 20px; color: var(--ab2-border); transition: var(--ab2-t); }
.wl-row:hover .wl-check { color: var(--ab2-blue); }

/* ═══════════════════════════════════════════════════════════
   4. SIDEBAR WIDGETS
   ═══════════════════════════════════════════════════════════ */
.ab-sw-sticky { position: sticky; top: 100px; }
.ab-sw {
    background: var(--ab2-white); border: 1.5px solid var(--ab2-border);
    border-radius: var(--ab2-r); overflow: hidden;
    margin-bottom: 22px; box-shadow: var(--ab2-sh-sm); transition: var(--ab2-t);
}
.ab-sw:hover { box-shadow: var(--ab2-sh-md); }
.ab-sw-hd {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 22px; font-weight: 700; font-size: 14px; color: #fff;
}
.ab-sw-hd i { font-size: 18px; }
.ab-sw-hd.green { background: var(--ab2-grd-green); }
.ab-sw-hd.navy  { background: var(--ab2-grd-dark); }
.ab-sw-hd.blue  { background: var(--ab2-grd-main); }
.ab-sw-bd { padding: 22px; }
.ab-sw-bd-sm { padding: 6px 0; }
.ab-expert-av {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--ab2-bg-2); border: 3px solid var(--ab2-border);
    margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--ab2-t3);
}
.ab-sw-desc { font-size: 13.5px; color: var(--ab2-t2); line-height: 1.65; text-align: center; margin-bottom: 16px; }
.ab-sw-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 11px 16px; border-radius: var(--ab2-r-sm);
    background: var(--ab2-bg); border: 1.5px solid var(--ab2-border);
    color: var(--ab2-t1); font-size: 13px; font-weight: 600;
    text-decoration: none; margin-bottom: 8px; transition: var(--ab2-t);
}
.ab-sw-cta:last-child { margin-bottom: 0; }
.ab-sw-cta:hover { background: var(--ab2-blue); border-color: var(--ab2-blue); color: #fff !important; transform: translateY(-2px); }
.ab-sw-links { list-style: none; padding: 0; margin: 0; }
.ab-sw-links li { border-bottom: 1px solid var(--ab2-border); }
.ab-sw-links li:last-child { border-bottom: none; }
.ab-sw-ml {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px; text-decoration: none; transition: var(--ab2-t);
}
.ab-sw-ml:hover { background: var(--ab2-bg); padding-left: 26px; }
.ab-sw-ml-ico {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--ab2-bg-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; color: var(--ab2-blue); flex-shrink: 0; transition: var(--ab2-t);
}
.ab-sw-ml:hover .ab-sw-ml-ico { background: var(--ab2-blue); color: #fff; }
.ab-sw-lbl { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--ab2-t1); }
.ab-sw-arr { color: var(--ab2-t3); transition: var(--ab2-t); }
.ab-sw-ml:hover .ab-sw-arr { color: var(--ab2-blue); }

/* ═══════════════════════════════════════════════════════════
   5. TEAM SECTION
   ═══════════════════════════════════════════════════════════ */
.ab-sec-bg2 { padding: 110px 0; background: var(--ab2-white); }
.ab-sec-hd  { text-align: center; margin-bottom: 60px; }
.ab-h2 {
    font-size: clamp(26px,3.5vw,44px);
    font-weight: 900; color: var(--ab2-t1);
    letter-spacing: -.025em; margin-bottom: 12px; line-height: 1.1;
}
.ab-p-sub {
    font-size: 16px; color: var(--ab2-t3);
    max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* Gradient text utilities */
.u-txt-g-blue {
    background: var(--ab2-grd-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.u-txt-g-purple {
    background: var(--ab2-grd-purple);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Team cards — full premium */
.ab-team-card {
    background: var(--ab2-white) !important;
    border: 1.5px solid var(--ab2-border) !important;
    border-radius: var(--ab2-r-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--ab2-sh-sm) !important;
    transition: var(--ab2-tl) !important;
}
.ab-team-card:hover {
    box-shadow: var(--ab2-sh-xl) !important;
    transform: translateY(-10px) !important;
    border-color: rgba(37,99,235,.2) !important;
}
.ab-team-card .tc-img-wrap {
    position: relative; overflow: hidden; height: 290px;
}
.ab-team-card .tc-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .65s var(--ab2-ease) !important;
}
.ab-team-card:hover .tc-img-wrap img { transform: scale(1.08) !important; }
.ab-team-card .tc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.88) 0%, transparent 52%) !important;
    opacity: 0 !important; transition: var(--ab2-t) !important;
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
}
.ab-team-card:hover .tc-overlay { opacity: 1 !important; }
.ab-team-card .tc-socials { display: flex; gap: 10px; }
.ab-team-card .tc-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.18); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.35) !important;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 16px; text-decoration: none;
    transform: translateY(8px);
    transition: all .35s var(--ab2-ease) !important;
}
.ab-team-card:hover .tc-socials a { transform: translateY(0) !important; }
.ab-team-card .tc-socials a:nth-child(2) { transition-delay: .05s !important; }
.ab-team-card .tc-socials a:nth-child(3) { transition-delay: .1s !important; }
.ab-team-card .tc-socials a:nth-child(4) { transition-delay: .15s !important; }
.ab-team-card .tc-socials a:hover { background: var(--ab2-blue) !important; border-color: var(--ab2-blue) !important; }
.ab-team-card .tc-body { padding: 22px 24px !important; border-top: 1px solid var(--ab2-border); }
.ab-team-card .tc-body h4 { font-size: 17px; font-weight: 800; color: var(--ab2-t1) !important; margin-bottom: 4px !important; }
.ab-team-card .tc-body span { font-size: 13px; color: var(--ab2-t3) !important; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   6. LEADERSHIP STATEMENTS
   ═══════════════════════════════════════════════════════════ */
.ab-sec-bg1 { padding: 110px 0; background: var(--ab2-bg); }

.ab-review-card {
    background: var(--ab2-white) !important;
    border: 1.5px solid var(--ab2-border) !important;
    border-radius: var(--ab2-r-lg) !important;
    padding: 34px !important;
    box-shadow: var(--ab2-sh-sm) !important;
    transition: var(--ab2-t) !important;
    height: 100%; display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.ab-review-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--ab2-grd-main);
}
.ab-review-card:hover {
    box-shadow: var(--ab2-sh-lg) !important;
    transform: translateY(-6px) !important;
    border-color: rgba(37,99,235,.2) !important;
}
.ab-review-card .rc-quote {
    font-size: 54px; line-height: 1; font-family: Georgia,serif;
    background: var(--ab2-grd-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px; display: block;
}
.ab-review-card .rc-stars { display: flex; gap: 4px; color: #F59E0B; font-size: 15px; margin-bottom: 16px; }
.ab-review-card .rc-text {
    font-size: 14.5px; color: var(--ab2-t2); line-height: 1.85;
    font-style: italic; flex: 1; margin-bottom: 24px;
}
.ab-review-card .rc-author {
    display: flex; align-items: center; gap: 14px;
    margin-top: auto; padding-top: 20px; border-top: 1px solid var(--ab2-border);
}
.ab-review-card .rc-author img {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; border: 2.5px solid var(--ab2-border) !important;
}
.ab-review-card .rc-author h5 { font-size: 14px; font-weight: 700; color: var(--ab2-t1); margin: 0 0 2px; }
.ab-review-card .rc-author span { font-size: 12px; color: var(--ab2-t3); }


/* ═══════════════════════════════════════════════════════════
   8. AI ENABLEMENT SECTION
   ═══════════════════════════════════════════════════════════ */
.ab-ai-section {
    background: var(--ab2-grd-dark) !important;
    padding: 110px 0; position: relative; overflow: hidden;
}
.ab-ai-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 85% 45%, rgba(6,182,212,.28) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 10% 60%, rgba(124,58,237,.22) 0%, transparent 60%);
    pointer-events: none;
}
.ab-ai-section::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 30px 30px; pointer-events: none;
}
.ab-ai-inner { position: relative; z-index: 3; }

.u-img-r-xl { border-radius: var(--ab2-r-xl); width: 100%; box-shadow: var(--ab2-sh-xl); }

.ab-ai-card {
    background: rgba(255,255,255,.08) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: var(--ab2-r) !important;
    padding: 30px !important; transition: var(--ab2-t) !important; height: 100%;
}
.ab-ai-card:hover {
    background: rgba(255,255,255,.14) !important;
    transform: translateY(-6px) !important;
    border-color: rgba(255,255,255,.28) !important;
    box-shadow: var(--ab2-sh-xl) !important;
}
.ab-ai-card .ai-icon {
    width: 60px; height: 60px; border-radius: 18px;
    background: rgba(255,255,255,.15) !important;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff !important;
    margin-bottom: 18px !important; transition: var(--ab2-t);
}
.ab-ai-card:hover .ai-icon { transform: scale(1.1) rotate(-5deg); }
.ab-ai-card h4 { font-size: 17px; font-weight: 700; color: #fff !important; margin-bottom: 10px !important; }
.ab-ai-card p  { font-size: 14px; color: rgba(255,255,255,.72) !important; line-height: 1.78; margin: 0 !important; }

/* AI section heading colors */
.u-clr-white { color: #fff !important; }
.u-clr-w75   { color: rgba(255,255,255,.75) !important; }

/* AI section CTA button */
.btn-cta-w {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; background: #fff; color: var(--ab2-blue) !important;
    font-size: 15px; font-weight: 700; border-radius: 50px;
    text-decoration: none; box-shadow: 0 4px 24px rgba(0,0,0,.22); transition: var(--ab2-t);
}
.btn-cta-w:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); color: var(--ab2-blue) !important; }
.btn-cta-g {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.3);
    color: #fff !important; font-size: 15px; font-weight: 600;
    border-radius: 50px; text-decoration: none; transition: var(--ab2-t);
}
.btn-cta-g:hover { background: rgba(255,255,255,.22); color: #fff !important; }

/* ═══════════════════════════════════════════════════════════
   9. NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.ab-newsletter { padding: 90px 0; background: var(--ab2-bg); }
.ab-nl-card {
    background: var(--ab2-grd-dark);
    border-radius: var(--ab2-r-xl);
    padding: 70px 64px; position: relative; overflow: hidden; color: #fff;
}
.ab-nl-card::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 92% 50%, rgba(6,182,212,.28) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 50%, rgba(124,58,237,.2) 0%, transparent 60%);
    pointer-events: none;
}
.ab-nl-card::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 26px 26px; pointer-events: none;
}
.ab-nl-inner { position: relative; z-index: 2; }
.ab-nl-card h2 {
    font-size: clamp(22px,3.5vw,38px);
    font-weight: 900; color: #fff;
    letter-spacing: -.025em; margin-bottom: 14px;
}
.ab-nl-card p  { font-size: 15.5px; color: rgba(255,255,255,.75); line-height: 1.78; margin-bottom: 32px; max-width: 500px; }
.ab-nl-form { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-nl-form input {
    flex: 1; min-width: 220px; padding: 15px 22px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.25); border-radius: 50px;
    color: #fff; font-size: 14.5px; outline: none; transition: var(--ab2-t);
}
.ab-nl-form input::placeholder { color: rgba(255,255,255,.5); }
.ab-nl-form input:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.18); }
.ab-nl-form button {
    padding: 15px 36px; background: #fff; color: var(--ab2-blue);
    font-size: 14.5px; font-weight: 700; border: none; border-radius: 50px;
    cursor: pointer; transition: var(--ab2-t); white-space: nowrap;
}
.ab-nl-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.24); }
.form-result { margin-top: 14px; font-size: 13px; }
.form-result.success { color: #4ADE80; }
.form-result.error   { color: #F87171; }

/* ═══════════════════════════════════════════════════════════
   10. CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.ab-cta {
    background: var(--ab2-grd-dark) !important;
    padding: 110px 0; position: relative; overflow: hidden;
}
.ab-cta::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 65% at 80% 45%, rgba(6,182,212,.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 55% at 12% 60%, rgba(124,58,237,.2) 0%, transparent 60%);
    pointer-events: none;
}
.ab-cta::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
}
.ab-cta-inner { position: relative; z-index: 3; }
.ab-cta h2 {
    font-size: clamp(26px,4.5vw,52px); font-weight: 900;
    color: #fff; margin-bottom: 18px; line-height: 1.07;
    letter-spacing: -.028em;
}
.ab-cta p { font-size: 16.5px; color: rgba(255,255,255,.78); line-height: 1.75; max-width: 540px; margin: 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

/* CTA mini-card stack */
.cta-card-stack { display: flex; flex-direction: column; gap: 14px; max-width: 340px; margin-left: auto; }
.cta-mini-card {
    background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.18); border-radius: var(--ab2-r-sm);
    padding: 18px 22px; display: flex; align-items: center; gap: 14px;
    animation: ab2-cta-slide .8s var(--ab2-ease) both; transition: var(--ab2-t);
}
.cta-mini-card:hover { background: rgba(255,255,255,.18); transform: translateX(-4px); }
.cta-mini-card:nth-child(2) { animation-delay: .15s; margin-left: 22px; }
.cta-mini-card:nth-child(3) { animation-delay: .30s; margin-left: 11px; }
@keyframes ab2-cta-slide {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
.cta-mini-card .cmc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; color: #fff; flex-shrink: 0; transition: var(--ab2-t);
}
.cta-mini-card:hover .cmc-icon { transform: scale(1.1); }
.cta-mini-card .cmc-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.cta-mini-card .cmc-text span   { font-size: 12px; color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════
   UTILITY — bg colors for icons
   ═══════════════════════════════════════════════════════════ */
.u-bg-blue   { background: var(--ab2-grd-main)   !important; }
.u-bg-teal   { background: var(--ab2-grd-teal)   !important; }
.u-bg-green  { background: var(--ab2-grd-green)  !important; }
.u-bg-purple { background: var(--ab2-grd-purple) !important; }
.u-bg-orange { background: var(--ab2-grd-orange) !important; }

.u-tag-blue   { background: rgba(37,99,235,.1);   color: var(--ab2-blue) !important; }
.u-tag-teal   { background: rgba(15,118,110,.1);  color: #0F766E !important; }
.u-tag-purple { background: rgba(124,58,237,.1);  color: #7C3AED !important; }
.u-tag-green  { background: rgba(5,150,105,.1);   color: #059669 !important; }

.u-mt-28 { margin-top: 28px; }
.u-mb-0  { margin-bottom: 0 !important; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-20 { margin-bottom: 20px; }
.u-mb-24 { margin-bottom: 24px; }

/* Stats value wrapper (num + suffix) */
.ab2-stat-val-wrap {
    display: flex; align-items: baseline; justify-content: center; gap: 2px;
    margin-bottom: 8px;
}
.ab2-stat-suf {
    font-size: clamp(28px,3vw,42px);
    font-weight: 900; color: var(--ab2-t1);
    line-height: 1; letter-spacing: -.02em;
}

/* Trust chip row */
.ab-trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-trust-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.22); border-radius: 50px;
    padding: 6px 14px; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,.85); letter-spacing: .3px;
}
.ab-trust-chip i { font-size: 14px; color: #7DD3FC; }

/* Sidebar heading h4 */
.ab-sw-title { margin: 0; font-size: 15px; font-weight: 700; }

/* sec-label margin variants */
.sec-label-nl  { margin-bottom: 18px !important; }
.sec-label-cta { margin-bottom: 20px !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .ab2-stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 991.98px) {
    .ab-hero { padding: 90px 0 0 !important; min-height: auto; }
    .ab-hero-img-panel { display: none !important; }
    .cta-card-stack  { display: none; }
    .ab2-stats-grid  { grid-template-columns: repeat(2,1fr); }
    .ab-nl-card      { padding: 44px 34px; }
    .ab-sec-bg1,
    .ab-sec-bg2,
    .ab-ai-section,
    .ab-newsletter,
    .ab-cta          { padding: 75px 0; }
    .ab-body         { padding: 70px 0 !important; }
}

@media (max-width: 767.98px) {
    .ab-body         { padding: 52px 0 !important; }
    .pc              { padding: 24px 18px !important; }
    .feat-grid-2     { grid-template-columns: 1fr; gap: 12px; }
    .ab-stats-grid   { grid-template-columns: repeat(2,1fr); }
    .ab-hero-ctas    { flex-direction: column; }
    .btn-hero-main,
    .btn-hero-ghost  { justify-content: center; }
    .cta-btns        { flex-direction: column; }
    .btn-cta-w,
    .btn-cta-g       { justify-content: center; }
.ab-nl-form      { flex-direction: column; }
    .ab-nl-form input,
    .ab-nl-form button { width: 100%; text-align: center; justify-content: center; }
    .em-card         { flex-direction: column; gap: 14px; }
    .ab2-stat-item   { padding: 36px 18px; }
    .ab-sec-bg1,
    .ab-sec-bg2,
    .ab-ai-section,
    .ab-newsletter,
    .ab-cta          { padding: 62px 0; }
    .ab-nl-card      { padding: 34px 24px; }
    .ab-sec-hd       { margin-bottom: 44px; }
}

@media (max-width: 575.98px) {
    .ab-hero h1,
    .ab-hero-h1      { font-size: clamp(28px,9vw,38px) !important; }
    .pc h2           { font-size: 20px; }
    .ab-stats-grid   { grid-template-columns: 1fr 1fr; }
    .ab2-stats-grid  { grid-template-columns: 1fr 1fr; }
    .ab2-stat-item   { padding: 28px 14px; }
    .ab2-stat-num    { font-size: 36px; }
    .ab-nl-card      { padding: 28px 18px; }
    .ab-cta h2       { font-size: clamp(24px,8vw,36px); }
    .ab-team-card .tc-img-wrap { height: 260px; }
    .float-chip.c1,
    .float-chip.c2   { display: none; }
}

@media (max-width: 375px) {
    .ab2-stats-grid  { grid-template-columns: 1fr; }
    .ab-stats-grid   { grid-template-columns: 1fr; }
    .ab-hero h1      { font-size: 28px !important; }
}
