/* =============================================
   EVERBOLT FOODS — ABOUT PAGE
   Completely self-contained. No external utility classes needed.
   ============================================= */

/* ── HERO ──────────────────────────────────── */
.ab-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 24px 60px;   /* 120px top clears 80px fixed header */
}

.ab-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.70) 0%, rgba(30,10,5,0.55) 100%);
}

.ab-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.ab-hero-tag {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.ab-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ab-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.7;
}

/* ── STORY SECTION ─────────────────────────── */
.ab-story {
    padding: 80px 24px;
    background: #ffffff;
}

.ab-story-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.ab-story-img {
    position: relative;
}

.ab-story-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.ab-story-img::before {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60%;
    height: 60%;
    background: var(--brand-red);
    border-radius: 20px;
    opacity: 0.07;
    z-index: -1;
}

.ab-eyebrow {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.ab-story-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.ab-story-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
}

.ab-story-stats {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid #f2f2f7;
}

.ab-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1;
    margin-bottom: 4px;
}

.ab-stat span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ── STANDARDS SECTION ─────────────────────── */
.ab-standards {
    padding: 80px 24px;
    background: #fafafa;
}

.ab-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.ab-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.ab-section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ab-section-divider {
    width: 48px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
    margin: 14px auto 0;
}

.ab-standards-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ab-std-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-std-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(192,57,43,0.10);
}

.ab-std-card-img {
    height: 210px;
    overflow: hidden;
}

.ab-std-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ab-std-card:hover .ab-std-card-img img {
    transform: scale(1.05);
}

.ab-std-card-body {
    padding: 28px;
}

.ab-std-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(192,57,43,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--brand-red);
}

.ab-std-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.ab-std-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ── CERTIFICATIONS ────────────────────────── */
.ab-certs {
    padding: 56px 24px;
    background: #ffffff;
    border-top: 1px solid #f2f2f7;
    border-bottom: 1px solid #f2f2f7;
}

.ab-certs-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ab-certs-inner h3 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.ab-cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.ab-cert-logos img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.ab-cert-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* ── TESTIMONIALS ──────────────────────────── */
.ab-testi {
    padding: 80px 24px;
    background: #fafafa;
}

.ab-testi-inner {
    max-width: 800px;
    margin: 0 auto;
}

.ab-testi-slider {
    position: relative;
    min-height: 280px;
}

.ab-testi-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.45s ease;
}

.ab-testi-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.ab-testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f7;
    text-align: center;
    position: relative;
}

.ab-testi-card::before {
    content: '\201C';
    position: absolute;
    top: 24px;
    left: 36px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--brand-red);
    opacity: 0.12;
    line-height: 1;
}

.ab-testi-card blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 32px;
    border: none;
    padding: 0;
}

.ab-testi-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ab-testi-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-red);
    flex-shrink: 0;
}

.ab-testi-author-info {
    text-align: left;
}

.ab-testi-author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ab-testi-author-info em {
    font-size: 0.82rem;
    font-style: normal;
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ab-testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.ab-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d1d6;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.ab-testi-dot.active {
    background: var(--brand-red);
    width: 24px;
    border-radius: 4px;
}

/* ── FAQ ───────────────────────────────────── */
.ab-faq {
    padding: 80px 24px;
    background: #ffffff;
}

.ab-faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.ab-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-faq-item {
    border-radius: 12px;
    border: 1px solid #f2f2f7;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.ab-faq-item.open {
    box-shadow: 0 8px 24px rgba(192,57,43,0.08);
    border-color: rgba(192,57,43,0.15);
}

.ab-faq-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    gap: 16px;
}

.ab-faq-btn:hover,
.ab-faq-item.open .ab-faq-btn {
    color: var(--brand-red);
}

.ab-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f2f2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ab-faq-item.open .ab-faq-icon {
    transform: rotate(180deg);
    background: var(--brand-red);
    color: #ffffff;
}

.ab-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}

.ab-faq-item.open .ab-faq-body {
    max-height: 400px;
}

.ab-faq-body p {
    padding: 0 24px 22px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
    .ab-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ab-hero {
        padding-top: 100px;
        min-height: 380px;
    }

    .ab-story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ab-story-img img {
        height: 300px;
    }

    .ab-story-img::before {
        display: none;
    }

    .ab-story-stats {
        gap: 24px;
    }

    .ab-standards-grid {
        grid-template-columns: 1fr;
    }

    .ab-testi-card {
        padding: 32px 24px;
    }

    .ab-testi-card::before {
        font-size: 3rem;
    }

    .ab-cert-logos {
        gap: 28px;
    }

    .ab-cert-logos img {
        height: 48px;
    }

    .ab-testi-author {
        flex-direction: column;
        text-align: center;
    }

    .ab-testi-author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ab-story-stats {
        flex-direction: column;
        gap: 16px;
    }
}
