* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section - BOLD & ATTENTION-GRABBING */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #fbbf24;
    color: #1e3a8a;
}

.btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

.btn-large {
    padding: 22px 60px;
    font-size: 20px;
}

/* Examples Section - CLEAN SHOWCASE */
.examples-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.examples-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Template Tabs - MODERN TOGGLE */
.template-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    background: white;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.tab-btn {
    flex: 1;
    padding: 18px 40px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.tab-btn:hover {
    color: #1e293b;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Examples Grid - STUNNING CARDS */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 100%;
}

.example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.example-card.featured {
    border: 3px solid #fbbf24;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.25);
}

.example-card.featured:hover {
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.35);
}

.example-preview {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.example-content {
    padding: 30px;
}

.package-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.package-badge.standard {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.package-badge.premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
}

.example-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1e293b;
    font-weight: 700;
}

.example-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.btn-view {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-view:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    z-index: 10;
}

/* Why Section - COMPELLING BENEFITS */
.why-section {
    padding: 100px 20px;
    background: white;
}

.why-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s;
}

.why-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

/* Included Section - FEATURE CHECKLIST */
.included-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.included-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    font-weight: 700;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.check-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.included-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.included-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* Pricing Section - CLEAR VALUE */
.pricing-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.pricing-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 3px solid #fbbf24;
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.25);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #1e293b;
    font-weight: 700;
}

.price {
    text-align: center;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: #3b82f6;
}

.price-label {
    font-size: 16px;
    color: #64748b;
    margin-top: 5px;
}

.price-plus {
    text-align: center;
    font-size: 32px;
    color: #cbd5e0;
    margin: 15px 0;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin: 35px 0;
    padding: 0;
}

.pricing-features li {
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 16px;
    color: #475569;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
}

.btn-premium:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.guarantee {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.guarantee h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1e293b;
}

.guarantee p {
    font-size: 18px;
    color: #64748b;
}

/* How It Works - SIMPLE STEPS */
.how-section {
    padding: 100px 20px;
    background: white;
}

.how-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: #1e293b;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.step p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
}

/* CTA Section - FINAL PUSH */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section > p {
    font-size: 22px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.cta-note {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-note a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-feature {
        text-align: center;
    }

    .examples-section h2,
    .why-section h2,
    .pricing-section h2,
    .how-section h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .examples-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .template-tabs {
        max-width: 100%;
        padding: 6px;
    }

    .example-card,
    .pricing-card {
        margin-left: 0;
        margin-right: 0;
    }

    .popular-badge {
        font-size: 11px;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Who Section */
.who-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.who-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d3748;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.who-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.who-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.who-card p {
    color: #718096;
    line-height: 1.7;
}

/* Demos Section */
.demos-section {
    padding: 80px 20px;
    background: white;
}

.demos-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

.demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.demo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.demo-preview {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.demo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-card h3 {
    padding: 20px 25px 10px;
    font-size: 24px;
    color: #2d3748;
}

.demo-card p {
    padding: 0 25px 20px;
    color: #718096;
    line-height: 1.6;
}

.btn-demo {
    display: block;
    margin: 0 25px 25px;
    padding: 12px;
    background: #667eea;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: #764ba2;
    transform: translateX(5px);
}

.coming-soon {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.coming-soon h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.coming-soon p {
    font-size: 18px;
    color: #718096;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.features-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d3748;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.feature p {
    color: #718096;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d3748;
}

.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.pricing-col {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
}

.highlight-col {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.profit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-col h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.price-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
}

.highlight-col .price-box {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-label {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.price-divider {
    font-size: 24px;
    margin: 10px 0;
    opacity: 0.6;
}

.price-features {
    list-style: none;
    padding: 0;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.highlight-col .price-features li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.profit-box {
    background: rgba(255, 215, 0, 0.2);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profit-label {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.profit-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffd700;
}

.profit-sublabel {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.profit-divider {
    font-size: 24px;
    margin: 10px 0;
}

.volume-pricing {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

.volume-pricing h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d3748;
}

.volume-pricing p {
    font-size: 18px;
    color: #718096;
    margin: 10px 0;
}

/* How It Works */
.how-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.how-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d3748;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.step p {
    color: #718096;
    line-height: 1.7;
}

/* White Label Section */
.white-label-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.white-label-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
}

.white-label-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.white-label-text h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px;
}

.check-list li {
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.emphasis {
    font-size: 24px;
    font-weight: 500;
    margin-top: 30px;
    color: #ffd700;
}

/* ROI Section */
.roi-section {
    padding: 80px 20px;
    background: white;
}

.roi-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2d3748;
}

.roi-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.roi-card {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.roi-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.roi-card h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.roi-subtitle {
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.roi-numbers {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.roi-card.featured .roi-numbers {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.roi-line {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.roi-card.featured .roi-line {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.roi-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    font-size: 20px;
    font-weight: 700;
}

.roi-note {
    text-align: center;
    margin-top: 40px;
    color: #718096;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d3748;
}

.cta-section > p {
    font-size: 20px;
    color: #718096;
    margin-bottom: 60px;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-option {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-option h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2d3748;
}

.cta-option p {
    color: #718096;
    margin-bottom: 25px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d3748;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d3748;
}

.faq-item p {
    color: #718096;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    padding: 60px 20px 30px;
}

/* Template Tabs */
.template-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 40px;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

/* Package Badges */
.package-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.package-badge.standard {
    background: #3b82f6;
    color: white;
}

.package-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.example-card.featured {
    border: 3px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.example-content {
    position: relative;
}

footer {
    background: #2d3748;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-comparison,
    .roi-scenarios {
        grid-template-columns: 1fr;
    }

    .highlight-col,
    .roi-card.featured {
        transform: scale(1);
    }

    .demos-grid,
    .who-grid,
    .features-grid,
    .steps-grid,
    .faq-grid,
    .cta-options {
        grid-template-columns: 1fr;
    }
}