/*
 * Hakkımızda sayfası — page/about/{index,content/*}.blade.php
 *
 * Renk sistemi legal.css ile aynı ilkeyle MOD-BAĞIMSIZDIR: hero, değerler
 * bandı, isim bandı ve CTA kendi koyu zeminini tanımlar (her iki temada aynı
 * görünür), açık bölümler nötr yarı saydam zeminler + inherit metin renkleri
 * kullanır. Vurgu rengi temanın --wolmart-primary-color değişkeninden gelir.
 * Animasyonlar transform/opacity ile sınırlıdır (eski GPU'larda ucuz) ve
 * prefers-reduced-motion'a saygı duyar.
 */

.about-page {
    --about-primary: var(--wolmart-primary-color, #2879fe);
    --about-primary-soft: #6ea8ff;
    --about-ink-1: #0d1b2e;
    --about-ink-2: #14293f;
    --about-ink-3: #1b3a5c;
}

.about-kicker {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--about-primary);
    margin-bottom: 1.2rem;
}

.about-kicker::before,
.about-kicker::after {
    content: "";
    display: inline-block;
    width: 2.4rem;
    height: 2px;
    vertical-align: middle;
    margin: 0 1rem;
}

.about-kicker::before {
    background: linear-gradient(270deg, var(--about-primary), transparent);
}

.about-kicker::after {
    background: linear-gradient(90deg, var(--about-primary), transparent);
}

/* --- Hero --- */
.about-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
        radial-gradient(circle at 82% 14%, rgba(40, 121, 254, 0.38), transparent 46%),
        radial-gradient(circle at 6% 92%, rgba(110, 168, 255, 0.2), transparent 44%),
        linear-gradient(135deg, var(--about-ink-1) 0%, var(--about-ink-2) 55%, var(--about-ink-3) 100%);
    background-size: 26px 26px, auto, auto, auto;
    color: #fff;
    padding: 8.8rem 0 10.4rem;
    text-align: center;
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::before {
    top: -18rem;
    right: -12rem;
    background: radial-gradient(circle, rgba(40, 121, 254, 0.35), transparent 65%);
    animation: about-drift 16s ease-in-out infinite alternate;
}

.about-hero::after {
    bottom: -20rem;
    left: -14rem;
    background: radial-gradient(circle, rgba(110, 168, 255, 0.22), transparent 65%);
    animation: about-drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes about-drift {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-4rem, 3rem, 0);
    }
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero .about-kicker {
    color: rgba(255, 255, 255, 0.65);
}

.about-hero .about-kicker::before {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.55), transparent);
}

.about-hero .about-kicker::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent);
}

.about-hero h1 {
    color: #fff;
    font-size: 4.6rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.12;
    margin-bottom: 1.8rem;
}

