/* =============================================
   ABOUT PAGE STYLES - HighMix Company
   Matches: index.php design system
   Primary Red : #FF0900
   Dark Navy   : #1a1a2e
   Font        : Cairo (Arabic), Inter (English)
   ============================================= */

/* ─── PAGE HERO BANNER ──────────────────────── */
.about-hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    direction: rtl;
}

/* subtle radial gradient bg */
.about-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255, 9, 0, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(26, 26, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* large outlined watermark text */
.about-hero-banner::after {
    content: 'HIGHMIX';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 800;
    -webkit-text-stroke: 1.5px rgba(255, 8, 0, 0.17);
    color: transparent;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    animation: abFadeDown 0.8s ease both;
}

/* breadcrumb */
.ab-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    direction: rtl;
}

.ab-breadcrumb a {
    color: #FF0900;
    text-decoration: none;
    transition: color 0.2s;
}

.ab-breadcrumb a:hover {
    color: #c00;
}

.ab-breadcrumb i {
    font-size: 0.7rem;
    color: #bbb;
}

.about-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-hero-title span {
    color: #FF0900;
}

.about-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    line-height: 2;
    max-width: 680px;
    margin: 0 auto;
}

/* decorative red line under title */
.ab-title-line {
    width: 70px;
    height: 4px;
    background: #FF0900;
    border-radius: 10px;
    margin: 18px auto 24px;
    position: relative;
}

.ab-title-line::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 12px;
    height: 4px;
    background: #FF0900;
    border-radius: 10px;
    opacity: 0.4;
}

/* ─── SECTION HEADER SHARED ──────────────────── */
.ab-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-section-tag {
    display: inline-block;
    background: rgba(255, 9, 0, 0.08);
    color: #FF0900;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 9, 0, 0.18);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.ab-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ab-section-title span {
    color: #FF0900;
}

.ab-section-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ─── STORY SECTION ──────────────────────────── */
.ab-story-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ab-story-bg-vector {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.04;
    width: 500px;
    pointer-events: none;
}

.ab-story-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    direction: rtl;
}

/* Image side */
.ab-story-img-wrap {
    position: relative;
}

.ab-story-img-main {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: 500px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease;
}

.ab-story-img-main:hover {
    transform: scale(1.02);
}

/* floating red accent badge */
.ab-story-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #FF0900;
    color: #fff;
    border-radius: 18px;
    padding: 22px 28px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(255, 9, 0, 0.35);
    animation: abBadgeFloat 4s ease-in-out infinite;
    z-index: 5;
}

.ab-story-badge .badge-num {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.ab-story-badge .badge-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

/* outline circle decoration */
.ab-story-outline-circle {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 9, 0, 0.25);
    animation: abSpin 20s linear infinite;
}

.ab-story-red-dot {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #FF0900;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(255, 9, 0, 0.4);
}

/* Content side */
.ab-story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-story-content .ab-section-header {
    text-align: right;
    margin-bottom: 12px;
}

.ab-story-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 2.1;
    text-align: right;
}

.ab-story-text strong {
    color: #FF0900;
}

/* highlights list */
.ab-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.ab-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    direction: rtl;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: default;
}

.ab-highlight-item:hover {
    background: #fff5f5;
    border-color: rgba(255, 9, 0, 0.15);
    transform: translateX(-4px);
    box-shadow: 0 8px 24px rgba(255, 9, 0, 0.06);
}

.ab-highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 9, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0900;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}

.ab-highlight-item:hover .ab-highlight-icon {
    background: #FF0900;
    color: #fff;
    transform: rotate(10deg) scale(1.08);
}

.ab-highlight-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.ab-highlight-text p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
}

/* CTA */
.ab-story-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #FF0900;
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(255, 9, 0, 0.30);
    width: fit-content;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.ab-story-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.ab-story-cta:hover::before {
    width: 300px;
    height: 300px;
}

.ab-story-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 38px rgba(255, 9, 0, 0.38);
}

/* ─── STATS SECTION ──────────────────────────── */
.ab-stats-section {
    background: #1a1a2e;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ab-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 9, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 9, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.ab-stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    direction: rtl;
    position: relative;
    z-index: 2;
}

.ab-stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.ab-stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FF0900;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.ab-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.ab-stat-card:hover::before {
    transform: scaleX(1);
}

.ab-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 9, 0, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #FF0900;
    transition: transform 0.3s ease;
}

.ab-stat-card:hover .ab-stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.ab-stat-num {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.ab-stat-num span {
    color: #FF0900;
    font-size: 0.65em;
}

.ab-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ─── VALUES SECTION ─────────────────────────── */
.ab-values-section {
    background: #f5f5f8;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ab-values-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    direction: rtl;
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.ab-value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
}

.ab-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF0900, #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.ab-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 9, 0, 0.10);
    border-color: rgba(255, 9, 0, 0.15);
}

.ab-value-card:hover::before {
    transform: scaleX(1);
}

/* large ghost icon behind */
.ab-value-card-bg-icon {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 7rem;
    color: rgba(255, 9, 0, 0.04);
    pointer-events: none;
    transition: transform 0.4s ease, color 0.4s ease;
}

