:root {
    --primary: #4338f2;
    --primary-dark: #1d2a7a;
    --secondary: #d8ff93;
    --bg: #f6f4fc;
    --text: #16225c;
    --muted: #7b83a6;
    --card: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

section {
    padding: 90px 0;
}

.container-custom {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

.navbar {
    padding: 20px 0;
    background: #fff;
}

.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.nav-link {
    color: #555;
    font-weight: 500;
    margin: 0 12px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-main {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-main:hover {
    background: #2f24d4;
    color: #fff;
    transform: translateY(-2px);
}

.btn-light-custom {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* HERO */

.hero {
    padding-top: 60px;
    padding-bottom: 80px;
}

.trusted-badge {
    background: #eef2ff;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-features {
    margin-top: 35px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-features span {
    color: #5f678f;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: #47d7cb;
}

.hero-image-box {
    background: var(--primary);
    border-radius: 35px;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-symbol {
    font-size: 340px;
    color: var(--secondary);
    font-weight: 800;
    line-height: 1;
}
.hero-symbol img {
    display: block;
    width: 100%;
}

.floating-card {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #fff;
    border-radius: 20px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.floating-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
}

.floating-card h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text);
}

.floating-card p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* TITLES */

.section-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 70px;
}

/* STEPS */

.step-card {
    text-align: center;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 25px;
}

.step1 {
    background: #efe9ff;
    color: #6f43ff;
}

.step2 {
    background: #e7ffff;
    color: #1db7bb;
}

.step3 {
    background: #efffd9;
    color: #7ebc35;
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* ABOUT */

.about-box {
    background: #f2effc;
    border-radius: 35px;
    padding: 60px;
}

.about-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item i {
    color: #41d4ff;
    font-size: 24px;
}

.feature-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.about-image {
    background: linear-gradient(135deg, #0a5dff, #59d8ff);
    height: 500px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-image img {
    display: block;
    width: 100%;
}

/* SERVICES */

.service-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    border: 1px solid #ececff;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 22px;
}

.purple {
    background: #f1ecff;
    color: #6e4cff;
}

.green {
    background: #e9fff6;
    color: #16b38a;
}

.cyan {
    background: #ebffff;
    color: #0eb0d3;
}

.service-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* TESTIMONIALS */

.testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
}

.stars {
    color: #43d8d1;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #5d6486;
    line-height: 1.9;
}

.testimonial-user {
    margin-top: 25px;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 700;
}

.testimonial-user span {
    color: #888;
    font-size: 14px;
}

/* FAQ */

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 18px !important;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    padding: 24px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    box-shadow: none !important;
}

.accordion-body {
    color: #666;
    line-height: 1.8;
}

/* FOOTER */

footer {
    background: #efecf8;
    padding: 90px 0 30px;
}

.footer-brand {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

.footer-text {
    color: #6c7395;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-contact {
    margin-bottom: 12px;
    color: #5d6486;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    margin-bottom: 14px;
    color: #6c7395;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.socials a {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.available-box {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.available-box h6 {
    color: var(--primary);
    font-weight: 700;
}

.available-box p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.copyright {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #777;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hero {
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-image-box {
        margin-top: 50px;
        height: 500px;
    }

    .about-box {
        padding: 40px;
    }

    .about-title {
        font-size: 38px;
    }

    .about-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image-box {
        height: 400px;
    }

    .hero-symbol {
        font-size: 240px;
        width: 100%;
    }

    .floating-card {
        right: 15px;
        left: 15px;
        bottom: 15px;
    }

    .about-title {
        font-size: 30px;
    }
}
