/* ====================================================================
   ABOUT US V2 — HDM Digital
   Unified fixed-feel background
   ==================================================================== */

.ab2-wrap {
    --primary:         #f9452d;
    --primary-dark:    #d93a24;
    --accent:          #f19e11;

    --bg:              #071329;
    --bg-2:            #061738;
    --bg-card:         #04245d;

    --border:          rgba(183, 198, 230, 0.10);
    --border-hi:       rgba(249, 69, 45, 0.28);

    --white:           #FFFFFF;
    --gray-200:        #EAF1FF;
    --gray-300:        #B7C6E6;
    --gray-400:        #9DB0D6;
    --gray-500:        #7F93BD;

    --font:            'Space Grotesk', sans-serif;
    --ease:            cubic-bezier(.22,1,.36,1);
    --ease-spring:     cubic-bezier(.34,1.56,.64,1);

    font-family: var(--font);
    color: var(--gray-300);
    overflow-x: hidden;
    position: relative;
/*background:*/
/*    linear-gradient(*/
/*        180deg,*/
/*        #071329 0%,*/
/*        #0a1b42 45%,*/
/*        #04245d 100%*/
/*    );*/

background:
radial-gradient(circle at 8% 75%, #C97838 0%, transparent 28%),
radial-gradient(circle at 72% 55%, #2E557F 0%, transparent 22%),
linear-gradient(180deg, #04142E 0%, #020B1C 45%, #00050D 100%);
}

/* very soft global texture only */
.ab2-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.18));
}

.ab2-wrap > * {
    position: relative;
    z-index: 1;
}

.ab2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Shared components ── */
.ab2-section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(225,131,31,.1);
    border: 1px solid rgba(225,131,31,.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.ab2-section-h2 {
    font-family: var(--font);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--white);
    margin-bottom: 16px;
}

.ab2-section-h2 strong,
.ab2-section-h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab2-section-subdesc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    max-width: 560px;
}

.ab2-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.ab2-section-header .ab2-section-subdesc {
    margin: 0 auto;
}

/* ── CTA Button ── */
.ab2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 14px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(225,131,31,.35);
}

.ab2-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: left .5s ease;
}

.ab2-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(225,131,31,.5);
}

.ab2-btn-primary:hover::before {
    left: 100%;
}

.ab2-btn-primary svg {
    transition: transform .3s var(--ease-spring);
}

.ab2-btn-primary:hover svg {
    transform: translateX(4px);
}

.ab2-btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: 16px;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.ab2-hero {
    position: relative;
    padding: 130px 0 110px;
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid rgba(225,131,31,.08);
}

.ab2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(225,131,31,.12) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(ellipse 60% 70% at 20% 40%, black 0%, transparent 78%);
    pointer-events: none;
    z-index: 1;
    opacity: .45;
}

.ab2-hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(225,131,31,.06);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow:
        0 0 0 60px rgba(225,131,31,.018),
        0 0 0 120px rgba(225,131,31,.012),
        0 0 0 180px rgba(225,131,31,.008);
}

.ab2-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ab2-hbg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

.ab2-hbg-blob.b1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(225,131,31,.06) 0%, transparent 65%);
    top: -180px;
    left: -120px;
    animation: ab2-float 18s ease-in-out infinite;
}

.ab2-hbg-blob.b2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(139,92,246,.04) 0%, transparent 65%);
    bottom: -100px;
    right: 6%;
    animation: ab2-float 22s ease-in-out infinite reverse;
}

.ab2-hbg-grid {
    display: none;
}

.ab2-hbg-rings {
    position: absolute;
    bottom: -100px;
    right: 8%;
    pointer-events: none;
    opacity: .35;
}

