/* ============================================================
   Kıpçak v.o.f — About page stylesheet (page-hakkimizda.php)
   Editorial / professional redesign on "Steel Atelier" palette.
   Loaded only on the Hakkımızda page.
   ============================================================ */

/* ---------- Reveal (used by about.js) ---------- */
.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal[data-reveal].is-visible { opacity: 1; transform: none; }
/* Hide default page hero on this template */
.about-page .page-hero,
.about-page .page-header-plain { display: none; }

/* ---------- Shared primitives ---------- */
.about-page {
    background: var(--bg-primary);
    color: var(--text-primary);
    --ab-border: rgba(255, 255, 255, 0.06);
    --ab-border-strong: rgba(255, 255, 255, 0.10);
    --ab-card-bg: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%);
    --ab-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}

.about-page .ab-text-accent { color: var(--accent); }

.ab-section {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
}

.ab-section__header {
    text-align: center;
    margin: 0 auto clamp(48px, 7vw, 80px);
    max-width: 760px;
}
.ab-section__header .ab-eyebrow { justify-content: center; }
.ab-section__title {
    margin: 0;
    font-size: clamp(1.8rem, 3.6vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0 0 22px;
}
.ab-eyebrow__dash {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}
.ab-eyebrow__chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid var(--ab-border-strong);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    margin-left: 6px;
}

/* ---------- Buttons ---------- */
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .3s ease;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}
.ab-btn svg { transition: transform .25s ease; }
.ab-btn:hover svg { transform: translateX(3px); }
.ab-btn--primary {
    background: var(--accent);
    color: #0b1018;
    box-shadow: 0 14px 30px -10px rgba(224, 122, 95, 0.55);
}
.ab-btn--primary:hover {
    background: var(--accent-hover);
    color: #0b1018;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(224, 122, 95, 0.65);
}
.ab-btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--ab-border-strong);
}
.ab-btn--ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.20);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ============================================================
   HERO — editorial split
   ============================================================ */
.ab-hero {
    --ab-header-h: 169px; /* promo (38) + main bar (~130) + 1px border */
    position: relative;
    min-height: calc(100svh - var(--ab-header-h));
    display: flex;
    align-items: center;
    padding: clamp(24px, 3vw, 48px) 0 clamp(36px, 4vw, 64px);
    background:
        radial-gradient(ellipse at 90% -10%, rgba(110,195,197,0.10), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(224,122,95,0.12), transparent 55%),
        var(--bg-primary);
    overflow: hidden;
    isolation: isolate;
}
.ab-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(224,122,95,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224,122,95,0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 20%, transparent 75%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}
.ab-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation: abHeroGlow 18s ease-in-out infinite alternate;
}
.ab-hero__glow--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(224,122,95,0.55), transparent 70%);
    top: -180px; left: -120px;
}
.ab-hero__glow--2 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(110,195,197,0.35), transparent 70%);
    bottom: -200px; right: -120px;
    animation-delay: -9s;
}
@keyframes abHeroGlow {
    0%   { transform: translate(0,0) scale(1); opacity: 0.45; }
    100% { transform: translate(40px,-30px) scale(1.15); opacity: 0.65; }
}

.ab-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
}

.ab-hero__text { max-width: 620px; }
.ab-hero__title {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.ab-hero__title span {
    display: block;
}
.ab-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
    font-family: 'Georgia', 'Times New Roman', serif;
}
.ab-hero__lead {
    margin: 0 0 28px;
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 540px;
}
.ab-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}
.ab-hero__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    border-top: 1px solid var(--ab-border);
    padding-top: 22px;
}
.ab-hero__meta li {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 0.86rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.ab-hero__meta li span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.18em;
}

/* visual collage */
.ab-hero__visual {
    position: relative;
    min-height: 480px;
    perspective: 1200px;
}
.ab-hero__shot {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--ab-border-strong);
    background: var(--bg-secondary);
    box-shadow: var(--ab-shadow);
    will-change: transform;
    transform-origin: center;
}
.ab-hero__shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.ab-hero__visual:hover .ab-hero__shot img { transform: scale(1.06); }
.ab-hero__visual:hover .ab-hero__shot { animation-play-state: paused; }

.ab-hero__shot--main {
    top: 0; right: 0;
    width: 72%;
    height: 400px;
    animation: abFloatMain 9s ease-in-out infinite;
}
.ab-hero__shot--main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11,16,24,0.65));
    pointer-events: none;
}
.ab-hero__shot--alt {
    bottom: 30px;
    left: 0;
    width: 50%;
    height: 200px;
    z-index: 2;
    animation: abFloatAlt 7s ease-in-out infinite;
    animation-delay: -2s;
}
.ab-hero__shot--mini {
    top: 150px;
    left: 0;
    width: 38%;
    height: 150px;
    border-radius: 12px;
    z-index: 1;
    display: none;
    animation: abFloatMini 8s ease-in-out infinite;
    animation-delay: -3.5s;
}

