﻿/* bda-about-v2.css
   Hakkimizda.aspx for about-page sections. Chrome rules live in bda-home-v2.css.
   All selectors are namespaced with .bda-v2. */

.bda-v2 .container-narrow {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 22px
}

.bda-v2 .nav-trigger {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

    .bda-v2 .nav-trigger .caret {
        font-size: 10px;
        transition: transform .25s
    }

.bda-v2 .cart-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy-900);
    transition: all .2s;
    margin-left: 4px
}

    .bda-v2 .cart-btn:hover {
        background: var(--navy-900);
        color: #fff
    }

    .bda-v2 .cart-btn .badge {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 18px;
        height: 18px;
        background: var(--red);
        color: #fff;
        border-radius: 50%;
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #fff
    }

.bda-v2 .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase
}

.bda-v2 .section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .section-title .accent {
        color: var(--red)
    }

    .bda-v2 .section-title .accent-yellow {
        background: linear-gradient(90deg,var(--yellow),#ffc857);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.bda-v2 .section-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px
}

.bda-v2 .about-hero {
    position: relative;
    background: radial-gradient(circle at 85% 25%,rgba(245,158,11,0.15),transparent 55%),radial-gradient(circle at 15% 75%,rgba(33,150,243,0.12),transparent 55%),linear-gradient(135deg,var(--navy-950) 0%,var(--navy-800) 50%,var(--navy-900) 100%);
    color: #fff;
    padding: 80px 0 120px;
    overflow: hidden
}

    .bda-v2 .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,0.05) 1px,transparent 0);
        background-size: 32px 32px;
        pointer-events: none
    }

.bda-v2 .float-numbers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.08
}

.bda-v2 .float-num {
    position: absolute;
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    animation: floatUp 25s linear infinite;
    white-space: nowrap
}

    .bda-v2 .float-num:nth-child(1) {
        left: 8%;
        top: 20%;
        font-size: 80px;
        animation-delay: 0s
    }

    .bda-v2 .float-num:nth-child(2) {
        left: 75%;
        top: 10%;
        font-size: 60px;
        animation-delay: -5s
    }

    .bda-v2 .float-num:nth-child(3) {
        left: 55%;
        top: 50%;
        font-size: 100px;
        animation-delay: -10s
    }

    .bda-v2 .float-num:nth-child(4) {
        left: 20%;
        top: 65%;
        font-size: 70px;
        animation-delay: -15s
    }

    .bda-v2 .float-num:nth-child(5) {
        left: 88%;
        top: 55%;
        font-size: 90px;
        animation-delay: -20s
    }

    .bda-v2 .float-num:nth-child(6) {
        left: 35%;
        top: 30%;
        font-size: 50px;
        animation-delay: -8s
    }

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0
    }

    10%,90% {
        opacity: 1
    }

    100% {
        transform: translateY(-200px) rotate(8deg);
        opacity: 0
    }
}

.bda-v2 .about-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 560px;
    height: 560px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='%232196F3'/><polygon points='100,90 175,55 175,140 100,180' fill='%23E63946'/><polygon points='100,90 25,55 25,140 100,180' fill='%23F59E0B'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    transform: rotate(-20deg);
    pointer-events: none;
    animation: slowSpin 50s linear infinite
}

@keyframes slowSpin {
    from {
        transform: rotate(-20deg)
    }

    to {
        transform: rotate(340deg)
    }
}

.bda-v2 .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 11px;
    color: #c8d4ec;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px
}

    .bda-v2 .breadcrumb a {
        color: #c8d4ec;
        transition: color .2s
    }

        .bda-v2 .breadcrumb a:hover {
            color: var(--yellow)
        }

    .bda-v2 .breadcrumb .sep {
        opacity: 0.4
    }

    .bda-v2 .breadcrumb .here {
        color: var(--yellow)
    }

.bda-v2 .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.18);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--yellow);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase
}

    .bda-v2 .hero-eyebrow .dot {
        width: 8px;
        height: 8px;
        background: var(--yellow);
        border-radius: 50%;
        animation: pulse 1.6s infinite
    }

.bda-v2 .about-hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #fff;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto
}

    .bda-v2 .about-hero h1 .accent {
        background: linear-gradient(90deg,var(--yellow),#ffc857,var(--yellow));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% auto;
        animation: gradientShift 6s ease infinite
    }

@keyframes gradientShift {
    0%,100% {
        background-position: 0% center
    }

    50% {
        background-position: 100% center
    }
}

.bda-v2 .about-hero h1 .red-underline {
    position: relative;
    display: inline-block;
    z-index: 1
}

    .bda-v2 .about-hero h1 .red-underline::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 6px;
        height: 10px;
        background: rgba(230,57,70,0.45);
        z-index: -1;
        border-radius: 2px
    }

