/* ════════════════════════════════════════
   ABOUT PAGE — PREMIUM REDESIGN
   ════════════════════════════════════════ */

/* ── Chip label ── */
.ab-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #6366F1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.25);
    padding: 5px 18px;
    border-radius: 50px;
}
.ab-chip::before {
    content: '';
    width: 6px; height: 6px;
    background: #6366F1;
    border-radius: 50%;
    display: inline-block;
}

/* ── Hero ── */
.ab-hero {
    padding: 30px 0 40px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #4338CA 75%, #6366F1 100%);
    text-align: center;
}
.ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.ab-hero-glow {
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(165,180,252,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.ab-hero-blob1 {
    position: absolute;
    top: -100px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,.25) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: abBlobFloat 7s ease-in-out infinite;
}
.ab-hero-blob2 {
    position: absolute;
    bottom: -80px; left: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: abBlobFloat 9s ease-in-out infinite 2s;
}
@keyframes abBlobFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-20px) scale(1.05); }
}
.ab-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin: 16px 0 20px;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.5px;
}
.ab-hero-title .text-green {
    background: linear-gradient(135deg, #A5B4FC, #818CF8, #C4B5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ab-hero-sub {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 28px;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: #A5B4FC; text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,.55); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ── Stats Bar ── */
.ab-stats-bar {
    background: linear-gradient(135deg, #4338CA, #6366F1);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
.ab-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.ab-stat {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
    position: relative;
    z-index: 1;
}
.ab-stat-last { border-right: none; }
.ab-stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.ab-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 600;
}

/* ── Intro text ── */
.ab-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.85;
    margin-bottom: 16px;
}
.ab-body {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 14px;
}
.ab-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(99,102,241,0.08);
    border: 1px solid rgba(99,102,241,0.25);
    color: #6366F1;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all .25s ease;
}
.ab-badge:hover {
    background: rgba(99,102,241,0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99,102,241,.2);
}
.ab-badge i { color: #6366F1; }

/* ── Story Section ── */
.ab-story-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}
.ab-story-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Image Collage ── */
.ab-collage {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 20px 80px 20px;
}
.ab-collage-main {
    position: relative;
    flex: 0 0 58%;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(99,102,241,0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(99,102,241,.1);
    transform: translateY(20px);
    transition: transform .5s ease, box-shadow .5s ease;
    background: var(--bg-dark);
}
.ab-collage-main:hover {
    transform: translateY(10px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 60px rgba(99,102,241,.2);
    border-color: rgba(99,102,241,.5);
}
.ab-collage-main img {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover; object-position: center top;
    display: block; transition: transform .6s ease;
}
.ab-collage-main:hover img { transform: scale(1.05); }
.ab-collage-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 18px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
    display: flex; flex-direction: column; gap: 2px;
}
.ab-collage-name { color: #fff; font-size: 1rem; font-weight: 800; line-height: 1.2; }
.ab-collage-role { color: #818CF8; font-size: 0.72rem; font-weight: 600; letter-spacing: .5px; }
.ab-collage-stack {
    flex: 1; display: flex; flex-direction: column; gap: 14px; padding-top: 0;
}
.ab-collage-sm {
    position: relative; border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    background: var(--bg-dark);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.ab-collage-sm:first-child { transform: translateX(-8px); }
.ab-collage-sm:last-child  { transform: translateX(8px); }
.ab-collage-sm:hover {
    transform: translateX(0) scale(1.03) !important;
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 30px rgba(99,102,241,.15);
}
.ab-collage-sm img {
    width: 100%; aspect-ratio: 1/1;
    object-fit: cover; object-position: center top;
    display: block; transition: transform .5s ease;
}
.ab-collage-sm:hover img { transform: scale(1.07); }
.ab-collage-sm-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 12px 10px;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 100%);
    color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: .3px;
}
.ab-collage-stat {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    color: #fff; padding: 10px 22px; border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; font-weight: 800; white-space: nowrap;
    box-shadow: 0 8px 32px rgba(99,102,241,.5), 0 0 0 4px rgba(99,102,241,.12);
    animation: collageStatFloat 3.5s ease-in-out infinite; z-index: 5;
}
.ab-collage-stat i { font-size: .9rem; }
.ab-collage-stat strong { font-size: 1rem; display: block; line-height: 1; }
.ab-collage-stat span { font-size: 0.68rem; font-weight: 600; opacity: .8; display: block; }
@keyframes collageStatFloat {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-6px); }
}
.ab-collage-rating {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,.75); border: 1px solid rgba(99,102,241,.3);
    backdrop-filter: blur(10px); padding: 8px 14px; border-radius: 50px;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    z-index: 5; animation: collageStatFloat 4s ease-in-out infinite; animation-delay: .8s;
}
.ab-collage-stars { color: #ffd700; font-size: .7rem; letter-spacing: 1px; }
.ab-collage-rating span { color: #fff; font-size: .65rem; font-weight: 700; white-space: nowrap; }
.ab-collage-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.ab-collage-orb-1 {
    width: 200px; height: 200px; top: -30px; left: -30px;
    background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%);
}
.ab-collage-orb-2 {
    width: 150px; height: 150px; bottom: 40px; right: -20px;
    background: radial-gradient(circle, rgba(99,102,241,.07) 0%, transparent 70%);
}

/* ── Mission / Vision ── */
.ab-mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}
.ab-mv-card:hover {
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 20px 60px rgba(99,102,241,.12);
    transform: translateY(-6px);
}
.ab-mv-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366F1, #818CF8, #A5B4FC);
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.ab-mv-card:hover .ab-mv-bar { transform: scaleX(1); }
.ab-mv-icon {
    width: 64px; height: 64px;
    background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #6366F1; margin-bottom: 24px; transition: all .4s ease;
}
.ab-mv-card:hover .ab-mv-icon {
    background: rgba(99,102,241,.18);
    box-shadow: 0 0 30px rgba(99,102,241,.35);
    transform: scale(1.1) rotate(-5deg);
}
.ab-mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.ab-mv-card p { color: var(--text-gray); font-size: .95rem; line-height: 1.8; margin-bottom: 20px; }
.ab-mv-list { list-style: none; padding: 0; margin: 0; }
.ab-mv-list li {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-light); font-size: .88rem;
    padding: 8px 0; border-bottom: 1px solid var(--border-color);
}
.ab-mv-list li:last-child { border-bottom: none; }
.ab-mv-list li i { color: #6366F1; font-size: .75rem; }

/* ── Why cards ── */
.ab-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px; padding: 32px 28px; height: 100%;
    transition: all .4s cubic-bezier(.175,.885,.32,1.275);
    position: relative; overflow: hidden;
}
.ab-why-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366F1, #818CF8);
    transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.ab-why-card:hover .ab-why-bar { transform: scaleX(1); }
