/* Phase 1 Professional Enhancements */

/* Hero Section Improvements */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(45deg, #00ff41, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #00ff41;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.trust-item i {
    color: #00ff41;
    font-size: 1.1rem;
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(45deg, #00ff41, #00d4ff);
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    min-width: 250px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.4);
}

.cta-primary small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-secondary {
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.terminal-demo {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.terminal-header {
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px 5px 0 0;
    font-size: 0.7rem;
}

.terminal-content {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 0 0 5px 5px;
    min-height: 200px;
}

.command-line {
    color: #00ff41;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.command-line:nth-child(1) { animation-delay: 0.5s; }
.command-line:nth-child(2) { animation-delay: 1.5s; }
.command-line:nth-child(3) { animation-delay: 2.5s; }
.command-line:nth-child(4) { animation-delay: 3.5s; }

.command-line.success {
    color: #00d4ff;
}

.cursor {
    color: #00ff41;
    animation: blink 1s infinite;
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
}

.value-item.featured {
    border: 2px solid #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

.value-icon {
    font-size: 3rem;
    color: #00ff41;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-item ul {
    list-style: none;
    padding: 0;
}

.value-item li {
    color: #aaa;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.value-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff41;
    font-weight: bold;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px solid #333;
}

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

.proof-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ff41;
    margin-bottom: 5px;
}

.proof-text {
    color: #ccc;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.newsletter-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-benefits span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #333;
    transform: translateY(-2px);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Quick Start Enhancements */
.quick-start {
    padding: 100px 0;
    background: #0f0f0f;
}

.quick-start-header {
    text-align: center;
    margin-bottom: 60px;
}

.quick-start-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.quick-start-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: #00ff41;
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff41, #00d4ff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.code-snippet {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    position: relative;
    font-family: 'Courier New', monospace;
}

.code-snippet code {
    color: #00ff41;
    font-size: 0.9rem;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00ff41;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: #00d4ff;
    transform: translateY(-2px);
}

/* FAQ Preview */
.faq-preview {
    padding: 80px 0;
    background: #1a1a2e;
}

.faq-preview h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00ff41;
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #00ff41;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #00ff41;
    border: 2px solid #00ff41;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-link:hover {
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .social-proof {
        gap: 30px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
}

/* Copy to clipboard function */
.copy-success {
    background: #00ff41 !important;
    color: #000 !important;
}