/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.ab-hero {
    background-color: #0f2b46;
    background-image:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.65) 100%),
        url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 84, 144, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.ab-hero-content {
    position: relative;
    z-index: 2;
}

.ab-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    color: white;
    line-height: 1.2;
}

.ab-hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   SHARED STYLES
   ============================================ */

.ab-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a5490;
    margin-bottom: 12px;
}

.ab-label-center {
    display: block;
    text-align: center;
}

.ab-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f2b46;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.ab-intro {
    padding: 90px 20px;
    background: #ffffff;
}

.ab-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-intro-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0f2b46;
    line-height: 1.25;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 20px;
}

.ab-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #1a5490, #42a5f5);
    border-radius: 4px;
}

.ab-intro-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stats Grid */
.ab-intro-stats {
    margin-top: 50px;
    margin-left: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ab-stat-card {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #93c5fd;
}

.ab-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 6px;
    line-height: 1;
}

.ab-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.ab-why {
    padding: 90px 20px;
    background: #f8fafc;
}

.ab-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ab-why-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    border-color: #c5d5e8;
}

.ab-why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #e8f0fe, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a4a7a;
    transition: all 0.3s ease;
}

.ab-why-card:hover .ab-why-icon {
    background: linear-gradient(135deg, #1a4a7a, #0f2b46);
    color: white;
    transform: scale(1.06);
}

.ab-why-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f2b46;
    margin-bottom: 6px;
    line-height: 1.35;
}

.ab-why-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
}

/* ============================================
   LEADERSHIP / TEAM SECTION
   ============================================ */

.ab-team {
    padding: 90px 20px;
    background: #f8fafc;
}

.ab-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    justify-items: center;
}

.ab-team-member {
    text-align: center;
    max-width: 280px;
}

.ab-team-photo {
    width: 220px;
    height: 260px;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ab-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.ab-team-member:hover .ab-team-photo img {
    transform: scale(1.04);
}

.ab-team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0f2b46;
    margin-bottom: 6px;
}

.ab-team-name span {
    color: #1a5490;
}

.ab-team-role {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.ab-team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #0f2b46;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ab-team-social a:hover {
    background: #1a5490;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.ab-products {
    padding: 90px 20px;
    background: #ffffff;
}

.ab-products-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a4a7a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ab-products-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ab-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.ab-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 24px 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ab-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ab-product-icon {
    width: 80px;
    height: 80px;
    background: #1a4a7a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ab-product-card:hover .ab-product-icon {
    background: #2563eb;
    transform: scale(1.05);
}

.ab-product-icon i {
    font-size: 36px;
    color: white;
}

.ab-product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ab-product-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.ab-product-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */

.ab-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a365d 50%, #1a5490 100%);
    position: relative;
    overflow: hidden;
}

.ab-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ab-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 84, 144, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ab-cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ab-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.ab-cta-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.ab-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ab-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ab-cta-btn:hover::before {
    left: 100%;
}

.ab-cta-primary {
    background: linear-gradient(135deg, #2196F3 0%, #1a5490 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.ab-cta-primary:hover {
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.5);
}

.ab-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.ab-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE BREAKPOINTS
   ============================================ */