.ab-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,.35);
    box-shadow: 0 20px 50px rgba(99,102,241,.12);
    background: var(--bg-card-hover);
}
.ab-why-icon {
    width: 60px; height: 60px;
    background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.2);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #6366F1; margin-bottom: 20px; transition: all .4s ease;
}
.ab-why-card:hover .ab-why-icon {
    background: rgba(99,102,241,.18);
    box-shadow: 0 0 25px rgba(99,102,241,.35);
    transform: scale(1.1) rotate(-5deg);
}
.ab-why-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.ab-why-card p { color: var(--text-gray); font-size: .9rem; line-height: 1.75; margin: 0; }

/* ── Tech cards ── */
.ab-tech-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 20px; padding: 28px 20px; text-align: center;
    transition: all .4s ease; height: 100%;
}
.ab-tech-card:hover {
    border-color: rgba(99,102,241,.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99,102,241,.12);
    background: var(--bg-card-hover);
}
.ab-tech-icon {
    width: 60px; height: 60px;
    background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.2);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #6366F1; margin: 0 auto 16px; transition: all .4s ease;
}
.ab-tech-card:hover .ab-tech-icon {
    background: rgba(99,102,241,.18);
    box-shadow: 0 0 25px rgba(99,102,241,.35);
    transform: scale(1.1) rotate(-5deg);
}
.ab-tech-card h5 { font-size: 1rem; margin-bottom: 6px; }
.ab-tech-card p { color: var(--text-gray); font-size: .82rem; margin: 0; }