.about-hero-highlight {
    background: linear-gradient(90deg, var(--about-primary-soft), #b8d4ff, var(--about-primary-soft));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: about-shimmer 5s linear infinite;
}

.about-hero-lead {
    max-width: 76rem;
    margin: 0 auto 3rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

.about-hero-actions .btn {
    min-width: 16rem;
}

.about-hero-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    gap: 1.6rem;
    max-width: 96rem;
    margin: 4.6rem auto 0;
}

.about-hero-fact {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 1.8rem 1.4rem;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.about-hero-fact:hover {
    border-color: rgba(110, 168, 255, 0.6);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-3px);
}

.about-hero-fact strong {
    display: block;
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.about-hero-fact span {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Sayılarla HipopoTamya --- */
.about-stats {
    padding: 4.6rem 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.18);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2.4rem;
    text-align: center;
    align-items: center;
}

.about-stat-number,
.about-stat-plus {
    font-size: clamp(3.4rem, 3.6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--about-primary);
}

.about-stat-number {
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft), var(--about-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: about-shimmer 5s linear infinite;
}

.about-stat-unit {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--about-primary);
}

.about-stat-label {
    display: block;
    margin-top: 0.6rem;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: inherit;
    opacity: 0.75;
}

/* --- Bölüm iskeleti --- */
.about-section {
    padding: 6.8rem 0;
    color: inherit;
}

.about-section-alt {
    background: rgba(128, 128, 128, 0.07);
}

.about-section-head {
    text-align: center;
    max-width: 74rem;
    margin: 0 auto 4.2rem;
}

.about-section-head h2,
.about-name-band h2,
.about-founder h2,
.about-cta h2 {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.25;
    color: inherit;
    margin-bottom: 0;
}

/* --- Hikâye --- */
.about-story {
    max-width: 78rem;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.85;
}

.about-story p {
    margin-bottom: 1.8rem;
    color: inherit;
    opacity: 0.9;
}

.about-quote {
    position: relative;
    max-width: 78rem;
    margin: 3.6rem auto 0;
    padding: 2.4rem 2.8rem 2.4rem 6.4rem;
    border-left: 4px solid var(--about-primary);
    background: rgba(40, 121, 254, 0.08);
    border-radius: 0 10px 10px 0;
    font-size: 1.9rem;
    line-height: 1.6;
    font-style: italic;
    color: inherit;
}

.about-quote::before {
    content: "\201C";
    position: absolute;
    left: 1.8rem;
    top: 0.4rem;
    font-size: 6.4rem;
    line-height: 1;
    font-style: normal;
    color: var(--about-primary);
    opacity: 0.55;
}

#hikayemiz {
    scroll-margin-top: 9rem;
}

/* --- Evreler (timeline) --- */
.about-timeline {
    list-style: none;
    max-width: 78rem;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 0.8rem;
    bottom: 0.8rem;
    left: 2rem;
    width: 2px;
    background: linear-gradient(180deg, var(--about-primary), rgba(110, 168, 255, 0.2));
}

.about-timeline li {
    position: relative;
    padding: 0 0 3.4rem 5.8rem;
}

.about-timeline li:last-child {
    padding-bottom: 0;
}

.about-timeline li::before {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--about-primary);
    box-shadow: 0 0 0 5px rgba(40, 121, 254, 0.18);
}

.about-timeline-year {
    display: inline-block;
    padding: 0.3rem 1.3rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
}

.about-timeline h3 {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: inherit;
}

.about-timeline p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: inherit;
    opacity: 0.85;
    margin-bottom: 0;
}

/* --- Değerler bandı (koyu) --- */
.about-values-band {
    background:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1.6px),
        radial-gradient(circle at 88% 10%, rgba(40, 121, 254, 0.28), transparent 48%),
        linear-gradient(160deg, #0f2036 0%, var(--about-ink-2) 100%);
    background-size: 26px 26px, auto, auto;
    color: #fff;
    padding: 6.8rem 0;
}

.about-values-band .about-section-head h2 {
    color: #fff;
}

.about-values-band .about-kicker {
    color: var(--about-primary-soft);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 2rem;
}

.about-values-band .about-value-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.about-values-band .about-value-card:hover {
    border-color: rgba(110, 168, 255, 0.75);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(4, 12, 24, 0.45);
}

.about-values-band .about-value-card h3 {
    color: #fff;
}

.about-values-band .about-value-card p {
    color: rgba(255, 255, 255, 0.72);
}

.about-values-band .about-value-icon {
    background: rgba(110, 168, 255, 0.16);
    color: var(--about-primary-soft);
}

.about-value-card {
    border: 1px solid rgba(128, 128, 128, 0.35);
    border-radius: 10px;
    padding: 2.4rem 2rem;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.about-value-card:hover {
    border-color: var(--about-primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    background: rgba(40, 121, 254, 0.12);
    color: var(--about-primary);
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
}

.about-value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: inherit;
}

.about-value-card p {
    font-size: 1.35rem;
    line-height: 1.65;
    color: inherit;
    opacity: 0.8;
    margin-bottom: 0;
}

/* --- Ne yapıyoruz --- */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
}

