/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE — about.css
   Furious Fight Gear Theme
   Self-contained — no dependency on homepage.css
   ═══════════════════════════════════════════════════════════ */

/* ══ SCROLL REVEAL ════════════════════════════════════════════ */
.sr, .sr-l, .sr-r {
    opacity: 0;
    transition: opacity .65s ease, transform .65s ease;
}
.sr          { transform: translateY(44px); }
.sr-l        { transform: translateX(-56px); }
.sr-r        { transform: translateX(56px); }
.sr.visible,
.sr-l.visible,
.sr-r.visible { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }


/* ══════════════════════════════════════════════════════════
   1. PAGE HERO
   ══════════════════════════════════════════════════════════ */
.ab-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ab-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    will-change: transform;
    transform: scale(1.05);
    transition: transform 12s ease;
}
.ab-hero:hover .ab-hero-bg { transform: scale(1.1); }

.ab-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10,10,20,.96) 0%, rgba(10,10,20,.82) 55%, rgba(10,10,20,.35) 100%);
}

.ab-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* Breadcrumb — matches shop-complete.css exactly */
.ab-hero-inner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(14px);
    animation: abFadeUp .5s .1s ease forwards;
}
.ab-hero-inner .breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.ab-hero-inner .breadcrumb a:hover { color: var(--red); }
.ab-hero-inner .breadcrumb .breadcrumb-sep { color: rgba(255,255,255,.2); }
.ab-hero-inner .breadcrumb .cur { color: rgba(255,255,255,.65); }

.ab-hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(40px);
    animation: abFadeUp .6s .25s ease forwards;
}
.ab-hero-h1 em { font-style: normal; color: var(--red); }

.ab-hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,.85);
    max-width: 740px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: abFadeUp .6s .42s ease forwards;
}

@keyframes abFadeUp { to { opacity: 1; transform: translateY(0); } }


/* ══════════════════════════════════════════════════════════
   2. WHO WE ARE
   ══════════════════════════════════════════════════════════ */
.ab-story {
    padding: 100px 0;
    background: var(--white);
}

.ab-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image */
.ab-story-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}
.ab-story-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.ab-story-img-wrap:hover img { transform: scale(1.04); }

.ab-story-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--red);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Text */
.ab-story-content .section-tag { margin-bottom: 10px; }

.ab-story-title {
    font-family: var(--font-h);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 22px;
}

.ab-story-p {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 16px;
}
.ab-story-p:last-of-type { margin-bottom: 0; }

/* Timeline */
.ab-timeline {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 0;
}

.ab-tl-line {
    position: absolute;
    top: 26px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-mid);
    overflow: hidden;
    z-index: 0;
}
.ab-tl-fill {
    height: 100%;
    background: var(--red);
    width: 0;
    transition: width 1.6s ease;
}
.ab-tl-fill.ab-on { width: 100%; }

.ab-tl-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.ab-tl-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--red);
    border: 2px solid var(--red);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-tl-num {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .04em;
}

.ab-tl-year {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
    display: none; /* number shown in dot; hide duplicate */
}

.ab-tl-label {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.4;
}


/* ══════════════════════════════════════════════════════════
   3. OUR FOUNDATION (Values)
   ══════════════════════════════════════════════════════════ */
.ab-values {
    padding: 100px 0;
    background: var(--gray-light);
}

.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.ab-val-card {
    background: var(--white);
    border-radius: 6px;
    padding: 44px 36px;
    border-bottom: 3px solid transparent;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
}
.ab-val-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
    border-bottom-color: var(--red);
}

.ab-val-num {
    width: 52px;
    height: 52px;
    background: rgba(192,57,43,.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: .04em;
    transition: background .35s ease, color .35s ease;
}
.ab-val-card:hover .ab-val-num {
    background: var(--red);
    color: var(--white);
}

.ab-val-title {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    letter-spacing: .04em;
}

.ab-val-desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.75;
}


/* ══════════════════════════════════════════════════════════
   4. HOW CUSTOM ORDERS WORK (Process)
   ══════════════════════════════════════════════════════════ */
.ab-process {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.ab-process::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,.06) 0%, transparent 70%);
    pointer-events: none;
}

.ab-process .section-header { margin-bottom: 70px; }

.ab-proc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.ab-proc-line {
    position: absolute;
    top: 36px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: var(--gray-mid);
    z-index: 0;
    overflow: hidden;
}
.ab-proc-fill {
    height: 100%;
    background: var(--red);
    width: 0;
    transition: width 1.8s ease;
}
.ab-proc-fill.ab-on { width: 100%; }

.ab-proc-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.ab-proc-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(192,57,43,.3);
}

.ab-proc-num {
    font-family: var(--font-h);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .04em;
}

.ab-proc-title {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: .04em;
}

.ab-proc-desc {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
}

.ab-proc-cta {
    text-align: center;
    margin-top: 56px;
}


/* ══════════════════════════════════════════════════════════
   5. MANUFACTURED TO LAST (Quality)
   ══════════════════════════════════════════════════════════ */
.ab-quality {
    padding: 100px 0;
    background: var(--white);
}

.ab-quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ab-quality-title {
    font-family: var(--font-h);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 18px;
}

.ab-quality-desc {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.82;
    margin-bottom: 32px;
}