@keyframes abFloatMain {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(0, -14px, 0) rotate(-0.6deg); }
}
@keyframes abFloatAlt {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(8px, -10px, 0) rotate(0.8deg); }
}
@keyframes abFloatMini {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50%      { transform: translate3d(-6px, -8px, 0) rotate(-0.5deg); }
}
.ab-hero__shot-tag {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11,16,24,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 3;
}
.ab-hero__shot-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: abPulse 2s ease-in-out infinite;
}
@keyframes abPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

.ab-hero__stat-card {
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: 4;
    background: rgba(18,25,37,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--ab-border-strong);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 220px;
    box-shadow: 0 30px 50px -16px rgba(0,0,0,0.6);
    will-change: transform;
    animation: abFloatStat 10s ease-in-out infinite;
    animation-delay: -1s;
}
@keyframes abFloatStat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50%      { transform: translate3d(-4px, 6px, 0); }
}
.ab-hero__stat-num {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.ab-hero__stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.ab-marquee {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid var(--ab-border);
    border-bottom: 1px solid var(--ab-border);
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,0.015) 50%, transparent);
}
.ab-marquee::before,
.ab-marquee::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.ab-marquee::before { left: 0;  background: linear-gradient(90deg, var(--bg-primary), transparent); }
.ab-marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg-primary), transparent); }

.ab-marquee__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: abMarquee 38s linear infinite;
    will-change: transform;
}
.ab-marquee:hover .ab-marquee__track { animation-play-state: paused; }
.ab-marquee__item {
    display: inline-block;
    padding: 0 18px;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}
.ab-marquee__sep {
    display: inline-block;
    padding: 0 4px;
    color: var(--accent);
    font-size: 0.6rem;
    transform: translateY(-2px);
}
@keyframes abMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   STORY
   ============================================================ */
.ab-story {
    background:
        radial-gradient(ellipse at 80% 50%, rgba(224,122,95,0.05), transparent 55%),
        var(--bg-primary);
}
.ab-story__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
}

.ab-story__media {
    position: relative;
    isolation: isolate;
}
.ab-story__figure {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--ab-border-strong);
    background: var(--bg-secondary);
    box-shadow: var(--ab-shadow);
    position: relative;
    z-index: 2;
}
.ab-story__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.ab-story__figure:hover img { transform: scale(1.05); }
.ab-story__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 24px 26px 22px;
    background: linear-gradient(180deg, transparent, rgba(11,16,24,0.88) 60%);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.92rem;
}
.ab-story__caption-year {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}
.ab-story__media-frame {
    position: absolute;
    top: 30px; left: -30px;
    width: 100%; height: 100%;
    border: 1px solid var(--accent);
    border-radius: 18px;
    z-index: 1;
    opacity: 0.35;
    pointer-events: none;
}

.ab-story__copy { max-width: 600px; }
.ab-story__body { margin: 28px 0 36px; }
.ab-story__body p {
    margin: 0 0 18px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.78;
}
.ab-story__body p strong { color: var(--text-primary); font-weight: 600; }

.ab-story__quote {
    position: relative;
    margin: 0;
    padding: 28px 26px 26px 60px;
    background: var(--ab-card-bg);
    border: 1px solid var(--ab-border);
    border-left: 2px solid var(--accent);
    border-radius: 12px;
}
.ab-story__quote-mark {
    position: absolute;
    top: 22px;
    left: 18px;
    color: var(--accent);
    opacity: 0.6;
}
.ab-story__quote blockquote {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    font-family: 'Georgia', 'Times New Roman', serif;
}
.ab-story__quote figcaption {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================================
   STATS
   ============================================================ */
.ab-stats {
    position: relative;
    padding: clamp(64px, 8vw, 96px) 0;
    background:
        linear-gradient(180deg, var(--bg-primary), var(--bg-secondary) 40%, var(--bg-primary));
    border-top: 1px solid var(--ab-border);
    border-bottom: 1px solid var(--ab-border);
    overflow: hidden;
    isolation: isolate;
}
.ab-stats__glow {
    position: absolute;
    inset: -50% 30% auto auto;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(224,122,95,0.18), transparent 65%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: abHeroGlow 22s ease-in-out infinite alternate;
}
.ab-stats__row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.ab-stats__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ab-stats__num {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ab-stats__label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}
.ab-stats__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--ab-border-strong) 50%, transparent);
}