.about-pillar-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.35);
    border-radius: 10px;
    padding: 2.6rem 2.2rem;
}

.about-pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft), transparent);
}

.about-pillar-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: inherit;
}

.about-pillar-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-pillar-card li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 0.9rem;
    font-size: 1.35rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.85;
}

.about-pillar-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--about-primary);
    font-size: 1.1rem;
}

/* --- Güven checklist --- */
.about-check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.2rem 3.2rem;
    max-width: 82rem;
    margin: 0 auto;
    padding: 0;
}

.about-check-list li {
    position: relative;
    padding-left: 3.4rem;
    font-size: 1.45rem;
    line-height: 1.6;
    color: inherit;
}

.about-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(40, 121, 254, 0.12);
    color: var(--about-primary);
    font-size: 1rem;
}

.about-note {
    max-width: 78rem;
    margin: 3.2rem auto 0;
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.75;
    color: inherit;
    opacity: 0.85;
}

/* --- Fraud'la mücadele kutusu (koyu vurgu kartı) --- */
.about-fraud {
    display: flex;
    gap: 2.4rem;
    align-items: flex-start;
    max-width: 84rem;
    margin: 4rem auto 0;
    padding: 3.2rem 3.4rem;
    border-radius: 14px;
    background:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
        radial-gradient(circle at 88% 12%, rgba(40, 121, 254, 0.4), transparent 52%),
        linear-gradient(135deg, var(--about-ink-1) 0%, var(--about-ink-2) 100%);
    background-size: 26px 26px, auto, auto;
    color: #fff;
}

.about-fraud-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--about-primary), var(--about-primary-soft));
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 0 0 6px rgba(40, 121, 254, 0.18);
}

.about-fraud h3 {
    color: #fff;
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.about-fraud p {
    font-size: 1.4rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0;
}

.about-fraud-motto {
    margin-top: 1.6rem !important;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-style: italic;
    font-size: 1.5rem !important;
    color: var(--about-primary-soft) !important;
}

/* --- İsim bandı (koyu) --- */
.about-name-band {
    background:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1.6px),
        radial-gradient(circle at 12% 16%, rgba(40, 121, 254, 0.26), transparent 46%),
        linear-gradient(160deg, var(--about-ink-1) 0%, #16304a 100%);
    background-size: 26px 26px, auto, auto;
    color: #fff;
    padding: 6.8rem 0;
    text-align: center;
}

.about-name-band .about-kicker {
    color: var(--about-primary-soft);
}

.about-name-band h2 {
    color: #fff;
    margin-bottom: 2.4rem;
}

.about-name-logo {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
    margin-bottom: 3.2rem;
}

.about-name-logo span {
    background: linear-gradient(90deg, var(--about-primary-soft), #b8d4ff, var(--about-primary-soft));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: about-shimmer 5s linear infinite;
}

.about-name-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
    max-width: 86rem;
    margin: 0 auto 2.4rem;
    text-align: left;
}

.about-name-col {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.4rem 2.2rem;
}

.about-name-col h3 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.about-name-col p {
    font-size: 1.4rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.about-name-note {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* --- Kurucu + insan tarafı --- */
.about-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.4rem;
}

.about-founder {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 128, 128, 0.35);
    border-radius: 10px;
    padding: 3rem 2.8rem;
}

.about-founder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft), transparent);
}

.about-founder .about-kicker {
    text-align: left;
}

.about-founder .about-kicker::before,
.about-founder .about-kicker::after {
    display: none;
}

.about-founder h2 {
    font-size: 2.2rem;
    margin-bottom: 1.6rem;
}

.about-founder p {
    font-size: 1.4rem;
    line-height: 1.75;
    color: inherit;
    opacity: 0.88;
    margin-bottom: 1.2rem;
}

.about-founder p:last-child {
    margin-bottom: 0;
}