.bda-v2 .about-hero .lead {
    font-size: 18px;
    color: #c8d4ec;
    line-height: 1.65;
    max-width: 680px;
    margin: 0 auto 40px
}

    .bda-v2 .about-hero .lead strong {
        color: #fff;
        font-weight: 700
    }

.bda-v2 .hero-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1)
}

.bda-v2 .hero-stat {
    padding: 20px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    text-align: center;
    transition: all .3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden
}

    .bda-v2 .hero-stat::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--c,var(--red));
        transform: scaleX(0);
        transition: transform .3s;
        transform-origin: center
    }

    .bda-v2 .hero-stat:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-3px);
        border-color: rgba(255,255,255,0.2)
    }

        .bda-v2 .hero-stat:hover::before {
            transform: scaleX(1)
        }

    .bda-v2 .hero-stat:nth-child(1) {
        --c: var(--red)
    }

    .bda-v2 .hero-stat:nth-child(2) {
        --c: var(--yellow)
    }

    .bda-v2 .hero-stat:nth-child(3) {
        --c: var(--blue)
    }

    .bda-v2 .hero-stat:nth-child(4) {
        --c: var(--green)
    }

.bda-v2 .hs-num {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    font-family: 'Plus Jakarta Sans',sans-serif;
    color: #fff;
    display: block
}

    .bda-v2 .hs-num .suffix {
        color: var(--yellow);
        font-size: 24px;
        margin-left: 2px
    }

.bda-v2 .hs-label {
    font-size: 11px;
    color: #9aabd2;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 8px;
    text-transform: uppercase
}

.bda-v2 .manifesto-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden
}

    .bda-v2 .manifesto-section::before {
        content: "";
        position: absolute;
        left: -200px;
        top: 50%;
        transform: translateY(-50%);
        width: 480px;
        height: 480px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='%232196F3'/><polygon points='100,90 175,55 175,140 100,180' fill='%23E63946'/><polygon points='100,90 25,55 25,140 100,180' fill='%23F59E0B'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.03;
        animation: slowSpin 80s linear infinite
    }

.bda-v2 .manifesto {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2
}

.bda-v2 .manifesto-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase
}

    .bda-v2 .manifesto-eyebrow::before, .bda-v2 .manifesto-eyebrow::after {
        content: "";
        width: 30px;
        height: 2px;
        background: var(--red);
        border-radius: 1px
    }

.bda-v2 .manifesto h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.18;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .manifesto h2 .highlight {
        position: relative;
        display: inline-block;
        color: var(--red);
        z-index: 1
    }

        .bda-v2 .manifesto h2 .highlight::before {
            content: "";
            position: absolute;
            left: -6px;
            right: -6px;
            top: 55%;
            bottom: 8px;
            background: rgba(245,158,11,0.25);
            z-index: -1;
            transform: rotate(-1deg);
            border-radius: 4px
        }

.bda-v2 .manifesto-body {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto
}

    .bda-v2 .manifesto-body strong {
        color: var(--navy-900);
        font-weight: 700
    }

.bda-v2 .manifesto-signature {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-top: 32px;
    font-style: italic
}

.bda-v2 .story-section {
    padding: 90px 0;
    background: linear-gradient(180deg,var(--navy-50),#fff);
    position: relative
}

.bda-v2 .story-head {
    text-align: center;
    margin-bottom: 60px
}

    .bda-v2 .story-head .section-sub {
        margin: 0 auto 0
    }

.bda-v2 .timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 20px 0
}

    .bda-v2 .timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg,var(--red) 0%,var(--yellow) 50%,var(--blue) 100%);
        transform: translateX(-50%);
        border-radius: 2px;
        z-index: 1
    }

.bda-v2 .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 18px;
    z-index: 2
}

.bda-v2 .timeline-content {
    padding: 24px 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 26px rgba(10,29,63,0.06);
    transition: all .3s;
    position: relative
}

    .bda-v2 .timeline-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(10,29,63,0.12);
        border-color: transparent
    }

.bda-v2 .timeline-item.left .timeline-content {
    grid-column: 1
}

.bda-v2 .timeline-item.right .timeline-content {
    grid-column: 3
}