.ab2-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(225,131,31,.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.ab2-ring.r1 { width: 180px; height: 180px; animation: ab2-ring-pulse 4s ease-in-out infinite; }
.ab2-ring.r2 { width: 300px; height: 300px; animation: ab2-ring-pulse 4s ease-in-out .8s infinite; }
.ab2-ring.r3 { width: 420px; height: 420px; animation: ab2-ring-pulse 4s ease-in-out 1.6s infinite; }

@keyframes ab2-ring-pulse {
    0%,100% { opacity:.35; transform:translate(-50%,-50%) scale(1); }
    50% { opacity:.08; transform:translate(-50%,-50%) scale(1.03); }
}

@keyframes ab2-float {
    0%,100% { transform: translate(0,0); }
    40% { transform: translate(26px,-20px); }
    70% { transform: translate(-12px,12px); }
}

.ab2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(225,131,31,.1);
    border: 1px solid rgba(225,131,31,.22);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .3px;
    margin-bottom: 30px;
    width: fit-content;
}

.ab2-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: ab2-pulse 2.2s ease-in-out infinite;
}

@keyframes ab2-pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.4; transform:scale(1.25); }
}

.ab2-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab2-hero-text {
    max-width: 600px;
}

.ab2-hero-h1 {
    font-family: var(--font);
    font-size: clamp(2.6rem, 5.2vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--white);
    margin-bottom: 24px;
}

.ab2-h1-plain {
    display: block;
}

.ab2-h1-grad {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab2-hero-desc {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 520px;
}

.ab2-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ab2-hero-visual {
    position: relative;
    z-index: 2;
}

.ab2-hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.ab2-hero-img,
.ab2-hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    border: 1px solid var(--border);
    box-shadow:
        0 32px 80px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,255,255,.03);
}

.ab2-hero-img-placeholder {
    background: rgba(4, 36, 93, .28);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.ab2-img-badge {
    position: absolute;
    bottom: -18px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--primary);
    border-radius: 14px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 32px rgba(225,131,31,.34);
    border: 1px solid rgba(255,255,255,.12);
    animation: ab2-badge-bob 3.5s ease-in-out infinite;
}

.ab2-img-badge svg {
    color: #FCD34D;
}

@keyframes ab2-badge-bob {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.ab2-img-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--primary);
    border-style: solid;
    border-width: 0;
}

.ab2-img-corner.tl {
    top: -8px;
    left: -8px;
    border-top-width: 2px;
    border-left-width: 2px;
    border-radius: 4px 0 0 0;
}

.ab2-img-corner.br {
    bottom: -8px;
    right: -8px;
    border-bottom-width: 2px;
    border-right-width: 2px;
    border-radius: 0 0 4px 0;
}

.ab2-hero-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,131,31,.18), transparent);
}

/* ════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════ */
.ab2-stats-section {
    padding: 80px 0 88px;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.ab2-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,131,31,.18), transparent);
}

.ab2-stats-section::after {
    display: none;
}

.ab2-stats-bg,
.ab2-stats-orb {
    display: none;
}

.ab2-stats-intro {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ab2-stats-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols,4), 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.ab2-stat-card {
    position: relative;
    background: rgba(4, 36, 93, .22);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 28px 26px 26px;
    overflow: hidden;
    cursor: default;
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
    backdrop-filter: blur(6px);
}

.ab2-stat-card:hover {
    transform: translateY(-7px);
    border-color: rgba(225,131,31,.22);
    box-shadow: 0 20px 56px rgba(0,0,0,.22);
}

.ab2-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--s-from), var(--s-to));
    border-radius: 20px 20px 0 0;
    opacity: .6;
    transition: opacity .35s ease;
}

.ab2-stat-card:hover::before {
    opacity: .9;
}

.ab2-sc-glow {
    display: none;
}

.ab2-sc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.ab2-sc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225,131,31,.1);
    border: 1px solid rgba(225,131,31,.16);
    border-radius: 12px;
    color: var(--s-from, var(--primary));
    flex-shrink: 0;
    transition: background .3s ease, border-color .3s ease;
}

