/* CONTACT PREMIUM REDESIGN */
.afb-premium-contact {
    font-family: 'Inter', sans-serif;
    color: #334155;
    line-height: 1.6;
}
.afb-premium-contact em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c5a059;
}
.afb-premium-contact .afb-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c5a059;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.afb-premium-contact .afb-eyebrow .line {
    width: 30px;
    height: 2px;
    background: #c5a059;
}
/* Header */
.afb-contact-top-wrapper {
    padding: 0px;
    background: #ffffff;
}
.afb-contact-header {
    margin-bottom: 15px;
}
.afb-contact-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}
.afb-contact-desc {
    font-size: 16px;
    color: #475569;
}

/* Inquiry Grid */
.afb-contact-inquiry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.afb-inquiry-card {
    display: flex;
    align-items: center;
    background: #fdfaf3;
    border: 1px solid #f0e6d2;
    border-radius: 8px;
    padding: 12px 15px;
    gap: 15px;
    transition: all 0.3s;
}
.afb-inquiry-card:hover {
    background: #ffffff;
    border-color: #e5d5b5;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
}
.afb-inquiry-icon {
    width: 40px;
    height: 40px;
    background: #0f172a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.afb-inquiry-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.afb-inquiry-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c5a059;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.afb-inquiry-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Playfair Display', serif;
}
/* Grid */
.afb-contact-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: flex-start;
}
/* Info Cards */
.afb-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}
.afb-info-card.is-primary {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.afb-info-card.is-primary .afb-info-icon {
    color: #ea4335;
}
.afb-info-card.is-whatsapp {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.afb-info-card.is-whatsapp .afb-info-icon {
    color: #25d366;
}
.afb-info-card.is-telegram {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}
.afb-info-card.is-telegram .afb-info-icon {
    color: #0088cc;
}
.afb-info-card-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.afb-info-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.afb-info-meta {
    flex: 1;
}
.afb-info-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.afb-badge-soon {
    background: #3b82f6;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    letter-spacing: 0.5px;
}
.afb-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.afb-info-action {
    margin-bottom: 15px;
}
.afb-info-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #c5a059;
    color: #0f172a;
    text-align: center;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}
.afb-info-btn:hover {
    background: #c5a059;
    color: #fff;
}
.afb-info-box-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
}
.afb-info-desc {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}
/* Form Card */
.afb-contact-form-premium {
    background: #0f2c4d1c;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.afb-form-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.afb-form-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
}
.afb-premium-form .afb-form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}
.afb-premium-form .afb-form-group {
    margin-bottom: 20px;
}
.afb-premium-form .afb-form-row-2col .afb-form-group {
    margin-bottom: 0;
}
.afb-premium-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}
.afb-premium-form label .required {
    color: #ef4444;
}
.afb-premium-form input[type="text"],
.afb-premium-form input[type="email"],
.afb-premium-form select,
.afb-premium-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    color: #334155;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.afb-premium-form input:focus,
.afb-premium-form select:focus,
.afb-premium-form textarea:focus {
    border-color: #c5a059;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}
.afb-select-wrapper {
    position: relative;
}
.afb-select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #94a3b8;
    pointer-events: none;
}
.afb-premium-form select {
    appearance: none;
    padding-right: 40px;
}
.afb-form-submit-wrapper {
    margin-top: 0;
}
.btn-premium-submit {
    width: 100%;
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-premium-submit:hover {
    background: #1e293b;
}
.btn-premium-submit .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.afb-form-assurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 11px;
    color: #64748b;
}
/* Middle Banner */
.afb-contact-standard-banner {
    background: #0f172a;
    padding: 40px 0;
    color: #ffffff;
}
.afb-standard-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}
.afb-contact-standard-banner .afb-eyebrow.is-light {
    color: #94a3b8;
    justify-content: center;
}
.afb-contact-standard-banner .afb-eyebrow.is-light .line {
    background: #94a3b8;
}
.afb-standard-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
}
.afb-contact-standard-banner .afb-standard-title {
    color: #fff;
}
.afb-standard-desc {
    font-size: 15px;
    color: #cbd5e1;
}
.afb-standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.afb-standard-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}
.afb-standard-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}
.afb-standard-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.afb-standard-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c5a059;
}
.afb-standard-sub {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 5px;
}
.afb-standard-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0;
}
/* FAQ */
.afb-contact-faq-wrapper {
    padding: 20px 0;
    background: #f8fafc;
}
.afb-faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 0;
}
.afb-faq-header .afb-eyebrow {
    justify-content: center;
}
.afb-faq-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}
.afb-faq-desc {
    font-size: 15px;
    color: #475569;
}
.afb-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.afb-faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
}
.afb-faq-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c5a059;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.afb-faq-eyebrow .line {
    width: 20px;
    height: 2px;
    background: #c5a059;
}
.afb-faq-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}
.afb-faq-card p {
    font-size: 14px;
    color: #475569;
    margin: 0;
}
/* Footer Note */
.afb-contact-footer-note {
    background: #fff4d1;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.note-icon {
    width: 40px;
    height: 40px;
    background: #c5a059;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.note-text p {
    margin: 0;
    font-size: 13px;
    color: #334155;
}

