/* ========================================
   ABOUT PAGE — SawFleet — Premium Design
   ======================================== */

/* --- Container --- */
.sf-about-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 80px;
}


/* --- Section Label --- */
.sf-about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2D5016;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(45, 80, 22, 0.1);
    border: 1px solid #b3dbbf;
}

/* ========================================
   HERO / MISSION
   ======================================== */
.sf-about-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: start;
    padding: 60px 0 56px;
    margin-bottom: 0;
}

.sf-about-hero-content h2 {
    font-weight: 800;
    font-size: 34px;
    line-height: 1.22;
    color: #111827;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.sf-about-hero-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #4B5563;
    margin: 0 0 14px;
}

.sf-about-hero-content p:last-child {
    margin-bottom: 0;
}

/* Stat card — elevated grid */
.sf-about-stat-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.sf-about-stat {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.sf-about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2D5016, #4A7C28);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sf-about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.06);
}

.sf-about-stat:hover::before {
    opacity: 1;
}

.sf-about-stat-number {
    display: block;
    font-weight: 800;
    font-size: 32px;
    color: #2D5016;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.sf-about-stat-label {
    display: block;
    font-size: 13px;
    color: #6B7280;
    font-weight: 500;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.sf-about-section {
    margin-bottom: 0;
    padding: 56px 0;
}

/* Add subtle top border between sections */
.sf-about-section+.sf-about-section {
    border-top: 1px solid #E5E7EB;
}

.sf-about-section-title {
    font-weight: 800;
    font-size: 28px;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 36px;
    letter-spacing: -0.01em;
}

/* ========================================
   HOW IT WORKS — clean card layout
   ======================================== */
.sf-about-how {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 56px 40px !important;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sf-about-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Connecting line behind steps */
.sf-about-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: linear-gradient(90deg, #DCFCE7, #2D5016, #DCFCE7);
    z-index: 0;
}

.sf-about-step {
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 1;
}

.sf-about-step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #2D5016;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #2D5016;
    transition: all 0.3s ease;
    position: relative;
}

.sf-about-step:hover .sf-about-step-num {
    background: #2D5016;
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

.sf-about-step h3 {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    margin: 0 0 8px;
}

.sf-about-step p {
    font-size: 13px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0;
    padding: 0 4px;
}

.sf-about-step-arrow {
    display: none;
}

/* ========================================
   FEATURES (What We Do)
   ======================================== */
.sf-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sf-about-feature {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sf-about-feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2D5016, #5A9E34);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.sf-about-feature:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
    border-color: rgba(45, 80, 22, 0.15);
}

.sf-about-feature:hover::after {
    transform: scaleX(1);
}

.sf-about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(45, 80, 22, 0.08);
}

.sf-about-feature h3 {
    font-weight: 700;
    font-size: 17px;
    color: #111827;
    margin: 0 0 10px;
}

.sf-about-feature p {
    font-size: 14px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0;
}

/* ========================================
   WHY SAW FLEET (Values)
   ======================================== */
.sf-about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sf-about-value {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
}

.sf-about-value:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.sf-about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(45, 80, 22, 0.08);
}

.sf-about-value h4 {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    margin: 0 0 6px;
}

.sf-about-value p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #6B7280;
    margin: 0;
}

/* ========================================
   CTA — premium gradient
   ======================================== */
.sf-about-cta {
    text-align: center;
    background: linear-gradient(135deg, #2D5016 0%, #1a3a0a 50%, #2D5016 100%);
    border-radius: 20px;
    padding: 64px 40px;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay */
.sf-about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.sf-about-cta h2 {
    font-weight: 800;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0 0 14px;
    position: relative;
    letter-spacing: -0.01em;
}

.sf-about-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    position: relative;
}

.sf-about-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.sf-about-cta-actions .sf-eq-btn {
    min-width: 190px;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 14px;
    transition: all 0.25s ease;
}

.sf-about-cta-actions .sf-eq-btn--filled {
    background: #FFFFFF;
    color: #2D5016;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sf-about-cta-actions .sf-eq-btn--filled:hover {
    background: #F0FDF4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.sf-about-cta-actions .sf-eq-btn--outline {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.sf-about-cta-actions .sf-eq-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media screen and (max-width: 1024px) {
    .sf-about-hero {
        gap: 36px;
    }

    .sf-about-how {
        padding: 48px 28px !important;
    }
}

@media screen and (max-width: 768px) {

    .sf-page-content {
        padding-top: 5px !important;
    }



    .sf-about-container {
        padding: 0 16px 60px;
    }

    .sf-about-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0 40px;
    }

    .sf-about-hero-content h2 {
        font-size: 26px;
    }

    .sf-about-section {
        padding: 40px 0;
    }

    .sf-about-features {
        grid-template-columns: 1fr;
    }

    .sf-about-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sf-about-steps::before {
        display: none;
    }

    .sf-about-how {
        padding: 36px 24px !important;
        border-radius: 14px;
    }

    .sf-about-values {
        grid-template-columns: 1fr;
    }

    .sf-about-section-title {
        font-size: 22px;
    }

    .sf-about-cta {
        padding: 40px 20px;
        border-radius: 14px;
    }

    .sf-about-cta h2 {
        font-size: 22px;
    }

    .sf-about-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .sf-about-cta-actions .sf-eq-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .sf-about-stat-card {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .sf-about-stat {
        padding: 20px 12px;
    }

    .sf-about-stat-number {
        font-size: 24px;
    }

    .sf-about-hero-content h2 {
        font-size: 24px;
    }

    .sf-about-feature {
        padding: 24px;
    }

    .sf-about-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sf-about-step-num {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 14px;
    }

    .sf-about-how {
        padding: 28px 16px !important;
    }
}