* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f8f9fc;
    color: #111827;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #5b21b6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #5b21b6;
}

/* ===== BUTTON ===== */
.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary.large {
    padding: 14px 26px;
    font-size: 16px;
}

/* ===== HERO ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 40px;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 26px;
}



/* ===== HERO IMAGE STYLING ===== */
.hero-image img {
    height: 420px;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.25);
    transition: 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 8%;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 34px;
    margin-bottom: 50px;
    color: #111827;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.feature-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 24px;
    text-align: left;
    transition: 0.3s;
}

.feature-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 8%;
    background: #f8f9fc;
}

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

/* Question button */
.faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Answer */
.faq-answer {
    display: none;
    background: #ffffff;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: #6b7280;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 90px 8%;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #ffffff;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta p {
    max-width: 620px;
    margin: 0 auto 26px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-text {
    line-height: 1.6;
    font-size: 14px;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: 0.3s;
}

.footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}