/* AI Chatbot Widget Landing Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global hover cursor */
a, button, .clickable {
    cursor: pointer;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

.cta-header {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-header:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.cta-header:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .highlight {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.7);
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: transparent;
    border-color: #8b5cf6;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    padding: 4rem 0;
    margin-top: 0.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat:hover .stat-label {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-text p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.welcome-image {
    position: relative;
}

.chat-preview {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.chat-message {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
}

.chat-message::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #8b5cf6;
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.8);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: #0a0a0a;
}

/* Code Section */
.code-section {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.8);
}

.code-container {
    background: #1e293b;
    border-radius: 15px;
    padding: 2rem;
    overflow-x: auto;
    margin-top: 2rem;
}

.code-container pre {
    color: #e2e8f0;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-container .comment {
    color: #64748b;
}

.code-container .string {
    color: #34d399;
}

.code-container .keyword {
    color: #60a5fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    border-radius: 15px;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover .step-number {
    transform: rotateY(360deg) scale(1.2);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.step:hover .step-number::before {
    opacity: 0;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.step:hover .step-title {
    color: #a855f7;
    transform: translateY(-2px);
}

.step-description {
    color: #cccccc;
    transition: all 0.4s ease;
}

.step:hover .step-description {
    color: #e2e8f0;
    transform: translateY(-2px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(20, 20, 20, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8b5cf6;
}

.testimonial-text {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #ffffff;
}

.testimonial-role {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: height 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px) rotateY(5deg);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    background: rgba(25, 25, 25, 0.9);
}

.service-card:hover::before {
    height: 8px;
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateZ(10deg);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 0;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.service-card:hover .service-title {
    transform: translateX(5px);
    color: #a855f7;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-description {
    color: #e2e8f0;
    transform: translateX(5px);
}

.service-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.service-link::after {
    content: '→';
    transition: transform 0.4s ease;
}

.service-link:hover {
    color: #a855f7;
    transform: translateX(8px);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Platform Section */
.platform {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.8);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-phones {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.phone-mockup {
    width: 120px;
    height: 240px;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.platform-features {
    list-style: none;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.platform-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Competitive Advantages */
.advantages {
    padding: 100px 0;
    background: #0a0a0a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantages-list {
    list-style: none;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.advantage-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.advantage-content p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.8);
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.3);
    background: rgba(25, 25, 25, 0.9);
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}

.testimonial-card:hover .author-avatar::before {
    opacity: 1;
}

.author-info h5 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #8b5cf6;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #0a0a0a;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
    padding-left: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-chat-preview {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 400px;
    position: relative;
}

.cta-chat-preview::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 20px;
    z-index: -1;
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #8b5cf6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    transition: width 0.4s ease;
}

.footer-section a:hover {
    color: #8b5cf6;
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666666;
}

.footer-cta {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.footer-cta:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.footer-cta:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .welcome-content,
    .platform-content,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-phones {
        order: -1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient text animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background: linear-gradient(-45deg, #8b5cf6, #a855f7, #c084fc, #8b5cf6);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating animation for elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse glow animation */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Shake animation for extra attention */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Wobble animation */
@keyframes wobble {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
    100% { transform: rotate(0deg); }
}

/* Enhanced hover interactions */
.hero h1:hover {
    cursor: default;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    cursor: pointer;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    transition: text-shadow 0.3s ease;
}

/* Add special hover effects to section titles */
.section-title:hover {
    cursor: default;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Floating effect for stats when not being hovered */
.stat {
    animation: float 3s ease-in-out infinite;
}

.stat:hover {
    animation: none; /* Stop floating when hovered */
}

/* Extra visual feedback for all clickable elements */
button, .btn-primary, .btn-secondary, .cta-header, .footer-cta {
    position: relative;
}

button:active, .btn-primary:active, .btn-secondary:active, .cta-header:active, .footer-cta:active {
    animation: bounce 0.3s ease;
}

/* Enhance the glow effects */
.service-card:hover,
.step:hover,
.testimonial-card:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Add subtle animations to prevent static appearance */
.service-icon {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.step-number {
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.author-avatar {
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 1.5s;
}
