﻿@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Section ── */
.ab-section {
    background: #050810;
    padding: 20px 22px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
    color:#ffffff;
}

    .ab-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #00e5ff, #7b5ef8, #00e5ff);
        background-size: 200% 100%;
        animation: ab-shimmer 3s linear infinite;
    }

@keyframes ab-shimmer {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ── Container ── */
.ab-container {
    max-width: 1160px;
    margin: 0 auto;
}

/* ── Grid Layout ── */
.ab-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ────────────────
   LEFT SIDE
──────────────── */

/* Eyebrow tag */
.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(123, 94, 248, 0.07);
    border: 1px solid rgba(123, 94, 248, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 22px;
}

.ab-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7b5ef8;
    flex-shrink: 0;
    animation: ab-pulse 2s infinite;
}

@keyframes ab-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* Title */
.ab-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 12px;
}

/* Subtitle */
.ab-subtitle {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px;
}

/* Description */
.ab-desc {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.85;
    margin: 0 0 36px;
    max-width: 480px;
}

/* Feature list */
.ab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}

.ab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #ffffff;
    font-weight: 500;
}

.ab-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(123,94,248,0.1));
    border: 1px solid rgba(123, 94, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ab-check i {
        font-size: 0.6rem;
        color: #ffffff;
    }

/* Stats row */
.ab-stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.ab-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
}

    .ab-stat-num span {
        color: #7b5ef8;
    }

.ab-stat-label {
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: 400;
}

/* ────────────────
   RIGHT SIDE
──────────────── */
.ab-right {
    position: relative;
}

/* Image frame */
.ab-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

    .ab-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .ab-img-frame:hover img {
        transform: scale(1.03);
    }

/* Decorative dots */
.ab-deco-dots {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(circle, rgba(123,94,248,0.35) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 0;
    pointer-events: none;
}

/* Decorative rings */
.ab-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(123, 94, 248, 0.15);
    pointer-events: none;
    z-index: 0;
}

.ab-deco-ring-1 {
    width: 130px;
    height: 130px;
    bottom: -35px;
    left: -35px;
}

.ab-deco-ring-2 {
    width: 65px;
    height: 65px;
    bottom: -12px;
    left: -12px;
    background: rgba(123, 94, 248, 0.05);
}

/* Floating badges */
.ab-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: ab-float 4s ease-in-out infinite;
}

.ab-badge-1 {
    top: 28px;
    left: -24px;
    animation-delay: 0s;
}

.ab-badge-2 {
    bottom: 52px;
    right: -24px;
    animation-delay: 2s;
}

@keyframes ab-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ab-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00e5ff, #7b5ef8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ab-badge-icon i {
        font-size: 0.9rem;
        color: #ffffff;
    }

.ab-badge-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: darkred;
    line-height: 1;
    margin-bottom: 3px;
}

.ab-badge-txt {
    font-size: 0.92rem;
    color: black;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ab-box {
        gap: 48px;
    }

    .ab-badge-1 {
        left: -10px;
    }

    .ab-badge-2 {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .ab-section {
        padding: 72px 20px;
    }

    .ab-box {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-right {
        order: -1;
    }

    .ab-img-frame {
        aspect-ratio: 16 / 9;
    }

    .ab-badge-1 {
        top: 16px;
        left: 12px;
    }

    .ab-badge-2 {
        bottom: 16px;
        right: 12px;
    }

    .ab-list {
        grid-template-columns: 1fr;
    }

    .ab-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ab-title {
        font-size: 1.7rem;
    }

    .ab-stats {
        flex-direction: column;
        gap: 16px;
    }
}
