/*
 * Site Components CSS
 * Shared styles for all site render components.
 * Extracted from inline <style> blocks in sites/components/*.blade.php
 *
 * Sections:
 *   1. Header / Navigation
 *   2. Footer
 *   3. Hero — Centered, Split, Simple
 *   4. Content — Text, Image, Gallery, Examples
 *   5. Features — Grid, Flow, Modules
 *   6. CTA Banner
 *   7. Contact Form
 *   8. Pricing Cards
 *   9. Social — Links, Testimonials, Stats
 *  10. Catalog — Discography (Legacy)
 */

/* =====================================================================
   1. HEADER / NAVIGATION
   ===================================================================== */

.site-header {
    position: relative;
    z-index: 100;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.site-header--sticky {
    position: sticky;
    top: 0;
}

/* Transparent header */
.site-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--transparent.site-header--scrolled {
    position: fixed;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Layout: LEFT (default) */
.site-header--left .site-nav {
    gap: 2rem;
}

.site-header--left .site-nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
    margin-right: auto;
}

/* Layout: CENTER */
.site-header--center .site-nav {
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.site-header--center .site-logo {
    margin: 0 auto;
}

.site-header--center .site-nav-links {
    display: flex;
    gap: 2rem;
}

/* Layout: SPLIT */
.site-header--split .site-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.site-header--split .site-nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.site-header--split .site-nav-actions {
    justify-content: flex-end;
}

/* Layout: MINIMAL */
.site-header--minimal .site-nav-links {
    display: none;
}

/* Nav links */
.site-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 0.25rem 0;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: var(--brand-primary);
}

/* Actions */
.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* CTA Button */
.site-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.site-cta-btn--solid {
    background: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
}

.site-cta-btn--solid:hover {
    background: var(--brand-primary-dark, var(--brand-primary));
    transform: translateY(-1px);
}

.site-cta-btn--outline {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
}

.site-cta-btn--outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

.site-cta-btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.site-cta-btn--ghost:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

/* Login button */
.site-login-btn {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
}

.site-login-btn:hover {
    color: var(--brand-primary);
}

/* Mobile toggle */
.site-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.25rem;
}

/* Mobile menu overlay */
.site-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
}

.site-mobile-menu.open {
    display: flex;
}

.site-mobile-link {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.site-mobile-link:last-of-type {
    border-bottom: none;
}

.site-mobile-link.active {
    color: var(--brand-primary);
}

.site-mobile-cta {
    margin-top: 0.5rem;
    justify-content: center;
}

.site-mobile-login {
    padding: 0.75rem 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-nav {
        padding: 1rem;
    }

    .site-header--left .site-nav-links,
    .site-header--center .site-nav-links,
    .site-header--split .site-nav-links {
        display: none;
    }

    .site-header--split .site-nav {
        display: flex;
        grid-template-columns: none;
    }

    .site-header--center .site-nav {
        flex-direction: row;
        gap: 0;
    }

    .site-header--center .site-logo {
        margin: 0;
    }

    .site-nav-actions {
        display: none;
    }

    .site-nav-toggle {
        display: block;
    }
}

/* =====================================================================
   2. FOOTER
   ===================================================================== */

.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.site-footer-simple {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.site-footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.site-footer-social a {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: color 0.2s;
    text-decoration: none;
}

.site-footer-social a:hover {
    color: var(--brand-primary);
}

.site-footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =====================================================================
   3. HERO — CENTERED
   ===================================================================== */

.hero-centered {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    overflow: hidden;
}

.hero-centered[data-bg="light"] {
    background: var(--bg-page);
    color: var(--text-primary);
}

.hero-centered[data-bg="dark"] {
    background: #0f172a;
    color: #fff;
}

.hero-centered[data-bg-image] {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), var(--hero-bg-img) var(--hero-bg-position, center) / var(--hero-bg-size, cover) no-repeat;
}

.hero-centered[data-bg-parallax] {
    background-attachment: fixed;
}

.hero-bg-layer[data-bg-image] {
    background: var(--hero-bg-img) var(--hero-bg-position, center) / var(--hero-bg-size, cover) no-repeat;
}

.hero-bg-layer {
    position: absolute;
    inset: -20px;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}

.hero-fx .hero-content {
    position: relative;
    z-index: 2;
}

.hero-parallax .hero-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.hero-parallax {
    z-index: 0;
}

.hero-fx-crystal .hero-bg-layer { filter: blur(8px); }
.hero-fx-crystal .hero-bg-overlay { background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(0,0,0,0.5)); backdrop-filter: saturate(1.4); }