/* ============================================================
   CAPABILITIES — image cards
   ============================================================ */
.ab-caps {
    background: var(--bg-primary);
}
.ab-caps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ab-cap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--ab-border);
    background: var(--bg-secondary);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
    isolation: isolate;
}
.ab-cap:hover {
    transform: translateY(-6px);
    border-color: var(--ab-border-strong);
    box-shadow: var(--ab-shadow);
}
.ab-cap__media {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.ab-cap__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.ab-cap:hover .ab-cap__media img { transform: scale(1.06); }
.ab-cap__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(11,16,24,0.75) 100%);
    pointer-events: none;
}
.ab-cap__body {
    padding: 28px 28px 32px;
    position: relative;
}
.ab-cap__num {
    position: absolute;
    top: -18px;
    right: 24px;
    background: var(--accent);
    color: #0b1018;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 8px 18px -6px rgba(224,122,95,0.5);
}
.ab-cap__title {
    margin: 0 0 12px;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}
.ab-cap__body p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
.ab-vm {
    background:
        linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.ab-vm__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.ab-vm__card {
    position: relative;
    padding: 44px 40px 40px;
    background: var(--ab-card-bg);
    border: 1px solid var(--ab-border);
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
    transition: transform .4s ease, border-color .4s ease;
}
.ab-vm__card:hover {
    transform: translateY(-4px);
    border-color: var(--ab-border-strong);
}
.ab-vm__card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.ab-vm__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(224,122,95,0.12);
    color: var(--accent);
    border: 1px solid rgba(224,122,95,0.25);
}
.ab-vm__num {
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    color: var(--accent);
    font-weight: 700;
}
.ab-vm__card h3 {
    margin: 0 0 16px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 90%;
}
.ab-vm__card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
.ab-vm__corner {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224,122,95,0.18), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.ab-timeline {
    position: relative;
    background: var(--bg-primary);
}
.ab-timeline__list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 900px;
    position: relative;
}
.ab-timeline__list::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--ab-border-strong) 12%, var(--ab-border-strong) 88%, transparent);
}
.ab-timeline__item {
    position: relative;
    padding-left: 70px;
    padding-bottom: 36px;
}
.ab-timeline__item:last-child { padding-bottom: 0; }

.ab-timeline__dot {
    position: absolute;
    left: 16px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--text-muted);
    z-index: 2;
}
.ab-timeline__item.is-active .ab-timeline__dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(224,122,95,0.15), 0 0 18px rgba(224,122,95,0.5);
}
.ab-timeline__dot-ping {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: abTimelinePing 2s ease-out infinite;
}
@keyframes abTimelinePing {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.ab-timeline__card {
    background: var(--ab-card-bg);
    border: 1px solid var(--ab-border);
    border-radius: 14px;
    padding: 22px 28px 24px;
    transition: border-color .3s ease, transform .3s ease;
}
.ab-timeline__card:hover {
    border-color: var(--ab-border-strong);
    transform: translateX(4px);
}
.ab-timeline__item.is-active .ab-timeline__card {
    border-color: rgba(224,122,95,0.35);
    background: linear-gradient(180deg, rgba(224,122,95,0.06), rgba(255,255,255,0.015));
}
.ab-timeline__year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 8px;
}
.ab-timeline__card h4 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
}
.ab-timeline__card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* ============================================================
   WHY KIPCAK — feature grid
   ============================================================ */
.ab-why {
    background:
        linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}
.ab-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ab-why__card {
    position: relative;
    padding: 36px 30px 32px;
    background: var(--ab-card-bg);
    border: 1px solid var(--ab-border);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s ease, border-color .35s ease;
}
.ab-why__card:hover {
    transform: translateY(-4px);
    border-color: var(--ab-border-strong);
}
.ab-why__card:hover .ab-why__hover { opacity: 1; }
.ab-why__num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 2.6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(224,122,95,0.25);
    letter-spacing: -0.04em;
    line-height: 1;
    z-index: 1;
}
.ab-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(224,122,95,0.10);
    color: var(--accent);
    border: 1px solid rgba(224,122,95,0.2);
    margin-bottom: 20px;
}
.ab-why__card h4 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 80%;
}
.ab-why__card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
}
.ab-why__hover {
    position: absolute;
    inset: auto -60px -60px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,195,197,0.18), transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: -1;
}

/* ============================================================
   VALUES
   ============================================================ */