/* ── Work Showcase ── */
.ab-showcase-lg {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border-color); height: 100%; min-height: 320px;
    transition: all .4s ease;
}
.ab-showcase-lg:hover {
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 16px 50px rgba(99,102,241,.14);
}
.ab-showcase-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    align-items: flex-start; padding: 24px; box-sizing: border-box; width: 100%;
}
.ab-showcase-overlay h5 { color: #fff; font-size: 1.1rem; margin: 8px 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
.ab-showcase-overlay p  { color: rgba(255,255,255,.7); font-size: .85rem; margin: 0; }
.ab-showcase-tag {
    display: inline-block; background: rgba(99,102,241,.18);
    color: #818CF8; border: 1px solid rgba(99,102,241,.35);
    padding: 3px 12px; border-radius: 50px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; white-space: nowrap;
}
.ab-showcase-sm {
    display: flex; align-items: center; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border-color); background: var(--bg-card);
    transition: all .4s ease; min-height: 120px; padding: 12px; gap: 16px;
}
.ab-showcase-sm:hover {
    border-color: rgba(99,102,241,.35);
    box-shadow: 0 10px 30px rgba(99,102,241,.12);
    transform: translateX(4px);
}
.ab-showcase-sm-info {
    padding: 4px 0; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start; gap: 6px; flex: 1;
}
.ab-showcase-sm-info h5 { color: var(--text-white); font-size: .95rem; margin: 0; }
.ab-showcase-sm-info p  { color: var(--text-gray); font-size: .82rem; margin: 0; line-height: 1.5; }

/* ── Browser mockup ── */
.ab-mock-browser {
    border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    flex-shrink: 0;
}
.ab-mock-sm { width: 140px; height: 110px; }
.ab-mock-bar {
    background: #1a1a2e; padding: 5px 8px;
    display: flex; align-items: center; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ab-mock-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.ab-mock-body { height: calc(100% - 22px); overflow: hidden; }
.ab-mock-nav {
    padding: 4px 8px; display: flex; align-items: center;
    justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.06);
}
.ab-mock-navlink { color: rgba(255,255,255,.5); font-size: .42rem; font-weight: 600; }

/* ── Team Section ── */
.ab-team-section {
    position: relative; overflow: hidden;
}
.ab-team-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99,102,241,.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99,102,241,.04) 0%, transparent 40%);
    pointer-events: none;
}

/* ── Team Card ── */
.ab-team-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    max-width: 320px;
    margin: 0 auto;
    cursor: default;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    transition: transform .35s cubic-bezier(.175,.885,.32,1.275),
                box-shadow .35s ease, border-color .35s ease;
}
.ab-team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(99,102,241,.2);
    border-color: rgba(99,102,241,.4);
}

/* Top accent bar */
.ab-team-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6366F1, #818CF8, #A5B4FC);
    z-index: 5;
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.ab-team-card:hover::before { transform: scaleX(1); }

/* Number badge */
.ab-team-card::after {
    content: attr(data-num);
    position: absolute; top: 14px; left: 14px;
    width: 28px; height: 28px;
    background: rgba(99,102,241,.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .65rem; font-weight: 800;
    z-index: 6; backdrop-filter: blur(4px);
}

/* Image wrapper */
.ab-team-img-wrap {
    position: relative; overflow: hidden;
    width: 100%; height: 280px;
    background: var(--bg-dark);
}
.ab-team-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 15%;
    display: block; transition: transform .55s ease;
}
.ab-team-card:hover .ab-team-img-wrap img { transform: scale(1.06); }

/* Gradient overlay on image */
.ab-team-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%);
    pointer-events: none;
}

/* Social icons */
.ab-team-overlay {
    position: absolute; top: 14px; right: 14px;
    display: flex; flex-direction: column; gap: 7px;
    z-index: 7; opacity: 0; transform: translateX(10px);
    transition: opacity .3s ease, transform .3s ease;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; transform: translateX(0); }
