/* About Business Page Styles - BoxStory */
/* Using rem units (1rem = 1rem) */

/* CSS Variables */
:root {
    --biz-aqua: #66c7be;
    --biz-navy: #0f172a;
    --biz-gold: #fbbf24;
    --biz-purple: #667eea;
    --biz-green: #10b981;
}

/* Hero Section */
.biz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    padding: 6.25rem 0;
}

.biz-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 199, 190, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.biz-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.biz-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--biz-aqua) 0%, var(--biz-purple) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 3.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin-bottom: 1.5rem;
}

.biz-hero-title {
    color: var(--biz-navy);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.biz-hero-title .text-gradient {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, var(--biz-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.biz-hero-subtitle {
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.biz-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.875rem;
}

.scroll-indicator {
    width: 1.5rem;
    height: 2.5rem;
    border: 0.125rem solid var(--biz-aqua);
    border-radius: 0.75rem;
    position: relative;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--biz-aqua);
    border-radius: 50%;
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
}

/* Section Common Styles */
.section-label {
    display: inline-block;
    color: var(--biz-aqua);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--biz-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 0;
}

.section-text {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Mission Section */
.biz-mission {
    padding: 6.25rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.biz-mission-visual {
    position: relative;
    height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 600;
    color: var(--biz-navy);
    border: 0.125rem solid transparent;
    transition: all 0.3s ease;
}

.visual-card i {
    font-size: 1.5rem;
}

.visual-card-1 {
    top: 0;
    left: 10%;
    border-color: #667eea;
}

.visual-card-1 i {
    color: #667eea;
}

.visual-card-2 {
    top: 15%;
    right: 5%;
    border-color: var(--biz-aqua);
}

.visual-card-2 i {
    color: var(--biz-aqua);
}

.visual-card-3 {
    bottom: 15%;
    left: 5%;
    border-color: var(--biz-gold);
}

.visual-card-3 i {
    color: var(--biz-gold);
}

.visual-card-4 {
    bottom: 0;
    right: 10%;
    border-color: var(--biz-green);
}

.visual-card-4 i {
    color: var(--biz-green);
}

.visual-center {
    position: relative;
    z-index: 2;
}

.logo-box {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, var(--biz-navy) 100%);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 1.25rem 3.75rem rgba(102, 199, 190, 0.3);
}

.logo-box i {
    font-size: 2.5rem;
}

.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--biz-aqua);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* User Types Section */
.biz-user-types {
    padding: 6.25rem 0;
    background: white;
}

.user-type-row {
    padding: 4rem 0;
    border-bottom: 0.0625rem solid #e2e8f0;
}

.user-type-row:last-child {
    border-bottom: none;
}

.user-type-content {
    padding: 2rem;
}

.user-type-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
}

.artists-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stores-icon {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, #3e9b8f 100%);
}

.influencers-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.resellers-icon {
    background: linear-gradient(135deg, var(--biz-gold) 0%, #f59e0b 100%);
}

.user-type-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--biz-navy);
    margin-bottom: 1rem;
}

.user-type-hook {
    font-style: italic;
    color: #64748b;
    font-size: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-left: 0.25rem solid var(--biz-aqua);
    border-radius: 0 0.5rem 0.5rem 0;
    margin-bottom: 1rem;
}

.user-type-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.user-type-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #f0fdf4;
    color: #166534;
    padding: 0.375rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.benefit-pill i {
    color: var(--biz-green);
    font-size: 0.625rem;
}

.user-type-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.category-tag {
    background: white;
    border: 0.0625rem solid #e2e8f0;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: #475569;
    transition: all 0.2s ease;
}

.category-tag:hover {
    border-color: var(--biz-aqua);
    background: #f0fffe;
}

.user-type-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 126, 234, 0.4);
}

.user-type-cta:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(102, 126, 234, 0.5);
    color: white;
}

.stores-cta {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, #3e9b8f 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 199, 190, 0.4);
}

.stores-cta:hover {
    box-shadow: 0 0.5rem 1.5625rem rgba(102, 199, 190, 0.5);
}

.influencers-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 0.25rem 0.9375rem rgba(245, 87, 108, 0.4);
}

.influencers-cta:hover {
    box-shadow: 0 0.5rem 1.5625rem rgba(245, 87, 108, 0.5);
}