.bda-v2 .timeline-item.left .timeline-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: translateY(-50%) rotate(45deg)
}

.bda-v2 .timeline-item.right .timeline-content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: translateY(-50%) rotate(45deg)
}

.bda-v2 .timeline-item.left .timeline-spacer {
    grid-column: 3
}

.bda-v2 .timeline-item.right .timeline-spacer {
    grid-column: 1
}

.bda-v2 .timeline-marker {
    grid-column: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--c,var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--c,var(--red));
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 13px;
    z-index: 3;
    margin: 0 auto;
    box-shadow: 0 8px 22px rgba(0,0,0,0.1);
    transition: all .3s;
    letter-spacing: -0.3px
}

.bda-v2 .timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15)
}

.bda-v2 .tl-year-badge {
    display: inline-block;
    background: var(--c,var(--red));
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

.bda-v2 .tl-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.25;
    font-family: 'Plus Jakarta Sans',sans-serif
}

.bda-v2 .tl-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65
}

.bda-v2 .tl-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy-50);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy-900);
    margin-top: 10px
}

    .bda-v2 .tl-stat strong {
        color: var(--c,var(--red));
        font-weight: 800;
        font-family: 'Plus Jakarta Sans',sans-serif
    }

.bda-v2 .timeline-item.c1 {
    --c: var(--red)
}

.bda-v2 .timeline-item.c2 {
    --c: var(--blue)
}

.bda-v2 .timeline-item.c3 {
    --c: var(--yellow)
}

.bda-v2 .timeline-item.c4 {
    --c: var(--green)
}

.bda-v2 .timeline-item.c5 {
    --c: var(--purple)
}

.bda-v2 .timeline-item.c6 {
    --c: #ec4899
}

.bda-v2 .timeline-item.c7 {
    --c: #06b6d4
}

.bda-v2 .timeline-item.c8 {
    --c: var(--navy-900)
}

.bda-v2 .stats-section {
    padding: 90px 0;
    background: linear-gradient(135deg,var(--navy-900),var(--navy-950));
    color: #fff;
    position: relative;
    overflow: hidden
}

    .bda-v2 .stats-section::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,rgba(245,158,11,0.15),transparent 70%);
        pointer-events: none
    }

    .bda-v2 .stats-section::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,rgba(230,57,70,0.15),transparent 70%);
        pointer-events: none
    }

.bda-v2 .stats-head {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2
}

    .bda-v2 .stats-head .section-eyebrow {
        color: var(--yellow)
    }

    .bda-v2 .stats-head h2 {
        font-size: 42px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -1.2px;
        line-height: 1.15;
        font-family: 'Plus Jakarta Sans',sans-serif;
        margin-bottom: 14px
    }

        .bda-v2 .stats-head h2 .accent {
            background: linear-gradient(90deg,var(--yellow),#ffc857);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent
        }

    .bda-v2 .stats-head p {
        color: #c8d4ec;
        font-size: 15px;
        max-width: 580px;
        margin: 0 auto;
        line-height: 1.7
    }

.bda-v2 .stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    position: relative;
    z-index: 2
}

.bda-v2 .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px 22px;
    text-align: center;
    transition: all .3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden
}

    .bda-v2 .stat-card:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-5px);
        border-color: rgba(255,255,255,0.2)
    }

    .bda-v2 .stat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--c);
        transform: scaleX(0);
        transition: transform .3s;
        transform-origin: left
    }

    .bda-v2 .stat-card:hover::before {
        transform: scaleX(1)
    }

    .bda-v2 .stat-card:nth-child(1) {
        --c: var(--red)
    }

    .bda-v2 .stat-card:nth-child(2) {
        --c: var(--yellow)
    }

    .bda-v2 .stat-card:nth-child(3) {
        --c: var(--blue)
    }

    .bda-v2 .stat-card:nth-child(4) {
        --c: var(--green)
    }

.bda-v2 .stat-ico {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3)
}

.bda-v2 .stat-num {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    font-family: 'Plus Jakarta Sans',sans-serif;
    color: #fff;
    display: block;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums
}

    .bda-v2 .stat-num .suffix {
        color: var(--yellow);
        font-size: 32px;
        margin-left: 2px
    }

.bda-v2 .stat-label {
    font-size: 13px;
    color: #c8d4ec;
    font-weight: 600;
    letter-spacing: 0.4px;
    line-height: 1.4
}

.bda-v2 .stat-meta {
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 8px;
    text-transform: uppercase
}