.ab2-sc-icon svg {
    width: 20px;
    height: 20px;
}

.ab2-stat-card:hover .ab2-sc-icon {
    background: rgba(225,131,31,.14);
    border-color: rgba(225,131,31,.24);
}

.ab2-sc-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(34,197,94,.10);
    border: 1px solid rgba(34,197,94,.18);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    color: #4ADE80;
    letter-spacing: .3px;
}

.ab2-sc-trend svg {
    color: #4ADE80;
}

.ab2-sc-num {
    font-size: clamp(2.2rem, 3.8vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab2-sc-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .8px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ab2-sc-bar-track {
    height: 4px;
    background: rgba(255,255,255,.06);
    border-radius: 4px;
    overflow: hidden;
}

.ab2-sc-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--s-from), var(--s-to));
    box-shadow: 0 0 8px var(--s-from);
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
}

.ab2-sc-bar-fill.ab2-bar-go {
    width: var(--s-prog, 70%);
}

/* ════════════════════════════════════════════
   STORY
   ════════════════════════════════════════════ */
.ab2-story-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.03);
}

.ab2-story-bg,
.ab2-story-orb {
    display: none;
}

.ab2-story-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab2-story-img-wrap {
    position: relative;
    border-radius: 24px;
}

.ab2-story-img,
.ab2-story-img-placeholder {
    width: 100%;
    aspect-ratio: 3/3.5;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 32px 80px rgba(0,0,0,.35);
}

.ab2-story-img-placeholder {
    background: rgba(4, 36, 93, .20);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.ab2-story-year-card {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(225,131,31,.34);
    border: 1px solid rgba(255,255,255,.12);
}

.ab2-syc-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.ab2-syc-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.7);
    margin-top: 3px;
}

.ab2-story-text {
    position: relative;
}

.ab2-story-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-300);
    margin-bottom: 36px;
}

.ab2-story-desc p {
    margin-bottom: 16px;
}

.ab2-story-desc p:last-child {
    margin-bottom: 0;
}

.ab2-deco-lines {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ab2-dl {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), transparent);
}

.ab2-dl.dl1 { width: 80px; }
.ab2-dl.dl2 { width: 50px; opacity: .6; }
.ab2-dl.dl3 { width: 30px; opacity: .3; }

/* ════════════════════════════════════════════
   VALUES
   ════════════════════════════════════════════ */
.ab2-values-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.03);
}

.ab2-values-section::before {
    display: none;
}

.ab2-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ab2-value-card {
    position: relative;
    background: rgba(4, 36, 93, .18);
    border: 1px solid rgba(225,131,31,.10);
    border-radius: 20px;
    padding: 32px 28px;
    overflow: hidden;
    transition: all .35s var(--ease);
    cursor: default;
    backdrop-filter: blur(5px);
}

.ab2-value-card:hover {
    border-color: rgba(225,131,31,.22);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.ab2-value-card:hover .ab2-val-glow {
    opacity: .5;
}

.ab2-val-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225,131,31,.05), transparent 60%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.ab2-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity .35s ease;
}

.ab2-value-card:hover::before {
    opacity: .8;
}

.ab2-val-icon {
    width: 52px;
    height: 52px;
    background: rgba(225,131,31,.10);
    border: 1px solid rgba(225,131,31,.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    transition: background .3s ease, border-color .3s ease;
}

.ab2-val-icon svg {
    width: 22px;
    height: 22px;
}

.ab2-value-card:hover .ab2-val-icon {
    background: rgba(225,131,31,.14);
    border-color: rgba(225,131,31,.24);
}

.ab2-val-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -.015em;
}

.ab2-val-desc {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--gray-400);
}

/* ════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════ */
.ab2-team-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.03);
}

.ab2-team-bg,
.ab2-team-orb {
    display: none;
}

.ab2-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.ab2-member-card {
    background: rgba(4, 36, 93, .16);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s var(--ease);
}

.ab2-member-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.24);
}