.resellers-cta {
    background: linear-gradient(135deg, var(--biz-gold) 0%, #f59e0b 100%);
    color: var(--biz-navy);
    box-shadow: 0 0.25rem 0.9375rem rgba(251, 191, 36, 0.4);
}

.resellers-cta:hover {
    box-shadow: 0 0.5rem 1.5625rem rgba(251, 191, 36, 0.5);
    color: var(--biz-navy);
}

.reseller-steps {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.reseller-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #475569;
}

.reseller-steps .step span {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--biz-gold);
    color: var(--biz-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.user-type-visual {
    height: 100%;
    min-height: 18.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artists-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stores-visual {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, #3e9b8f 100%);
}

.influencers-visual {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.resellers-visual {
    background: linear-gradient(135deg, var(--biz-gold) 0%, #f59e0b 100%);
}

.visual-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.v-stat {
    text-align: center;
    color: white;
}

.v-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.v-stat span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* How It Works Section */
.biz-how-it-works {
    padding: 6.25rem 0;
    background: #f8fafc;
}

.process-timeline {
    position: relative;
    max-width: 50rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: linear-gradient(180deg, var(--biz-aqua) 0%, var(--biz-navy) 100%);
    border-radius: 0.125rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background: white;
    border: 0.25rem solid var(--biz-aqua);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--biz-navy);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--biz-aqua) 0%, var(--biz-navy) 100%);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    color: var(--biz-navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Values Section */
.biz-values {
    padding: 6.25rem 0;
    background: white;
}

.values-sticky {
    padding-right: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 0.0625rem solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--biz-aqua);
    box-shadow: 0 0.5rem 1.5rem rgba(102, 199, 190, 0.15);
    transform: translateX(0.5rem);
}

.value-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--biz-aqua) 0%, var(--biz-navy) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--biz-navy);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.value-content p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.biz-testimonials {
    padding: 6.25rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    border: 0.125rem solid #f3f4f6;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
}

.testimonial-artist:hover {
    border-color: #667eea;
}

.testimonial-store:hover {
    border-color: var(--biz-aqua);
}

.testimonial-reseller:hover {
    border-color: var(--biz-gold);
}

.testimonial-influencer:hover {
    border-color: #f5576c;
}

.quote-icon {
    color: #e2e8f0;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.testimonial-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.artist-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.store-avatar {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, #3e9b8f 100%);
}

.reseller-avatar {
    background: linear-gradient(135deg, var(--biz-gold) 0%, #f59e0b 100%);
}

.influencer-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.author-info h5 {
    color: var(--biz-navy);
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.author-info span {
    color: #64748b;
    font-size: 0.8125rem;
}

/* CTA Section */
.biz-cta {
    position: relative;
    padding: 6.25rem 0;
    overflow: hidden;
}

.biz-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    z-index: 0;
}

.biz-cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(102, 199, 190, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--biz-navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: #475569;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--biz-aqua) 0%, #3e9b8f 100%);
    color: white;
    box-shadow: 0 0.25rem 1rem rgba(102, 199, 190, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5rem rgba(102, 199, 190, 0.5);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: var(--biz-navy);
    border: 0.125rem solid var(--biz-aqua);
}

.btn-cta-secondary:hover {
    background: var(--biz-aqua);
    border-color: var(--biz-aqua);
    color: white;
}

.cta-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust span {
    color: #64748b;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-trust i {
    color: var(--biz-green);
}

/* Responsive Styles */
@media (max-width: 61.9988rem) {
    .biz-hero-title {
        font-size: 2.5rem;
    }

    .biz-hero-subtitle {
        font-size: 1.0625rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .biz-mission-visual {
        height: 20rem;
        margin-top: 2rem;
    }

    .mission-stats {
        justify-content: center;
    }

    .user-type-content {
        padding: 1rem;
    }

    .user-type-visual {
        min-height: 12.5rem;
        margin-top: 2rem;
    }

    .visual-stats {
        gap: 1.5rem;
    }

    .v-stat strong {
        font-size: 1.5rem;
    }

    .timeline-line {
        left: 1.5rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 0.875rem;
    }

    .process-step {
        gap: 1rem;
    }

    .values-sticky {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 35.9988rem) {
    .biz-hero {
        padding: 5rem 0;
    }

    .biz-hero-title {
        font-size: 2rem;
    }

    .mission-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .user-type-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }

    .user-type-title {
        font-size: 1.5rem;
    }

    .user-type-benefits {
        gap: 0.375rem;
    }

    .benefit-pill {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .reseller-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}
