/*========================

HEADER

========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: 'Poppins', sans-serif;

    background: #fafafa;

    color: #222;

}

.container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

}

.header {

    width: 100%;

    background: #fff;

    position: sticky;

    top: 0;

    z-index: 999;

    border-bottom: 1px solid #ececec;

}

.navbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 80px;

}

.logo img {

    height: 55px;

}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    letter-spacing: 0.3px;
}

.logo-sub {
    font-size: 18px;
    font-weight: 800;
    color: #7c3aed;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.nav-menu {

    display: flex;

    gap: 35px;

}

.nav-menu a {

    text-decoration: none;

    color: #444;

    font-size: 15px;

    font-weight: 500;

    transition: .3s;

}

.nav-menu a:hover {

    color: #7c3aed;

}

.nav-right {

    display: flex;

    align-items: center;

    gap: 15px;

}

.login-btn {

    text-decoration: none;

    color: #444;

    font-weight: 600;

}

.register-btn {

    text-decoration: none;

    background: #7c3aed;

    color: #fff;

    padding: 12px 24px;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;

}

.register-btn:hover {

    background: #6927d3;

}

.menu-btn {

    display: none;

    border: none;

    background: none;

    font-size: 24px;

    color: #7c3aed;

    cursor: pointer;

}

.menu-btn i {
    transition: transform 0.25s ease;
}


/* When menu is open */

.menu-btn.active i::before {
    content: "\f00d";
}


/* Hide original bars when active */

.menu-btn.active i {
    font-size: 0;
}

.menu-btn.active i::before {
    font-size: 24px;
}


/*========================

HERO SECTION

========================*/

.hero {

    padding: 80px 0;

    background: #faf7ff;

}

.hero-wrapper {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 60px;

    align-items: center;

}

.hero-badge {

    display: inline-block;

    background: #efe8ff;

    color: #6d28d9;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.hero h1 {

    font-size: 52px;

    line-height: 1.2;

    margin-bottom: 20px;

}

.hero h1 span {

    color: #7c3aed;

}

.hero p {

    font-size: 17px;

    line-height: 30px;

    color: #666;

    margin-bottom: 35px;

}

.hero-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.feature {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}

.feature i {

    width: 42px;

    height: 42px;

    background: #ede9fe;

    color: #7c3aed;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.hero-buttons {

    display: flex;

    gap: 18px;

}

/* ========================= HERO PHOTO ========================= */
.hero-photo {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

/* ========================= PURPLE SPLASH ========================= */
.hero-photo::before {
    content: "";
    position: absolute;
    width: 78%;
    height: 96%;
    right: 5%;
    top: 0;
    background: #7c3aed;
    border-radius: 48% 52% 45% 55% / 42% 45% 55% 58%;
    z-index: 0;
    animation: heroSplash 6s ease-in-out infinite;
}

/* ========================= PERSON ========================= */
.hero-photo img {
    position: relative;
    width: 82%;
    height: 96%;
    object-fit: contain;
    object-position: center bottom;
    z-index: 1;
    display: block;
}

/* ========================= SPLASH ANIMATION ========================= */
@keyframes heroSplash {
    0% {
        border-radius: 48% 52% 45% 55% / 42% 45% 55% 58%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 55% 45% 52% 48% / 48% 58% 42% 52%;
        transform: rotate(2deg) scale(1.02);
    }

    50% {
        border-radius: 43% 57% 48% 52% / 55% 44% 56% 45%;
        transform: rotate(-2deg) scale(1.03);
    }

    75% {
        border-radius: 52% 48% 58% 42% / 45% 55% 48% 52%;
        transform: rotate(1deg) scale(1.01);
    }

    100% {
        border-radius: 48% 52% 45% 55% / 42% 45% 55% 58%;
        transform: rotate(0deg) scale(1);
    }
}

/* ========================= MOBILE ========================= */
@media (max-width: 768px) {
    .hero-photo {
        height: 350px;
    }

    .hero-photo::before {
        width: 75%;
        height: 94%;
        right: 12%;
        top: 0;
    }

    .hero-photo img {
        width: 80%;
        height: 94%;
    }
}

.primary-btn {

    background: #7c3aed;

    color: #fff;

    padding: 15px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

}

.secondary-btn {

    border: 2px solid #7c3aed;

    color: #7c3aed;

    padding: 15px 30px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

}

.final-cta .primary-btn {
    display: inline-block;
    background: #fff;
    color: #7c3aed;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.final-cta .primary-btn:hover {
    background: #f5f3ff;
    transform: translateY(-2px);
}

.hero-form-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;


}

.hero-form-card h3 {

    font-size: 28px;

    margin-bottom: 10px;

}

.hero-form-card p {

    margin-bottom: 25px;

}