.hero-fx-frost .hero-bg-layer { filter: blur(20px) brightness(1.05); }
.hero-fx-frost .hero-bg-overlay { background: linear-gradient(rgba(255,255,255,0.12), rgba(255,255,255,0.06)); }

.hero-fx-haze .hero-bg-layer { filter: blur(12px) saturate(1.5) brightness(0.9); }
.hero-fx-haze .hero-bg-overlay { background: linear-gradient(135deg, rgba(251,146,60,0.15), rgba(0,0,0,0.45)); }

.hero-fx-dream .hero-bg-layer { filter: blur(16px) saturate(1.8) contrast(0.85); }
.hero-fx-dream .hero-bg-overlay { background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(99,102,241,0.12), rgba(0,0,0,0.4)); }

.hero-fx-fog .hero-bg-layer { filter: blur(30px) brightness(0.7) grayscale(0.3); }
.hero-fx-fog .hero-bg-overlay { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)); }

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-centered .btn-primary {
    background: #fff;
    color: var(--brand-primary);
    border: none;
}

.hero-centered .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-centered .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: transparent;
}

.hero-centered .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* =====================================================================
   3. HERO — SPLIT
   ===================================================================== */

.hero-split {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    padding: 5rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-split-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-split-reversed .hero-split-content { direction: rtl; }
.hero-split-reversed .hero-split-content > * { direction: ltr; }

.hero-split-text h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-split-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-split-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-split-buttons .btn-primary { background: #fff; color: var(--brand-primary); border: none; }
.hero-split-buttons .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }

.hero-split-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: var(--split-img-fit, cover);
    object-position: var(--split-img-position, 50% 50%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.hero-split-placeholder {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 3rem;
}

@media (min-width: 768px) {
    .hero-split-content { padding: 0 2.5rem; }
}

@media (max-width: 768px) {
    .hero-split-content,
    .hero-split-reversed .hero-split-content {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
    }
    .hero-split-buttons { justify-content: center; }
    .hero-split-image { order: -1; }
}

/* =====================================================================
   3. HERO — SIMPLE
   ===================================================================== */

.hero-simple {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.hero-simple-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-simple-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================================
   4. CONTENT — TEXT
   ===================================================================== */

.text-section { padding: 4rem 0; }
.text-section.text-center { text-align: center; }
.text-section.text-right { text-align: right; }

.text-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.text-section-content {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

.text-section.text-center .text-section-content { margin: 0 auto; }

/* =====================================================================
   4. CONTENT — IMAGE
   ===================================================================== */

.site-image { padding: 3rem 0; text-align: center; }
.site-image-figure { margin: 0 auto; }
.site-image--full { max-width: 100%; }
.site-image--large { max-width: 900px; }
.site-image--medium { max-width: 600px; }
.site-image-img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.site-image-caption { margin-top: 1rem; color: var(--text-muted); font-size: 0.9rem; }
.site-image-empty { padding: 4rem 2rem; background: var(--bg-surface); border-radius: 12px; color: var(--text-muted); }
.site-image-empty i { font-size: 3rem; opacity: 0.3; }
.site-image-empty p { margin-top: 1rem; }

/* =====================================================================
   4. CONTENT — GALLERY
   ===================================================================== */

.site-gallery { padding: 4rem 0; background: var(--bg-surface); }
.site-gallery-title { text-align: center; margin-bottom: 2rem; font-size: 2rem; font-weight: 700; color: var(--text-primary); }
.site-gallery-grid { display: grid; gap: 1rem; }
.site-gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.site-gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }
.site-gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }
.site-gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.site-gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.site-gallery-item:hover .site-gallery-img { transform: scale(1.05); }
.site-gallery-empty { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.site-gallery-empty i { font-size: 3rem; opacity: 0.3; }
.site-gallery-empty p { margin-top: 1rem; }

/* =====================================================================
   4. CONTENT — EXAMPLES
   ===================================================================== */

.examples-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1100px;
}

.examples-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.example-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
}

.example-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.example-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.example-icon i { color: #fff; font-size: 1rem; }
.example-content h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.example-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* =====================================================================
   5. FEATURES — GRID
   ===================================================================== */

.features-grid-section { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; gap: 2rem; max-width: 1200px; margin: 0 auto; }

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr !important; }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.features-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.features-grid-empty i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i { font-size: 1.25rem; color: #fff; }
.feature-title { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.feature-description { color: var(--text-muted); line-height: 1.6; }

/* =====================================================================
   5. FEATURES — FLOW
   ===================================================================== */

.features-flow-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.features-flow-section .container { max-width: 1200px; margin: 0 auto; }
.features-flow-section .section-header { text-align: center; margin-bottom: 3rem; }
.features-flow-section .section-label { font-size: 0.9rem; color: var(--brand-primary); margin-bottom: 0.5rem; }
.features-flow-section h2 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.features-flow-section .section-subtitle { font-size: 1.125rem; color: #94a3b8; max-width: 600px; margin: 0 auto; }

.features-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.flow-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.flow-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }

.flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.flow-icon i { font-size: 1.5rem; color: #fff; }
.flow-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.flow-card p { color: #94a3b8; line-height: 1.6; margin-bottom: 1rem; }

.flow-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: color-mix(in srgb, var(--brand-primary) 20%, transparent);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--brand-primary);
}

.flow-arrow i { font-size: 0.75rem; }

/* =====================================================================
   5. FEATURES — MODULES
   ===================================================================== */

.modules-grid-section { padding: 5rem 0; background: var(--bg-surface); }
.modules-grid-section .container { max-width: 1200px; margin: 0 auto; }
.modules-grid-section .section-header { text-align: center; margin-bottom: 3rem; }
.modules-grid-section .section-label { font-size: 0.9rem; color: var(--brand-primary); font-weight: 600; margin-bottom: 0.5rem; }
.modules-grid-section h2 { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.modules-grid-section .section-subtitle { font-size: 1.125rem; color: var(--text-muted); }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.module-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.module-card-icon i { font-size: 1.25rem; color: #fff; }
.module-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }
.module-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }

.module-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.module-card-link i { font-size: 0.7rem; transition: transform 0.2s; }
.module-card:hover .module-card-link i { transform: translateX(4px); }

/* =====================================================================
   6. CTA BANNER
   ===================================================================== */

.cta-banner { padding: 4rem 0; margin-top: 4rem; }
.cta-banner.cta-gradient { background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary)); }
.cta-banner.cta-solid { background: var(--brand-primary); }
.cta-banner.cta-outline { background: transparent; border: 2px solid var(--border-color); }
.cta-banner.cta-outline .cta-title { color: var(--text-primary); }
.cta-banner.cta-outline .cta-subtitle { color: var(--text-muted); }

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-content { flex: 1; }
.cta-title { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.cta-subtitle { color: rgba(255, 255, 255, 0.9); font-size: 1.125rem; }

.cta-banner .btn-white {
    background: #fff;
    color: var(--brand-primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-banner .container { flex-direction: column; text-align: center; }
}

/* =====================================================================
   7. CONTACT FORM
   ===================================================================== */

.contact-section { padding: 5rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 { font-size: 2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.contact-method { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); }
.contact-method i { color: var(--brand-primary); }
.contact-method a { color: var(--brand-primary); text-decoration: none; }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; color: var(--text-primary); margin-bottom: 0.5rem; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 15%, transparent);
}

textarea.form-control { resize: vertical; min-height: 120px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   8. PRICING CARDS
   ===================================================================== */

.pricing-section { padding: 5rem 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
.pricing-card.popular { border-color: var(--brand-primary); box-shadow: 0 0 0 2px var(--brand-primary); }

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-name { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; }
.pricing-price { margin-bottom: 1rem; }
.price-currency { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); vertical-align: top; }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.price-period { color: var(--text-muted); }
.pricing-description { color: var(--text-muted); margin-bottom: 1.5rem; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 2rem 0; }
.pricing-features li { padding: 0.5rem 0; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.pricing-features i { color: var(--brand-primary); }
.pricing-card .btn-block { width: 100%; text-align: center; padding: 0.75rem; }

/* =====================================================================
   9. SOCIAL — LINKS
   ===================================================================== */

.site-social-links { padding: 4rem 0; text-align: center; }
.site-social-title { margin-bottom: 2rem; font-size: 1.75rem; font-weight: 700; color: var(--text-primary); }
.site-social-grid { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.site-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.site-social-icon:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); text-decoration: none; color: white; }
.site-social-empty { color: var(--text-muted); font-size: 0.875rem; }

/* =====================================================================
   9. SOCIAL — TESTIMONIALS
   ===================================================================== */

.testimonials-section { padding: 5rem 0; background: var(--bg-page); }
.testimonials-section .container { max-width: 1200px; margin: 0 auto; }
.testimonials-section .section-header { text-align: center; margin-bottom: 3rem; }
.testimonials-section .section-label { font-size: 0.9rem; color: var(--brand-primary); font-weight: 600; margin-bottom: 0.5rem; }
.testimonials-section h2 { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.testimonials-section .section-subtitle { font-size: 1.125rem; color: var(--text-muted); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s;
}

.testimonial-card:hover { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08); }

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
}

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

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-info h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.25rem 0; }
.testimonial-info p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* =====================================================================
   9. SOCIAL — STATS
   ===================================================================== */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.stats-section[data-bg="light"] { background: var(--bg-surface); }
.stats-section[data-bg="dark"] { background: #0f172a; }
.stats-section .container { max-width: 1000px; margin: 0 auto; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item { padding: 1rem; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.stats-section[data-bg="light"] .stat-value { color: var(--text-primary); }
.stat-label { font-size: 1rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.stats-section[data-bg="light"] .stat-label { color: var(--text-muted); }

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 2rem; }
}

/* =====================================================================
   10. CATALOG — DISCOGRAPHY (Legacy)
   ===================================================================== */

.disco-section { padding: 5rem 0; }
.disco-header { text-align: center; margin-bottom: 3rem; }
.disco-title { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
.disco-subtitle { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.disco-empty { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.disco-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.disco-empty p { font-size: 1rem; }

/* Grid Layout */
.disco-grid { display: grid; gap: 2rem; }
.disco-grid-2 { grid-template-columns: repeat(2, 1fr); }
.disco-grid-3 { grid-template-columns: repeat(3, 1fr); }
.disco-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .disco-grid-3, .disco-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .disco-grid { grid-template-columns: 1fr !important; max-width: 320px; margin: 0 auto; }
}

.disco-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.disco-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }

.disco-card-cover { position: relative; aspect-ratio: 1; background: var(--bg-surface); overflow: hidden; }
.disco-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.disco-card:hover .disco-card-cover img { transform: scale(1.05); }

.disco-cover-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-surface); color: var(--text-muted);
    font-size: 3rem; opacity: 0.3;
}

.disco-card-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: var(--brand-primary); color: #fff;
    font-size: 0.6875rem; font-weight: 600;
    padding: 0.25rem 0.625rem; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.03em;
}

.disco-card-info { padding: 1rem 1.25rem; }
.disco-card-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; line-height: 1.3; }
.disco-card-artist { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.125rem; }
.disco-card-year { font-size: 0.8125rem; color: var(--text-muted); }