.bda-v2 .founder-section {
    padding: 90px 0;
    background: #fff
}

.bda-v2 .founder-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto
}

.bda-v2 .founder-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: 28px;
    background: linear-gradient(135deg,var(--navy-900),var(--navy-950));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(10,29,63,0.25)
}

    .bda-v2 .founder-visual::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='%232196F3'/><polygon points='100,90 175,55 175,140 100,180' fill='%23E63946'/><polygon points='100,90 25,55 25,140 100,180' fill='%23F59E0B'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.12;
        transform: rotate(15deg)
    }

    .bda-v2 .founder-visual::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 240px;
        height: 240px;
        background: radial-gradient(circle,rgba(245,158,11,0.2),transparent 70%);
        pointer-events: none
    }

.bda-v2 .founder-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--yellow),var(--red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans',sans-serif;
    border: 6px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    letter-spacing: -3px
}

.bda-v2 .founder-quote-mark {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 80px;
    color: rgba(255,255,255,0.1);
    font-family: Georgia,serif;
    line-height: 1;
    z-index: 1
}

.bda-v2 .founder-content {
    position: relative
}

.bda-v2 .founder-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-50);
    color: var(--navy-700);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase
}

    .bda-v2 .founder-eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        background: var(--red);
        border-radius: 50%
    }

.bda-v2 .founder-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .founder-content h2 .accent {
        color: var(--red)
    }

.bda-v2 .founder-quote {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
    border-left: 3px solid var(--yellow);
    padding-left: 18px;
    font-style: italic
}

    .bda-v2 .founder-quote strong {
        color: var(--navy-900);
        font-weight: 700;
        font-style: normal
    }

    .bda-v2 .founder-quote p {
        margin-bottom: 12px
    }

        .bda-v2 .founder-quote p:last-child {
            margin-bottom: 0
        }

.bda-v2 .founder-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border)
}

.bda-v2 .fm-signature {
    font-family: 'Brush Script MT',cursive,serif;
    font-size: 32px;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -1px
}

.bda-v2 .fm-info {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5
}

    .bda-v2 .fm-info strong {
        display: block;
        color: var(--navy-900);
        font-weight: 800;
        font-size: 14px;
        font-family: 'Plus Jakarta Sans',sans-serif;
        letter-spacing: -0.2px;
        margin-bottom: 2px
    }

.bda-v2 .values-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#fff,var(--navy-50))
}

.bda-v2 .values-head {
    text-align: center;
    margin-bottom: 50px
}

    .bda-v2 .values-head .section-sub {
        margin: 0 auto 0
    }

.bda-v2 .values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.bda-v2 .value-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    border: 1px solid var(--border);
    transition: all .35s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .bda-v2 .value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0;
        background: linear-gradient(180deg,var(--c,var(--red)),transparent);
        opacity: 0.06;
        transition: height .35s
    }

    .bda-v2 .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 50px rgba(10,29,63,0.12);
        border-color: transparent
    }

        .bda-v2 .value-card:hover::before {
            height: 100%
        }

    .bda-v2 .value-card:nth-child(1) {
        --c: var(--red)
    }

    .bda-v2 .value-card:nth-child(2) {
        --c: var(--blue)
    }

    .bda-v2 .value-card:nth-child(3) {
        --c: var(--yellow)
    }

    .bda-v2 .value-card:nth-child(4) {
        --c: var(--green)
    }

    .bda-v2 .value-card:nth-child(5) {
        --c: var(--purple)
    }

    .bda-v2 .value-card:nth-child(6) {
        --c: #ec4899
    }

.bda-v2 .value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--c),var(--c));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    transition: transform .3s;
    position: relative;
    z-index: 2
}

.bda-v2 .value-card:hover .value-icon {
    transform: rotate(-6deg) scale(1.08)
}

.bda-v2 .value-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 64px;
    font-weight: 800;
    color: var(--c);
    opacity: 0.08;
    font-family: 'Plus Jakarta Sans',sans-serif;
    line-height: 1;
    letter-spacing: -2px;
    z-index: 1
}

.bda-v2 .value-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    line-height: 1.25;
    font-family: 'Plus Jakarta Sans',sans-serif;
    position: relative;
    z-index: 2
}

.bda-v2 .value-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 2
}

    .bda-v2 .value-desc strong {
        color: var(--navy-900);
        font-weight: 700
    }

.bda-v2 .team-section {
    padding: 90px 0;
    background: #fff
}

