/**
 * MUSA TTS - Neo-Brutalist Page Styles
 * Bold sections, thick borders, offset shadows
 */

/* --- HOME PAGE --- */

/* Hero Section */
.hero-enhanced {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
    border-bottom: 4px solid var(--border);
}

.hero-content-enhanced {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-1);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.version-badge {
    background: var(--primary);
    color: #0a0a0a;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--primary-dark);
}

.hero-title-enhanced {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-subtitle-enhanced {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.hero-cta-enhanced {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.btn-hero {
    background: var(--primary);
    color: #0a0a0a !important;
    padding: 16px 32px !important;
    border: 3px solid var(--primary-dark) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 800 !important;
    font-size: var(--text-lg) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 6px 6px 0 var(--primary-dark);
    transition: all var(--transition-fast);
}

.btn-hero:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--primary-dark);
}

.btn-outline-hero {
    background: transparent;
    border: 3px solid var(--border) !important;
    color: var(--text) !important;
    padding: 16px 32px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 800 !important;
    font-size: var(--text-lg) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 6px 6px 0 #0a0a0a;
    transition: all var(--transition-fast);
}

.btn-outline-hero:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #0a0a0a;
}

.hero-stats-enhanced {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.stat-item-enhanced {
    text-align: center;
    padding: var(--space-md);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    min-width: 140px;
}

.stat-item-enhanced .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-item-enhanced .stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: var(--text-sm);
    flex-wrap: wrap;
    font-weight: 600;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-1);
}

.hero-trust i {
    color: var(--success);
}

/* Sections General */
.section-header-enhanced {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-enhanced {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-subtitle-enhanced {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.text-gradient {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

/* Features Grid */
.features-section {
    padding: var(--space-3xl) 0;
    background: var(--surface-1);
    border-top: 4px solid var(--border);
    border-bottom: 4px solid var(--border);
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.feature-card-enhanced {
    background: var(--surface-2);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.feature-card-enhanced:hover {
    border-color: var(--primary);
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-lg);
}

.feature-card-enhanced.featured {
    background: var(--surface-2);
    border-color: var(--primary);
    box-shadow: 6px 6px 0 var(--primary-dark);
}

.feature-badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #0a0a0a;
    padding: 4px 8px;
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
}

.feature-icon-enhanced {
    width: 52px;
    height: 52px;
    background: var(--surface-1);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
    box-shadow: 3px 3px 0 var(--primary-dark);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.problem-item {
    background: var(--surface-2);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.problem-item:hover {
    border-color: var(--danger);
    box-shadow: 4px 4px 0 var(--danger);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--danger-bg);
    color: var(--danger);
    border: 2px solid var(--danger);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.5rem;
}

/* Workflow */
.workflow-steps-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.step-card-enhanced {
    background: var(--surface-1);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
}

.step-card-enhanced:hover {
    transform: translate(-3px, -3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-number-enhanced {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: 3px solid var(--primary-dark);
    color: #0a0a0a;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-weight: 900;
    font-size: var(--text-lg);
    box-shadow: 3px 3px 0 var(--primary-dark);
}

.step-icon-enhanced {
    font-size: 2.5rem;
    background: var(--surface-2);
    border: 2px solid var(--border);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto var(--space-lg);
    color: var(--text);
}

.step-card-enhanced h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    font-weight: 800;
    text-transform: uppercase;
}

.step-card-enhanced p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Demo Grid */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.demo-item {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.demo-item:hover {
    transform: translate(-3px, -3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.demo-video-container {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-bottom: 3px solid var(--border);
}

.demo-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-item h3 {
    padding: var(--space-md) var(--space-lg) var(--space-xs);
    font-size: var(--text-base);
    text-transform: uppercase;
}

.demo-item p {
    padding: 0 var(--space-lg) var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Cost Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-card {
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-card.other-tools {
    border-color: var(--danger);
    box-shadow: 4px 4px 0 rgba(239, 68, 68, 0.3);
}

.comparison-card.musa-way {
    border-color: var(--success);
    box-shadow: 4px 4px 0 rgba(34, 197, 94, 0.3);
}

.comparison-header {
    padding: var(--space-lg);
    border-bottom: 3px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparison-label {
    font-size: var(--text-xs);
    font-weight: 800;
    padding: 4px 8px;
    border: 2px solid;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-label.expensive {
    background: var(--danger-bg);
    color: var(--danger);
    border-color: var(--danger);
}

.comparison-label.affordable {
    background: var(--success-bg);
    color: var(--success);
    border-color: var(--success);
}

.comparison-content {
    padding: var(--space-xl);
}

.comparison-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-item i {
    font-size: 1.25rem;
    margin-top: 2px;
}

.other-tools i {
    color: var(--danger);
}

.musa-way i {
    color: var(--success);
}

/* API Education */
.api-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.api-card {
    background: var(--surface-2);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.api-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.markup {
    display: inline-block;
    background: var(--danger-bg);
    color: var(--danger);
    padding: 4px 8px;
    border: 2px solid var(--danger);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 800;
    margin-top: var(--space-sm);
}

/* Pricing Section */
.pricing-cards-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.pricing-card-enhanced {
    background: var(--surface-1);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    position: relative;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.pricing-card-enhanced.featured {
    border: 3px solid var(--primary);
    background: var(--surface-2);
    box-shadow: 8px 8px 0 var(--primary-dark);
    transform: scale(1.02);
    z-index: 1;
}

@media (max-width: 900px) {
    .pricing-card-enhanced.featured {
        transform: none;
    }
}

.pricing-badge-enhanced {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0a0a0a;
    padding: 4px 16px;
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-enhanced {
    margin: var(--space-lg) 0;
}

.price-enhanced .amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.price-enhanced .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 4px;
    color: var(--primary);
}

.pricing-features-enhanced {
    list-style: none;
    margin-bottom: var(--space-xl);
    padding: 0;
}

.pricing-features-enhanced li {
    padding: var(--space-sm) 0;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    font-weight: 500;
}

.pricing-features-enhanced li:last-child {
    border-bottom: none;
}

.pricing-features-enhanced i {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--surface-1);
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--border);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* --- MINIMALIST PRICING PAGE (Standalone) --- */
.pricing-minimal-header {
    text-align: center;
    padding: var(--space-3xl) 0;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto var(--space-3xl);
}

.pricing-card-minimal {
    background: var(--surface-1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.pricing-card-minimal:hover {
    border-color: var(--border-light);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-minimal.highlight {
    background: var(--surface-2);
    border: 3px solid var(--primary);
    box-shadow: 6px 6px 0 var(--primary-dark);
}

.pricing-card-minimal ul {
    margin-top: auto;
    margin-bottom: var(--space-lg);
}

/* --- MINIMALIST CONTACT PAGE --- */
.contact-minimal-container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-2xl) 0;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-card-minimal {
    background: var(--surface-1);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

.form-group-minimal {
    margin-bottom: var(--space-md);
}

.form-group-minimal label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-minimal {
    width: 100%;
    padding: 12px;
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 500;
    transition: border-color var(--transition-fast);
}

.form-control-minimal:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 4px 4px 0 var(--primary-dark);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-method-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--surface-1);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.contact-method-item:hover {
    border-color: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