.about-good-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-good-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2.6rem;
    font-size: 1.4rem;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

.about-good-list li::before {
    content: "\f004";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.7rem;
    color: var(--about-primary);
    font-size: 1.1rem;
}

/* --- Vizyon --- */
.about-vision-list {
    list-style: none;
    max-width: 70rem;
    margin: 0 auto;
    padding: 0;
}

.about-vision-list li {
    position: relative;
    padding: 1.1rem 0 1.1rem 3.2rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: inherit;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.about-vision-list li:last-child {
    border-bottom: none;
}

.about-vision-list li::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: var(--about-primary);
    font-size: 1.2rem;
}

/* --- CTA --- */
.about-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.6px),
        radial-gradient(circle at 85% 18%, rgba(40, 121, 254, 0.42), transparent 52%),
        linear-gradient(135deg, var(--about-ink-1) 0%, #17324f 100%);
    background-size: 26px 26px, auto, auto;
    color: #fff;
    border-radius: 14px;
    padding: 5.8rem 3.2rem;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
    margin-bottom: 1.2rem;
}

.about-cta p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.8rem;
}

/* --- Efektler: shimmer, hero girişi, scroll progress, parıltı, imleç ışığı --- */
@keyframes about-shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes about-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.about-hero .about-kicker {
    animation: about-rise 0.6s ease both;
}

.about-hero h1 {
    animation: about-rise 0.7s 0.08s ease both;
}

.about-hero-lead {
    animation: about-rise 0.7s 0.16s ease both;
}

.about-hero-actions {
    animation: about-rise 0.7s 0.24s ease both;
}

.about-hero-facts {
    animation: about-rise 0.8s 0.34s ease both;
}

.about-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1090;
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft));
    transform-origin: 0 50%;
    transform: scaleX(0);
    pointer-events: none;
}

.about-hero-actions .btn,
.about-cta .btn {
    position: relative;
    overflow: hidden;
}

.about-hero-actions .btn::after,
.about-cta .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.about-hero-actions .btn:hover::after,
.about-cta .btn:hover::after {
    left: 140%;
}

.about-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 34rem;
    height: 34rem;
    margin: -17rem 0 0 -17rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 168, 255, 0.22), transparent 62%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 0;
}

/* --- Full paket: ikon canlılığı, bant blob'ları, partiküller, başlık çizgisi --- */
@keyframes about-float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-4px);
    }
}

@keyframes about-breath {
    from {
        box-shadow: 0 0 0 0 rgba(40, 121, 254, 0.28);
    }
    to {
        box-shadow: 0 0 0 12px rgba(40, 121, 254, 0);
    }
}

@keyframes about-tada {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.18) rotate(-5deg);
    }
    70% {
        transform: scale(0.95) rotate(4deg);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes about-hue {
    from {
        color: var(--about-primary);
    }
    to {
        color: var(--about-primary-soft);
    }
}

@keyframes about-ping {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    80%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes about-particle-rise {
    from {
        transform: translateY(0);
        opacity: 0;
    }
    12% {
        opacity: 0.7;
    }
    to {
        transform: translateY(-48rem);
        opacity: 0;
    }
}

@keyframes about-bounce {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

.about-value-icon,
.about-fraud-icon {
    animation: about-float 3.2s ease-in-out infinite alternate, about-breath 3s ease-out infinite;
}

.about-values .about-value-card:nth-child(2n) .about-value-icon,
.about-pillars .about-pillar-card:nth-child(2) .about-value-icon {
    animation-delay: 0.7s, 1s;
}

.about-values .about-value-card:nth-child(3n) .about-value-icon,
.about-pillars .about-pillar-card:nth-child(3) .about-value-icon {
    animation-delay: 1.3s, 1.9s;
}

.about-value-card:hover .about-value-icon i,
.about-pillar-card:hover .about-value-icon i {
    animation: about-tada 0.5s ease;
}

.about-section .about-kicker,
.about-founder .about-kicker {
    animation: about-hue 3.6s ease-in-out infinite alternate;
}

.about-timeline li::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid rgba(40, 121, 254, 0.5);
    animation: about-ping 2.6s ease-out infinite;
}

.about-timeline li:nth-child(2)::after {
    animation-delay: 0.5s;
}

.about-timeline li:nth-child(3)::after {
    animation-delay: 1s;
}

.about-timeline li:nth-child(4)::after {
    animation-delay: 1.5s;
}

.about-timeline li:nth-child(5)::after {
    animation-delay: 2s;
}

.about-values-band,
.about-name-band,
.about-cta {
    position: relative;
    overflow: hidden;
}

.about-values-band .container,
.about-name-band .container,
.about-cta > * {
    position: relative;
    z-index: 1;
}

.about-values-band::after,
.about-name-band::after,
.about-cta::before {
    content: "";
    position: absolute;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 168, 255, 0.14), transparent 65%);
    pointer-events: none;
    animation: about-drift 22s ease-in-out infinite alternate;
    z-index: 0;
}

