.hero {
    padding: 80px 0 60px;
    background: linear-gradient(165deg, #f5f6f8 0%, #fafafa 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247,147,26,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247,147,26,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 800px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 24px 0 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.trust-item .icon {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.stat-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 8px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 20px;
}

.step-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.7;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(247,147,26,0.15);
    background: rgba(247,147,26,0.08);
    padding: 10px 20px;
    border-radius: 12px;
    letter-spacing: -2px;
}

.step-card h3 { margin-top: 4px; }

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.supported-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.supported-item {
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.supported-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.testimonial-card {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.live-support-box {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 60px 48px;
    border-radius: var(--radius);
    border: 1px solid #2a2a2a;
    box-shadow: var(--shadow-hover);
}

.live-support-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.live-support-content p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 24px;
}

.live-badge {
    display: inline-block;
    background: #28a745;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.live-support-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.ls-feature {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #2a2a2a;
    font-size: 0.95rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.faq-item {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-box {
    text-align: center;
    padding: 60px 40px;
}

.contact-box .section-title { color: #ffffff; }
.contact-box .section-sub { color: #cccccc; margin: 0 auto 32px; }

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #ffffff;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.contact-method h4 {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 2px;
}

.contact-method a,
.contact-method span {
    color: #ffffff;
    font-size: 1rem;
}

.contact-method a:hover { color: var(--primary); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero { padding: 40px 0; }
    .trust-badges { gap: 16px; }
    .trust-item { padding: 8px 16px; font-size: 0.9rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .live-support-box { padding: 40px 24px; }
    .live-support-content h2 { font-size: 1.8rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-methods { flex-direction: column; align-items: center; gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.5rem; }
}