.ab-team-overlay a {
    width: 32px; height: 32px;
    background: rgba(99,102,241,.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: .78rem; font-weight: 700;
    text-decoration: none; transition: transform .25s ease, background .25s ease;
    backdrop-filter: blur(4px);
}
.ab-team-overlay a:hover { transform: scale(1.15); background: #fff; color: #6366F1; }

/* Info panel */
.ab-team-info {
    padding: 18px 20px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    position: relative; z-index: 2;
}
.ab-team-info h4 {
    font-size: 1rem; font-weight: 800; color: var(--text-white);
    margin: 0 0 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ab-team-role {
    display: block; color: #818CF8; font-size: .75rem; font-weight: 700;
    letter-spacing: .3px; margin-bottom: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ab-team-bio-wrap { margin-top: 10px; }
.ab-team-info p {
    color: var(--text-gray); font-size: .82rem; line-height: 1.65; margin: 0 0 10px;
}
.ab-team-skills { display: flex; flex-wrap: wrap; gap: 5px; }
.ab-team-skills span {
    background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.22);
    color: #818CF8; padding: 3px 10px; border-radius: 50px;
    font-size: .7rem; font-weight: 700; letter-spacing: .3px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .ab-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 22px 12px; }
    .ab-stat-last { border-bottom: none; }
    .ab-collage { flex-direction: column; padding: 10px 0 60px; gap: 12px; }
    .ab-collage-main { flex: none; width: 100%; transform: none; }
    .ab-collage-main img { aspect-ratio: 16/9; }
    .ab-collage-stack { flex-direction: row; gap: 12px; }
    .ab-collage-sm { flex: 1; }
    .ab-collage-sm:first-child, .ab-collage-sm:last-child { transform: none; }
    .ab-collage-sm img { aspect-ratio: 1/1; }
    .ab-collage-rating { top: auto; bottom: 65px; right: 10px; }
    .ab-team-card { max-width: 100%; }
    .ab-team-img-wrap { height: 260px; }
    .ab-mv-card { padding: 28px 22px; }
    .ab-why-card { padding: 24px 18px; }
}

@media (max-width: 767px) {
    .ab-hero { padding: 40px 0 36px; }
    .ab-hero-title { font-size: 1.85rem !important; word-break: break-word; }
    .ab-hero-sub { font-size: .88rem; }
    .ab-chip { font-size: .68rem; padding: 4px 14px; }
    .ab-stat { padding: 16px 10px; }
    .ab-stat-num { font-size: 1.8rem; }
    .ab-stat-label { font-size: .62rem; }
    .ab-collage { flex-direction: column; padding: 10px 0 56px; gap: 10px; }
    .ab-collage-main { width: 100%; transform: none; }
    .ab-collage-main img { aspect-ratio: 4/3; }
    .ab-collage-stack { flex-direction: row; gap: 10px; }
    .ab-collage-sm { flex: 1; }
    .ab-collage-sm:first-child, .ab-collage-sm:last-child { transform: none; }
    .ab-collage-sm img { aspect-ratio: 1/1; }
    .ab-collage-stat { font-size: .75rem; padding: 8px 16px; }
    .ab-collage-rating { top: auto; bottom: 60px; right: 8px; }
    .ab-collage-orb { display: none; }
    .ab-lead { font-size: .95rem; }
    .ab-body { font-size: .85rem; }
    .ab-badge { font-size: .75rem; padding: 5px 12px; }
    .ab-mv-card { padding: 22px 16px; }
    .ab-mv-card h3 { font-size: 1.2rem; }
    .ab-mv-icon { width: 52px; height: 52px; font-size: 1.3rem; }
    .ab-why-card { padding: 20px 16px; }
    .ab-why-card h4 { font-size: .95rem; }
    .ab-why-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .ab-showcase-sm { flex-direction: row !important; padding: 10px !important; gap: 10px !important; min-height: unset; }
    .ab-showcase-sm-info h5 { font-size: .88rem; }
    .ab-showcase-sm-info p  { font-size: .78rem; }
    .ab-tech-card { padding: 20px 14px; }
    .ab-tech-icon { width: 48px; height: 48px; font-size: 1.3rem; }
    .ab-tech-card h5 { font-size: .88rem; }
    .ab-tech-card p  { font-size: .75rem; }
    .ab-team-card { max-width: 100%; }
    .ab-team-img-wrap { height: 0 !important; padding-bottom: 120% !important; position: relative !important; }
    .ab-team-img-wrap img { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; }
    .ab-team-info { padding: 12px 14px 14px; }
    .ab-team-info h4 { font-size: .9rem; }
    .ab-team-role { font-size: .7rem; }
    .ab-team-info p { font-size: .78rem; }
    .ab-team-skills span { font-size: .68rem; padding: 2px 8px; }
    .cta-section h2 { font-size: 1.6rem; }
    .cta-section p  { font-size: .88rem; }
}

@media (max-width: 480px) {
    .ab-hero-title { font-size: 1.55rem !important; }
    .ab-stat-num { font-size: 1.5rem; }
    .ab-team-img-wrap { padding-bottom: 110% !important; }
    .ab-team-info { padding: 10px 12px 12px; }
    .ab-team-info h4 { font-size: .85rem; }
    .ab-team-role { font-size: .65rem; }
    .ab-team-info p { display: none; }
    .ab-team-skills { display: none; }
    .ab-collage-stat { font-size: .7rem; padding: 6px 12px; }
}

@media (max-width: 360px) {
    .ab-hero-title { font-size: 1.35rem !important; }
    .ab-team-img-wrap { padding-bottom: 100% !important; }
    .ab-team-info h4 { font-size: .8rem; }
}
