/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: #fff;
}

/* Header */
.header {
    width: 100%;
    background: #020617;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo h2 {
    color: #38bdf8;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5f5;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* CTA Button */
.btn {
    background: #38bdf8;
    color: #020617;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #0ea5e9;
}

/* Mobile Menu Icon */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #020617;
    padding: 15px;
}

.mobile-menu a {
    color: #cbd5f5;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #1e293b;
}

.mobile-menu a:hover {
    color: #38bdf8;
}

.mobile-btn {
    margin-top: 10px;
    text-align: center;
}

/* Active Mobile Menu */
.mobile-menu.active {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    
    .nav {
        display: none;
    }

    .cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    background: #020617;
}

/* Container */
.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Content */
.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Features */
.hero-features {
    list-style: none;
    margin-bottom: 25px;
}

.hero-features li {
    margin-bottom: 8px;
    color: #cbd5f5;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #38bdf8;
    color: #020617;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0ea5e9;
}

.btn-secondary {
    border: 1px solid #38bdf8;
    color: #38bdf8;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #38bdf8;
    color: #020617;
}

/* Trust */
.hero-trust {
    font-size: 14px;
    color: #64748b;
}

/* Image */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* Services Section */
.services {
    padding: 80px 20px;
    background: #ecedf1;
}

/* Container */
.services-container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #000000;
    margin-bottom: 10px;
}

.section-header p {
    color: #000000;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.service-card {
    background: #430d8a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #f1f1f3;
    transition: 0.3s;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
}

/* Icon */
.service-card .icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* Title */
.service-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

/* Text */
.service-card p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Problem Section */
.problems {
    padding: 80px 20px;
    background: #f4f6ff;
}

/* Container */
.problems-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.problem-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    text-align: center;
    transition: 0.3s;
}

/* Hover */
.problem-card:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
}

/* Icon */
.problem-card .icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Title */
.problem-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Text */
.problem-card p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}
/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: #e6e7e9;
}

/* Container */
.how-container {
    max-width: 1200px;
    margin: auto;
}

/* Steps Layout */
.steps {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
}

/* Step Card */
.step-card {
    flex: 1;
    background: #0f172a;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    text-align: center;
    transition: 0.3s;
}

/* Hover */
.step-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
}

/* Step Number */
.step-number {
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 15px;
    background: #38bdf8;
    color: #020617;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title */
.step-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Text */
.step-card p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .steps {
        flex-direction: column;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #020617;
}

/* Container */
.testimonials-container {
    max-width: 1200px;
    margin: auto;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.testimonial-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    transition: 0.3s;
}

/* Hover */
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
}

/* Text */
.testimonial-card p {
    color: #cbd5f5;
    font-size: 14px;
    margin-bottom: 20px;
}

/* User Info */
.user h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.user span {
    color: #facc15;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   CTA SECTION (FIXED)
========================= */
section.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    text-align: center;
}

/* Container */
.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Heading */
.cta-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #020617;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Subtext */
.cta-container p {
    font-size: 16px;
    color: #020617;
    margin-bottom: 25px;
}

/* Buttons Wrapper */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Buttons Base Fix */
.cta-buttons a {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 22px;
    transition: all 0.3s ease;
}

/* Call Button */
.cta-call {
    background: #020617;
    color: #ffffff;
}

/* Call Hover */
.cta-call:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* Chat Button */
.cta-chat {
    background: transparent;
    border: 2px solid #020617;
    color: #020617;
}

/* Chat Hover */
.cta-chat:hover {
    background: #020617;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trust Line */
.cta-trust {
    font-size: 14px;
    color: #e9eaef;
}

/* =========================
   RESPONSIVE FIX
========================= */
@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 26px;
    }

    .cta-container p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    section.cta {
        padding: 60px 15px;
    }

    .cta-container h2 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}
/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #1a1f33;
}

/* Container */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #dee0e3;
    margin-bottom: 10px;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    font-size: 16px;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hover */
.faq-question:hover {
    color: #38bdf8;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-answer p {
    color: #94a3b8;
    font-size: 14px;
    padding-bottom: 15px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* =========================
   FOOTER SECTION
========================= */
.footer {
    background: #020617;
    padding-top: 60px;
    border-top: 1px solid #1e293b;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

/* Text */
.footer-col p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #38bdf8;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1e293b;
    text-align: center;
    padding: 15px 20px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}