.ab-value-card:hover .ab-value-card-bg-icon {
    transform: scale(1.2) rotate(-10deg);
    color: rgba(255, 9, 0, 0.07);
}

.ab-value-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255, 9, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #FF0900;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.ab-value-card:hover .ab-value-icon-wrap {
    background: #FF0900;
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 9, 0, 0.3);
}

.ab-value-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    text-align: right;
}

.ab-value-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 2;
    text-align: right;
}

/* ─── TEAM / FLEET SECTION ───────────────────── */
.ab-fleet-section {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.ab-fleet-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    direction: rtl;
}

.ab-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.ab-fleet-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: default;
}

.ab-fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.ab-fleet-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ab-fleet-card:hover .ab-fleet-card-img {
    transform: scale(1.06);
}

.ab-fleet-card-info {
    padding: 24px 24px 28px;
    background: #fff;
    text-align: right;
    border-top: 3px solid #FF0900;
    position: relative;
}

.ab-fleet-card-icon {
    width: 48px;
    height: 48px;
    background: #FF0900;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.ab-fleet-card:hover .ab-fleet-card-icon {
    transform: rotate(10deg) scale(1.1);
}

.ab-fleet-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.ab-fleet-card-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.8;
}

.ab-fleet-card-count {
    position: absolute;
    top: -20px;
    left: 20px;
    background: #1a1a2e;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    padding: 6px 18px;
    border-radius: 50px;
    border: 3px solid #fff;
}

/* ─── PARTNERS STRIP (reused from index) ─────── */
.ab-partners-section {
    background: #f5f5f8;
    padding: 60px 0;
    overflow: hidden;
}

.ab-partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.ab-partners-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ab-partners-title span {
    color: #FF0900;
}

.ab-partners-logos-wrapper {
    overflow: hidden;
    position: relative;
}

.ab-partners-logos-wrapper::before,
.ab-partners-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ab-partners-logos-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #f5f5f8, transparent);
}

.ab-partners-logos-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #f5f5f8, transparent);
}

.ab-partners-logos {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: abLogoScroll 28s linear infinite;
    width: max-content;
}

.ab-partners-logos img {
    height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ab-partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ─── CONTACT CTA SECTION ────────────────────── */
.ab-cta-section {
    background: #1a1a2e;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.ab-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 9, 0, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* decorative circles */
.ab-cta-circle-1,
.ab-cta-circle-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 9, 0, 0.15);
    pointer-events: none;
}

.ab-cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: abSpin 30s linear infinite;
}

.ab-cta-circle-2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: -60px;
    animation: abSpin 20s linear infinite reverse;
}

.ab-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.ab-cta-tag {
    display: inline-block;
    background: rgba(255, 9, 0, 0.15);
    color: #FF0900;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 9, 0, 0.25);
    margin-bottom: 24px;
}

.ab-cta-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ab-cta-title span {
    color: #FF0900;
}

.ab-cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 2;
    margin-bottom: 40px;
}

.ab-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ab-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: #FF0900;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 32px rgba(255, 9, 0, 0.35);
    border: 2px solid transparent;
}

.ab-cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 48px rgba(255, 9, 0, 0.45);
}

.ab-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.ab-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ─── SCROLL REVEAL UTILITY ──────────────────── */
.ab-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ab-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ab-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ab-reveal.visible,
.ab-reveal-left.visible,
.ab-reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* stagger children */
.ab-stagger>*:nth-child(1) {
    transition-delay: 0.05s;
}

.ab-stagger>*:nth-child(2) {
    transition-delay: 0.15s;
}

.ab-stagger>*:nth-child(3) {
    transition-delay: 0.25s;
}

.ab-stagger>*:nth-child(4) {
    transition-delay: 0.35s;
}

.ab-stagger>*:nth-child(5) {
    transition-delay: 0.45s;
}

.ab-stagger>*:nth-child(6) {
    transition-delay: 0.55s;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes abFadeDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes abBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes abSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes abLogoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
    .ab-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ab-story-img-main {
        height: 380px;
    }

    .ab-story-badge {
        left: 10px;
        bottom: -20px;
    }

    .ab-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-banner {
        min-height: 320px;
    }

    .ab-story-section,
    .ab-values-section,
    .ab-fleet-section,
    .ab-cta-section {
        padding: 70px 0;
    }

    .ab-story-container,
    .ab-values-container,
    .ab-fleet-container {
        padding: 0 20px;
    }

    .ab-stats-container {
        padding: 0 20px;
        gap: 16px;
    }

    .ab-fleet-grid {
        grid-template-columns: 1fr;
    }

    .ab-values-grid {
        grid-template-columns: 1fr;
    }

    .ab-section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 560px) {
    .about-hero-title {
        font-size: 1.9rem;
    }

    .about-hero-subtitle {
        font-size: 0.92rem;
    }

    .ab-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ab-stat-card {
        padding: 28px 14px;
    }

    .ab-stat-num {
        font-size: 1.9rem;
    }

    .ab-story-badge {
        left: 8px;
        bottom: -10px;
        padding: 14px 18px;
    }

    .ab-story-badge .badge-num {
        font-size: 1.9rem;
    }

    .ab-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ab-cta-btn-primary,
    .ab-cta-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}