/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0c0c0e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #9828c1;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    color: #9828c1;
}

.white-text {
    color: #ffffff;
}

/* Button Styles */
.btn-primary {
    background: #9828c1;
    color: #ffffff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(152, 40, 193, 0.4);
    background: #7d1f9f;
}

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    background: transparent;
    color: #cccccc;
    border: 1px solid #333333;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #1a1a1a;
    border-color: #9828c1;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(169, 70, 255, 0.3);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(152, 40, 193, 0.1);
    border-color: #9828c1;
    box-shadow: 0 0 15px rgba(152, 40, 193, 0.2);
}

.btn-outline.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 14, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(12, 12, 14, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: #888888;
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #9828c1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #a946ff, #e639a8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Animación de Hamburguesa a X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(12, 12, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-subtitle {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(169, 70, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mockup-container {
        max-width: 180px;
        order: -1;
    }
    
    .phone-mockup {
        border-radius: 16px;
    }
    
    .phone-frame {
        padding: 0.5rem;
    }
    
    .translation-feed {
        height: 180px;
        padding: 0.5rem;
    }
    
    .translation-card {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .card-message {
        font-size: 0.75rem;
    }
    
    .language-label {
        font-size: 0.6rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .mockup-container {
        max-width: 160px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .benefit-card, .plan-card, .step-card {
        padding: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.8s both;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.phone-mockup {
    position: relative;
    z-index: 3;
}

.phone-frame {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
    background: #1a1b23;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #a946ff, #e639a8);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.app-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
}

.translation-feed {
    padding: 1rem;
    height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.translation-card {
    background: rgba(47, 51, 65, 0.8);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideInMessage 0.5s ease;
    backdrop-filter: blur(10px);
}

.translation-card.speaker-card {
    background: rgba(65, 75, 95, 0.9);
    border: 1px solid rgba(169, 70, 255, 0.2);
}

.translation-card.translation-spanish {
    background: rgba(98, 46, 84, 0.9);
    border: 1px solid rgba(230, 57, 168, 0.3);
}

.translation-card.translation-french {
    background: rgba(75, 46, 98, 0.9);
    border: 1px solid rgba(169, 70, 255, 0.3);
}

.card-header {
    margin-bottom: 0.75rem;
}

.language-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0a8ba;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.translation-spanish .language-label {
    color: #e639a8;
}

.translation-french .language-label {
    color: #a946ff;
}

.card-message {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.live-status {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #27ca3f;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.live-text {
    color: #27ca3f;
    font-size: 0.75rem;
    font-weight: 600;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes slideInMessage {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.background-scene {
    position: absolute;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, rgba(169, 70, 255, 0.1), rgba(230, 57, 168, 0.1));
    border-radius: 20px;
    z-index: 1;
    overflow: hidden;
}

.scene-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(12, 12, 14, 0.8) 70%);
}

.conference-visual {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.speaker-silhouette {
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin: 0 auto;
    position: relative;
}

.speaker-silhouette::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.audience-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.audience-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: audiencePulse 2s ease-in-out infinite;
}

.audience-dot:nth-child(2) { animation-delay: 0.4s; }
.audience-dot:nth-child(3) { animation-delay: 0.8s; }
.audience-dot:nth-child(4) { animation-delay: 1.2s; }
.audience-dot:nth-child(5) { animation-delay: 1.6s; }

@keyframes audiencePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(169, 70, 255, 0.05) 0%, transparent 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(233, 57, 168, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Mobile Responsive */
@media (max-width: 768px) {
    .benefits {
        padding: 4rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* How it Works Section */
.how-it-works {
    padding: 6rem 0;
    background: radial-gradient(ellipse at center, rgba(152, 40, 193, 0.03) 0%, transparent 70%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Steps Mobile Responsive */
@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .mockup-window {
        max-width: 150px;
    }
    
    .demo-description {
        font-size: 0.85rem;
    }
}

/* Medium screens - 2x2 grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

.step-card {
    background: rgba(152, 40, 193, 0.1);
    border: 1px solid rgba(152, 40, 193, 0.2);
    border-radius: 20px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.step-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-card.animate .mockup-window {
    transform: rotate(10deg);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(152, 40, 193, 0.2);
    border-color: #9828c1;
}

.step-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: #9828c1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.step-content {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.step-icon {
    width: 32px;
    height: 32px;
    background: rgba(152, 40, 193, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.875rem;
}

.step-mockup {
    display: flex;
    justify-content: center;
}

.mockup-window {
    background: rgba(26, 27, 35, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.window-header {
    background: #9828c1;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.window-dots {
    display: flex;
    gap: 0.25rem;
}

.window-title {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.window-content {
    padding: 1.5rem;
}

.form-field {
    background: rgba(152, 40, 193, 0.1);
    border: 1px solid rgba(152, 40, 193, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.field-label {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
}

.qr-window .window-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    position: relative;
}

.qr-pattern {
    width: 100%;
    height: 100%;
    position: relative;
}

.qr-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #000000;
    border: 2px solid #000000;
}

.qr-corner:nth-child(1) { top: 0; left: 0; }
.qr-corner:nth-child(2) { top: 0; right: 0; }
.qr-corner:nth-child(3) { bottom: 0; left: 0; }

.qr-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #000000;
    border-radius: 4px;
}

.mobile-window .window-content {
    padding: 1rem;
}

.mobile-feed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feed-item {
    background: rgba(152, 40, 193, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-lang {
    background: #9828c1;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.feed-text {
    color: #ffffff;
    font-size: 0.7rem;
    flex: 1;
}

/* Screen Display Styles */
.screen-display {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

.speaker-view {
    background: rgba(152, 40, 193, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(152, 40, 193, 0.2);
}

.speaker-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.current-lang {
    font-size: 0.6rem;
    font-weight: 600;
    color: #9828c1;
}

.speaker-text p {
    color: #ffffff;
    font-size: 0.7rem;
    margin: 0;
}

.translation-bar {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.translation-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
}

.lang-flag {
    font-size: 0.6rem;
    font-weight: 600;
    color: #9828c1;
    min-width: 24px;
}

.translation-text {
    color: #ffffff;
    font-size: 0.65rem;
    flex: 1;
}

/* Plans Section */
.plans {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(169, 70, 255, 0.05) 100%);
}

.plans-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.plan-card.animate {
    opacity: 1;
    transform: scale(1);
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(233, 57, 168, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.demo-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #a946ff, #e639a8);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(10deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a946ff, #e639a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: #cccccc;
    font-size: 0.875rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.beta-notice {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(169, 70, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(169, 70, 255, 0.2);
}

.beta-notice p {
    color: #cccccc;
    font-size: 0.875rem;
    line-height: 1.6;
}

.demo-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #888888;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 300px;
}

.link-group h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #a946ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(169, 70, 255, 0.1);
    border-color: #a946ff;
    color: #a946ff;
    transform: translateY(-2px);
}

.footer-copyright {
    color: #888888;
    font-size: 0.875rem;
}

/* Pricing Mobile Responsive */
@media (max-width: 768px) {
    .plans {
        padding: 4rem 0;
    }
    
    .plan-card {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .demo-ribbon {
        top: 10px;
        right: -5px;
        padding: 0.25rem 1rem;
        font-size: 0.65rem;
    }
    
    .plan-name {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .beta-notice {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .beta-notice p {
        font-size: 0.8rem;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-social {
        order: -1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mockup-container {
        max-width: 300px;
    }
    
    .background-scene {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .step-connector {
        order: 2;
        margin: 1rem auto;
    }
    
    .step-number {
        order: 1;
    }
    
    .step-content {
        order: 3;
    }
    
    .step-visual {
        order: 4;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-card,
    .plan-card {
        padding: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .mockup-container {
        max-width: 280px;
    }
    
    .phone-frame {
        padding: 15px;
    }
    
    .translation-feed {
        height: 250px;
        padding: 0.75rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* High contrast mode accessibility */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #ffffff;
    }
    
    .benefit-card,
    .plan-card,
    .step-content {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}