.about-values-band::after {
    top: -14rem;
    right: -10rem;
}

.about-name-band::after {
    bottom: -16rem;
    left: -12rem;
    animation-duration: 26s;
}

.about-cta::before {
    top: -12rem;
    left: -10rem;
    animation-duration: 18s;
}

.about-section-head h2 {
    position: relative;
    padding-bottom: 1.5rem;
}

.about-section-head h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 3px;
    width: 6.4rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-primary-soft));
}

.about-section-head.js-reveal h2::after {
    width: 0;
    transition: width 0.7s 0.25s ease;
}

.about-section-head.js-reveal.is-visible h2::after {
    width: 6.4rem;
}

.about-particle {
    position: absolute;
    bottom: -1rem;
    border-radius: 50%;
    background: rgba(155, 196, 255, 0.5);
    pointer-events: none;
    animation: about-particle-rise linear infinite;
    z-index: 0;
}

.about-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    width: 3.8rem;
    height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.3rem;
    cursor: pointer;
    animation: about-bounce 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.about-scroll-cue:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

/* --- Scroll reveal (sınıflar JS ile eklenir; JS yoksa içerik hep görünür) --- */
.js-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero::before,
    .about-hero::after,
    .about-hero .about-kicker,
    .about-hero h1,
    .about-hero-lead,
    .about-hero-actions,
    .about-hero-facts,
    .about-hero-highlight,
    .about-stat-number,
    .about-name-logo span,
    .about-value-icon,
    .about-fraud-icon,
    .about-section .about-kicker,
    .about-founder .about-kicker,
    .about-values-band::after,
    .about-name-band::after,
    .about-cta::before,
    .about-scroll-cue {
        animation: none;
    }

    .about-progress,
    .about-hero-glow,
    .about-particle,
    .about-timeline li::after {
        display: none;
    }

    .js-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .about-hero {
        padding: 5.6rem 0 8.4rem;
    }

    .about-hero h1 {
        font-size: 3.1rem;
    }

    .about-section,
    .about-values-band,
    .about-name-band {
        padding: 4.8rem 0;
    }

    .about-section-head h2,
    .about-name-band h2,
    .about-cta h2 {
        font-size: 2.3rem;
    }

    .about-quote {
        font-size: 1.6rem;
        padding-left: 5.2rem;
    }

    .about-name-logo {
        font-size: 3.8rem;
    }

    .about-timeline::before {
        left: 1.6rem;
    }

    .about-timeline li {
        padding-left: 4.8rem;
    }

    .about-timeline li::before {
        left: 0.95rem;
    }

    .about-kicker::before,
    .about-kicker::after {
        width: 1.6rem;
        margin: 0 0.6rem;
    }

    .about-fraud {
        flex-direction: column;
        padding: 2.4rem 2rem;
    }
}