/* Checklist */
.ab-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.ab-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ab-check-num {
    width: 32px;
    height: 32px;
    background: rgba(192,57,43,.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    margin-top: 1px;
    transition: background .25s ease, color .25s ease;
}
.ab-check-item:hover .ab-check-num {
    background: var(--red);
    color: var(--white);
}

.ab-check-text strong {
    display: block;
    font-family: var(--font-h);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 3px;
    letter-spacing: .04em;
}
.ab-check-text span {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Image */
.ab-quality-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}
.ab-quality-img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.ab-quality-img-wrap:hover img { transform: scale(1.04); }

.ab-quality-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--red);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-q-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    animation: abBlink 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes abBlink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }


/* ══════════════════════════════════════════════════════════
   6. STATS STRIP
   ══════════════════════════════════════════════════════════ */
.ab-stats {
    background: var(--navy);
    padding: 0;
}

.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container);
    margin: 0 auto;
}

.ab-stat-item {
    text-align: center;
    padding: 36px 30px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.ab-stat-item:last-child { border-right: none; }

.ab-stat-num {
    font-family: var(--font-h);
    font-size: 50px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.ab-cnum { color: var(--red); }
.ab-stat-suffix {
    font-family: var(--font-h);
    font-size: 50px;
    font-weight: 900;
    color: var(--red);
}
.ab-stat-label {
    font-family: var(--font-b);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
}


/* ══════════════════════════════════════════════════════════
   7. TRUSTED GLOBALLY
   ══════════════════════════════════════════════════════════ */
.ab-trust {
    padding: 100px 0;
    background: var(--white);
}

.ab-trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.ab-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 36px;
    background: var(--off-white);
    border-radius: 6px;
    border: 1px solid var(--gray-light);
    min-width: 150px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s, background .35s;
    cursor: default;
}
.ab-trust-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
    border-color: var(--red);
    background: var(--white);
}

.ab-trust-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(192,57,43,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 900;
    color: var(--red);
    transition: background .35s, color .35s;
}
.ab-trust-badge:hover .ab-trust-num {
    background: var(--red);
    color: var(--white);
}

.ab-trust-label {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    transition: color .35s;
}
.ab-trust-badge:hover .ab-trust-label { color: var(--red); }


/* ══════════════════════════════════════════════════════════
   8. FINAL CTA
   ══════════════════════════════════════════════════════════ */
.ab-cta {
    padding: 110px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-cta-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,.1) 0%, transparent 65%);
    pointer-events: none;
}

.ab-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.ab-cta-tag {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.ab-cta-title {
    font-family: var(--font-h);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: .95;
    margin-bottom: 20px;
}
.ab-cta-title em { font-style: normal; color: var(--red); }

.ab-cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    line-height: 1.72;
    margin-bottom: 40px;
}

.ab-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════
   9. SEO SECTION
   ══════════════════════════════════════════════════════════ */
.ab-seo {
    padding: 80px 0;
    background: var(--white);
}

.ab-seo-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    text-align: center;
}

.ab-seo-h {
    font-family: var(--font-h);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 24px;
}

.ab-seo-body {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.9;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.ab-seo-body p { margin-bottom: 16px; }
.ab-seo-body p:last-child { margin-bottom: 0; }
.ab-seo-body a { color: var(--red); font-weight: 600; }

.ab-seo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.ab-skw {
    background: var(--off-white);
    border: 1px solid var(--gray-mid);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-soft);
    transition: background .2s, color .2s, border-color .2s;
    cursor: default;
    text-decoration: none;
    display: inline-block;
}
.ab-skw:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .ab-story-grid,
    .ab-quality-grid {
        gap: 56px;
    }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
    .ab-story-grid,
    .ab-quality-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ab-story-img-wrap img { height: 380px; }
    .ab-quality-img-wrap img { height: 420px; }
    .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-proc-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
    .ab-proc-line { display: none; }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .ab-tl-line { display: none; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .ab-hero { min-height: 360px; }
    .ab-hero-h1 { font-size: 36px; }
    .ab-hero-sub { font-size: 15px; }

    .ab-story { padding: 72px 0; }
    .ab-values { padding: 72px 0; }
    .ab-process { padding: 72px 0; }
    .ab-quality { padding: 72px 0; }
    .ab-trust { padding: 72px 0; }
    .ab-cta { padding: 80px 0; }
    .ab-seo { padding: 56px 0; }

    .ab-values-grid { grid-template-columns: 1fr; gap: 20px; }
    .ab-proc-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ab-timeline { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stat-item:nth-child(2) { border-right: none; }
    .ab-trust-badges { gap: 12px; }
    .ab-trust-badge { min-width: 120px; padding: 24px 20px; }
    .ab-cta-btns { flex-direction: column; align-items: center; }
    .ab-story-img-wrap img { height: 300px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .ab-hero-h1 { font-size: clamp(32px, 9vw, 48px); }

    .ab-story { padding: 56px 0; }
    .ab-values { padding: 56px 0; }
    .ab-process { padding: 56px 0; }
    .ab-quality { padding: 56px 0; }
    .ab-trust { padding: 56px 0; }
    .ab-cta { padding: 64px 0; }

    .ab-proc-steps { grid-template-columns: 1fr; gap: 36px; }
    .ab-stats-grid { grid-template-columns: 1fr 1fr; }
    .ab-timeline { grid-template-columns: 1fr 1fr; }
    .ab-val-card { padding: 32px 24px; }
    .ab-cta-title { font-size: clamp(36px, 9vw, 52px); }
    .ab-story-grid { gap: 32px; }
    .ab-quality-grid { gap: 32px; }
}