.bda-v2 .team-head {
    text-align: center;
    margin-bottom: 50px
}

    .bda-v2 .team-head .section-sub {
        margin: 0 auto 0
    }

.bda-v2 .team-summary {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: linear-gradient(135deg,var(--navy-50),#fff);
    border-radius: 18px;
    border: 1px solid var(--border);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.bda-v2 .team-sum-item {
    display: flex;
    align-items: center;
    gap: 14px
}

.bda-v2 .tsm-ico {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--c),var(--c));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.bda-v2 .team-sum-item:nth-child(1) .tsm-ico {
    --c: var(--red)
}

.bda-v2 .team-sum-item:nth-child(2) .tsm-ico {
    --c: var(--blue)
}

.bda-v2 .team-sum-item:nth-child(3) .tsm-ico {
    --c: var(--yellow)
}

.bda-v2 .tsm-info {
    line-height: 1.3
}

.bda-v2 .tsm-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    font-family: 'Plus Jakarta Sans',sans-serif;
    letter-spacing: -0.5px
}

.bda-v2 .tsm-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.3px
}

.bda-v2 .team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
    margin-bottom: 30px
}

.bda-v2 .dept-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid var(--border);
    transition: all .3s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .bda-v2 .dept-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg,var(--c),transparent);
        opacity: 0.15;
        border-radius: 0 16px 0 60px;
        transition: opacity .3s
    }

    .bda-v2 .dept-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(10,29,63,0.1);
        border-color: transparent
    }

        .bda-v2 .dept-card:hover::after {
            opacity: 0.3
        }

    .bda-v2 .dept-card.c1 {
        --c: var(--red)
    }

    .bda-v2 .dept-card.c2 {
        --c: var(--blue)
    }

    .bda-v2 .dept-card.c3 {
        --c: var(--yellow)
    }

    .bda-v2 .dept-card.c4 {
        --c: var(--green)
    }

    .bda-v2 .dept-card.c5 {
        --c: var(--purple)
    }

    .bda-v2 .dept-card.c6 {
        --c: #ec4899
    }

    .bda-v2 .dept-card.c7 {
        --c: #06b6d4
    }

    .bda-v2 .dept-card.c8 {
        --c: var(--navy-700)
    }

.bda-v2 .dept-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--c),var(--c));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12)
}

.bda-v2 .dept-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.2px;
    margin-bottom: 6px;
    line-height: 1.25;
    font-family: 'Plus Jakarta Sans',sans-serif
}

.bda-v2 .dept-count {
    font-size: 11px;
    color: var(--c);
    font-weight: 800;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    text-transform: uppercase
}

.bda-v2 .dept-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55
}

.bda-v2 .science-section {
    padding: 90px 0;
    background: linear-gradient(180deg,var(--navy-50),#fff)
}

.bda-v2 .science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.bda-v2 .science-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .science-content h2 .accent {
        color: var(--red)
    }

.bda-v2 .science-content > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 26px
}

.bda-v2 .science-points {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.bda-v2 .sp-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all .25s
}

    .bda-v2 .sp-item:hover {
        transform: translateX(4px);
        box-shadow: 0 10px 22px rgba(10,29,63,0.08);
        border-color: transparent
    }

.bda-v2 .sp-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg,var(--c),var(--c));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12)
}

.bda-v2 .sp-item:nth-child(1) .sp-ico {
    --c: var(--red)
}

.bda-v2 .sp-item:nth-child(2) .sp-ico {
    --c: var(--blue)
}

.bda-v2 .sp-item:nth-child(3) .sp-ico {
    --c: var(--yellow)
}

.bda-v2 .sp-item:nth-child(4) .sp-ico {
    --c: var(--green)
}

.bda-v2 .sp-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.2px;
    margin-bottom: 4px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

.bda-v2 .sp-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55
}

.bda-v2 .science-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    background: linear-gradient(135deg,var(--navy-900),var(--navy-950));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 22px 50px rgba(10,29,63,0.25)
}

    .bda-v2 .science-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,0.07) 1px,transparent 0);
        background-size: 24px 24px
    }

.bda-v2 .science-orbit {
    position: relative;
    width: 80%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

.bda-v2 .science-orbit-center {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--yellow),var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 42px;
    box-shadow: 0 0 60px rgba(245,158,11,0.4);
    position: relative;
    z-index: 4
}

    .bda-v2 .science-orbit-center span {
        font-family: 'Plus Jakarta Sans',sans-serif;
        font-weight: 800;
        font-size: 18px;
        text-align: center;
        line-height: 1.1;
        letter-spacing: -0.3px
    }

