@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
}

/* GRID BACKGROUND */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size:60px 60px;
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top, rgba(0,231,255,0.08), transparent 45%);
    z-index:-1;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 40px;
}

/* NAVBAR */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.05);
    z-index:1000;
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
}

.logo{
    color:#00e7ff;
    font-size:28px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:#847c75;
    text-decoration:none;
    transition:0.3s;
}

.nav-links a:hover{
    color:white;
}

.nav-btn{
    background:#f2ece4;
    color:black;
    border:none;
    border-radius:999px;
    padding:14px 28px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.nav-btn:hover{
    transform:translateY(-2px);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:80px;
    align-items:center;
}

.hero-label{
    color:#00e7ff;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:25px;
}

.hero h1{
    font-family:'Playfair Display', serif;
    font-size:100px;
    line-height:0.95;
    color:#f3eee7;
    margin-bottom:30px;
}

.hero h1 span{
    color:#00e7ff;
    font-style:italic;
    font-weight:500;
}

.hero p{
    color:#8d857d;
    font-size:24px;
    line-height:1.8;
    max-width:720px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:30px;
}

.primary-btn{
    background:#f2ece4;
    color:black;
    text-decoration:none;
    padding:20px 34px;
    border-radius:14px;
    font-weight:600;
}

.secondary-link{
    color:#8d857d;
    text-decoration:none;
}

.hero-card{
    border:1px solid rgba(0,231,255,0.2);
    background:rgba(0,231,255,0.03);
    border-radius:24px;
    padding:40px;
}

.hero-card-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:35px;
    color:#00e7ff;
    font-size:14px;
}

.hero-list{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.hero-list div{
    display:flex;
    align-items:center;
    gap:14px;
    color:#f3eee7;
    font-size:22px;
}

.hero-list span{
    color:#00e7ff;
}

/* COMMON */

.section{
    padding:140px 0;
}

.section-label{
    color:#756d63;
    letter-spacing:3px;
    font-size:13px;
    margin-bottom:25px;
}

.section-title{
    font-family:'Playfair Display', serif;
    font-size:82px;
    line-height:0.98;
    max-width:950px;
    margin-bottom:80px;
    color:#f3eee7;
}

.section-title span{
    font-style:italic;
    font-weight:500;
}

/* CARDS */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    border:1px solid rgba(0,231,255,0.18);
    background:rgba(255,255,255,0.01);
    border-radius:22px;
    padding:35px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:#00e7ff;
}

.card-number{
    color:#00e7ff;
    margin-bottom:40px;
    font-style:italic;
}

.card h3{
    font-family:'Playfair Display', serif;
    font-size:42px;
    line-height:1.05;
    margin-bottom:25px;
    color:#f3eee7;
}

.card p{
    color:#8f8780;
    font-size:21px;
    line-height:1.8;
}

.card-line{
    height:1px;
    background:#00e7ff;
    opacity:0.4;
    margin:35px 0;
}

.card-footer{
    color:#a29a92;
    line-height:1.8;
    font-size:18px;
}

.card-footer span{
    color:#00e7ff;
    font-weight:600;
}

/* FIX GRID */

.fix-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.fix-card{
    border:1px solid rgba(0,231,255,0.18);
    background:rgba(255,255,255,0.01);
    border-radius:22px;
    padding:30px;
}

.fix-heading{
    color:#756d63;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:30px;
}

.fix-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:35px;
}

.before,
.after{
    width:140px;
    border-radius:16px;
    padding:20px;
    border:1px solid rgba(255,255,255,0.08);
}

.after{
    background:rgba(0,231,255,0.06);
    border-color:rgba(0,231,255,0.3);
}

.small{
    color:#7c746d;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.time{
    font-size:32px;
    font-weight:700;
}

.after .time{
    color:#00e7ff;
}

.arrow{
    color:#666;
    font-size:24px;
}

.fix-card p{
    color:#8c847d;
    font-size:20px;
    line-height:1.8;
}

/* FAQ */

.faq-container{
    display:flex;
    flex-direction:column;
}

.faq-item{
    padding:40px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
}

.faq-question h3{
    font-family:'Playfair Display', serif;
    font-size:56px;
    line-height:1.1;
    font-style:italic;
    color:#f3eee7;
    max-width:900px;
}

.faq-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    background:transparent;
    border:1px solid rgba(255,255,255,0.08);
    color:#888;
    font-size:24px;
}

.faq-answer{
    margin-top:30px;
    max-width:800px;
}

.faq-answer p{
    color:#a39c94;
    font-size:23px;
    line-height:1.9;
}

/* CTA */

.cta{
    padding:180px 0;
    text-align:center;
}

.cta h2{
    font-family:'Playfair Display', serif;
    font-size:90px;
    line-height:1;
    max-width:900px;
    margin:auto;
    margin-bottom:35px;
    color:#f3eee7;
}

.cta p{
    color:#8d857d;
    font-size:24px;
    max-width:800px;
    margin:auto;
    line-height:1.8;
    margin-bottom:45px;
}

.cta-btn{
    background:#00e7ff;
    color:black;
    text-decoration:none;
    padding:22px 40px;
    border-radius:14px;
    font-weight:700;
    display:inline-block;
}

/* FOOTER */

footer{
    border-top:1px solid rgba(255,255,255,0.05);
    padding:50px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-text{
    color:#7b746d;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-grid,
    .cards-grid,
    .fix-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:72px;
    }

    .section-title{
        font-size:62px;
    }

    .faq-question h3{
        font-size:40px;
    }

    .cta h2{
        font-size:62px;
    }
}

@media(max-width:768px){

    .container{
        padding:0 24px;
    }

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:54px;
    }

    .section-title{
        font-size:48px;
    }

    .hero p,
    .faq-answer p,
    .fix-card p,
    .card p{
        font-size:18px;
    }
}
html{
    scroll-behavior:smooth;
}