/* Responsive */
@media (max-width: 991px) {
    .afb-contact-inquiry-grid {
        grid-template-columns: 1fr 1fr;
    }
    .afb-contact-grid-premium {
        grid-template-columns: 1fr;
    }
    .afb-standard-grid {
        grid-template-columns: 1fr 1fr;
    }
    .afb-faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .afb-contact-title {
        font-size: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    .afb-contact-title::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 50%;
        height: 2px;
        background: linear-gradient(to right, transparent, #c5a059);
    }
    .afb-contact-inquiry-grid {
        grid-template-columns: 1fr;
    }
    .afb-premium-form .afb-form-row-2col {
        grid-template-columns: 1fr;
    }
    .afb-standard-grid {
        grid-template-columns: 1fr;
    }
    .afb-contact-footer-note {
        flex-direction: column;
        text-align: center;
    }
}

/* Purpose Header */
.purpose-eyebrow {
    color: #c5a059;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.purpose-eyebrow::before, .purpose-eyebrow::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #c5a059;
}
.purpose-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}
.purpose-title em {
    font-style: normal;
    color: #c5a059;
    position: relative;
}

/* ================================================
   ABOUT US PAGE — COMPLETE STYLES
   ================================================ */

/* Shared tokens */
.afb-about-page { font-family: 'Inter', sans-serif; }
.afb-about-page em { font-style: italic; color: #c5a059; font-family: 'Playfair Display', serif; }

/* Tag */
.afb-au-tag-wrap { text-align: center; margin-bottom: 10px; }
.afb-au-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a059;
    padding: 5px 16px;
    border: 1px solid rgba(197,160,89,0.35);
    border-radius: 30px;
}
.afb-au-tag.light { color: #c5a059; border-color: rgba(197,160,89,0.45); }

/* Section title */
.afb-au-section-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin: 0 0 10px;
    line-height: 1.25;
}
.afb-au-section-title.light { color: #f1f5f9; }

/* Section desc */
.afb-au-section-desc {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.afb-au-section-desc.light { color: #94a3b8; }

/* ─── 1. HERO ─── */
.afb-au-hero {
    background: #faf9f7;
    padding: 44px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e9e4dc;
}
.afb-au-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 20px;
}
.afb-au-line { display: block; width: 28px; height: 2px; background: #c5a059; }
.afb-au-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.15;
    margin: 0 0 18px;
}
.afb-au-hero-desc {
    font-size: 17px;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.75;
}

/* Stats */
.afb-au-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #e2ddd4;
    border-radius: 14px;
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.afb-au-stat { text-align: center; padding: 0 32px; }
.afb-au-stat-div { width: 1px; height: 40px; background: #e2ddd4; }
.afb-au-stat-num {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 5px;
}
.afb-au-stat-lbl {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
}

/* ─── 2. MISSION ─── */
.afb-au-mission { background: #fff; padding: 44px 0; }
.afb-au-mission .afb-au-section-title { margin-bottom: 24px; }
.afb-au-mission-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}
.afb-au-dropcap::first-letter {
    float: left;
    font-size: 72px;
    line-height: 0.75;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #c5a059;
    margin: 4px 14px 0 0;
    padding: 0;
}
.afb-au-mission-body p { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 20px; }
.afb-au-quote-box {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(15,23,42,0.25);
}
.afb-au-quote-mark {
    font-size: 90px;
    line-height: 0.6;
    font-family: Georgia, serif;
    color: rgba(197,160,89,0.2);
    position: absolute;
    top: 24px;
    left: 28px;
}
.afb-au-quote-text {
    font-size: 16px;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.85;
    position: relative;
    z-index: 1;
    padding-top: 28px;
    margin-bottom: 20px;
}
.afb-au-quote-author {
    font-size: 13px;
    font-weight: 600;
    color: #c5a059;
    letter-spacing: 0.3px;
}

/* ─── 3. FEATURES ─── */
.afb-au-features { background: #f8f6f2; padding: 44px 0; }
.afb-au-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.afb-au-feat-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid #e8e4db;
    transition: all 0.3s ease;
}
.afb-au-feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    border-color: rgba(197,160,89,0.4);
}
.afb-au-feat-icon {
    width: 52px; height: 52px;
    background: rgba(197,160,89,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #c5a059;
    margin-bottom: 18px;
}
.afb-au-feat-card h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.afb-au-feat-card p  { font-size: 13.5px; color: #64748b; line-height: 1.65; margin: 0; }

/* ─── 4. TRADERS ─── */
.afb-au-traders { background: #fff; padding: 44px 0; }
.afb-au-traders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.afb-au-tcard {
    background: #f8f6f2;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e8e4db;
}
.afb-au-tcard.is-dark {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-color: rgba(197,160,89,0.35);
    box-shadow: 0 24px 60px rgba(15,23,42,0.3);
}
.afb-au-tbadge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(197,160,89,0.12);
    color: #c5a059;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.afb-au-tbadge.gold { background: rgba(197,160,89,0.22); }
.afb-au-tcard-title { font-size: 20px; font-weight: 700; color: #1e293b; margin: 0 0 12px; line-height: 1.35; }
.afb-au-tcard.is-dark .afb-au-tcard-title { color: #f1f5f9; }
.afb-au-tcard-desc { font-size: 14px; color: #64748b; line-height: 1.7; margin-bottom: 22px; }
.afb-au-tcard.is-dark .afb-au-tcard-desc { color: #94a3b8; }
.afb-au-tlist { list-style: none; padding: 0; margin: 0; }
.afb-au-tlist li {
    font-size: 13px; color: #475569;
    padding: 8px 0 8px 22px;
    position: relative;
    border-top: 1px solid #e2ddd4;
}
.afb-au-tcard.is-dark .afb-au-tlist li { color: #94a3b8; border-color: rgba(255,255,255,0.08); }
.afb-au-tlist li::before { content: '✓'; position: absolute; left: 0; color: #c5a059; font-weight: 700; }

/* ─── 5. PROCESS ─── */
.afb-au-process {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 44px 0;
}
.afb-au-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.afb-au-pstep {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    transition: all 0.3s ease;
}
.afb-au-pstep:hover {
    background: rgba(197,160,89,0.07);
    border-color: rgba(197,160,89,0.3);
}
.afb-au-pnum {
    display: block;
    font-size: 44px;
    font-weight: 800;
    color: rgba(197,160,89,0.25);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.afb-au-pstep h3 { font-size: 15px; font-weight: 700; color: #e2e8f0; margin: 0 0 10px; }
.afb-au-pstep p  { font-size: 13.5px; color: #94a3b8; line-height: 1.65; margin: 0; }

/* ─── 6. VALUES ─── */
.afb-au-values { background: #fff; padding: 44px 0; }
.afb-au-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.afb-au-vitem {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8f6f2;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid #e8e4db;
    transition: all 0.3s ease;
}
.afb-au-vitem:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    border-color: rgba(197,160,89,0.35);
}
.afb-au-vicon {
    width: 46px; height: 46px; min-width: 46px;
    background: rgba(197,160,89,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #c5a059;
}
.afb-au-vitem h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin: 0 0 7px; }
.afb-au-vitem p  { font-size: 13.5px; color: #64748b; line-height: 1.65; margin: 0; }

/* ─── 7. CTA ─── */
.afb-au-cta { background: #f8f6f2; padding: 44px 0; }
.afb-au-cta-desc {
    text-align: center;
    font-size: 16px; color: #64748b;
    max-width: 620px; margin: 0 auto 28px;
    line-height: 1.8;
}
.afb-au-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 820px;
    margin: 0 auto;
}
.afb-au-cta-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px;
    background: #fff;
    border: 1px solid #e8e4db;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.afb-au-cta-card:hover {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: rgba(197,160,89,0.4);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.2);
}
.afb-au-cta-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: rgba(197,160,89,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #c5a059;
    transition: background 0.3s;
}
.afb-au-cta-card:hover .afb-au-cta-icon { background: rgba(197,160,89,0.2); }
.afb-au-cta-body { flex: 1; }
.afb-au-cta-body h3 { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 5px; transition: color 0.3s; }
.afb-au-cta-body p  { font-size: 13.5px; color: #64748b; margin: 0; transition: color 0.3s; }
.afb-au-cta-card:hover .afb-au-cta-body h3 { color: #fff; }
.afb-au-cta-card:hover .afb-au-cta-body p  { color: #94a3b8; }
.afb-au-cta-arr { font-size: 20px; color: #cbd5e1; transition: color 0.3s; }
.afb-au-cta-card:hover .afb-au-cta-arr { color: #c5a059; }

/* ─── 8. FOOTER BAND ─── */
.afb-au-footband {
    background: linear-gradient(90deg, #f5efe3 0%, #faf8f4 50%, #f5efe3 100%);
    border-top: 1px solid #e2ddd4;
    padding: 24px 0;
    text-align: center;
}
.afb-au-footband p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}
.afb-au-footband strong { color: #c5a059; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .afb-au-feat-grid    { grid-template-columns: repeat(2, 1fr); }
    .afb-au-process-grid { grid-template-columns: repeat(2, 1fr); }
    .afb-au-mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .afb-au-hero-title   { font-size: 30px; }
    .afb-au-stats        { flex-direction: column; gap: 0; padding: 20px; }
    .afb-au-stat         { padding: 14px 0; }
    .afb-au-stat-div     { width: 80%; height: 1px; }
    .afb-au-traders-grid { grid-template-columns: 1fr; }
    .afb-au-feat-grid    { grid-template-columns: 1fr; }
    .afb-au-process-grid { grid-template-columns: 1fr; }
    .afb-au-values-grid  { grid-template-columns: 1fr; }
    .afb-au-cta-grid     { grid-template-columns: 1fr; }
    .afb-au-section-title { font-size: 26px; }
}

/* Hero */
.afb-about-hero { background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%); }
.afb-about-hero-inner { text-align: center; }
.afb-about-hero-inner .afb-eyebrow { justify-content: center; color: #c5a059; }
.afb-about-hero-inner .afb-eyebrow .line { background: #c5a059; }
.afb-about-hero-inner .afb-contact-title { color: #fff; font-size: 46px; }
.afb-about-hero-inner .afb-contact-desc { max-width: 700px; margin: 0 auto; color: #94a3b8; font-size: 17px; }

/* Stats Bar */
.afb-about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.afb-about-stat { text-align: center; }
.afb-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 6px;
}
.afb-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 600;
}

/* Shared Section Styles */
.afb-about-section-label { text-align: center; margin-bottom: 12px; }
.afb-about-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c5a059;
    padding: 4px 14px;
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 20px;
}
.afb-about-tag.light { color: #c5a059; border-color: rgba(197,160,89,0.4); }
.afb-about-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.2;
}
.afb-about-section-title.light { color: #fff; }
.afb-about-section-title em { font-style: italic; color: #c5a059; font-family: 'Playfair Display', serif; }
.afb-about-section-desc {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.afb-about-section-desc.light { color: #94a3b8; }

/* Mission Section */
.afb-about-mission-wrapper { padding: 80px 0; background: #fff; }
.afb-about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    margin-top: 48px;
}
.afb-about-mission-text p { color: #475569; font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.afb-about-quote-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.afb-about-quote-icon {
    font-size: 80px;
    line-height: 1;
    color: rgba(197,160,89,0.25);
    font-family: Georgia, serif;
    position: absolute;
    top: 20px;
    left: 28px;
}
.afb-about-quote-text {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-top: 20px;
    margin-bottom: 20px;
}
.afb-about-quote-author {
    color: #c5a059;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Features Section */
.afb-about-features-wrapper { padding: 80px 0; background: #f8fafc; }
.afb-about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.afb-about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.afb-about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(197,160,89,0.3);
}
.afb-about-feature-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(197,160,89,0.12), rgba(197,160,89,0.06));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #c5a059;
}
.afb-about-feature-title { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 10px; }
.afb-about-feature-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }

/* Traders Section */
.afb-about-traders-wrapper { padding: 80px 0; background: #fff; }
.afb-about-traders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.afb-about-trader-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.afb-about-trader-card.is-featured {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: rgba(197,160,89,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.afb-about-trader-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(197,160,89,0.12);
    color: #c5a059;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.afb-about-trader-badge.featured { background: rgba(197,160,89,0.2); }
.afb-about-trader-title { font-size: 20px; font-weight: 700; color: #1e293b; margin: 0 0 12px; line-height: 1.3; }
.afb-about-trader-card.is-featured .afb-about-trader-title { color: #fff; }
.afb-about-trader-desc { font-size: 14px; color: #64748b; line-height: 1.7; margin-bottom: 20px; }
.afb-about-trader-card.is-featured .afb-about-trader-desc { color: #94a3b8; }
.afb-about-trader-list { padding-left: 0; margin: 0; list-style: none; }
.afb-about-trader-list li {
    font-size: 13px;
    color: #475569;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    border-top: 1px solid #e2e8f0;
}
.afb-about-trader-card.is-featured .afb-about-trader-list li { color: #94a3b8; border-color: rgba(255,255,255,0.08); }
.afb-about-trader-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c5a059;
    font-weight: 700;
}

/* Process Section */
.afb-about-process-wrapper {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.afb-about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.afb-about-process-step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}
.afb-about-process-step:hover {
    background: rgba(197,160,89,0.08);
    border-color: rgba(197,160,89,0.3);
}
.afb-process-num {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: rgba(197,160,89,0.3);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.afb-process-title { font-size: 16px; font-weight: 700; color: #e2e8f0; margin: 0 0 10px; }
.afb-process-desc { font-size: 14px; color: #94a3b8; line-height: 1.6; margin: 0; }

/* Values Section */
.afb-about-values-wrapper { padding: 80px 0; background: #f8fafc; }
.afb-about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.afb-about-value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.afb-about-value-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: rgba(197,160,89,0.3);
}
.afb-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(197,160,89,0.12), rgba(197,160,89,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
}
.afb-value-title { font-size: 16px; font-weight: 700; color: #1e293b; margin: 0 0 8px; }
.afb-value-desc { font-size: 14px; color: #64748b; line-height: 1.6; margin: 0; }

/* CTA Section */
.afb-about-cta-wrapper { padding: 80px 0; background: #fff; }
.afb-about-cta-desc {
    text-align: center;
    color: #64748b;
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.8;
}
.afb-about-cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}
.afb-about-cta-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.afb-about-cta-card:hover {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: rgba(197,160,89,0.4);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.afb-about-cta-card:hover .afb-about-cta-icon { background: rgba(197,160,89,0.2); color: #c5a059; }
.afb-about-cta-card:hover .afb-about-cta-title { color: #fff; }
.afb-about-cta-card:hover p { color: #94a3b8; }
.afb-about-cta-card:hover .afb-about-cta-arrow { color: #c5a059; }
.afb-about-cta-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: rgba(197,160,89,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    transition: all 0.3s ease;
}
.afb-about-cta-content { flex: 1; }
.afb-about-cta-title { font-size: 17px; font-weight: 700; color: #1e293b; margin: 0 0 6px; transition: color 0.3s ease; }
.afb-about-cta-content p { font-size: 14px; color: #64748b; margin: 0; transition: color 0.3s ease; }
.afb-about-cta-arrow { font-size: 22px; color: #cbd5e1; transition: color 0.3s ease; }

/* Footer Note */
.afb-about-footer-note {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 32px 0;
    text-align: center;
}
.afb-about-footer-note p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    margin: 0 auto;
}
.afb-about-footer-note strong { color: #c5a059; }

/* About Us Enqueue */
.afb-about-page .afb-contact-top-wrapper { padding: 80px 0 60px; }

/* Responsive */
@media (max-width: 1024px) {
    .afb-about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .afb-about-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .afb-about-hero-inner .afb-contact-title { font-size: 32px; }
    .afb-about-stats { gap: 32px; }
    .afb-stat-number { font-size: 28px; }
    .afb-about-mission-grid { grid-template-columns: 1fr; }
    .afb-about-features-grid { grid-template-columns: 1fr; }
    .afb-about-traders-grid { grid-template-columns: 1fr; }
    .afb-about-process-grid { grid-template-columns: 1fr; }
    .afb-about-values-grid { grid-template-columns: 1fr; }
    .afb-about-cta-cards { grid-template-columns: 1fr; }
    .afb-about-section-title { font-size: 28px; }
}
