/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fafc;
    color:#1e293b;
    line-height:1.6;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.note{
    font-size:8px;
    color:#888;
    margin-left:5px;
}

.note2{
    font-size:30px;
    color:#1e293b;
    margin-left:5px;
}

/* ================= HEADER ================= */
header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:32px;
    font-weight:800;
    color:#ff6b00;
}

.nav-links{
    display:flex;
    gap:25px;
    align-items:center;
}

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

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

.login-btn{
    background:#ff6b00;
    color:#fff!important;
    padding:12px 25px;
    border-radius:8px;
}

/* ================= HERO ================= */
.hero{
    padding:80px 0;
    background:linear-gradient(135deg,#fff3e6,#ffffff);
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-left{ flex:1; }

.hero-right{ flex:1; }

.hero-right img{
    width:100%;
    border-radius:20px;
}

.offer-badge{
    display:inline-block;
    background:#ffe6d4;
    color:#ff6b00;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

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

.hero-subtitle{
    font-size:20px;
    color:#555;
    margin-bottom:25px;
}

.hero-features{
    list-style:none;
    margin-bottom:30px;
}

.hero-features li{
    margin-bottom:12px;
    font-size:17px;
}

/* PRICE */
.price-box{
    display:flex;
    align-items:flex-start;
    margin-bottom:10px;
}

.currency{
    font-size:40px;
    font-weight:700;
    color:#ff6b00;
}

.amount{
    font-size:90px;
    font-weight:800;
    color:#ff6b00;
    line-height:1;
}

.period{
    font-size:30px;
    margin-top:20px;
}

.renewal{
    margin-bottom:25px;
    font-weight:500;
}

.start-btn{
    display:inline-block;
    padding:16px 40px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
}

.start-btn2{
    display:inline-block;
    padding:16px 100px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
}

.guarantee{
    margin-top:20px;
    color:#555;
}

/* ================= TRUST ================= */
.trust{
    padding:30px 0;
    background:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.trust-card{
    background:#f8fafc;
    padding:25px;
    text-align:center;
    border-radius:12px;
    font-weight:600;
}

/* ================= PRICING ================= */
.pricing{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.section-sub{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

.billing-toggle{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.billing-toggle button{
    border:none;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    background:#eee;
    font-weight:600;
    transition:0.3s;
}

.billing-toggle button.active{
    background:#ff6b00;
    color:white;
}

/* PLAN */
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.plan{
    background:white;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
    transition:0.3s;
}

.plan:hover{
    transform:translateY(-8px);
}

.featured{
    border:3px solid #ff6b00;
    transform:scale(1.03);
}

.popular{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff6b00;
    color:white;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
}

.plan h3{
    font-size:28px;
    margin-bottom:15px;
}

.plan-price{
    font-size:55px;
    color:#ff6b00;
    font-weight:700;
    margin-bottom:20px;
}

.plan ul{
    list-style:none;
    margin-bottom:25px;
}

.plan li{
    padding:8px 0;
}

.plan button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#ff6b00;
    color:white;
    font-weight:600;
    cursor:pointer;
}

/* ================= FEATURES ================= */
.features{
    padding:90px 0;
    background:#fff;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-card{
    background:#f8fafc;
    padding:30px;
    border-radius:16px;
    text-align:center;
    transition:0.3s;
}

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

.feature-card h3{
    margin:15px 0;
}

/* ================= ABOUT ================= */
.about{
    padding:90px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:20px;
}

.stats{
    display:flex;
    gap:25px;
    margin-top:30px;
    flex-wrap:wrap;
}

.stat{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

/* ================= AI ================= */
.ai-section{
    padding:90px 0;
    background:#fff;
    text-align:center;
}

.ai-box{
    max-width:900px;
    margin:auto;
    background:linear-gradient(135deg,#ff6b00,#ff8c42);
    color:white;
    padding:50px;
    border-radius:20px;
}

.ai-form{
    margin-top:20px;
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
}

.ai-form input{
    padding:14px;
    border:none;
    border-radius:8px;
    width:250px;
    outline:none;
}

.ai-form button{
    padding:14px 25px;
    border:none;
    border-radius:8px;
    background:#1e293b;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.ai-form button:hover{
    background:#000;
}

/* ================= TESTIMONIALS ================= */
.testimonials{
    padding:90px 0;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.review{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:0.3s;
}

.review:hover{
    transform:translateY(-5px);
}

/* ================= FAQ ================= */
.faq{
    padding:90px 0;
    background:#fff;
}

.faq-item{
    background:#f8fafc;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
}

.faq-question{
    padding:20px;
    cursor:pointer;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding:0 20px 20px;
    color:#555;
}

/* ================= GUARANTEE ================= */
.guarantee-section{
    padding:80px 0;
    text-align:center;
    background:#ff6b00;
    color:white;
}

/* ================= CONTACT ================= */
.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:40px;
}

.contact-card{
    background:#f8fafc;
    padding:20px;
    margin-bottom:20px;
    border-radius:12px;
}

.contact-card h3{
    color:#ff6b00;
    margin-bottom:10px;
}

.contact-form{
    background:#f8fafc;
    padding:30px;
    border-radius:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #ddd;
}

.contact-form button{
    width:100%;
    border:none;
    background:#ff6b00;
    color:white;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
}

/* ================= FOOTER ================= */
.footer{
    background:#0f172a;
    color:#fff;
}

.footer-top{
    max-width:1300px;
    margin:auto;
    padding:70px 30px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-column h3{
    margin-bottom:20px;
}

.footer-column ul{
    list-style:none;
}

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

.footer-column ul li a{
    color:#cbd5e1;
    text-decoration:none;
}

.footer-column ul li a:hover{
    color:#ff6b00;
    padding-left:5px;
}

.footer-bottom{
    text-align:center;
    padding:25px;
    color:#94a3b8;
}

/* ================= RESPONSIVE ================= */
@media (max-width:900px){

    .hero-wrapper,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

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

    .amount{
        font-size:60px;
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .nav-links{
        display:none;
    }

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }
}