/* Large Desktops: 1440px+ */
@media (min-width: 1440px) {

    .ab-intro-grid,
    .ab-products-grid,
    .ab-team-grid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Standard Desktops: 1200px - 1439px */
@media (max-width: 1439px) {
    .ab-hero-content h1 {
        font-size: 48px;
    }

    .ab-intro-text h2 {
        font-size: 32px;
    }

    .ab-section-title {
        font-size: 34px;
    }

    .ab-products-title {
        font-size: 40px;
    }
}

/* Tablets and Medium Screens: 1024px - 1199px */
@media (max-width: 1199px) {
    .ab-hero {
        padding: 90px 20px;
    }

    .ab-hero-content h1 {
        font-size: 44px;
    }

    .ab-hero-content p {
        font-size: 18px;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 80px 20px;
    }

    .ab-intro-grid {
        gap: 55px;
    }

    .ab-intro-text h2 {
        font-size: 30px;
    }

    .ab-team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .ab-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    .ab-cta {
        padding: 90px 20px;
    }

    .ab-cta-content h2 {
        font-size: 38px;
    }
}

/* Small Tablets: 768px - 1023px */
@media (max-width: 1023px) {
    .ab-hero {
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .ab-hero-content h1 {
        font-size: 40px;
    }

    .ab-hero-content p {
        font-size: 17px;
        max-width: 520px;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 70px 18px;
    }

    .ab-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ab-intro-stats {
        margin-left: 0;
        margin-top: 40px;
    }

    .ab-intro-text h2 {
        font-size: 28px;
        padding-bottom: 18px;
    }

    .ab-section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .ab-products-title {
        font-size: 34px;
    }

    .ab-products-subtitle {
        font-size: 16px;
    }

    .ab-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .ab-team-photo {
        width: 200px;
        height: 240px;
    }

    .ab-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ab-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ab-cta {
        padding: 80px 18px;
    }

    .ab-cta-content h2 {
        font-size: 34px;
    }

    .ab-cta-content p {
        font-size: 17px;
    }
}

/* Mobile Landscape and Large Phones: 600px - 767px */
@media (max-width: 767px) {
    .ab-hero {
        padding: 70px 18px;
    }

    .ab-hero-content h1 {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .ab-hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 60px 16px;
    }

    .ab-intro-grid {
        gap: 40px;
    }

    .ab-intro-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .ab-intro-text h2::after {
        width: 45px;
        height: 3px;
    }

    .ab-intro-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .ab-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .ab-section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .ab-intro-stats {
        margin-top: 35px;
        gap: 18px;
    }

    .ab-stat-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .ab-stat-number {
        font-size: 32px;
    }

    .ab-stat-label {
        font-size: 13px;
    }

    .ab-team-grid {
        gap: 35px;
    }

    .ab-team-photo {
        width: 180px;
        height: 220px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .ab-team-name {
        font-size: 20px;
    }

    .ab-team-role {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .ab-team-social a {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 7px;
    }

    .ab-products-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .ab-products-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .ab-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .ab-product-card {
        padding: 32px 20px 28px;
        gap: 14px;
    }

    .ab-product-icon {
        width: 70px;
        height: 70px;
        border-radius: 11px;
    }

    .ab-product-icon i {
        font-size: 32px;
    }

    .ab-product-title {
        font-size: 15px;
        min-height: 42px;
    }

    .ab-product-link {
        font-size: 13px;
    }

    .ab-cta {
        padding: 70px 16px;
    }

    .ab-cta-content h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .ab-cta-content p {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .ab-cta-buttons {
        gap: 14px;
    }

    .ab-cta-btn {
        padding: 16px 36px;
        font-size: 15px;
        border-radius: 12px;
    }
}

/* Standard Mobile: 480px - 599px */
@media (max-width: 599px) {
    .ab-hero {
        padding: 60px 16px;
    }

    .ab-hero-content h1 {
        font-size: 30px;
        letter-spacing: -0.3px;
    }

    .ab-hero-content p {
        font-size: 15px;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 50px 15px;
    }

    .ab-intro-grid {
        gap: 35px;
    }

    .ab-intro-text h2 {
        font-size: 24px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .ab-intro-text h2::after {
        width: 42px;
    }

    .ab-intro-text p {
        font-size: 14.5px;
        margin-bottom: 16px;
    }

    .ab-label {
        font-size: 11.5px;
        margin-bottom: 10px;
    }

    .ab-section-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .ab-intro-stats {
        margin-top: 30px;
        gap: 16px;
    }

    .ab-stat-card {
        padding: 24px 18px;
        border-radius: 13px;
    }

    .ab-stat-number {
        font-size: 30px;
    }

    .ab-stat-label {
        font-size: 12.5px;
    }

    .ab-team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ab-team-member {
        max-width: 100%;
    }

    .ab-team-photo {
        width: 100%;
        max-width: 200px;
        height: 230px;
    }

    .ab-team-name {
        font-size: 19px;
    }

    .ab-team-role {
        font-size: 12.5px;
    }

    .ab-products-title {
        font-size: 26px;
    }

    .ab-products-subtitle {
        font-size: 14.5px;
        margin-bottom: 35px;
    }

    .ab-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ab-product-card {
        padding: 30px 18px 26px;
        border-radius: 11px;
    }

    .ab-product-icon {
        width: 66px;
        height: 66px;
        border-radius: 10px;
        margin-bottom: 6px;
    }

    .ab-product-icon i {
        font-size: 30px;
    }

    .ab-product-title {
        font-size: 14.5px;
        min-height: auto;
    }

    .ab-product-link {
        font-size: 12.5px;
    }

    .ab-cta {
        padding: 60px 15px;
    }

    .ab-cta-content h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .ab-cta-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .ab-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .ab-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
        font-size: 14.5px;
    }
}

/* Small Mobile: 375px - 479px */
@media (max-width: 479px) {
    .ab-hero {
        padding: 50px 14px;
    }

    .ab-hero-content h1 {
        font-size: 26px;
    }

    .ab-hero-content p {
        font-size: 14px;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 40px 14px;
    }

    .ab-intro-grid {
        gap: 30px;
    }

    .ab-intro-text h2 {
        font-size: 22px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .ab-intro-text h2::after {
        width: 40px;
        height: 3px;
    }

    .ab-intro-text p {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .ab-label {
        font-size: 11px;
    }

    .ab-section-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .ab-intro-stats {
        margin-top: 26px;
        gap: 14px;
    }

    .ab-stat-card {
        padding: 22px 16px;
        border-radius: 12px;
    }

    .ab-stat-number {
        font-size: 28px;
    }

    .ab-stat-label {
        font-size: 12px;
    }

    .ab-team-grid {
        gap: 28px;
    }

    .ab-team-photo {
        max-width: 180px;
        height: 210px;
    }

    .ab-team-name {
        font-size: 18px;
    }

    .ab-team-role {
        font-size: 12px;
    }

    .ab-team-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .ab-products-title {
        font-size: 24px;
    }

    .ab-products-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .ab-products-grid {
        gap: 14px;
    }

    .ab-product-card {
        padding: 28px 16px 24px;
        border-radius: 10px;
    }

    .ab-product-icon {
        width: 62px;
        height: 62px;
        border-radius: 9px;
    }

    .ab-product-icon i {
        font-size: 28px;
    }

    .ab-product-title {
        font-size: 14px;
    }

    .ab-product-link {
        font-size: 12px;
    }

    .ab-cta {
        padding: 55px 14px;
    }

    .ab-cta-content h2 {
        font-size: 24px;
    }

    .ab-cta-content p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .ab-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
        border-radius: 11px;
    }
}

/* Extra Small Mobile: 320px - 374px */
@media (max-width: 374px) {
    .ab-hero {
        padding: 45px 12px;
    }

    .ab-hero-content h1 {
        font-size: 24px;
    }

    .ab-hero-content p {
        font-size: 13px;
    }

    .ab-intro,
    .ab-products,
    .ab-team,
    .ab-why {
        padding: 35px 12px;
    }

    .ab-intro-text h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .ab-intro-text h2::after {
        width: 38px;
    }

    .ab-intro-text p {
        font-size: 13px;
    }

    .ab-section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .ab-intro-stats {
        margin-top: 22px;
        gap: 12px;
    }

    .ab-stat-card {
        padding: 20px 14px;
    }

    .ab-stat-number {
        font-size: 26px;
    }

    .ab-stat-label {
        font-size: 11px;
    }

    .ab-team-photo {
        max-width: 160px;
        height: 190px;
    }

    .ab-team-name {
        font-size: 17px;
    }

    .ab-team-role {
        font-size: 11.5px;
    }

    .ab-products-title {
        font-size: 22px;
    }

    .ab-products-subtitle {
        font-size: 13px;
    }

    .ab-product-card {
        padding: 24px 14px 20px;
    }

    .ab-product-icon {
        width: 58px;
        height: 58px;
    }

    .ab-product-icon i {
        font-size: 26px;
    }

    .ab-product-title {
        font-size: 13px;
    }

    .ab-cta-content h2 {
        font-size: 22px;
    }

    .ab-cta-content p {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .ab-cta-btn {
        padding: 13px 20px;
        font-size: 13px;
    }
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

.ab-product-link:focus,
.ab-cta-btn:focus,
.ab-team-social a:focus {
    outline: 3px solid #64b5f6;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}