/* ==========================================================================
   Flagship D2C About Us Page Styles (Dedicated & Modular)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero Story Banner
   -------------------------------------------------------------------------- */
.about-hero-section {
    background: linear-gradient(135deg, #090e17 0%, #1e293b 100%);
    color: #ffffff;
    padding: 70px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}
.about-micro-tag {
    display: inline-block;
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.about-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin-bottom: 18px;
}
.about-hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
}
.about-hero-subtitle strong {
    color: #ffffff;
}

/* 4 Metrics Strip */
.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
}
.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
}
.stat-pill strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #38bdf8;
    margin-bottom: 4px;
}
.stat-pill span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. Brand Story & Genesis Split Grid
   -------------------------------------------------------------------------- */
.about-story-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.story-split-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 55px;
    align-items: center;
}
.section-kicker {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color, #2563eb);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.story-heading {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.story-paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 18px;
}
.story-action-row {
    margin-top: 30px;
}
.btn-about-primary {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}
.btn-about-primary:hover {
    background: var(--primary-color, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

/* Story Right Spotlight Card */
.story-card-spotlight {
    background: linear-gradient(135deg, #090e17 0%, #1e1b4b 100%);
    border-radius: 24px;
    padding: 45px 40px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.spotlight-badge {
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(147, 197, 253, 0.3);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 18px;
}
.story-card-spotlight h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}
.story-card-spotlight p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 24px;
}
.spotlight-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.spotlight-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
}
.spotlight-checklist li span {
    color: #10b981;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   3. The 4 Quality Pillars Bento Grid
   -------------------------------------------------------------------------- */
.about-pillars-section {
    padding: 80px 0;
    background-color: #f8fafc;
}
.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.heading-line {
    width: 50px;
    height: 4px;
    background-color: var(--primary-color, #2563eb);
    margin: 0 auto;
    border-radius: 999px;
}

.pillars-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pillar-card {
    padding: 34px 28px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.pillar-dark {
    background: #090e17;
    color: #ffffff;
}
.pillar-blue {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
}
.pillar-slate {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}
.pillar-emerald {
    background: linear-gradient(135deg, #064e3b, #059669);
    color: #ffffff;
}
.pillar-icon {
    font-size: 34px;
    margin-bottom: 16px;
}
.pillar-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}
.pillar-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   4. Founder & Team Commitment Card
   -------------------------------------------------------------------------- */
.about-commitment-section {
    padding: 70px 0;
    background-color: #ffffff;
}
.commitment-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 50px 45px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.commitment-quote-icon {
    font-size: 60px;
    line-height: 1;
    color: var(--primary-color, #2563eb);
    opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: 10px;
}
.commitment-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: #1e293b;
    margin: 0 0 24px 0;
}
.commitment-author strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
    font-weight: 800;
}
.commitment-author span {
    font-size: 13px;
    color: #64748b;
}

/* --------------------------------------------------------------------------
   5. Direct Contact Banner
   -------------------------------------------------------------------------- */
.about-contact-banner {
    padding: 20px 0 80px;
    background-color: #ffffff;
}
.contact-banner-card {
    background: linear-gradient(135deg, #090e17 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 45px 50px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}
.banner-text-side h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}
.banner-text-side p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}
.banner-action-side {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-banner-call {
    background: var(--primary-color, #2563eb);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 13px 24px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.btn-banner-call:hover {
    background: #1d4ed8;
}
.btn-banner-email {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.btn-banner-email:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* --------------------------------------------------------------------------
   6. Mobile & Tablet Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .about-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-split-grid {
        grid-template-columns: 1fr;
    }
    .pillars-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-banner-card {
        flex-direction: column;
        text-align: center;
    }
    .banner-action-side {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .about-hero-title {
        font-size: 28px;
    }
    .about-hero-subtitle {
        font-size: 15px;
    }
    .about-stats-strip {
        grid-template-columns: 1fr;
    }
    .story-heading {
        font-size: 24px;
    }
    .pillars-bento-grid {
        grid-template-columns: 1fr;
    }
    .commitment-card {
        padding: 30px 20px;
    }
    .commitment-quote {
        font-size: 16px;
    }
    .contact-banner-card {
        padding: 30px 20px;
    }
    .banner-action-side {
        flex-direction: column;
        width: 100%;
    }
    .btn-banner-call,
    .btn-banner-email {
        width: 100%;
        text-align: center;
    }
}