/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Display Optimization */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #667eea;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon-placeholder {
    font-size: 60px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.nav-logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.nav-logo h2 {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #007bff 0%, #8a2be2 50%, #dc3545 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: -0.3px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.06);
}

.nav-link.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.cta-btn {
    background: #007bff;
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 123, 255, 0.25);
    font-weight: 600;
}

.cta-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
}

.cta-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 55px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title:not(:has(.gradient-text)) {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff, #8a2be2, #dc3545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    min-width: 300px;
    text-align: left;
}

.gradient-text.typewriter {
    animation: typewriter 2s steps(20) forwards;
}

.gradient-text.blur-fade {
    animation: blurFade 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gradient-text.scramble {
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes typewriter {
    0% { opacity: 0; }
    1% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes blurFade {
    0% { 
        filter: blur(20px); 
        opacity: 0; 
        transform: translateY(10px) scale(0.9); 
    }
    50% {
        filter: blur(5px);
        opacity: 0.5;
    }
    100% { 
        filter: blur(0); 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}



@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102,126,234,0.4);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(102,126,234,0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.stat p {
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-image {
    position: relative;
    height: 600px;
    width: 100%;
}

.hero-image svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-image svg path {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 0.5;
    opacity: 0.4;
}

.hero-image svg circle {
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(102,126,234,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    max-width: 150px;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.8);
}

.floating-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102,126,234,0.4), 0 0 40px rgba(102,126,234,0.3);
    border: 2px solid rgba(102,126,234,0.3);
    animation: cardGlow 1.5s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { box-shadow: 0 20px 50px rgba(102,126,234,0.4), 0 0 40px rgba(102,126,234,0.3); }
    50% { box-shadow: 0 20px 50px rgba(102,126,234,0.6), 0 0 60px rgba(102,126,234,0.5); }
}

.floating-card lottie-player {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.floating-card:hover lottie-player {
    transform: scale(1.1) rotate(5deg);
}

.floating-card span {
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.floating-card:hover span {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
    transform: scale(1.05);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

.mini-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 0.6rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatSpin 8s ease-in-out infinite;
    z-index: 2;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
}

.mini-card i {
    font-size: 1.1rem;
    animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.mini-1 i { color: #00d4ff; filter: drop-shadow(0 0 10px #00d4ff); }
.mini-2 i { color: #00ff88; filter: drop-shadow(0 0 10px #00ff88); }
.mini-3 i { color: #ffeb3b; filter: drop-shadow(0 0 10px #ffeb3b); }
.mini-4 i { color: #00e5ff; filter: drop-shadow(0 0 10px #00e5ff); }
.mini-5 i { color: #e040fb; filter: drop-shadow(0 0 10px #e040fb); }
.mini-7 i { color: #ff1744; filter: drop-shadow(0 0 10px #ff1744); }

.mini-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mini-1 { top: 5%; right: 30%; animation-delay: 0.5s; }
.mini-2 { top: 20%; right: 8%; animation-delay: 1.5s; }
.mini-3 { top: 65%; right: 35%; animation-delay: 2.5s; }
.mini-4 { bottom: 8%; right: 20%; animation-delay: 3.5s; }
.mini-5 { top: 8%; left: 30%; animation-delay: 1s; }
.mini-6 { bottom: 20%; left: 8%; animation-delay: 2s; }
.mini-7 { top: 35%; right: 5%; animation-delay: 3s; }
.mini-8 { top: 60%; left: 5%; animation-delay: 4s; }

@keyframes floatSpin {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(3deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 30px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1px;
    color: #333;
}

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

/* Products Section */
.products {
    background: #f8f9fa;
}

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

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.product-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.product-icon lottie-player {
    margin: 0 auto;
    width: 80px !important;
    height: 80px !important;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-card > p {
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    background: rgba(102, 126, 234, 0.03);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #667eea;
    flex-grow: 1;
}

.product-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #444;
    font-size: 0.88rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.product-features li::before {
    content: '●';
    color: #667eea;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0;
}

.product-features i {
    display: none;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.features .section-header h2 {
    color: #fff;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    position: relative;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-item:hover::before {
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 0 40px rgba(138, 43, 226, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulseGlow 3s ease-in-out infinite;
}

@keyframes iconPulseGlow {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.feature-icon lottie-player {
    margin: 0 auto;
}

@keyframes featureFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes featureBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Free Apps Section */
.free-apps-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.free-app-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.free-app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.free-app-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.free-app-icon {
    font-size: 60px;
    margin: 0 auto 1.5rem;
    display: block;
    text-align: center;
    line-height: 1;
}

.free-app-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-app-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.free-app-card .btn {
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .free-apps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .free-app-card {
        padding: 1.75rem 1.25rem;
        min-height: 350px;
    }
    
    .free-app-icon {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .free-app-card {
        padding: 1.5rem 1rem;
    }
    
    .free-app-icon {
        font-size: 45px;
    }
    
    .free-app-card h3 {
        font-size: 1.3rem;
    }
    
    .free-app-card p {
        font-size: 0.85rem;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

/* Free Apps Section */
.free-apps {
    background: #f8f9fa;
    padding: 60px 0;
}

.free-apps .app-icon {
    font-size: 60px;
    margin: 0 auto 1rem;
    display: block;
    text-align: center;
}

.free-apps .product-card {
    min-height: 400px;
}

.free-apps .btn {
    margin-top: auto;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .section-header h2 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-label {
    font-weight: 600;
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.discount {
    background: #ffc107;
    color: #333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

.pricing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.pricing-card.featured {
    border: 3px solid #ffc107;
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #333;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    margin-bottom: 0;
}

.currency {
    font-size: 1.2rem;
    color: #667eea;
    vertical-align: top;
    font-weight: 600;
}

.amount {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
    text-align: left;
    background: rgba(102, 126, 234, 0.03);
    padding: 0.75rem;
    border-radius: 10px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon lottie-player {
    margin: 0 auto;
}

@keyframes contactGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(30, 144, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(30, 144, 255, 0.6); }
}

@keyframes contactPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before,
.faq-question.active::before {
    opacity: 1;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    padding-right: 2rem;
    color: #333;
}

.faq-question.active h3 {
    color: #667eea;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.captcha-group {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.captcha-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.captcha-group #captcha-question {
    color: #667eea;
    font-weight: 700;
}

.captcha-group input {
    width: 80px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a56e3 0%, #2a5298 50%, #1e3c72 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 123, 255, 0.2) 0%, transparent 50%);
    animation: footerGlow 10s ease infinite alternate;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
}

@keyframes footerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 0rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

.footer-section:first-child {
    padding-right: 0;

}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.footer-section > p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50%;
}

.social-links a:hover {
    border-color: #667eea;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    margin: 5vh auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.close:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #dc3545;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.demo-content {
    text-align: center;
}

.demo-placeholder {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px dashed #dee2e6;
}

.demo-placeholder lottie-player {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 20px;
    }

    .logo-img {
        height: 36px;
        width: 36px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -80%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 80%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        font-size: 0.95rem;
        padding: 12px 20px;
        display: block;
        width: 100%;
        text-align: left;
    }

    .cta-btn {
        margin: 0.5rem 20px;
        display: block;
        width: calc(100% - 40px);
        padding: 12px 24px;
        font-size: 0.95rem;
        background: #007bff !important;
        color: white !important;
        text-align: center;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 20px;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
    }

    .gradient-text {
        display: block;
        text-align: center;
        min-width: auto;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        flex: 0 0 auto;
        min-width: 120px;
        max-width: 150px;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .trust-badges-container {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    .trust-badge {
        flex-direction: column;
        padding: 0.5rem 0.75rem !important;
        gap: 0.15rem;
        min-height: auto !important;
        align-items: center;
    }

    .trust-badge-icon {
        display: none !important;
    }

    .trust-badge-text {
        font-size: 0.65rem !important;
        text-align: center;
        line-height: 1.2;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question svg {
        width: 14px;
        height: 14px;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-answer.active {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat {
        flex: 1;
        min-width: 100px;
        padding: 1.25rem 1rem;
    }

    .stat h3 {
        font-size: 1.75rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .product-card,
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .product-card h3,
    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .product-card p,
    .pricing-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .footer-section.footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.75rem;
    }

    .footer-logo-img {
        height: 32px;
        width: 32px;
    }

    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-about p {
        max-width: 100%;
        font-size: 0.85rem;
        margin: 0 auto 1rem;
        line-height: 1.5;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .footer-contact svg {
        flex-shrink: 0;
        width: 14px;
        height: 14px;
    }

    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-tagline {
        font-size: 0.75rem;
    }
    
    .footer-social {
        justify-content: center;
        order: -1;
        gap: 0.5rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-badges {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.3rem;
        justify-content: center;
        overflow-x: auto;
    }
    
    .footer-badges .badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        white-space: nowrap;
        flex-shrink: 0;
    }

}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 16px;
    }

    .logo-img {
        height: 32px;
        width: 32px;
    }

    .nav-logo h2 {
        font-size: 1.35rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.05rem;
        padding: 12px 20px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-container {
        padding: 1.5rem 16px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        padding: 1rem 0.75rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    section {
        padding: 35px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .product-card,
    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .product-card h3,
    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .product-card p,
    .pricing-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .amount {
        font-size: 2.2rem;
    }

    .feature-icon lottie-player,
    .contact-icon lottie-player {
        width: 80px !important;
        height: 80px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section:first-child {
        grid-column: 1;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section ul li a {
        font-size: 0.85rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 10px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    -webkit-text-stroke: 1.5px currentColor;
    box-shadow: 0 4px 20px rgba(102,126,234,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(102,126,234,0.5);
    border-color: transparent;
}

.back-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .btn,
    .modal,
    .notification {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 24pt;
    }
    
    .section-header h2 {
        font-size: 18pt;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Accessibility Improvements */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gradient-text {
        background: none;
        -webkit-text-fill-color: initial;
        color: #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-color: #000;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.notification-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Product Detail Modal Styles */
.product-detail {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.product-detail > .modal-body {
    overflow-y: auto;
    flex: 1;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.5rem 1.75rem;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}

.modal-header::before {
    content: '';
    max-height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.modal-header h2 {
    color: white;
    margin: 0 0 0.4rem 0;
    padding-right: 45px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-header .product-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.88rem;
    margin: 0;
    padding-right: 45px;
    line-height: 1.4;
    position: relative;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.product-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0;
}

.features-section,
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.features-section:hover,
.benefits-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.3);
}

.features-section h3,
.benefits-section h3 {
    color: #333;
    margin: 0 0 0.6rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.features-section h3::before {
    content: '✨';
    font-size: 1.5rem;
}

.benefits-section h3::before {
    content: '🎯';
    font-size: 1.5rem;
}

.feature-list,
.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li,
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.feature-list li:last-child,
.benefit-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover,
.benefit-list li:hover {
    padding-left: 0.3rem;
    color: #333;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 4px;
}

.feature-list li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 167, 69, 0.12);
    border-radius: 50%;
}

.benefit-list li::before {
    content: '→';
    color: #667eea;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.12);
    border-radius: 50%;
}

.feature-list i,
.benefit-list i {
    display: none;
}

.modal-footer {
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.04));
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex: 0 0 auto;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pricing-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.action-buttons .btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.action-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Search Input (for future use) */
.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Interactive Features */
.features-section,
.benefits-section {
    cursor: default;
    position: relative;
    overflow: hidden;
}

.features-section::after,
.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
    transition: left 0.5s ease;
}

.features-section:hover::after,
.benefits-section:hover::after {
    left: 100%;
}

.feature-list li,
.benefit-list li {
    cursor: pointer;
}

.feature-list li::before,
.benefit-list li::before {
    transition: all 0.3s ease;
}

.feature-list li:hover::before {
    transform: scale(1.2) rotate(360deg);
    background: rgba(40, 167, 69, 0.2);
}

.benefit-list li:hover::before {
    transform: scale(1.2) translateX(3px);
    background: rgba(102, 126, 234, 0.2);
}

.action-buttons .btn {
    position: relative;
    overflow: hidden;
}

.action-buttons .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;
}

.action-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-buttons .btn span {
    position: relative;
    z-index: 1;
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-content {
        max-width: 750px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 2vh auto;
        width: 95%;
        max-height: 96vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1.25rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
        padding-right: 40px;
    }
    
    .modal-header .product-description {
        font-size: 0.85rem;
        padding-right: 40px;
    }
    
    .modal-body {
        padding: 1rem 0.75rem;
    }
    
    .product-detail {
        max-height: 96vh;
    }
    
    .product-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-section,
    .benefits-section {
        padding: 1rem;
    }
    
    .features-section h3,
    .benefits-section h3 {
        font-size: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .pricing-info {
        text-align: center;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .close {
        right: 10px;
        top: 10px;
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 1vh auto;
        width: 98%;
        max-height: 98vh;
        border-radius: 8px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        padding-right: 35px;
    }
    
    .modal-header .product-description {
        font-size: 0.82rem;
        padding-right: 35px;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .product-detail {
        max-height: 98vh;
    }
    
    .product-sections {
        gap: 0.75rem;
    }
    
    .features-section,
    .benefits-section {
        padding: 0.85rem;
    }
    
    .features-section h3,
    .benefits-section h3 {
        font-size: 0.95rem;
    }
    
    .feature-list li,
    .benefit-list li {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    .modal-footer {
        padding: 0.75rem;
    }
    
    .price-value {
        font-size: 1.4rem;
    }
    
    .action-buttons .btn {
        padding: 12px 16px;
        font-size: 0.88rem;
    }
    
    .close {
        right: 8px;
        top: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* Product card button styling */
.product-card .btn {
    width: fit-content;
    margin: 0 auto;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white !important;
}

.whatsapp-float i {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }
    
    .back-to-top {
        bottom: 75px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.pricing-card .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-width: 140px;
}