/**
 * ScribeForge - Landing Page Styles
 * Modern, conversion-optimized design
 */

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes waveform {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: var(--surface-dark);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: pulse-glow 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
    bottom: -200px;
    left: -150px;
    animation-delay: 3s;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #0D9488 0%, #06B6D4 100%);
    top: 40%;
    left: 30%;
    animation-delay: 5s;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-on-dark);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #F97316, #FBBF24, #FB923C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-on-dark-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-subtitle strong {
    color: var(--text-on-dark);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-hero-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-on-dark);
    font-size: var(--text-lg);
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero App Mockup */
.hero-visual {
    position: relative;
}

.app-mockup {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mockup-frame {
    background: #1A1F2E;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.titlebar-dots {
    display: flex;
    gap: 7px;
}

.titlebar-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.titlebar-dots span:nth-child(1) { background: #EF4444; }
.titlebar-dots span:nth-child(2) { background: #F59E0B; }
.titlebar-dots span:nth-child(3) { background: #10B981; }

.titlebar-title {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.mockup-body {
    padding: 28px;
}

/* Waveform Animation */
.waveform-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 80px;
    padding: 16px 0;
    margin-bottom: 20px;
}

.wave-bar {
    width: 6px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    animation: waveform 1.2s ease-in-out infinite;
    transform-origin: bottom;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }

.transcript-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
}

.transcript-line {
    display: flex;
    gap: 12px;
    padding: 6px 0;
    font-size: var(--text-sm);
}

.transcript-time {
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    min-width: 48px;
    padding-top: 2px;
}

.transcript-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Floating Cards */
.mockup-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}

.mockup-float-card i {
    color: var(--primary);
}

.mockup-float-card.card-1 {
    top: -16px;
    right: -20px;
    animation-delay: 0s;
}

.mockup-float-card.card-2 {
    bottom: 40px;
    left: -24px;
    animation-delay: 1.5s;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    margin-top: 48px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--text-on-dark);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-on-dark-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================================================
   USED-IN / TRUST BAR
   ============================================================================ */
.trust-section {
    padding: 60px 0;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}

.trust-label {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-xl);
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.trust-item:hover {
    color: var(--primary);
}

.trust-item i {
    font-size: 1.25rem;
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-lg);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================================
   USE CASES SECTION
   ============================================================================ */
.usecases-section {
    padding: var(--space-4xl) 0;
    background: var(--surface-1);
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.usecase-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.usecase-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    display: block;
}

.usecase-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.usecase-card p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   ADVANTAGES / WHY SECTION
   ============================================================================ */
.advantages-section {
    padding: var(--space-4xl) 0;
    background: var(--surface-2);
}

.advantage-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.advantage-item:hover {
    border-color: var(--primary);
    background: var(--primary-surface);
}

.advantage-icon {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.advantage-item strong {
    font-size: var(--text-base);
    display: block;
    margin-bottom: 2px;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin: 0;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--surface-dark);
    color: var(--text-on-dark);
}

.how-section .section-header {
    color: var(--text-on-dark);
}

.how-section .section-tag {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

.how-section .section-title {
    color: var(--text-on-dark);
}

.how-section .section-desc {
    color: var(--text-on-dark-secondary);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.how-card {
    text-align: center;
    position: relative;
}

.how-number {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 900;
    color: rgba(249, 115, 22, 0.15);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.how-card h3 {
    color: var(--text-on-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.how-card p {
    color: var(--text-on-dark-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */
.pricing-hero-modern {
    padding: 120px 0 40px;
    background: var(--surface-dark);
    text-align: center;
}

.pricing-hero-content h1 {
    color: var(--text-on-dark);
}

.pricing-hero-content p {
    color: var(--text-on-dark-secondary);
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.pricing-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.pricing-subtitle {
    font-size: var(--text-lg);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--bg-body);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.15);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.pricing-amount .currency {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text);
}

.pricing-amount .price {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pricing-amount .period {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin: 0;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: var(--text-lg);
    font-weight: 500;
    margin-right: 6px;
}

.pricing-discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
    border: 1px solid #FDBA74;
    color: #EA580C;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-top: 8px;
    margin-bottom: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features li i.fa-check {
    color: var(--success);
    font-size: var(--text-xs);
}

.pricing-features li i.fa-times {
    color: var(--text-disabled);
    font-size: var(--text-xs);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-pricing:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    color: white;
}

.pricing-note {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* Guarantee Banner */
.guarantee-banner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 700px;
    margin: var(--space-3xl) auto 0;
    padding: var(--space-lg) var(--space-xl);
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.guarantee-icon {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-bg);
    color: var(--success);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
}

.guarantee-content h3 {
    font-size: var(--text-lg);
    margin-bottom: 4px;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin: 0;
}

/* ============================================================================
   COMPARISON TABLE
   ============================================================================ */
.comparison-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--surface-1);
}

.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table thead th {
    padding: 18px 20px;
    font-size: var(--text-sm);
    font-weight: 700;
    text-align: center;
    background: var(--surface-1);
    border-bottom: 2px solid var(--border);
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th.featured-col {
    background: var(--primary-glow);
    color: var(--primary);
}

.comparison-table tbody td {
    padding: 14px 20px;
    text-align: center;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody td:first-child {
    text-align: left;
}

.comparison-table tbody td.featured-col {
    background: rgba(249, 115, 22, 0.03);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--surface-2);
}

.faq-grid {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--surface-hover);
}

.faq-question h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: transform var(--transition-base);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.final-cta {
    padding: var(--space-4xl) 0;
    background: var(--surface-dark);
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-on-dark);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-content > p {
    color: var(--text-on-dark-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary);
    color: white;
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-cta-large:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
    color: white;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--text-on-dark);
    font-size: var(--text-lg);
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
}

.cta-trust span i {
    color: var(--primary);
}

/* ============================================================================
   DOWNLOAD PAGE
   ============================================================================ */
.download-hero-modern {
    padding: 120px 0 40px;
    background: var(--surface-dark);
    text-align: center;
}

.download-hero-content .hero-badge-modern {
    margin-bottom: var(--space-lg);
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-on-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.download-subtitle {
    font-size: var(--text-lg);
    color: var(--text-on-dark-secondary);
    max-width: 550px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-on-dark-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
}

.feature-pill i {
    color: var(--success);
}

.download-platforms {
    padding: var(--space-3xl) 0;
    background: var(--bg-body);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
}

.platform-badge.coming-soon {
    background: var(--text-muted);
}

.platform-icon {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.platform-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.platform-desc {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
}

.platform-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.meta-item.coming-soon {
    color: var(--warning);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-download:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-download:disabled {
    background: var(--surface-3);
    color: var(--text-disabled);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* System Requirements */
.system-requirements {
    padding: var(--space-4xl) 0;
    background: var(--surface-1);
}

.requirements-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.req-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.req-card.featured {
    border-color: var(--primary);
}

.req-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.req-icon {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.req-header h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.req-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--surface-3);
    color: var(--text-muted);
}

.req-badge.featured {
    background: var(--primary-glow);
    color: var(--primary);
}

.req-specs {
    padding: 20px 24px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--text-sm);
}

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

.spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-value {
    color: var(--text);
    font-weight: 600;
}

.req-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    max-width: 700px;
    margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-lg);
    background: var(--info-bg);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: var(--radius-lg);
}

.note-icon {
    color: var(--info);
    font-size: 1.1rem;
    padding-top: 2px;
}

.note-content p {
    font-size: var(--text-sm);
    margin: 0;
    color: var(--text-secondary);
}

/* Installation Steps */
.installation-steps {
    padding: var(--space-4xl) 0;
    background: var(--surface-2);
}

.steps-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.step-card {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--primary-glow);
    min-width: 60px;
    color: rgba(249, 115, 22, 0.2);
}

.step-content h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin: 0;
}

/* Download CTA */
.download-cta {
    padding: var(--space-3xl) 0;
    background: var(--surface-1);
}

.cta-box {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
}

.cta-box p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    background: var(--primary-hover);
    color: white;
}
