:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 0),
                        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 50px 50px, 30px 30px;
    z-index: -1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Animated Icons Container */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: floatComplex 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Individual Icon Animations */
.icon-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.3), rgba(79, 70, 229, 0.3));
}

.icon-2 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.3), rgba(5, 150, 105, 0.3));
}

.icon-3 {
    width: 70px;
    height: 70px;
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.3));
}

.icon-4 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.3), rgba(219, 39, 119, 0.3));
}

.icon-5 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 5%;
    animation-delay: 4s;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.3), rgba(124, 58, 237, 0.3));
}

.icon-6 {
    width: 85px;
    height: 85px;
    top: 45%;
    right: 5%;
    animation-delay: 5s;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.3), rgba(2, 132, 199, 0.3));
}

.icon-7 {
    width: 75px;
    height: 75px;
    bottom: 15%;
    left: 25%;
    animation-delay: 1.5s;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.3), rgba(21, 128, 61, 0.3));
}

.icon-8 {
    width: 95px;
    height: 95px;
    top: 65%;
    right: 25%;
    animation-delay: 3.5s;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(234, 88, 12, 0.3));
}

/* Main Feature Card */
.main-feature-card {
    background: rgba(26, 202, 70, 0.603);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-illustration {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    transform: perspective(1000px) translateZ(0);
    animation: floatComplex 6s ease-in-out infinite;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-badge {
    position: absolute;
    left: 20px;
    bottom: -20px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(24, 22, 22, 0.95);
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-10px);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-badge.badge-secondary {
    left: auto;
    right: 20px;
}

.main-feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: white;
    animation: bounceRotate 3s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-light-custom {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    transform: translateZ(0);
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66%;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.hero-badge.badge-secondary {
    left: auto;
    right: 16px;
}

@media (max-width: 992px) {
    .hero-illustration {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--light);
}

.shape-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    margin-top: -60px;
}

.shape-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.shape-divider path {
    fill: var(--light);
}

.cta-strip {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cta-subtitle {
    opacity: 0.9;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}


.stat-item {
    background: rgba(255,255,255,0.9);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.stats-section .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker) 0%, #1e293b 100%);
  
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.testimonial-scroller {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation: marquee 40s linear infinite;
}

.testimonial-track .testimonial-card {
    flex: 0 0 auto;
    min-width: 320px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .testimonial-track .testimonial-card { min-width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track { animation: none; }
}

/* Footer */
.footer {
    background: var(--darker);
    color: white;
    padding: 80px 0 0;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    color: #94a3b8;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.15);
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 0),
                        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 50px 50px, 30px 30px;
    z-index: 0;
}

.contact-card {
    position: relative;
    z-index: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.5) !important;
    color: white !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

/* Pricing Section */
.home-pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: 100%;
}

.home-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.home-pricing-card:hover::before {
    transform: scaleX(1);
}

.home-pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.35);
    border-color: #667eea;
}

.popular-home-plan {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid #667eea;
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.popular-home-plan .home-pricing-name,
.popular-home-plan .home-pricing-desc,
.popular-home-plan .home-feature-item {
    color: white;
}

.popular-home-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: homePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes homePulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.home-pricing-header {
    margin-bottom: 1.5rem;
}

.home-pricing-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    animation: homeFloat 3s ease-in-out infinite;
}

.popular-home-plan .home-pricing-icon {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@keyframes homeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

.home-pricing-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    color: #1e293b;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popular-home-plan .home-pricing-name {
    -webkit-text-fill-color: white;
}

.home-pricing-price {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.popular-home-plan .home-pricing-price {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.home-pricing-price .home-currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: #667eea;
}

.popular-home-plan .home-pricing-price .home-currency {
    color: white;
}

.home-pricing-price .home-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #1e293b;
    display: inline-block;
}

.popular-home-plan .home-pricing-price .home-amount {
    color: white;
}

.home-pricing-price .home-period {
    font-size: 1.1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.popular-home-plan .home-pricing-price .home-period {
    color: rgba(255, 255, 255, 0.9);
}

.home-pricing-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.home-pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.home-feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #1e293b;
    transition: all 0.3s ease;
}

.home-feature-item:hover {
    transform: translateX(8px);
    color: #667eea;
}

.home-feature-item i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    animation: homeCheckPulse 2s ease-in-out infinite;
}

.popular-home-plan .home-feature-item i {
    color: #fbbf24;
}

@keyframes homeCheckPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.home-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.home-pricing-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.home-pricing-btn:hover::before {
    width: 400px;
    height: 400px;
}

.home-pricing-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.home-pricing-btn span,
.home-pricing-btn i {
    position: relative;
    z-index: 1;
}

.home-pricing-btn i {
    transition: transform 0.3s ease;
}

.home-pricing-btn:hover i {
    transform: translateX(8px);
}

.btn-home-popular {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-home-popular:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: var(--primary);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatComplex {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-3deg) scale(1.1);
    }
    75% {
        transform: translateY(-15px) translateX(5px) rotate(2deg) scale(1.05);
    }
}

@keyframes bounceRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 25px 80px rgba(99, 102, 241, 0.3);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Icon-specific animations */
.fa-comments { animation: shake 2s ease-in-out infinite; }
.fa-robot { animation: spinSlow 8s linear infinite; }
.fa-bolt { animation: bounceRotate 2s ease-in-out infinite; }
.fa-chart-line { animation: floatComplex 5s ease-in-out infinite; }
.fa-headset { animation: shake 3s ease-in-out infinite; }
.fa-tachometer-alt { animation: bounceRotate 2.5s ease-in-out infinite; }
.fa-cloud { animation: floatComplex 6s ease-in-out infinite; }
.fa-shield-alt { animation: spinSlow 10s linear infinite; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .main-feature-card {
        margin-top: 2rem;
        padding: 30px 20px;
    }
    
    .floating-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}



/* Stats Section */
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-bottom: 8px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-title {
    color: white;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 10px;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}


