/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo:hover {
    opacity: 0.9;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    margin-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.3;
    animation: patternMove 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0,0,0,0.2) 0%, transparent 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-buttons .btn-primary {
    background: #2196F3;
    color: var(--primary);
}

.hero-buttons .btn-primary:hover {
    background: var(--gray-100);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.hero-buttons .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Elements Animation */
.floating {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.floating:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.floating:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.floating:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes patternMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 60px 60px;
    }
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: #f8fafc;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e293b;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-size: 2.8em;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -45px;
    background: #2196F3;
    color: white;
    padding: 8px 40px;
    font-size: 0.9em;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.pricing-card h3 {
    font-size: 1.8em;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.price {
    font-size: 3em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 35px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price span {
    font-size: 0.3em;
    color: var(--text-secondary);
    font-weight: 500;
}

.config-options {
    margin-bottom: 35px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95em;
    font-weight: 500;
}

.config-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--text-primary);
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.config-select:hover {
    border-color: var(--primary-color);
    background-color: white;
}

.config-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 2px solid #e2e8f0;
    margin-bottom: 25px;
}

.total-price span:first-child {
    color: var(--text-secondary);
    font-size: 1em;
    font-weight: 500;
}

.final-price {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card .btn-primary {
    /* background: linear-gradient(135deg, var(--primary-color), #60a5fa); */
    border: none;
}

.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.pricing-card .btn-outline {
    border: 2px solid var(--primary-color);
    color: #fff;
    background: #5046e4;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95em;
}

.pricing-card .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card .btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.pricing-card .btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.pricing-card .btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-size: 2.8em;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 15px;
    opacity: 0.2;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1.05em;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.testimonial-author h4 {
    color: var(--text-primary);
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-content p {
        font-size: 1em;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e293b;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #64748b;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item::after {
        display: none;
    }

    .features, .testimonials, .faq {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .logo img {
        height: 32px;
    }
}

/* Technology Stack Section */
.tech-stack {
    padding: 5rem 5%;
    background-color: #fff;
}

.tech-stack h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e293b;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.tech-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tech-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.tech-card p {
    color: #64748b;
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    background-color: #f8fafc;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e293b;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.benefit-card p {
    color: #64748b;
}

/* Statistics Section */
.statistics {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    color: white;
}

.statistics h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2.5rem;
    color: white;
    /* margin-bottom: 1rem; */
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* background: linear-gradient(to right, #ffffff, #e2e8f0); */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .tech-stack, .benefits, .statistics {
        padding: 3rem 1rem;
    }

    .tech-grid, .benefits-grid, .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e3e9f7 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1e293b;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1a237e);
    border-radius: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(40, 53, 147, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 234, 246, 0.8);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(40, 53, 147, 0.12);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1a237e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(40, 53, 147, 0.08);
    border: 1px solid rgba(232, 234, 246, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(40, 53, 147, 0.12);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1a237e 100%);
    border: none;
    border-radius: 0.8rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.contact-form .btn i {
    font-size: 1.2rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo:hover {
    opacity: 0.9;
}

.country-allowed-message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1.5rem 0;
}
.country-allowed-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(40,53,147,0.10);
  padding: 2.2rem 2.5rem 1.5rem 2.5rem;
  min-width: 320px;
  max-width: 400px;
  text-align: center;
  border: 1.5px solid #e8eaf6;
  animation: fadeIn 0.7s;
}
.country-allowed-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #283593 60%, #1a237e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.1rem auto;
  box-shadow: 0 2px 12px #28359322;
}
.country-allowed-card h2 {
  color: #1a237e;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.country-allowed-card p {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
}
.country-allowed-card .allowed {
  color: #388e3c;
  font-weight: 700;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.request-info-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: #f8f9fa;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(40,53,147,0.08);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}
.request-info-icon {
  background: linear-gradient(135deg, #283593 60%, #1a237e 100%);
  color: #fff;
  border-radius: 1.2rem;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 2px 12px #28359322;
  flex-shrink: 0;
}
.request-info-content h2 {
  color: #1a237e;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.request-info-content p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.request-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.request-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #283593;
  font-size: 1rem;
  font-weight: 500;
}
.request-benefits-list li i {
  color: #4CAF50;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .request-info-section {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 0.7rem;
  }
  .request-info-icon {
    width: 48px; height: 48px; font-size: 1.5rem;
  }
  .request-info-content h2 { font-size: 1.1rem; }
  .request-info-content p, .request-benefits-list li { font-size: 0.95rem; }
}

.request-extra-info {
  background: #f8f9fa;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(40,53,147,0.08);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 2rem 0;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid #e8eaf6;
  position: relative;
}
.request-extra-info h3 {
  color: #1a237e;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 1.3rem;
  letter-spacing: 0.5px;
  text-align: center;
}
.request-extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.request-extra-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #283593;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 1px 8px #28359311;
  padding: 1.1rem 1.2rem;
  transition: box-shadow 0.2s, background 0.2s;
}
.request-extra-list li:hover {
  background: #e8eaf6;
  box-shadow: 0 2px 16px #28359322;
}
.request-extra-list li i {
  color: #1a237e;
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.request-extra-list a {
  color: #3949ab;
  text-decoration: underline;
  transition: color 0.2s;
  font-weight: 600;
}
.request-extra-list a:hover {
  color: #1a237e;
}
@media (max-width: 900px) {
  .request-extra-info {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    font-size: 0.97rem;
    max-width: 98vw;
  }
  .request-extra-info h3 { font-size: 1.08rem; }
  .request-extra-list li { font-size: 0.97rem; padding: 0.8rem 0.7rem; gap: 0.6rem; }
}

/* Support Chat Styles */
.support-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1a237e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.chat-button i {
    color: white;
    font-size: 1.5rem;
}

.chat-window {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(40, 53, 147, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e8eaf6;
    transition: all 0.3s ease;
}

.chat-window.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: linear-gradient(135deg, #2563eb 0%, #1a237e 100%);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-header .close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-header .close-chat:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
}

.message.user {
    margin-left: auto;
}

.message.support {
    margin-right: auto;
}

.message-content {
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.user .message-content {
    background: #2563eb;
    color: white;
    border-top-right-radius: 0.2rem;
}

.message.support .message-content {
    background: white;
    color: #1e293b;
    border: 1px solid #e8eaf6;
    border-top-left-radius: 0.2rem;
}

.message-time {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.3rem;
    text-align: right;
}

.chat-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e8eaf6;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e8eaf6;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.chat-input input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.chat-input button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-input button:hover {
    background: #1a237e;
}

.chat-input button i {
    font-size: 1.1rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Chat */
@media (max-width: 768px) {
    .support-chat {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chat-window {
        width: calc(100% - 2rem);
        height: calc(100% - 5rem);
        bottom: 4rem;
        right: 1rem;
        border-radius: 0.8rem;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
    }
    
    .chat-button i {
        font-size: 1.2rem;
    }
}

/* Legal Pages (Terms, Privacy, etc.) */
.legal-page {
    min-height: 70vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e3e9f7 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 1rem 6rem 1rem;
}

.legal-section {
    background: rgba(255,255,255,0.97);
    max-width: 800px;
    width: 100%;
    /* margin: 0 auto; */
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(40,53,147,0.10);
    padding: 3rem 2.5rem 2.5rem 2.5rem;
    border: 1.5px solid #e8eaf6;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
    margin-top: 167px;
}

.legal-section h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.legal-section h1::after {
    content: '';
    display: block;
    margin: 0.7rem auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1a237e);
    border-radius: 2px;
}

.legal-intro {
    color: #475569;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.legal-section h2 {
    color: #2563eb;
    font-size: 1.35rem;
    margin-top: 2.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.legal-section p {
    color: #334155;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
    .legal-section {
        padding: 2rem 1.2rem 1.5rem 1.2rem;
    }
    .legal-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .legal-page {
        padding: 2rem 0.2rem 3rem 0.2rem;
    }
    .legal-section {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        border-radius: 1rem;
    }
    .legal-section h1 {
        font-size: 1.4rem;
    }
    .legal-section h2 {
        font-size: 1.08rem;
    }
    .legal-section p, .legal-intro {
        font-size: 0.98rem;
    }
}
