/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 100px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 119, 48, 0.1);
    border: 1px solid rgba(255, 119, 48, 0.3);
    color: #FF7730;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF7730;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #808080;
}

/* Demo Section */
.demo-section {
    margin-bottom: 100px;
}

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

.demo-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-header p {
    font-size: 1.2rem;
    color: #B0B0B0;
}

.demo-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.demo-step {
    flex: 1;
    text-align: center;
}

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

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

.demo-arrow {
    font-size: 2rem;
    color: #FF7730;
    font-weight: bold;
}

.demo-benefit {
    text-align: center;
    font-size: 1.1rem;
    color: #B0B0B0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
}

/* Terminal */
.terminal {
    background: #1A1A1A;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.terminal-header {
    background: #2A2A2A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #FF5F56; }
.control.yellow { background: #FFBD2E; }
.control.green { background: #27CA3F; }

.terminal-title {
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
}

.terminal-body {
    padding: 16px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 8px;
}

.prompt {
    color: #FF7730;
    margin-right: 8px;
}

.command {
    color: #FFFFFF;
}

.output {
    margin-left: 16px;
}

.text-success {
    color: #51CF66;
}

/* Context Preview */
.context-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.context-header {
    background: rgba(255, 119, 48, 0.1);
    border-bottom: 1px solid rgba(255, 119, 48, 0.2);
    padding: 12px 16px;
    font-weight: 600;
    color: #FF7730;
    font-size: 0.9rem;
}

.context-body {
    padding: 16px;
    font-size: 0.85rem;
}

.context-line {
    margin-bottom: 8px;
    color: #E5E5E5;
}

.context-more {
    margin-top: 12px;
    color: #B0B0B0;
    font-style: italic;
}

/* Chat Preview */
.chat-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.chat-message {
    margin-bottom: 16px;
}

.chat-message.user .message-content {
    background: rgba(255, 119, 48, 0.1);
    border: 1px solid rgba(255, 119, 48, 0.2);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #E5E5E5;
}

.chat-message.ai .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #E5E5E5;
}

/* Problem/Solution */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.problem-card, .solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 119, 48, 0.3);
    box-shadow: 0 20px 40px rgba(255, 119, 48, 0.1);
}

.problem-card h3 {
    color: #FF6B6B;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-card h3 {
    color: #51CF66;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Pricing Section */
.pricing-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    margin-bottom: 100px;
    backdrop-filter: blur(20px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B0B0B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #B0B0B0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-option {
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.billing-option.active {
    background: #FF7730;
    color: #FFFFFF;
}

.savings-badge {
    background: linear-gradient(135deg, #51CF66, #40C057);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 119, 48, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 119, 48, 0.4);
    box-shadow: 0 30px 60px rgba(255, 119, 48, 0.1);
}

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

.pricing-card.popular {
    border-color: #FF7730;
    background: rgba(255, 119, 48, 0.05);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF7730, #FF8A50);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.plan-description {
    color: #B0B0B0;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: #FF7730;
}

.price-period {
    font-size: 1rem;
    color: #808080;
}

/* Trust Section */
.trust-section {
    text-align: center;
    margin-bottom: 80px;
}

/* Testimonial */
.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 100px;
    backdrop-filter: blur(20px);
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #E5E5E5;
}

.testimonial-author {
    color: #B0B0B0;
    font-size: 0.95rem;
}