.disco-card-tracks { padding: 0 1.25rem 1rem; border-top: 1px solid var(--border-color); margin-top: 0.5rem; padding-top: 0.75rem; }
.disco-card-tracks ol { list-style: none; counter-reset: track; padding: 0; margin: 0; }
.disco-card-tracks li { counter-increment: track; display: flex; align-items: center; justify-content: space-between; padding: 0.25rem 0; font-size: 0.8125rem; color: var(--text-secondary); }
.disco-card-tracks li::before { content: counter(track) "."; margin-right: 0.5rem; color: var(--text-muted); min-width: 1.25rem; }
.disco-card-tracks li span:first-child { flex: 1; }
.disco-more { color: var(--text-muted); font-style: italic; }
.disco-track-duration { font-size: 0.75rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* List Layout */
.disco-list { display: flex; flex-direction: column; gap: 1.5rem; }

.disco-list-item {
    display: flex; gap: 1.5rem; padding: 1.25rem;
    border-radius: 12px; background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.disco-list-item:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }

.disco-list-cover { width: 120px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--bg-surface); }
.disco-list-cover img { width: 100%; height: 100%; object-fit: cover; }
.disco-list-info { flex: 1; min-width: 0; }
.disco-list-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.375rem; }
.disco-list-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.disco-badge {
    display: inline-block; background: var(--brand-primary); color: #fff;
    font-size: 0.6875rem; font-weight: 600; padding: 0.125rem 0.5rem;
    border-radius: 100px; text-transform: uppercase;
}

.disco-tracklist { list-style: none; padding: 0; margin: 0; }
.disco-tracklist li { display: flex; align-items: center; justify-content: space-between; padding: 0.25rem 0; font-size: 0.8125rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.disco-tracklist li:last-child { border-bottom: none; }

@media (max-width: 640px) {
    .disco-list-cover { width: 80px; height: 80px; }
    .disco-list-item { gap: 1rem; }
    .disco-title { font-size: 2rem; }
}