.bda-v2 .orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.18);
    animation: rotate var(--dur) linear infinite
}

    .bda-v2 .orbit-ring.r1 {
        width: 60%;
        height: 60%;
        --dur: 18s
    }

    .bda-v2 .orbit-ring.r2 {
        width: 85%;
        height: 85%;
        --dur: 30s;
        animation-direction: reverse
    }

    .bda-v2 .orbit-ring.r3 {
        width: 110%;
        height: 110%;
        --dur: 45s
    }

@keyframes rotate {
    to {
        transform: rotate(360deg)
    }
}

.bda-v2 .orbit-icon {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    font-weight: 800;
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 14px
}

.bda-v2 .orbit-ring.r1 .orbit-icon:nth-child(1) {
    --c: var(--red);
    top: -23px;
    left: 50%;
    transform: translateX(-50%)
}

.bda-v2 .orbit-ring.r1 .orbit-icon:nth-child(2) {
    --c: var(--blue);
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%)
}

.bda-v2 .orbit-ring.r2 .orbit-icon:nth-child(1) {
    --c: var(--green);
    top: 50%;
    left: -23px;
    transform: translateY(-50%)
}

.bda-v2 .orbit-ring.r2 .orbit-icon:nth-child(2) {
    --c: var(--yellow);
    top: 50%;
    right: -23px;
    transform: translateY(-50%)
}

.bda-v2 .orbit-ring.r3 .orbit-icon:nth-child(1) {
    --c: var(--purple);
    top: 10%;
    right: 10%
}

.bda-v2 .orbit-ring.r3 .orbit-icon:nth-child(2) {
    --c: #06b6d4;
    bottom: 10%;
    left: 10%
}

.bda-v2 .csr-section {
    padding: 90px 0;
    background: #fff
}

.bda-v2 .csr-wrap {
    background: linear-gradient(135deg,var(--green),#0a7c5d);
    border-radius: 28px;
    padding: 56px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 24px 60px rgba(16,185,129,0.25)
}

    .bda-v2 .csr-wrap::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 380px;
        height: 380px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='white'/><polygon points='100,90 175,55 175,140 100,180' fill='white'/><polygon points='100,90 25,55 25,140 100,180' fill='white'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.07;
        animation: slowSpin 70s linear infinite
    }

.bda-v2 .csr-content {
    position: relative;
    z-index: 2
}

.bda-v2 .csr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase
}

    .bda-v2 .csr-eyebrow::before {
        content: "🤝";
        font-size: 14px
    }

.bda-v2 .csr-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 14px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .csr-content h2 .accent {
        background: linear-gradient(90deg,var(--yellow),#ffc857);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.bda-v2 .csr-content p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.95);
    margin-bottom: 22px
}

.bda-v2 .csr-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0a7c5d;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: all .2s
}

    .bda-v2 .csr-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(0,0,0,0.2)
    }

.bda-v2 .csr-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.bda-v2 .csr-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(10px)
}

.bda-v2 .cs-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
    font-family: 'Plus Jakarta Sans',sans-serif;
    display: block
}

    .bda-v2 .cs-num .suffix {
        color: var(--yellow);
        font-size: 22px
    }

.bda-v2 .cs-label {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-top: 6px;
    text-transform: uppercase;
    line-height: 1.4
}

.bda-v2 .final-cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg,#fff,var(--navy-50))
}

.bda-v2 .final-cta {
    background: radial-gradient(circle at 80% 20%,rgba(245,158,11,0.18),transparent 60%),radial-gradient(circle at 20% 80%,rgba(230,57,70,0.18),transparent 60%),linear-gradient(135deg,var(--navy-900),var(--navy-950));
    border-radius: 28px;
    padding: 64px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 24px 60px rgba(10,29,63,0.25)
}

    .bda-v2 .final-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,0.05) 1px,transparent 0);
        background-size: 32px 32px;
        pointer-events: none
    }

    .bda-v2 .final-cta::after {
        content: "";
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='%232196F3'/><polygon points='100,90 175,55 175,140 100,180' fill='%23E63946'/><polygon points='100,90 25,55 25,140 100,180' fill='%23F59E0B'/></svg>");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.08;
        animation: slowSpin 60s linear infinite
    }

.bda-v2 .fc-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto
}

.bda-v2 .fc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.18);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    text-transform: uppercase
}

    .bda-v2 .fc-eyebrow .dot {
        width: 8px;
        height: 8px;
        background: var(--yellow);
        border-radius: 50%
    }

