*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#09090f;
    color:#fff;
    min-height:100vh;
}

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(15px);
    background:rgba(0,0,0,.25);
}

.logo{
    font-size:28px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#60a5fa;
}

header{
    text-align:center;
    padding:100px 20px;
}

header h1{
    font-size:58px;
    margin-bottom:20px;
}

header p{
    color:#cfcfcf;
    font-size:20px;
    max-width:700px;
    margin:auto;
}

.start-btn{
    display:inline-block;
    margin-top:40px;
    padding:18px 45px;
    border-radius:15px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.start-btn:hover{
    transform:scale(1.05);
}

.features{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding-bottom:80px;
}

.card{
    padding:30px;
    border-radius:20px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h2{
    margin-bottom:15px;
}

.card p{
    color:#cfcfcf;
}

footer{
    text-align:center;
    padding:30px;
    color:#999;
}

@media(max-width:768px){

nav{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

header h1{
    font-size:38px;
}

header p{
    font-size:17px;
}

}


.social-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 3px;
    margin-bottom: 2px;
}







/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    max-width: 1150px;
    margin: 110px auto 0;
    padding: 0 25px;
    text-align: center;
}

.section-title span {
    display: inline-block;
    margin-bottom: 12px;
    color: #8b7cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    margin: 0;
    font-size: 38px;
    color: white;
}

.section-title p {
    max-width: 650px;
    margin: 15px auto 50px;
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
}


.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.step-card {
    position: relative;
    padding: 35px 28px;
    background: linear-gradient(
        145deg,
        rgba(40, 40, 55, 0.8),
        rgba(20, 20, 30, 0.9)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    transition: transform 0.3s ease,
                border-color 0.3s ease;
}


.step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(139, 124, 255, 0.5);
}


.step-number {
    position: absolute;
    top: 18px;
    right: 22px;

    color: rgba(255, 255, 255, 0.15);
    font-size: 28px;
    font-weight: 700;
}


.step-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(139, 124, 255, 0.12);

    font-size: 26px;
}


.step-card h3 {
    margin-bottom: 12px;
    color: white;
    font-size: 21px;
}


.step-card p {
    margin: 0;
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
}


.how-convert-btn {
    display: inline-block;

    margin-top: 40px;
    padding: 14px 30px;

    border-radius: 10px;

    background: linear-gradient(90deg, #168cff, #7b61ff);

    color: white;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.3s ease;
}


.how-convert-btn:hover {
    transform: translateY(-3px);
}


/* =========================
   FAQ
========================= */

.faq-section {
    max-width: 900px;
    margin: 120px auto 100px;
    padding: 0 25px;
}


.faq-container {
    margin-top: 45px;
}


.faq-container details {
    margin-bottom: 14px;

    background: rgba(35, 35, 45, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 14px;

    overflow: hidden;

    transition: border-color 0.3s ease;
}


.faq-container details:hover {
    border-color: rgba(139, 124, 255, 0.4);
}


.faq-container summary {
    position: relative;

    padding: 22px 55px 22px 24px;

    color: white;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;

    list-style: none;
}


.faq-container summary::-webkit-details-marker {
    display: none;
}


.faq-container summary::after {
    content: "+";

    position: absolute;
    right: 24px;
    top: 50%;

    transform: translateY(-50%);

    color: #8b7cff;

    font-size: 24px;
    font-weight: 400;
}


.faq-container details[open] summary::after {
    content: "−";
}


.faq-container details p {
    margin: 0;

    padding: 0 24px 23px;

    color: #aaa;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    .steps {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .how-it-works {
        margin-top: 80px;
    }

    .faq-section {
        margin-top: 90px;
    }
}




.features{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
    max-width:1100px;
    margin:80px auto;
    padding:0 20px;
}

.features-heading{
    width:100%;
    text-align:center;
    margin-bottom:10px;
}

.features-heading h2{
    font-size:32px;
    margin-bottom:10px;
}

.features-heading p{
    color:#aaa;
    margin-bottom:20px;
}

.card{
    flex:1;
    min-width:250px;
    max-width:340px;
}





/* ============================= */
/* ABOUT HOME                    */
/* ============================= */

.about-home {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 25px;
    margin-top: 80px;
}

.about-home-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 55px;
    text-align: center;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-home-card span {
    color: #8b7cff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-home-card h2 {
    font-size: 32px;
    margin: 12px 0 18px;
}

.about-home-card p {
    max-width: 720px;
    margin: 0 auto 25px;
    color: #aaa;
    line-height: 1.8;
}

.about-home-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #168cff, #765cff);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-home-btn:hover {
    transform: translateY(-2px);
}