.ab-values { background: var(--bg-primary); }
.ab-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--ab-border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.ab-values__item {
    position: relative;
    padding: 38px 30px 36px;
    border-right: 1px solid var(--ab-border);
    transition: background .3s ease;
}
.ab-values__item:last-child { border-right: none; }
.ab-values__item:hover {
    background: linear-gradient(180deg, rgba(224,122,95,0.04), transparent);
}
.ab-values__mark {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}
.ab-values__item h4 {
    margin: 0 0 10px;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary);
}
.ab-values__item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.ab-cta {
    padding: 0 0 clamp(80px, 10vw, 120px);
}
.ab-cta__card {
    position: relative;
    padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 80px);
    border-radius: 28px;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--bg-secondary);
    background-image: var(--ab-cta-bg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--ab-border-strong);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
}
.ab-cta__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(224,122,95,0.25), transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(110,195,197,0.18), transparent 50%),
        linear-gradient(135deg, rgba(11,16,24,0.92), rgba(18,25,37,0.94));
    z-index: 0;
}
.ab-cta__corner {
    position: absolute;
    width: 32px; height: 32px;
    z-index: 2;
    pointer-events: none;
}
.ab-cta__corner--tl { top: 18px; left: 18px;  border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.ab-cta__corner--tr { top: 18px; right: 18px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.ab-cta__corner--bl { bottom: 18px; left: 18px;  border-bottom: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.ab-cta__corner--br { bottom: 18px; right: 18px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }

.ab-cta__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.ab-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    color: var(--accent);
    text-transform: uppercase;
}
.ab-cta__eyebrow .ab-eyebrow__dash { width: 32px; height: 1px; background: var(--accent); }
.ab-cta__title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
.ab-cta__desc {
    margin: 0 auto 36px;
    max-width: 580px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-secondary);
}
.ab-cta__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}
.ab-cta__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.ab-cta__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color .25s ease;
}
.ab-cta__meta-item:hover { color: var(--accent); }
.ab-cta__meta-item--static { cursor: default; }
.ab-cta__meta-item--static:hover { color: var(--text-secondary); }
.ab-cta__meta-item svg { color: var(--accent); }
.ab-cta__meta-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .ab-hero { min-height: 0; padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 7vw, 88px); }
    .ab-hero__inner { grid-template-columns: 1fr; gap: 56px; }
    .ab-hero__visual { min-height: 480px; max-width: 600px; margin: 0 auto; width: 100%; }
    .ab-story__grid { grid-template-columns: 1fr; gap: 56px; }
    .ab-story__media { max-width: 520px; margin: 0 auto; width: 100%; }
    .ab-story__copy  { max-width: none; }
    .ab-caps__grid { grid-template-columns: repeat(2, 1fr); }
    .ab-why__grid  { grid-template-columns: repeat(2, 1fr); }
    .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
    .ab-values__item:nth-child(2) { border-right: none; }
    .ab-values__item:nth-child(-n+2) { border-bottom: 1px solid var(--ab-border); }
}

@media (max-width: 820px) {
    .ab-section { padding: 80px 0; }
    .ab-hero { padding: 56px 0 72px; }
    .ab-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .ab-hero__visual { min-height: 400px; }
    .ab-hero__shot--main { width: 78%; height: 320px; }
    .ab-hero__shot--alt  { width: 56%; height: 160px; bottom: 30px; }
    .ab-hero__stat-card  { min-width: 180px; padding: 16px 18px; bottom: -6px; right: -6px; }
    .ab-hero__stat-num   { font-size: 2rem; }

    .ab-stats__row {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }
    .ab-stats__divider { display: none; }

    .ab-vm__grid { grid-template-columns: 1fr; }
    .ab-vm__card { padding: 36px 28px 32px; }

    .ab-timeline__list::before { left: 15px; }
    .ab-timeline__item { padding-left: 52px; padding-bottom: 28px; }
    .ab-timeline__dot { left: 8px; }

    .ab-cta__card { padding: 56px 24px; }
}

@media (max-width: 560px) {
    .ab-caps__grid { grid-template-columns: 1fr; }
    .ab-why__grid  { grid-template-columns: 1fr; }
    .ab-values__grid { grid-template-columns: 1fr; }
    .ab-values__item { border-right: none; border-bottom: 1px solid var(--ab-border); }
    .ab-values__item:last-child { border-bottom: none; }

    .ab-hero__visual { min-height: 360px; }
    .ab-hero__shot--main { width: 100%; height: 280px; }
    .ab-hero__shot--alt  { display: none; }
    .ab-hero__stat-card  { left: 0; right: auto; bottom: -16px; }

    .ab-marquee__item { font-size: 0.84rem; padding: 0 12px; }
    .ab-cta__corner { width: 24px; height: 24px; }
}