.bda-v2 .final-cta h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Plus Jakarta Sans',sans-serif
}

    .bda-v2 .final-cta h2 .accent {
        background: linear-gradient(90deg,var(--yellow),#ffc857);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.bda-v2 .final-cta p {
    font-size: 15px;
    color: #c8d4ec;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto
}

.bda-v2 .fc-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.bda-v2 .btn-fc-primary {
    background: var(--red);
    color: #fff;
    padding: 17px 36px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all .2s;
    box-shadow: 0 12px 32px rgba(230,57,70,0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .bda-v2 .btn-fc-primary:hover {
        background: var(--red-dark);
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(230,57,70,0.55)
    }

.bda-v2 .btn-fc-outline {
    background: transparent;
    color: #fff;
    padding: 15px 28px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

    .bda-v2 .btn-fc-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff
    }

.bda-v2 .footer::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 380px;
    height: 380px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><polygon points='100,20 175,55 100,90 25,55' fill='%232196F3'/><polygon points='100,90 175,55 175,140 100,180' fill='%23E63946'/><polygon points='100,90 25,55 25,140 100,180' fill='%23F59E0B'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04
}

.bda-v2 .payment-row {
    display: flex;
    gap: 8px;
    align-items: center
}

    .bda-v2 .payment-row .pay-badge {
        background: rgba(255,255,255,0.06);
        border: 1px solid var(--navy-700);
        padding: 5px 11px;
        border-radius: 5px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        color: #c8d4ec
    }

    .bda-v2 .payment-row .iyzico {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff
    }

.bda-v2 .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1)
}

    .bda-v2 .reveal.in-view {
        opacity: 1;
        transform: translateY(0)
    }

.bda-v2 .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1)
}

