/**
 * MUSA TTS - Modern SaaS Landing Page Styles
 * Fresh, Unique Design with Smooth Animations
 */

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ============================================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes wave-animation {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================================================
   HERO SECTION - GRADIENT DESIGN
   ============================================================================ */
.hero-gradient {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: pulse-glow 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: -250px;
    right: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    bottom: -200px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.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.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}


.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% 200%;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--primary);
    color: white !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text) !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: #1f2937;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.trust-item i {
    color: #6366f1;
    font-size: 1.25rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.app-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-frame {
    background: var(--surface-2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mockup-titlebar {
    background: var(--surface-3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.titlebar-dots {
    display: flex;
    gap: 6px;
}

.titlebar-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.titlebar-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}


.mockup-body {
    padding: 32px;
}

.waveform-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 4px;
    margin-bottom: 24px;
}

.wave-bar {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    animation: wave-animation 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.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; }

.voice-selector {
    background: var(--surface-1);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.voice-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.voice-info {
    flex: 1;
}

.voice-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.voice-type {
    font-size: 0.8125rem;
    color: var(--text-muted);
}


.mockup-float-card {
    position: absolute;
    background: var(--surface-2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.mockup-float-card i {
    color: var(--primary);
    font-size: 1.125rem;
}

.card-1 {
    top: 20%;
    right: -60px;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: -60px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-top: 80px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


/* ============================================================================
   SECTION UTILITIES
   ============================================================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   BENTO GRID FEATURES
   ============================================================================ */
.features-bento {
    padding: 120px 0;
    background: var(--bg-body);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card:hover::before {
    opacity: 1;
}


.bento-card.large {
    grid-column: span 2;
}

.bento-card.medium {
    grid-column: span 2;
}

.bento-card.small {
    grid-column: span 1;
}

/* For 8 cards layout: 2 large (2 cols each) + 4 small (1 col each) = 8 cols total */
@media (min-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bento-card.accent {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.3);
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 20px;
}

.bento-icon-sm {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 16px;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.bento-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}


.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--success);
    color: var(--text);
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.privacy-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.privacy-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.privacy-badges i {
    color: var(--success);
}

/* ============================================================================
   HOW IT WORKS - TIMELINE
   ============================================================================ */
.how-it-works {
    padding: 120px 0;
    background: var(--surface-1);
}

.timeline-steps {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}


.step-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.0625rem;
}

.timeline-connector {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: -30px 0 -30px 100px;
}

/* ============================================================================
   VOICE SHOWCASE
   ============================================================================ */
.voice-showcase {
    padding: 120px 0;
    background: var(--bg-body);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.voice-card {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.voice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.voice-avatar-lg {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.voice-details {
    flex: 1;
}

.voice-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}


.voice-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.voice-lang {
    color: var(--primary);
    font-weight: 600;
}

.voice-dot {
    color: var(--text-muted);
}

.voice-gender {
    color: var(--text-muted);
}

.voice-details p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.btn-play {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: var(--text);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-play:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* ============================================================================
   PRICING SECTION
   ============================================================================ */
.pricing-section {
    padding: 120px 0;
    background: var(--surface-1);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.comparison-card {
    background: var(--surface-2);
    border: 2px solid;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.comparison-card.bad {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.good {
    border-color: rgba(34, 197, 94, 0.3);
}


.comparison-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--success);
    color: var(--text);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-label {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}

.comparison-price {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text);
}

.comparison-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.comparison-features {
    list-style: none;
    padding: 0;
}

.comparison-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-card.bad .comparison-features i {
    color: var(--danger);
    font-size: 1.125rem;
    margin-top: 2px;
}

.comparison-card.good .comparison-features i {
    color: var(--success);
    font-size: 1.125rem;
    margin-top: 2px;
}

.comparison-vs {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text);
}


/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--primary);
    color: var(--text);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-amount .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--text-muted);
}


.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.125rem;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-body);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}


.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}


.cta-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: white !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--text) !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust i {
    color: var(--success);
    font-size: 1.125rem;
}


/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large,
    .bento-card.medium,
    .bento-card.small {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-visual {
        justify-content: center;
    }
    
    .timeline-connector {
        margin: -30px auto;
    }
    
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-vs {
        display: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-gradient {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-bar {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mockup-float-card {
        display: none;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .voice-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-bento,
    .how-it-works,
    .voice-showcase,
    .pricing-section,
    .faq-section,
    .final-cta {
        padding: 80px 0;
    }
}

/* ============================================================================
   AOS ANIMATION LIBRARY INTEGRATION
   ============================================================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.6s;
    transition-timing-function: ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================================================
   DOWNLOAD PAGE STYLES
   ============================================================================ */
.download-hero-modern {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.download-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.download-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.feature-pill i {
    color: var(--success);
}

/* Platform Cards */
.download-platforms {
    padding: 80px 0;
    background: var(--bg-body);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.platform-card {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.platform-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary);
    color: var(--text);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.platform-badge.coming-soon {
    background: var(--surface-3);
    color: var(--text-muted);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    font-size: 2.5rem;
    color: var(--primary);
}

.platform-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.platform-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--primary);
}

.meta-item.coming-soon {
    color: var(--text-muted);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.btn-download i {
    color: white;
}

.btn-download:hover:not(:disabled) {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-download:hover:not(:disabled) i {
    color: white;
}

.btn-download:disabled {
    background: var(--surface-3);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

/* System Requirements */
.system-requirements {
    padding: 80px 0;
    background: var(--surface-1);
}

.requirements-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.req-card {
    background: var(--surface-2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.req-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--surface-2) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.req-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.req-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.req-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary);
}

.req-header h3 {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 800;
}

.req-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.req-badge.featured {
    background: var(--primary);
    color: var(--text);
}

.req-specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
}

.spec-value {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-align: right;
}

.req-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(56, 189, 248, 0.1);
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
}

.note-icon {
    font-size: 1.5rem;
    color: var(--info);
    flex-shrink: 0;
}

.note-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Installation Steps */
.installation-steps {
    padding: 80px 0;
    background: var(--bg-body);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
}

.step-content {
    padding-top: 24px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Download CTA */
.download-cta {
    padding: 80px 0;
    background: var(--surface-1);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-cta-primary i {
    color: white;
}

.btn-cta-primary:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover i {
    color: white;
}

.btn-cta-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .download-hero-modern {
        padding: 100px 0 60px;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .platforms-grid,
    .requirements-comparison,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   PRICING PAGE STYLES
   ============================================================================ */
.pricing-hero-modern {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Cards */
.pricing-cards-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-modern {
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.pricing-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card-modern.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--primary);
    color: var(--text);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card-badge.lifetime {
    background: var(--accent);
    color: #0a0a0a;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 16px;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    vertical-align: top;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-savings {
    text-align: center;
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    color: var(--success);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pricing-features-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
}

.pricing-features-modern li:last-child {
    border-bottom: none;
}

.pricing-features-modern li i {
    color: var(--success);
    font-size: 1.125rem;
}

.pricing-features-modern li.highlight {
    color: var(--primary);
}

.pricing-features-modern li.disabled {
    opacity: 0.5;
}

.pricing-features-modern li.disabled i {
    color: var(--text-muted);
}

.btn-pricing-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--surface-3);
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-pricing-modern.featured {
    background: var(--primary);
    color: var(--text);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-pricing-modern:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-pricing-modern.featured:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Feature Comparison */
.feature-comparison-section,
.comparison-section {
    padding: 80px 0;
    background: var(--surface-1);
}

.comparison-table-modern,
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table-modern table,
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-modern th,
.comparison-table-modern td,
.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table-modern th,
.comparison-table th {
    background: #f9fafb;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #374151;
}

.comparison-table-modern th.featured-col,
.comparison-table-modern td.featured-col,
.comparison-table th.featured-col,
.comparison-table td.featured-col {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary);
    font-weight: 600;
}

.comparison-table-modern td:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table-modern .text-success,
.comparison-table .text-success {
    color: #10b981;
    font-size: 1.25rem;
}

.comparison-table-modern .text-muted,
.comparison-table .text-muted {
    color: #9ca3af;
    font-size: 1.25rem;
}

/* Trust Section */
.pricing-trust-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card-modern {
    text-align: center;
    padding: 32px 24px;
    background: var(--surface-1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon-modern {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    font-size: 1.75rem;
    color: var(--primary);
}

.trust-card-modern h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-card-modern p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

/* Pricing FAQ */
.pricing-faq-section {
    padding: 80px 0;
    background: var(--surface-1);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-card-modern.featured {
        transform: none;
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing-hero-modern {
        padding: 100px 0 60px;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-modern {
        font-size: 0.875rem;
    }
    
    .comparison-table-modern th,
    .comparison-table-modern td {
        padding: 12px 8px;
    }
}


/* ============================================
   TUTORIALS PAGE - MODERN DESIGN
   ============================================ */

.section-modern {
    padding: 80px 0;
    background: var(--bg);
}

.tutorials-layout-modern {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar */
.tutorials-sidebar-modern {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.category-nav-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.category-nav-modern h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.category-link-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.category-link-modern:hover {
    background: var(--surface-1);
    color: var(--text);
    transform: translateX(4px);
}

.category-link-modern.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(129, 140, 248, 0.1) 100%);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.category-link-modern i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.category-count {
    margin-left: auto;
    background: var(--surface-1);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.category-link-modern.active .category-count {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

/* Content Area */
.tutorials-content-modern {
    min-height: 400px;
}

.tutorials-header-modern {
    margin-bottom: 2.5rem;
}

.tutorials-header-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tutorials-header-modern p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.tutorials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Tutorial Cards */
.tutorial-card-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.tutorial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.tutorial-image-modern {
    aspect-ratio: 16/9;
    background: var(--surface-1);
    position: relative;
    overflow: hidden;
}

.tutorial-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tutorial-card-modern:hover .tutorial-image-modern img {
    transform: scale(1.05);
}

.tutorial-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.tutorial-video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ef4444;
    color: var(--text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tutorial-body-modern {
    padding: 1.5rem;
}

.tutorial-category-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-weight: 600;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.tutorial-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text);
}

.tutorial-excerpt-modern {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tutorial-meta-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 2px solid var(--border);
}

.tutorial-meta-modern span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tutorial-meta-modern i {
    color: var(--primary);
}

/* Empty State */
.empty-state-modern {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-state-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.empty-state-modern p {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .tutorials-layout-modern {
        grid-template-columns: 1fr;
    }

    .tutorials-sidebar-modern {
        position: static;
    }

    .category-nav-modern {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .category-nav-modern h3 {
        width: 100%;
    }

    .category-link-modern {
        padding: 10px 16px;
    }

    .tutorials-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tutorials-title {
        font-size: 2.5rem;
    }

    .tutorials-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT PAGE - MODERN DESIGN
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

.contact-layout-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.alert-modern {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modern label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-modern label i {
    color: var(--primary);
    width: 16px;
}

.form-input-modern,
.form-textarea-modern {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.form-input-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea-modern {
    resize: vertical;
    min-height: 120px;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-contact-submit {
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-contact-submit i {
    color: white;
}

.btn-contact-submit:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-contact-submit:hover i {
    color: white;
}

/* Contact Methods */
.contact-methods-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.contact-faq-card {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.contact-info-card h3,
.contact-faq-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-card > p,
.contact-faq-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.contact-method-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-method-card.disabled:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-method-icon.email {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.contact-method-icon.whatsapp {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.contact-method-icon.discord {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.contact-method-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-method-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-method-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

/* FAQ Quick Links */
.faq-quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.faq-quick-link:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-quick-link i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 8px;
    font-size: 1.25rem;
}

.faq-quick-link div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-quick-link strong {
    font-size: 0.95rem;
    color: var(--text);
}

.faq-quick-link span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-card,
    .contact-faq-card {
        padding: 1.5rem;
    }
}


/* ============================================
   AFFILIATE PAGE - MODERN DESIGN
   ============================================ */

.affiliate-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
}

.stat-card-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-actions-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Benefits Grid */
.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps Grid */
.steps-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.step-card-modern {
    text-align: center;
    position: relative;
}

.step-number-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-dark);
}

.step-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.step-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card-modern p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Commission Table */
.commission-highlight {
    font-weight: 700;
    color: #16a34a;
    font-size: 1.1rem;
}

.badge-recurring,
.badge-onetime {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid;
}

.badge-recurring {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.3);
}

.badge-onetime {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

/* Earning Example */
.earning-example-modern {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--surface-2);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.example-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.earning-example-modern h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.example-calc {
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-calc strong {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Perks Grid */
.perks-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.perk-card-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.perk-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.perk-card-modern.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.05), var(--surface-2));
}

.perk-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.perk-card-modern > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.perk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perk-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.perk-list li i {
    color: #16a34a;
    font-size: 0.75rem;
}

/* Audience Grid */
.audience-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.audience-card-modern {
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.audience-card-modern:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.audience-icon-modern {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.audience-card-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.audience-card-modern p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Payout Grid */
.payout-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payout-info-modern {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface-2);
    border: 2px solid var(--border);
    border-radius: 12px;
}

.payout-info-modern p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.payout-info-modern strong {
    color: var(--text);
}

/* CTA Section */
.affiliate-cta-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.affiliate-cta-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.affiliate-cta-modern > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .affiliate-stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .benefits-grid-modern,
    .steps-grid-modern,
    .perks-grid-modern {
        grid-template-columns: 1fr;
    }

    .audience-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .payout-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliate-cta-modern h2 {
        font-size: 2rem;
    }

    .example-calc strong {
        font-size: 2rem;
    }
}








/* ============================================
   ABOUT PAGE - MODERN DESIGN
   ============================================ */

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    max-width: 600px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.mission-visual {
    position: relative;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.showcase-item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.showcase-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.showcase-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.showcase-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-about {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card-about:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feature-icon-about {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.feature-card-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.tech-showcase {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tech-content {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 100px;
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

.tech-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.values-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-about {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card-about:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.value-icon-about {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.value-card-about h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card-about p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
    .about-mission-grid {
        grid-template-columns: 1fr;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-cta h2 {
        font-size: 2rem;
    }

    .tech-content {
        padding: 2rem;
    }
}

/* ============================================
   TEAM PAGE - MODERN DESIGN
   ============================================ */

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card-modern {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.team-avatar-modern {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.team-avatar-modern img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text);
}

.team-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--surface-2);
}

.team-info-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

.join-team-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.join-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text);
    margin: 0 auto 1.5rem;
}

.join-team-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.join-team-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.values-grid-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item-team {
    text-align: center;
    padding: 2rem;
}

.value-icon-team {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.value-item-team h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-item-team p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid-modern {
        grid-template-columns: 1fr;
    }

    .join-team-card h2 {
        font-size: 1.75rem;
    }
}


/* ============================================================================
   PROBLEM SECTION
   ============================================================================ */
.problem-section {
    padding: 80px 0;
    background: var(--surface-1);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.problem-icon.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution-banner {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    color: white;
}

.solution-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* ============================================================================
   ROI CALCULATOR SECTION
   ============================================================================ */
.roi-section {
    padding: 80px 0;
    background: var(--surface);
}

.roi-calculator {
    max-width: 1000px;
    margin: 0 auto;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.roi-column {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.roi-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.roi-breakdown {
    margin-bottom: 24px;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.roi-item span {
    color: var(--text-secondary);
}

.roi-item strong {
    color: var(--text);
    font-weight: 700;
}

.roi-item .highlight-bad {
    color: var(--danger);
    font-size: 1.25rem;
}

.roi-total {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.roi-total.bad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.roi-total.good {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.roi-total span {
    font-size: 1.75rem;
}

.roi-vs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
}

.roi-savings {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--success);
}

.savings-badge {
    margin-bottom: 16px;
}

.savings-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.savings-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.roi-savings p {
    font-size: 1.125rem;
    color: var(--text);
    margin: 0;
}

/* ============================================================================
   TESTIMONIALS SECTION
   ============================================================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--surface-1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f59e0b;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: var(--text);
}

.testimonial-author span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================================================
   GUARANTEE BANNER
   ============================================================================ */
.guarantee-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid var(--success);
    margin-top: 48px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.guarantee-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================================
   PRICING ENHANCEMENTS
   ============================================================================ */
.pricing-card .pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

.cta-urgency {
    margin-top: 24px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 992px) {
    .roi-comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .roi-vs {
        order: 2;
    }

    .roi-column.cloud {
        order: 1;
    }

    .roi-column.musa {
        order: 3;
    }

    .vs-badge {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .problem-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .savings-amount {
        font-size: 2rem;
    }

    .guarantee-banner {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================================
   UNLIMITED POWER SECTION
   ============================================================================ */
.unlimited-power-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.unlimited-banner {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.unlimited-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    color: white;
}

.unlimited-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.unlimited-banner .gradient-text {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unlimited-desc {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

/* ============================================================================
   CLOUD COMPARISON TABLE
   ============================================================================ */
.roi-section {
    padding: 80px 0;
    background: white;
}

.roi-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.roi-section .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #6366f1;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.roi-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1f2937;
}

.roi-section .section-desc {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.usage-comparison-table {
    margin: 60px 0;
}

.comparison-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1f2937;
}

.comparison-note {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 30px;
}

.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.cost-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.cost-comparison-table thead {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
}

.cost-comparison-table th {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    color: white;
}

.cost-comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
}

.cost-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.cost-comparison-table .musa-row {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    font-weight: 700;
}

.cost-comparison-table .musa-row td {
    border-bottom: none;
    color: #1e3a8a;
}

.provider-note {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 400;
    margin-top: 4px;
}

.cost-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
}

.cost-badge.bad {
    background: #fee2e2;
    color: #991b1b;
}

.cost-badge.good {
    background: #d1fae5;
    color: #065f46;
    font-size: 1.2rem;
}

/* Comparison Insight Box */
.comparison-insight {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    border: 2px solid #f59e0b;
}

.comparison-insight .insight-icon {
    text-align: center;
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 20px;
}

.comparison-insight h4 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #78350f;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.insight-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

.insight-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.insight-value.bad {
    color: #dc2626;
}

.insight-value.good {
    color: #059669;
}

.insight-conclusion {
    background: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #78350f;
    margin: 0;
}

.insight-conclusion i {
    color: #059669;
    margin-right: 8px;
}

.cloud-comparison-table {
    margin: 40px 0;
    overflow-x: auto;
}

.comparison-table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-table-modern thead {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
}

.comparison-table-modern th {
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    color: white;
}

.comparison-table-modern th.highlight-col {
    background: rgba(255,255,255,0.2);
}

.comparison-table-modern td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
}

.comparison-table-modern tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-modern td.highlight-col {
    background: #dbeafe;
    font-weight: 600;
    color: #1e3a8a;
}

.badge-good {
    display: inline-block;
    padding: 6px 14px;
    background: #10b981;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-bad {
    display: inline-block;
    padding: 6px 14px;
    background: #ef4444;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-neutral {
    display: inline-block;
    padding: 6px 14px;
    background: #f59e0b;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================================================
   SCARCITY NOTICE
   ============================================================================ */
.scarcity-notice {
    margin-top: 40px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scarcity-notice i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.scarcity-notice p {
    margin: 0;
    font-size: 1.1rem;
    color: #78350f;
}

/* ============================================================================
   WHO IT'S FOR SECTION
   ============================================================================ */
.who-its-for-section {
    padding: 100px 0;
    background: #fafafa;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.audience-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.audience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.audience-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* ============================================================================
   PERFORMANCE SECTION
   ============================================================================ */
.performance-section {
    padding: 100px 0;
    background: white;
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.performance-card {
    background: #fafafa;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.performance-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.benchmark-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benchmark-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.benchmark-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.benchmark-spec i {
    font-size: 1.5rem;
    color: var(--primary);
}

.benchmark-result {
    font-size: 1rem;
    color: var(--text-muted);
}

.benchmark-result strong {
    color: var(--primary);
    font-weight: 700;
}

.req-section {
    margin-bottom: 30px;
}

.req-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-section h4 i {
    color: var(--primary);
}

.req-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-section ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.req-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.req-note {
    margin-top: 20px;
    padding: 15px;
    background: #e0f2fe;
    border-left: 4px solid #0284c7;
    border-radius: 8px;
    color: #075985;
    font-size: 0.95rem;
}

.req-note i {
    margin-right: 8px;
}

.device-info {
    margin-top: 40px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #0284c7;
}

.device-info i {
    font-size: 2rem;
    color: #0284c7;
}

.device-info p {
    margin: 0;
    font-size: 1.05rem;
    color: #075985;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 1024px) {
    .unlimited-banner h2 {
        font-size: 2.5rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .unlimited-banner h2 {
        font-size: 2rem;
    }
    
    .unlimited-desc {
        font-size: 1.1rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-modern {
        font-size: 0.9rem;
    }
    
    .comparison-table-modern th,
    .comparison-table-modern td {
        padding: 12px;
    }
    
    .scarcity-notice {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================================
   FOUNDER SECTION
   ============================================================================ */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f9ff 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    text-align: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.founder-text {
    text-align: left;
}

.founder-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.founder-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.founder-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.founder-credentials {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.founder-mission {
    padding: 20px;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark) !important;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-text {
        text-align: center;
    }
    
    .founder-credentials {
        justify-content: center;
    }
    
    .founder-text h2 {
        font-size: 2rem;
    }
}


/* Usage note in ROI calculator */
.usage-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

/* Responsive adjustments for cost comparison */
@media (max-width: 768px) {
    .cost-comparison-table {
        font-size: 0.85rem;
    }
    
    .cost-comparison-table th,
    .cost-comparison-table td {
        padding: 12px 8px;
    }
    
    .cost-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .comparison-insight {
        padding: 25px;
    }
    
    .insight-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-subtitle {
        font-size: 1.5rem;
    }
}


/* ============================================================================
   FAQ SECTION - ENHANCED FOR PRICING PAGE
   ============================================================================ */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-section .section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #6366f1;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.faq-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1f2937;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fafafa;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    background: transparent;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #6366f1;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-answer p strong {
    color: #1f2937;
    font-weight: 700;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}


/* ============================================================================
   PRODUCT DEMO SECTION
   ============================================================================ */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
}

.demo-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    cursor: pointer;
    overflow: hidden;
}

.demo-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.demo-video-container iframe,
.demo-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.demo-fallback i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.demo-fallback h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.demo-fallback p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.demo-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.demo-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.demo-play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.7);
}

.demo-play-button i {
    margin-left: 4px;
}

.demo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: white;
    z-index: 1;
    pointer-events: none;
}

.demo-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.demo-overlay p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Demo Highlights */
.demo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.demo-highlight-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.demo-highlight-item:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-highlights {
        grid-template-columns: 1fr;
    }
    
    .demo-play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .demo-overlay {
        padding: 20px;
    }
    
    .demo-overlay h3 {
        font-size: 1.2rem;
    }
    
    .demo-overlay p {
        font-size: 0.9rem;
    }
    
    .demo-fallback i {
        font-size: 60px;
    }
    
    .demo-fallback h3 {
        font-size: 1.5rem;
    }
}


/* ============================================================================
   HOW IT WORKS SECTION - STEP BY STEP
   ============================================================================ */
.how-it-works-section {
    padding: 100px 0;
    background: white;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #fafafa;
    border-radius: 20px;
}

.step-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.step-item.reverse .step-content {
    order: 2;
}

.step-item.reverse .step-visual {
    order: 1;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
}

.step-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.step-visual {
    position: relative;
}

.step-screenshot-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.step-screenshot-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: white;
}

.screenshot-fallback i {
    font-size: 60px;
    opacity: 0.3;
}

.screenshot-fallback span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Steps CTA */
.steps-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    border: 2px solid #0284c7;
}

.steps-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
}

.btn-pricing-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-pricing-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-pricing-modern.featured {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Responsive */
@media (max-width: 968px) {
    .step-item,
    .step-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .step-item.reverse .step-content,
    .step-item.reverse .step-visual {
        order: initial;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .steps-cta {
        padding: 40px 20px;
    }
    
    .steps-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .step-item {
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* ============================================================================
   SUPPORTED LANGUAGES SECTION
   ============================================================================ */
.languages-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.language-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: default;
}

.language-card:hover {
    transform: translateY(-8px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.language-flag {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1;
}

.language-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.language-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.languages-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.languages-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .languages-section {
        padding: 60px 0;
    }
    
    .languages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .language-card {
        padding: 30px 20px;
    }
    
    .language-flag {
        font-size: 3rem;
    }
    
    .language-card h3 {
        font-size: 1.2rem;
    }
    
    .languages-cta p {
        font-size: 1rem;
    }
}


/* ============================================================================
   AUDIO SAMPLES SECTION - CRITICAL FOR CONVERSION
   ============================================================================ */
.audio-samples-section {
    padding: 100px 0;
    background: white;
}

.audio-samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.audio-sample-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.audio-sample-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    transform: translateY(-5px);
}

.sample-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sample-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.sample-icon.female {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.sample-icon.male {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.sample-icon.podcast {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.sample-icon.audiobook {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.sample-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.sample-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.audio-player-wrapper {
    margin: 20px 0;
}

.audio-player-wrapper audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    outline: none;
}

.audio-player-wrapper audio::-webkit-media-controls-panel {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.sample-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.samples-note {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.samples-note i {
    color: #6366f1;
    font-size: 1.2rem;
}

.samples-note p {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .audio-samples-section {
        padding: 60px 0;
    }
    
    .audio-samples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .audio-sample-card {
        padding: 25px 20px;
    }
    
    .samples-note {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================================================
   OBJECTION HANDLING SECTION
   ============================================================================ */
.objections-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.objection-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.objection-card:hover {
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    transform: translateY(-5px);
}

.objection-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.objection-question i {
    font-size: 1.8rem;
    color: #6366f1;
    flex-shrink: 0;
}

.objection-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.objection-answer {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    padding-left: 50px;
}

.objection-answer strong {
    color: #10b981;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .objections-section {
        padding: 60px 0;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .objection-card {
        padding: 25px 20px;
    }
    
    .objection-answer {
        padding-left: 0;
        margin-top: 10px;
    }
}


/* ============================================================================
   TRUST BADGES & SCARCITY COUNTER
   ============================================================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.trust-badge i {
    font-size: 1.3rem;
    color: #10b981;
}

/* Scarcity Counter - Compact Version */
.scarcity-counter {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 2px solid #f59e0b;
    text-align: center;
}

.counter-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 12px;
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.counter-progress {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.counter-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.counter-text {
    font-size: 1rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 6px;
}

.counter-text strong {
    color: #f59e0b;
    font-size: 1.1rem;
}

.counter-note {
    font-size: 0.85rem;
    color: #92400e;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-badges {
        gap: 15px;
        padding: 20px;
    }
    
    .trust-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .scarcity-counter {
        padding: 15px 20px;
    }
    
    .counter-content h4 {
        font-size: 1rem;
    }
    
    .counter-text {
        font-size: 0.9rem;
    }
    
    .counter-text strong {
        font-size: 1rem;
    }
}


/* ============================================================================
   USED IN SECTION
   ============================================================================ */
.used-in-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.used-in-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.used-in-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.used-in-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.used-in-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.used-in-item i {
    font-size: 2.5rem;
    color: #6366f1;
}

.used-in-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

@media (max-width: 768px) {
    .used-in-section {
        padding: 40px 0;
    }
    
    .used-in-grid {
        gap: 30px;
    }
    
    .used-in-item i {
        font-size: 2rem;
    }
}


/* Scarcity Banner Section (for Pricing Page) - Compact */
.scarcity-banner-section {
    padding: 30px 0 20px;
    background: transparent;
}

.scarcity-banner-section .scarcity-counter {
    margin: 0 auto;
}


/* ============================================================================
   WORKS WITH SECTION
   ============================================================================ */
.works-with-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, white 100%);
}

.works-with-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.works-with-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.works-with-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.works-with-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.works-with-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.works-with-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.works-with-note i {
    color: var(--primary);
}

/* ============================================================================
   PRICING ENHANCEMENTS
   ============================================================================ */
.pricing-amount .price-note {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 400;
}

.pricing-features .roi-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    font-weight: 600;
    color: #059669;
}

.pricing-features .roi-highlight i {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .works-with-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .works-with-item {
        padding: 20px 15px;
    }
    
    .works-with-icon {
        font-size: 36px;
    }
    
    .works-with-item h4 {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .works-with-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================================
   PRICING SECTION ENHANCEMENTS
   ============================================================================ */
.pricing-emotional-trigger {
    text-align: center;
    margin: 30px auto 20px;
    max-width: 600px;
}

.pricing-emotional-trigger p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.pricing-emotional-trigger p::before,
.pricing-emotional-trigger p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.pricing-billing-note {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 16px 24px;
    margin: 0 auto 40px;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-billing-note i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-billing-note p {
    margin: 0;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* ============================================================================
   TESTIMONIALS TRUST BADGE
   ============================================================================ */
.testimonials-trust-badge {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-trust-badge i {
    color: #10b981;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.testimonials-trust-badge p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #059669;
}

/* ============================================================================
   PRICING DISCLAIMER
   ============================================================================ */
.pricing-disclaimer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.8125rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-disclaimer i {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================================ */
@media (max-width: 768px) {
    .pricing-emotional-trigger p {
        font-size: 1.25rem;
    }
    
    .pricing-billing-note {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .pricing-billing-note p {
        font-size: 0.875rem;
    }
    
    .testimonials-trust-badge {
        margin-top: 30px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-emotional-trigger p {
        font-size: 1.125rem;
        padding: 0 10px;
    }
    
    .pricing-emotional-trigger p::before,
    .pricing-emotional-trigger p::after {
        font-size: 1.5rem;
    }
}


/* ============================================================================
   PAYMENT SECURITY NOTE
   ============================================================================ */
.payment-security-note {
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-security-note i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.payment-security-note p {
    margin: 0;
    color: #059669;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-security-note {
        padding: 14px 20px;
        margin-top: 20px;
    }
    
    .payment-security-note p {
        font-size: 0.875rem;
    }
    
    .payment-security-note i {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .payment-security-note {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .payment-security-note p {
        font-size: 0.8125rem;
    }
}
