/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a2e;
    --bg-secondary: #16213e;
    --bg-tertiary: #0f3460;
    --bg-card: rgba(30, 30, 50, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a8a8b3;
    --accent-purple: #7c3aed;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Grid - Missing Definition */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-emoji {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-emoji:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.6);
    }
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.btn-investor-portal {
    background: rgba(26, 26, 46, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    margin-right: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-investor-portal:hover {
    background: rgba(26, 26, 46, 1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-signin {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-features {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Platform Progress Section */
.platform-progress {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(22, 33, 62, 0.98) 50%,
        rgba(15, 52, 96, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.platform-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.progress-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.progress-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 159, 67, 0.2);
    border: 1px solid rgba(255, 159, 67, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); border-color: rgba(255, 159, 67, 0.4); }
    50% { transform: scale(1.05); border-color: rgba(255, 159, 67, 0.6); }
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff9f43;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.progress-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.progress-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Progress Timeline */
.progress-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        rgba(76, 175, 80, 0.8) 0%,
        rgba(76, 175, 80, 0.8) 40%,
        rgba(255, 159, 67, 0.8) 40%,
        rgba(255, 159, 67, 0.8) 60%,
        rgba(158, 158, 158, 0.4) 60%,
        rgba(158, 158, 158, 0.4) 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 3px solid rgba(76, 175, 80, 0.6);
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.2) 0%, rgba(255, 159, 67, 0.1) 100%);
    border: 3px solid rgba(255, 159, 67, 0.8);
    box-shadow: 0 0 30px rgba(255, 159, 67, 0.4);
}

.timeline-item.upcoming .timeline-marker {
    background: rgba(158, 158, 158, 0.1);
    border: 3px solid rgba(158, 158, 158, 0.3);
}

.marker-icon {
    font-size: 2rem;
    font-weight: bold;
}

.timeline-item.completed .marker-icon {
    color: #4caf50;
}

.timeline-item.active .marker-icon {
    color: #ff9f43;
}

.timeline-item.upcoming .marker-icon {
    color: #9e9e9e;
}

.marker-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 159, 67, 0.6);
    border-radius: 50%;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.timeline-content {
    flex: 1;
    padding-top: 1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-highlight {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    animation: liveBadge 2s ease-in-out infinite;
}

@keyframes liveBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.product-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.link-icon {
    font-size: 1.2rem;
}

.external-icon {
    font-size: 1rem;
    opacity: 0.7;
}

/* Progress Stats */
.progress-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress CTA */
.progress-cta {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.progress-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

.cta-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-primary.featured {
    position: relative;
    overflow: hidden;
}

.btn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

/* Responsive Design for Platform Progress */
@media (max-width: 1024px) {
    .progress-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .progress-stats {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .progress-title {
        font-size: 2.5rem;
    }
    
    .progress-subtitle {
        font-size: 1.1rem;
    }
    
    .progress-timeline::before {
        left: 25px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
    
    .marker-icon {
        font-size: 1.5rem;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .progress-stats {
        flex-direction: column;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary.featured,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .platform-progress {
        padding: 60px 0;
    }
    
    .progress-header {
        margin-bottom: 3rem;
    }
    
    .progress-title {
        font-size: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .progress-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* User Journey Section */
.user-journey {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(15, 52, 96, 0.95) 0%,
        rgba(22, 33, 62, 0.98) 50%,
        rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.user-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.journey-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: journeyBadgePulse 3s ease-in-out infinite;
}

@keyframes journeyBadgePulse {
    0%, 100% { transform: scale(1); border-color: rgba(76, 175, 80, 0.4); }
    50% { transform: scale(1.05); border-color: rgba(76, 175, 80, 0.6); }
}

.journey-badge .badge-icon {
    font-size: 1.2rem;
}

.journey-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #4caf50 50%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Journey Steps */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
        rgba(76, 175, 80, 0.8) 0%,
        rgba(255, 193, 7, 0.8) 33%,
        rgba(33, 150, 243, 0.8) 66%,
        rgba(156, 39, 176, 0.8) 100%);
    border-radius: 2px;
    transform: translateX(-50%);
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.step-1 .step-number {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.step-2 .step-number {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.step-3 .step-number {
    background: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
}

.step-4 .step-number {
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
}

.step-connector {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateY(-50%);
}

.step-item:nth-child(odd) .step-connector {
    right: -60px;
}

.step-item:nth-child(even) .step-connector {
    left: -60px;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Step Examples and Demos */
.step-example {
    margin: 1.5rem 0;
}

.example-bubble {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: #4caf50;
    font-style: italic;
    position: relative;
}

.example-bubble::before {
    content: '"';
    font-size: 2rem;
    position: absolute;
    top: -5px;
    left: 10px;
    color: rgba(76, 175, 80, 0.5);
}

.step-demo {
    margin: 1.5rem 0;
}

.demo-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.demo-header {
    background: rgba(255, 152, 0, 0.2);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #ff9800;
    font-weight: 600;
}

.demo-body {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.function-name {
    font-family: 'Courier New', monospace;
    color: #64b5f6;
    font-weight: 600;
}

.function-status {
    color: #4caf50;
    font-size: 0.9rem;
}

.deployment-options {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.deploy-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex: 1;
}

.deploy-option.active {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.deploy-option.coming {
    background: rgba(158, 158, 158, 0.1);
    border: 1px solid rgba(158, 158, 158, 0.2);
}

.option-icon {
    font-size: 1.5rem;
}

.option-name {
    font-weight: 600;
    color: var(--text-primary);
}

.option-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.deploy-option.active .option-status {
    color: #2196f3;
}

.monetization-preview {
    margin: 1.5rem 0;
}

.earning-card {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(186, 104, 200, 0.1) 100%);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.earning-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ba68c8;
    margin-bottom: 0.5rem;
}

.earning-period {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.earning-source {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-benefit, .step-benefits {
    margin-top: 1.5rem;
}

.step-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-benefits {
    display: flex;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.step-action {
    margin-top: 2rem;
}

.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.live-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff5722;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 700;
    animation: liveIndicator 2s ease-in-out infinite;
}

@keyframes liveIndicator {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Journey CTA */
.journey-cta {
    background: rgba(76, 175, 80, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

.journey-cta .cta-content {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.journey-cta .cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.journey-cta .cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.success-stats .stat {
    text-align: center;
}

.success-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
    display: block;
    margin-bottom: 0.5rem;
}

.success-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-cta .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Responsive Design for User Journey */
@media (max-width: 1024px) {
    .step-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .journey-steps::before {
        left: 60px;
        transform: none;
    }
    
    .deployment-options {
        flex-direction: column;
    }
    
    .step-benefits {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .journey-title {
        font-size: 2.5rem;
    }
    
    .journey-subtitle {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .success-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .journey-cta .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary.featured,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .user-journey {
        padding: 60px 0;
    }
    
    .journey-header {
        margin-bottom: 3rem;
    }
    
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-steps {
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .journey-steps::before {
        left: 40px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .earning-amount {
        font-size: 2rem;
    }
    
    .journey-cta {
        padding: 2.5rem;
    }
    
    .journey-cta .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .step-benefits {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Problem Section - 3D Interactive Journey */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(22, 33, 62, 0.98) 50%,
        rgba(15, 52, 96, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.problem-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.problem-journey {
    position: relative;
    height: 600px;
    perspective: 1200px;
    perspective-origin: center center;
}

.journey-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: journeyFloat 20s ease-in-out infinite;
}

@keyframes journeyFloat {
    0%, 100% { transform: rotateX(5deg) rotateY(-2deg); }
    50% { transform: rotateX(-2deg) rotateY(2deg); }
}

/* Crisis Path Background */
.crisis-path {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(255, 107, 107, 0.8) 0%,
        rgba(255, 159, 67, 0.8) 50%,
        rgba(255, 107, 107, 0.8) 100%);
    transform: translateY(-50%) translateZ(-100px);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: pathPulse 3s ease-in-out infinite;
}

@keyframes pathPulse {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) translateZ(-100px) scaleY(1); }
    50% { opacity: 1; transform: translateY(-50%) translateZ(-100px) scaleY(1.5); }
}

/* Challenge Cards */
.challenge-card {
    position: absolute;
    width: 320px;
    height: 400px;
    background: rgba(30, 30, 50, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.card-1 {
    top: 20%;
    left: 5%;
    transform: translateZ(100px) rotateY(-15deg);
    z-index: 3;
}

.card-2 {
    top: 25%;
    left: calc(50% - 160px);
    transform: translateZ(0px) rotateY(0deg);
    z-index: 2;
}

.card-3 {
    top: 30%;
    right: 5%;
    transform: translateZ(-100px) rotateY(15deg);
    z-index: 1;
}

/* Card Glow Effects */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(102, 126, 234, 0.5),
        rgba(118, 75, 162, 0.5),
        rgba(102, 126, 234, 0.5));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.challenge-card:hover .card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Card Hover Effects */
.challenge-card:hover {
    transform: translateZ(150px) rotateY(0deg) scale(1.05);
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.card-1:hover { transform: translateZ(150px) rotateY(0deg) scale(1.05); }
.card-2:hover { transform: translateZ(150px) rotateY(0deg) scale(1.05); }
.card-3:hover { transform: translateZ(150px) rotateY(0deg) scale(1.05); }

/* Card Content */
.card-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Challenge Icons */
.challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.challenge-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

/* Icon Animations */
.icon-disruption .warning-circle {
    fill: none;
    stroke: #ff6b6b;
    stroke-width: 3;
    animation: warningPulse 2s ease-in-out infinite;
}

.icon-disruption .warning-triangle {
    fill: #ff6b6b;
    animation: triangleShake 1.5s ease-in-out infinite;
}

.icon-disruption .warning-dot {
    fill: #ff6b6b;
    animation: dotBlink 1s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { stroke-width: 3; opacity: 1; }
    50% { stroke-width: 5; opacity: 0.7; }
}

@keyframes triangleShake {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-2px); }
    75% { transform: translateY(2px); }
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.icon-trapped .lock-body {
    fill: #ffa726;
    stroke: #ff9800;
    stroke-width: 2;
}

.icon-trapped .lock-shackle {
    fill: none;
    stroke: #ffa726;
    stroke-width: 3;
    animation: shackleShake 3s ease-in-out infinite;
}

.icon-trapped .lock-keyhole {
    fill: #ff9800;
}

@keyframes shackleShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

.icon-gap .chart-line {
    fill: none;
    stroke: #4caf50;
    stroke-width: 3;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 3s ease-in-out infinite;
}

.icon-gap .gap-line {
    fill: none;
    stroke: #f44336;
    stroke-width: 2;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawGap 3s ease-in-out infinite 0.5s;
}

.icon-gap .data-point {
    fill: #2196f3;
    animation: pointPulse 2s ease-in-out infinite;
}

.icon-gap .data-point.active {
    fill: #ff5722;
    animation: activePoint 1s ease-in-out infinite;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 100; }
    50%, 100% { stroke-dashoffset: 0; }
}

@keyframes drawGap {
    0% { stroke-dashoffset: 80; }
    50%, 100% { stroke-dashoffset: 0; }
}

@keyframes pointPulse {
    0%, 100% { r: 3; opacity: 0.7; }
    50% { r: 5; opacity: 1; }
}

@keyframes activePoint {
    0%, 100% { r: 3; }
    50% { r: 6; }
}

/* Card Text */
.challenge-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenge-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

/* Impact Meters */
.impact-meter {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50 0%, #ff9800 50%, #f44336 100%);
    border-radius: 3px;
    transition: width 2s ease-in-out;
    animation: meterFill 3s ease-in-out infinite;
}

@keyframes meterFill {
    0% { width: 0%; }
    50% { width: var(--level, 50%); }
    100% { width: var(--level, 50%); }
}

.meter-fill[data-level="90"] { --level: 90%; }
.meter-fill[data-level="75"] { --level: 75%; }
.meter-fill[data-level="85"] { --level: 85%; }

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.8) 50%, transparent 100%);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.line-1 {
    right: -100px;
    width: 100px;
    animation: lineFlow1 2s ease-in-out infinite;
}

.line-2 {
    right: -120px;
    width: 120px;
    animation: lineFlow2 2s ease-in-out infinite 0.5s;
}

.challenge-card:hover .connection-line {
    opacity: 1;
}

@keyframes lineFlow1 {
    0%, 100% { background-position: -100% 0; }
    50% { background-position: 100% 0; }
}

@keyframes lineFlow2 {
    0%, 100% { background-position: -120% 0; }
    50% { background-position: 120% 0; }
}

/* Journey Particles */
.journey-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.journey-particles::before,
.journey-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.journey-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.journey-particles::after {
    top: 70%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px) scale(0); opacity: 0; }
}

/* Crisis Indicator */
.crisis-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.5);
    border-radius: 10px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    animation: indicatorPulse 3s ease-in-out infinite;
}

.indicator-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.indicator-value {
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: bold;
    text-align: center;
}

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); border-color: rgba(255, 107, 107, 0.5); }
    50% { transform: scale(1.05); border-color: rgba(255, 107, 107, 0.8); }
}

/* Responsive Design for Problem Section */
@media (max-width: 1024px) {
    .problem-journey {
        height: 500px;
        perspective: 800px;
    }
    
    .challenge-card {
        width: 280px;
        height: 350px;
    }
    
    .card-1, .card-3 {
        transform: translateZ(50px) rotateY(0deg);
    }
    
    .card-1:hover, .card-3:hover {
        transform: translateZ(100px) rotateY(0deg) scale(1.05);
    }
}

@media (max-width: 768px) {
    .problem-journey {
        height: auto;
        perspective: none;
    }
    
    .journey-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        animation: none;
    }
    
    .challenge-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
        transform: none !important;
    }
    
    .challenge-card:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }
    
    .crisis-path {
        display: none;
    }
    
    .connection-line {
        display: none;
    }
    
    .crisis-indicator {
        position: relative;
        top: auto;
        right: auto;
        margin: 2rem auto 0;
        width: fit-content;
    }
}

/* Tab Section */
.tab-section {
    padding: 60px 0;
}

.tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--text-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tab-pane p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.demo-container {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.demo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
}

/* Features Section - Modern Interactive Design */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(22, 33, 62, 0.98) 50%,
        rgba(15, 52, 96, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: featureBadgePulse 3s ease-in-out infinite;
}

@keyframes featureBadgePulse {
    0%, 100% { transform: scale(1); border-color: rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.05); border-color: rgba(102, 126, 234, 0.6); }
}

.features-badge .badge-icon {
    font-size: 1.2rem;
}

.features-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-subtitle .highlight-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Features Showcase Grid */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card.modern-card {
    background: rgba(30, 30, 50, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.feature-card.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

/* Feature Visual */
.feature-visual {
    position: relative;
    margin-bottom: 2rem;
}

.feature-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: iconRingRotate 10s linear infinite;
}

.icon-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: iconRingSpin 3s linear infinite;
}

@keyframes iconRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes iconRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.feature-icon-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-modern {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    background: rgba(102, 126, 234, 0.2);
}

.feature-svg {
    width: 50px;
    height: 50px;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    opacity: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Feature Glow Effects */
.feature-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-glow-1 {
    top: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
}

.feature-glow-2 {
    top: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}

.feature-glow-3 {
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

.feature-glow-4 {
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
}

.feature-glow-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

.feature-glow-6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

.feature-card:hover .feature-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Feature Content */
.feature-content {
    text-align: center;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Feature Metrics */
.feature-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Platforms */
.feature-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: scale(1.2) rotate(5deg);
    background: rgba(59, 130, 246, 0.2);
}

/* Feature Code */
.feature-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.feature-code code {
    font-family: 'Courier New', monospace;
    color: #10b981;
    font-size: 0.9rem;
}

.code-status {
    color: #4caf50;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Feature Environments */
.feature-environments {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.env-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.env-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: envDotPulse 2s ease-in-out infinite;
}

.env-dot.dev {
    background: #3b82f6;
}

.env-dot.test {
    background: #f59e0b;
}

.env-dot.prod {
    background: #10b981;
}

@keyframes envDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

/* Feature Security */
.feature-security {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.security-icon {
    font-size: 1.5rem;
}

.security-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Feature Models */
.feature-models {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.model-chip {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    color: #a78bfa;
    font-weight: 600;
    transition: all 0.3s ease;
}

.model-chip:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

/* Feature Highlight Badge */
.feature-highlight {
    margin-top: 1rem;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Features CTA */
.features-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: ctaShine 4s ease-in-out infinite;
}

.features-cta .cta-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.features-cta .cta-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-cta .cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
    .features-showcase {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card.modern-card {
        padding: 2rem;
    }
    
    .feature-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .feature-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-platforms {
        flex-wrap: wrap;
    }
    
    .feature-environments {
        gap: 1rem;
    }
    
    .feature-security {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 3rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .features-cta {
        padding: 2rem;
    }
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.additional-features {
    margin-top: 3rem;
}

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

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.feature-item .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Perfect For Section - Interactive Personas */
.perfect-for {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(15, 52, 96, 0.95) 0%,
        rgba(22, 33, 62, 0.98) 50%,
        rgba(26, 26, 46, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.perfect-for::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.perfect-for-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.personas-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.personas-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.highlight-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.personas-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.5) 50%, transparent 100%);
}

/* Personas Showcase */
.personas-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.persona-card {
    background: rgba(30, 30, 50, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

.persona-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.persona-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(59, 130, 246, 0.5),
        rgba(139, 92, 246, 0.5),
        rgba(59, 130, 246, 0.5));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.persona-card:hover .persona-glow {
    opacity: 1;
    animation: personaGlow 2s ease-in-out infinite;
}

@keyframes personaGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Persona Avatar */
.persona-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: avatarRotate 10s linear infinite;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid transparent;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: avatarSpin 3s linear infinite;
}

@keyframes avatarRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes avatarSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.avatar-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-icon {
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

.persona-card:hover .persona-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Persona Icon Styles */
.briefcase-body { fill: #3b82f6; stroke: #1e40af; stroke-width: 2; }
.briefcase-handle { fill: #1e40af; }
.briefcase-lock { fill: #60a5fa; }
.briefcase-line { stroke: #60a5fa; stroke-width: 2; }

.coin-outer { fill: #f59e0b; stroke: #d97706; stroke-width: 2; }
.coin-inner { fill: #fbbf24; }
.coin-symbol { fill: #d97706; font-size: 20px; font-weight: bold; text-anchor: middle; }
.coin-shine { stroke: #fef3c7; stroke-width: 2; fill: none; }

.rocket-base { fill: #6b7280; }
.rocket-body { fill: #ef4444; stroke: #dc2626; stroke-width: 2; }
.rocket-window { fill: #60a5fa; }
.rocket-flame { fill: #f97316; }
.star { fill: #fbbf24; }

.target-outer { fill: none; stroke: #ef4444; stroke-width: 3; }
.target-middle { fill: none; stroke: #f97316; stroke-width: 2; }
.target-inner { fill: none; stroke: #fbbf24; stroke-width: 2; }
.target-center { fill: #ef4444; }
.target-crosshair { stroke: #6b7280; stroke-width: 2; }

.persona-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    opacity: 0;
    animation: personaPulse 3s ease-in-out infinite;
}

@keyframes personaPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Persona Content */
.persona-content {
    text-align: center;
}

.persona-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.persona-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.persona-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Personas CTA */
.personas-cta {
    text-align: center;
    padding: 3rem 0;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.personas-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-icon {
    font-size: 1.3rem;
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:active .button-ripple {
    width: 300px;
    height: 300px;
}

/* Responsive Design for Perfect For Section */
@media (max-width: 768px) {
    .personas-title {
        font-size: 2.5rem;
    }
    
    .personas-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
        transform: rotate(90deg);
    }
    
    .personas-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .persona-card {
        padding: 2rem;
    }
    
    .persona-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary.large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    margin-top: 100px;
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer three-column layout */
.footer-three-columns {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
    padding-top: 30px;
}

.footer-column-left {
    text-align: left;
}

.footer-column-center {
    text-align: center;
}

.footer-column-right {
    text-align: right;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
}

.company-details {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 12px;
}

.contact-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-info a {
    color: #a8b2ff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
}

.ai-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
}

.ai-notice a {
    color: #a8b2ff !important;
    text-decoration: underline !important;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-legal-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-legal-simple span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-simple a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-simple a:hover {
    color: #ffffff;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-three-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-column-left,
    .footer-column-center,
    .footer-column-right {
        text-align: center;
    }
    
    footer {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-legal-simple {
        flex-wrap: wrap;
        gap: 5px;
        padding: 0 10px;
        font-size: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-actions.mobile-active .btn-investor-portal {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tab-nav {
        flex-direction: column;
    }
    
    .features-grid,
    .benefits-grid,
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .benefit-card,
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .benefit-card,
    .audience-card {
        padding: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.back-link:hover {
    color: var(--text-primary);
}

.back-arrow {
    font-size: 16px;
    font-weight: bold;
}

.legal-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.legal-section .container {
    max-width: 800px;
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-section h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 15px 0;
    }
    
    .legal-section {
        padding: 30px 0;
    }
    
    .legal-section h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.solution-card:nth-child(even) {
    flex-direction: row-reverse;
}

.solution-icon {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.solution-content {
    flex: 1;
}

.solution-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Responsive adjustments for solutions */
@media (max-width: 768px) {
    .solution-card {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .solution-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
    }
    
    .solution-card p {
        font-size: 1rem;
    }
}

/* Channels Section */
.channels {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.05);
}

.channels h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.channels-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.channel-card:hover::before {
    left: 100%;
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.channel-card:nth-child(even) {
    flex-direction: row-reverse;
}

.channel-icon {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.channel-card:hover .channel-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.channel-content {
    flex: 1;
}

.channel-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Responsive adjustments for channels */
@media (max-width: 768px) {
    .channel-card {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .channel-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .channel-card h3 {
        font-size: 1.5rem;
    }
    
    .channel-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .channels-grid {
        gap: 2rem;
    }
    
    .channel-card {
        padding: 1.5rem;
    }
    
    .channel-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Investment & Growth Strategy Section - Complete CSS */
.investment-strategy {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(26, 26, 46, 0.98) 0%,
        rgba(22, 33, 62, 0.95) 50%,
        rgba(15, 52, 96, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.investment-strategy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.strategy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.strategy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: strategyBadgePulse 3s ease-in-out infinite;
}

@keyframes strategyBadgePulse {
    0%, 100% { transform: scale(1); border-color: rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.05); border-color: rgba(255, 215, 0, 0.6); }
}

.strategy-badge .badge-icon {
    font-size: 1.2rem;
}

.strategy-badge .badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.strategy-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Funding Targets */
.funding-targets {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.target-card {
    background: rgba(30, 30, 50, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff9800, #ffd700);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.target-card:hover::before {
    opacity: 0.3;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.target-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.target-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Growth Strategy Paths */
.growth-strategy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.strategy-path {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.strategy-path.horizontal {
    border-color: rgba(59, 130, 246, 0.3);
}

.strategy-path.vertical {
    border-color: rgba(139, 92, 246, 0.3);
}

.strategy-path:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.path-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.path-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
}

.strategy-path.horizontal .path-icon {
    background: rgba(59, 130, 246, 0.2);
}

.strategy-path.vertical .path-icon {
    background: rgba(139, 92, 246, 0.2);
}

.path-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    flex: 1;
}

.path-badge {
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.path-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Expansion Targets */
.expansion-targets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.target-icon {
    font-size: 1.5rem;
}

.target-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
}

.target-status {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
}

/* Industry Targets */
.industry-targets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.industry-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.industry-card:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.industry-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.industry-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.industry-potential {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8b5cf6;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

/* Success Outcomes */
.success-outcome {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.outcome-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.outcome-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.outcome-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.outcome-content strong {
    color: #4caf50;
}

.ownership-split {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.ownership-percent {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 0.5rem;
}

.ownership-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.franchise-model {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.franchise-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    min-width: 100px;
}

.franchise-icon {
    font-size: 2rem;
}

.franchise-region {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Investment Benefits */
.investment-benefits {
    margin-bottom: 4rem;
}

.investment-benefits h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.investment-benefits .benefit-card {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.investment-benefits .benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

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

.investment-benefits .benefit-card h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.investment-benefits .benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Investment CTA */
.investment-cta {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.investment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: investmentShine 4s ease-in-out infinite;
}

@keyframes investmentShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.investment-cta .cta-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.investment-cta .cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investment-cta .cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.investment-cta .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.investment-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.investment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Responsive Design for Investment Section */
@media (max-width: 1024px) {
    .growth-strategy {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industry-targets {
        grid-template-columns: 1fr;
    }
    
    .ownership-split {
        flex-direction: column;
        gap: 1rem;
    }
    
    .franchise-model {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .investment-strategy {
        padding: 60px 0;
    }
    
    .strategy-title {
        font-size: 2.5rem;
    }
    
    .strategy-subtitle {
        font-size: 1.1rem;
    }
    
    .funding-targets {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .target-card {
        width: 100%;
        max-width: 300px;
    }
    
    .target-amount {
        font-size: 2rem;
    }
    
    .strategy-path {
        padding: 2rem;
    }
    
    .path-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .path-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .path-header h3 {
        font-size: 1.5rem;
    }
    
    .investment-benefits h3 {
        font-size: 2rem;
    }
    
    .investment-cta {
        padding: 2rem;
    }
    
    .investment-cta .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .investment-cta .btn-primary,
    .investment-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .strategy-header {
        margin-bottom: 3rem;
    }
    
    .strategy-title {
        font-size: 2rem;
    }
    
    .target-card {
        padding: 1.5rem;
    }
    
    .target-amount {
        font-size: 1.5rem;
    }
    
    .strategy-path {
        padding: 1.5rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-icon {
        font-size: 1.5rem;
    }
    
    .success-outcome {
        padding: 1.5rem;
    }
    
    .ownership-percent {
        font-size: 1.5rem;
    }
    
    .franchise-item {
        padding: 0.75rem;
        min-width: 80px;
    }
    
    .franchise-icon {
        font-size: 1.5rem;
    }
    
    .investment-benefits .benefit-card {
        padding: 1.5rem;
    }
    
    .investment-benefits .benefit-icon {
        font-size: 2rem;
    }
    
    .investment-cta .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .solutions-grid {
        gap: 2rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Investor Message Styles */
.investor-message {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.message-card {
    background: rgba(30, 30, 50, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.message-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-align: left;
}

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

.message-actions .btn-primary,
.message-actions .btn-secondary {
    min-width: 180px;
}

/* Responsive styles for investor message */
@media (max-width: 768px) {
    .investor-message {
        padding: 1rem 0;
        min-height: 50vh;
    }
    
    .message-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .message-icon {
        font-size: 3rem;
    }
    
    .message-card h2 {
        font-size: 1.5rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .message-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .message-actions .btn-primary,
    .message-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}