.hero-form-card form {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.hero-form-card input,

.hero-form-card select {

    height: 55px;

    padding: 0 18px;

    border: 1px solid #ddd;

    border-radius: 10px;

    font-size: 15px;

}

.hero-form-card button {

    height: 55px;

    background: #7c3aed;

    color: #fff;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 600;

}

.hero-form-card small {

    display: block;

    margin-top: 18px;

    color: #777;

}


/*========================

WHY MATCHWITHIJAS

========================*/

.why-different {

    padding: 90px 0;

    background: #ffffff;

}

.section-title {

    text-align: center;

    margin-bottom: 60px;

}

.section-title span {

    color: #7c3aed;

    font-weight: 600;

    font-size: 15px;

}

.section-title h2 {

    margin-top: 12px;

    font-size: 42px;

    margin-bottom: 18px;

}

.section-title p {

    color: #666;

    max-width: 700px;

    margin: auto;

    line-height: 30px;

}

.different-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.different-card {

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    transition: .35s;

}

.different-card:hover {

    transform: translateY(-8px);

}

.icon {

    width: 70px;

    height: 70px;

    background: #f3ecff;

    border-radius: 50%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.icon i {

    color: #7c3aed;

    font-size: 28px;

}

.different-card h3 {

    margin-bottom: 15px;

    font-size: 20px;

}

.different-card p {

    color: #666;

    line-height: 28px;

}

/*============================

PRIVACY SECTION

============================*/

.privacy-section {

    padding: 100px 0;

    background: #faf7ff;

}

.privacy-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.privacy-image img {

    width: 100%;

}

.privacy-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.privacy-visual {
    width: 330px;
    height: 330px;
    background: #f3ecff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Main Privacy Icon */
.privacy-circle {
    width: 170px;
    height: 170px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(124, 58, 237, .15);
}

.privacy-circle i {
    font-size: 75px;
    color: #7c3aed;
}

/* Verification Badge */
.privacy-badge {
    margin-top: 25px;
    background: #ffffff;
    color: #7c3aed;
    padding: 11px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.privacy-badge i {
    margin-right: 7px;
    font-size: 12px;
}

.section-tag {

    color: #7c3aed;

    font-weight: 600;

}

.privacy-content h2 {

    font-size: 42px;

    margin: 15px 0 25px;

}

.privacy-content p {

    color: #666;

    line-height: 32px;

    margin-bottom: 35px;

}

.privacy-list {

    display: grid;

    gap: 18px;

}

.privacy-list div {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}

.privacy-list i {

    color: #7c3aed;

}

/*========================

PROCESS

========================*/

.process {

    padding: 100px 0;

    background: #fff;

}

.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 60px;

}

.process-card {

    background: #faf7ff;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    position: relative;

    transition: .3s;

}

.process-card:hover {

    transform: translateY(-8px);

}

.number {

    position: absolute;

    top: 18px;

    right: 18px;

    font-size: 14px;

    color: #7c3aed;

    font-weight: 700;

}

.process-card i {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #ede9fe;

    color: #7c3aed;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    margin: auto;

    margin-bottom: 25px;

}

.process-card h3 {

    margin-bottom: 15px;

}

.process-card p {

    color: #666;

    line-height: 28px;

}

/*========================

TRUST

========================*/

.trust {

    padding: 90px 0;

    background: #faf7ff;

}

.trust-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-top: 50px;

}

.trust-card {

    background: #fff;

    border-radius: 18px;

    text-align: center;

    padding: 40px 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.trust-card h2 {

    font-size: 42px;

    color: #7c3aed;

    margin-bottom: 10px;

}

.trust-card p {

    color: #666;

}

/*======================

FAQ

======================*/

.faq {

    padding: 100px 0;

    background: #ffffff;

}

.faq-wrapper {

    margin-top: 60px;

    display: grid;

    gap: 20px;

}

.faq-item {

    background: #faf7ff;

    border-radius: 18px;

    padding: 30px;

    border-left: 5px solid #7c3aed;

}

.faq-item h3 {

    margin-bottom: 15px;

    color: #222;

}

.faq-item p {

    color: #666;

    line-height: 30px;

}

/*=======================

FINAL CTA

=======================*/

.final-cta {

    padding: 100px 0;

    background: #7c3aed;

}

.cta-box {

    max-width: 900px;

    margin: auto;

    text-align: center;

    color: #fff;

}

.cta-box h2 {

    font-size: 48px;

    margin: 20px 0;

}

.cta-box p {

    max-width: 700px;

    margin: auto;

    line-height: 32px;

    opacity: .95;

}

.cta-features {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin: 45px 0;

}

.cta-features span {

    background: rgba(255, 255, 255, .15);

    padding: 12px 18px;

    border-radius: 40px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

}

/*======================

FOOTER

======================*/

footer {

    background: #1d1d1d;

    color: #fff;

    padding-top: 70px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

}

.footer-grid img {

    height: 60px;

    margin-bottom: 20px;

}

.footer-grid p {

    color: #bbb;

    line-height: 28px;

}

.footer-grid h4 {

    margin-bottom: 20px;

}

.footer-grid a {

    display: block;

    color: #bbb;

    text-decoration: none;

    margin-bottom: 12px;

}

.footer-grid a:hover {

    color: #fff;

}


/*========================
FOOTER LOGO
========================*/

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo-main {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.footer-logo-sub {
    font-size: 20px;
    font-weight: 800;
    color: #a855f7;
    letter-spacing: 0.3px;
    margin-top: 3px;
}



/* =========================
   FOOTER SOCIAL ICONS
   ========================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 16px;

    transition: .3s;
}

.footer-social a:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-3px);
}
.copyright {

    text-align: center;

    padding: 25px 0;

    margin-top: 50px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    color: #999;

}