.ab2-member-photo-wrap {
    position: relative;
    aspect-ratio: 4/3.5;
    overflow: hidden;
}

.ab2-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.ab2-member-card:hover .ab2-member-photo {
    transform: scale(1.05);
}

.ab2-member-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1A2336, #0F172A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab2-member-photo-placeholder svg {
    width: 60%;
    height: 60%;
}

.ab2-member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,.65) 0%, transparent 50%);
    pointer-events: none;
}

.ab2-member-info {
    padding: 20px 20px 22px;
}

.ab2-member-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -.01em;
}

.ab2-member-role {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--primary);
    margin-bottom: 10px;
}

.ab2-member-bio {
    font-size: .83rem;
    line-height: 1.65;
    color: var(--gray-400);
    margin-bottom: 14px;
}

.ab2-member-socials {
    display: flex;
    gap: 8px;
}

.ab2-msoc {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-400);
    text-decoration: none;
    transition: all .22s var(--ease);
}

.ab2-msoc svg {
    width: 15px;
    height: 15px;
}

.ab2-msoc:hover {
    background: rgba(225,131,31,.12);
    border-color: var(--border-hi);
    color: var(--white);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════ */
.ab2-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,.04);
}

.ab2-cta-bg,
.ab2-cta-orb {
    display: none;
}

.ab2-cta-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .4;
}

.ab2-cta-lines span {
    position: absolute;
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225,131,31,.18), transparent);
    width: 70%;
}

.ab2-cta-lines span:nth-child(1) { top: 30%; left: 10%; animation: ab2-line-slide 8s linear infinite; }
.ab2-cta-lines span:nth-child(2) { top: 55%; left: 5%; width: 55%; animation: ab2-line-slide 11s linear 2s infinite; opacity:.5; }
.ab2-cta-lines span:nth-child(3) { top: 75%; left: 20%; width: 40%; animation: ab2-line-slide 9s linear 4s infinite; opacity:.3; }

@keyframes ab2-line-slide {
    0%   { transform: translateX(-30%); opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:1; }
    100% { transform: translateX(140%); opacity:0; }
}

.ab2-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.ab2-cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.ab2-cta-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 36px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ab2-container { padding: 0 28px; }
    .ab2-hero { padding: 100px 0 80px; }
    .ab2-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .ab2-hero-text { max-width: 100%; }
    .ab2-hero-visual { max-width: 520px; }

    .ab2-story-inner { grid-template-columns: 1fr; gap: 48px; }
    .ab2-story-visual { max-width: 480px; }

    .ab2-values-grid { grid-template-columns: 1fr 1fr; }
    .ab2-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    .ab2-container { padding: 0 20px; }
    .ab2-hero { padding: 80px 0 60px; }
    .ab2-hero-h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
    .ab2-hero-desc { font-size: 1rem; }

    .ab2-stats-grid { grid-template-columns: 1fr 1fr; --cols: 2 !important; gap: 14px; }
    .ab2-stats-section { padding: 56px 0; }

    .ab2-values-section,
    .ab2-story-section,
    .ab2-team-section,
    .ab2-cta-section { padding: 60px 0; }

    .ab2-values-grid { grid-template-columns: 1fr; gap: 16px; }
    .ab2-team-grid { grid-template-columns: 1fr 1fr; }

    .ab2-story-year-card {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        top: -14px;
        right: -10px;
    }

    .ab2-syc-num { font-size: 1.2rem; }
    .ab2-cta-title { font-size: 1.9rem; }
    .ab2-section-h2 { font-size: 1.8rem; }
}

@media (max-width: 560px) {
    .ab2-hero-h1 { font-size: 2rem; }
    .ab2-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ab2-stat-card { padding: 20px 16px 18px; }
    .ab2-sc-num { font-size: 1.9rem; }
    .ab2-team-grid { grid-template-columns: 1fr; }
    .ab2-story-visual { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}