.bda-v2 .reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0)
}

    .bda-v2 .reveal-stagger.in-view > *:nth-child(1) {
        transition-delay: 0s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(2) {
        transition-delay: .07s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(3) {
        transition-delay: .14s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(4) {
        transition-delay: .21s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(5) {
        transition-delay: .28s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(6) {
        transition-delay: .35s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(7) {
        transition-delay: .42s
    }

    .bda-v2 .reveal-stagger.in-view > *:nth-child(8) {
        transition-delay: .49s
    }

.bda-v2 .timeline-item {
    opacity: 0;
    transition: opacity .7s,transform .7s
}

    .bda-v2 .timeline-item.left {
        transform: translateX(-40px)
    }

    .bda-v2 .timeline-item.right {
        transform: translateX(40px)
    }

    .bda-v2 .timeline-item.in-view {
        opacity: 1;
        transform: translateX(0)
    }

@media (max-width:1024px) {
    .bda-v2 .about-hero {
        padding: 60px 0 90px
    }

        .bda-v2 .about-hero h1 {
            font-size: 48px;
            letter-spacing: -1.5px
        }

    .bda-v2 .hero-stats {
        grid-template-columns: repeat(2,1fr);
        gap: 10px
    }

    .bda-v2 .manifesto h2 {
        font-size: 38px;
        letter-spacing: -1px
    }

    .bda-v2 .timeline::before {
        left: 30px
    }

    .bda-v2 .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 14px
    }

        .bda-v2 .timeline-item.left .timeline-content, .bda-v2 .timeline-item.right .timeline-content {
            grid-column: 2
        }

        .bda-v2 .timeline-item.left .timeline-spacer, .bda-v2 .timeline-item.right .timeline-spacer {
            display: none
        }

        .bda-v2 .timeline-item.left, .bda-v2 .timeline-item.right {
            transform: translateX(-30px)
        }

        .bda-v2 .timeline-item.in-view {
            transform: translateX(0)
        }

    .bda-v2 .timeline-marker {
        grid-column: 1;
        width: 50px;
        height: 50px;
        font-size: 12px
    }

    .bda-v2 .timeline-item.left .timeline-content::after, .bda-v2 .timeline-item.right .timeline-content::after {
        left: -10px;
        right: auto;
        border-left: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-right: none;
        border-top: none
    }

    .bda-v2 .stats-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .bda-v2 .founder-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center
    }

    .bda-v2 .founder-content h2 {
        font-size: 30px
    }

    .bda-v2 .founder-quote {
        text-align: left;
        border-left-width: 3px
    }

    .bda-v2 .founder-meta {
        justify-content: center
    }

    .bda-v2 .values-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .bda-v2 .team-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .bda-v2 .science-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .bda-v2 .science-content h2 {
        font-size: 30px
    }

    .bda-v2 .csr-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 46px 36px
    }

    .bda-v2 .csr-stats {
        grid-template-columns: repeat(2,1fr)
    }

    .bda-v2 .final-cta h2 {
        font-size: 34px
    }
}

@media (max-width:768px) {
    .bda-v2 .about-hero {
        padding: 40px 0 70px
    }

        .bda-v2 .about-hero h1 {
            font-size: 30px;
            letter-spacing: -1px
        }

        .bda-v2 .about-hero .lead {
            font-size: 14px
        }

    .bda-v2 .hero-eyebrow {
        font-size: 10px;
        padding: 6px 14px
    }

    .bda-v2 .float-num {
        font-size: 40px !important
    }

    .bda-v2 .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .bda-v2 .hero-stat {
        padding: 14px 10px
    }

    .bda-v2 .hs-num {
        font-size: 26px
    }

    .bda-v2 .hs-label {
        font-size: 9px
    }

    .bda-v2 .manifesto-section, .bda-v2 .story-section, .bda-v2 .stats-section, .bda-v2 .founder-section, .bda-v2 .values-section, .bda-v2 .team-section, .bda-v2 .science-section, .bda-v2 .csr-section, .bda-v2 .final-cta-section {
        padding: 55px 0
    }

    .bda-v2 .manifesto h2 {
        font-size: 26px;
        letter-spacing: -0.6px
    }

    .bda-v2 .manifesto-body {
        font-size: 14px
    }

    .bda-v2 .section-title {
        font-size: 26px
    }

    .bda-v2 .section-sub {
        font-size: 13px
    }

    .bda-v2 .timeline::before {
        left: 24px
    }

    .bda-v2 .timeline-item {
        grid-template-columns: 48px 1fr;
        gap: 10px;
        margin-bottom: 12px
    }

    .bda-v2 .timeline-marker {
        width: 44px;
        height: 44px;
        font-size: 11px
    }

    .bda-v2 .timeline-content {
        padding: 18px 18px
    }

    .bda-v2 .tl-title {
        font-size: 15px
    }

    .bda-v2 .tl-desc {
        font-size: 12px
    }

    .bda-v2 .stats-head h2 {
        font-size: 28px
    }

    .bda-v2 .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .bda-v2 .stat-card {
        padding: 24px 14px
    }

    .bda-v2 .stat-num {
        font-size: 32px
    }

        .bda-v2 .stat-num .suffix {
            font-size: 20px
        }

    .bda-v2 .stat-label {
        font-size: 11px
    }

    .bda-v2 .founder-avatar {
        width: 140px;
        height: 140px;
        font-size: 56px
    }

    .bda-v2 .founder-visual {
        aspect-ratio: 1.4
    }

    .bda-v2 .founder-content h2 {
        font-size: 24px
    }

    .bda-v2 .founder-quote {
        font-size: 14px
    }

    .bda-v2 .fm-signature {
        font-size: 24px
    }

    .bda-v2 .values-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .bda-v2 .value-card {
        padding: 24px 22px
    }

    .bda-v2 .value-num {
        font-size: 48px
    }

    .bda-v2 .team-summary {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 22px;
        gap: 16px
    }

    .bda-v2 .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .bda-v2 .dept-card {
        padding: 18px 16px
    }

    .bda-v2 .dept-name {
        font-size: 13px
    }

    .bda-v2 .dept-desc {
        font-size: 11px
    }

    .bda-v2 .science-orbit-center {
        width: 100px;
        height: 100px
    }

        .bda-v2 .science-orbit-center span {
            font-size: 14px
        }

    .bda-v2 .orbit-icon {
        width: 36px;
        height: 36px;
        font-size: 12px
    }

    .bda-v2 .csr-wrap {
        padding: 36px 24px
    }

    .bda-v2 .csr-content h2 {
        font-size: 24px
    }

    .bda-v2 .csr-content p {
        font-size: 13px
    }

    .bda-v2 .csr-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .bda-v2 .cs-num {
        font-size: 26px
    }

    .bda-v2 .final-cta {
        padding: 40px 24px
    }

        .bda-v2 .final-cta h2 {
            font-size: 24px
        }

        .bda-v2 .final-cta p {
            font-size: 13px
        }

    .bda-v2 .fc-actions {
        flex-direction: column
    }

    .bda-v2 .btn-fc-primary, .bda-v2 .btn-fc-outline {
        width: 100%;
        justify-content: center
    }
}
