/* ═══════════════════════════════════════════════════
   ALEJAM RECORDS – About / Collective Page Styles
   ═══════════════════════════════════════════════════ */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 85, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(68, 85, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #aaa;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.about-section {
    padding: 5rem 2rem;
}

.about-section.dark {
    background: #0a0a0a;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-intro .lead {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-intro p {
    color: #888;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #333;
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: #fff;
}

.benefit-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Zero Cost Highlight */
.zero-cost {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a2a1a 0%, #0a150a 100%);
    border: 1px solid #2a4a2a;
    border-radius: 16px;
}

.zero-cost .highlight {
    font-size: 4rem;
    font-weight: 800;
    color: #6a9a6a;
    display: block;
    margin-bottom: 0.5rem;
}

.zero-cost p {
    color: #8a8a8a;
    font-size: 1.1rem;
}

/* How It Works */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.how-step {
    text-align: center;
    padding: 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1rem;
    font-family: monospace;
}

.how-step h3 {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.how-step p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* The Deal */
.deal-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.deal-column {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 2rem;
}

.deal-column h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222;
    color: #aaa;
}

.deal-column ul {
    list-style: none;
}

.deal-column li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ccc;
    border-bottom: 1px solid #1a1a1a;
}

.deal-column li:last-child {
    border-bottom: none;
}

.deal-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #555;
}

.deal-note {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    font-size: 0.95rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Different */
.why-different {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.why-different .lead {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-different p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.about-cta p {
    color: #888;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border: 1px solid #444;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #444 0%, #333 100%);
    border-color: #555;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 4rem 1.5rem;
    }
    
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-columns {
        gap: 1.5rem;
    }
    
    .zero-cost .highlight {
        font-size: 3rem;
    }
}
