*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;

    font-family:'Segoe UI',sans-serif;

    background:#f8fafc;

    color:#1e293b;
}

/* TOPBAR */

.topbar{
    position:sticky;

    top:20px;

    max-width:1400px;

    margin:20px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 28px;

    background:rgba(255,255,255,0.75);

    backdrop-filter:blur(12px);

    border-radius:22px;

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

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    z-index:1000;
}

.logo-text{
    font-size:32px;

    font-weight:bold;

    background:linear-gradient(135deg,#6366f1,#ec4899);

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.topbar nav{
    display:flex;

    gap:25px;
}

.topbar nav a{
    text-decoration:none;

    color:#1e293b;

    font-weight:600;

    font-size:15px;

    transition:0.3s;

    padding:10px 14px;

    border-radius:12px;
}

.topbar nav a:hover{
    background:linear-gradient(135deg,#6366f1,#ec4899);

    color:white;
}

/* LAYOUT */

.container{
    width:100%;
}

/* CONTENT */

.content{
    width:100%;

    max-width:1400px;

    margin:auto;

    padding:40px;
}

/* HERO */

.hero{
    background:linear-gradient(135deg,#6366f1,#ec4899);

    color:white;

    padding:70px 40px;

    border-radius:25px;

    text-align:center;

    margin-bottom:40px;

    overflow:hidden;
}

.logo{
    max-width:380px;

    width:100%;

    margin-bottom:25px;
}

.hero h1{
    margin:0;

    font-size:54px;
}

.hero p{
    margin-top:15px;

    font-size:20px;

    opacity:0.95;

    line-height:1.7;

    max-width:900px;

    margin-left:auto;

    margin-right:auto;
}

/* SECTIONS */

section{
    background:white;

    padding:35px;

    border-radius:20px;

    margin-bottom:25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);
}

h1{
    font-size:52px;

    margin-top:0;
}

h2{
    margin-top:0;

    font-size:36px;
}

/* LISTS */

ul li{
    margin-bottom:10px;

    line-height:1.7;
}

/* FORM */

form{
    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:20px;
}

input,
textarea{
    padding:14px;

    border-radius:10px;

    border:1px solid #e2e8f0;

    font-size:15px;
}

input:focus,
textarea:focus{
    outline:none;

    border-color:#6366f1;
}

/* BUTTON */

button,
.btn{
    padding:14px 24px;

    border-radius:12px;

    border:none;

    background:linear-gradient(135deg,#6366f1,#ec4899);

    color:white;

    font-weight:bold;

    cursor:pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    text-decoration:none;

    display:inline-block;
}

button:hover,
.btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 25px rgba(99,102,241,0.25);
}

/* CONTACT */

.contact-info{
    margin-top:20px;

    font-size:15px;

    color:#475569;
}

/* PRODUCTS */

.products-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
margin-bottom:10px;
    margin-top:30px;
}

.product-card{
    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12);
}

.product-card img{
    width:100%;

    height:240px;

    object-fit:cover;
}

.product-card h3{
    margin:15px;

    font-size:22px;
}

.product-card p{
    margin:0 15px 20px;

    color:#555;
}

.product-card .btn{
    margin:0 15px 20px;
}

/* HELP SECTION */

.help-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

    margin-top:30px;
}

.help-card{
    background:#f8fafc;

    padding:25px;
    color:#1e293b;  
    border-radius:18px;

    border:1px solid #e5e7eb;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow:
        0 15px 35px rgba(0,0,0,0.08);
}

.help-card h3{
    margin-top:0;
  color:#111827;
    font-size:24px;
}

.help-card p{
    line-height:1.7;

    color:#555;
}

/* PRODUCT PAGE */

.product-layout{
    display:grid;

    grid-template-columns:220px 1fr;

    gap:40px;

    align-items:start;

    margin-top:30px;
}

.product-gallery{
    display:flex;

    flex-direction:column;

    gap:20px;

    position:sticky;

    top:120px;
}

.gallery-thumb{
    width:100%;

    height:180px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        box-shadow 0.3s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);
}

.gallery-thumb:hover{
    transform:scale(1.03);

    opacity:0.92;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.14);
}

.product-description{
    font-size:18px;

    line-height:1.8;

    color:#475569;
}

/* LIGHTBOX */

.lightbox{
    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.9);

    justify-content:center;

    align-items:center;

    z-index:9999;
}

.lightbox img{
    max-width:90%;

    max-height:90%;

    border-radius:20px;
}

/* PRICING */

.pricing-section{
    text-align:center;
}

.pricing-subtitle{
    font-size:18px;

    color:#64748b;

    margin-bottom:40px;
}

.pricing-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:40px;
}

.price-card{
    background:white;

    border-radius:24px;

    padding:35px 25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    position:relative;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);
}

.price-card h3{
    margin-top:0;

    font-size:28px;
}

.price{
    font-size:42px;

    font-weight:bold;

    margin:25px 0;

    color:#ec4899;
}

.price-card ul{
    list-style:none;

    padding:0;

    margin-bottom:30px;
}

.price-card li{
    margin-bottom:12px;

    color:#475569;
}

.featured{
    border:3px solid #ec4899;

    transform:scale(1.03);
}
.section-dark-title{
    color:#111827;
}
.badge{
    position:absolute;

    top:-12px;
    right:20px;

    background:#ec4899;

    color:white;

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:bold;
}

.premium-card{
    background:linear-gradient(135deg,#6366f1,#ec4899);

    color:white;
}

.premium-card .price{
    color:white;
}

.extra-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);

    color:white;

    padding:40px;

    border-radius:24px;

    text-align:center;
}

.extra-box h3{
    margin-top:0;

    font-size:32px;
}

.extra-price{
    font-size:52px;

    font-weight:bold;

    margin:20px 0;

    color:#facc15;
}

/* FOOTER */

.footer{
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #111827,
            #1e1b4b
        );

    color:white;

    margin-top:60px;

    padding:60px 40px 20px;
}

.footer-content{
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;
}

.footer-box h3,
.footer-box h4{
    margin-top:0;

    margin-bottom:20px;
}

.footer-box p{
    color:#cbd5e1;

    line-height:1.8;
}

.footer-box a{
    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:12px;

    transition:0.3s;
}

.footer-box a:hover{
    color:#ec4899;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);

    margin-top:40px;

    padding-top:20px;

    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
}

.footer-powered{
    margin-top:10px;

    color:#94a3b8;

    font-size:14px;
}

.footer-powered a{
    color:#ec4899;

    text-decoration:none;

    font-weight:600;
}

.footer-powered a:hover{
    text-decoration:underline;
}

/* MOBILE */

@media (max-width:900px){

    .product-layout{
        grid-template-columns:1fr;
    }

    .product-gallery{
        position:relative;

        top:0;

        flex-direction:row;

        overflow:auto;
    }

    .gallery-thumb{
        min-width:220px;
    }

    .product-info h1{
        font-size:38px;
    }
}

@media (max-width:768px){

    .topbar{
        flex-direction:column;

        gap:15px;

        padding:20px;
    }

    .topbar nav{
        display:flex;

        align-items:center;

        justify-content:center;

        gap:14px;

        flex-wrap:wrap;
    }

    .content{
        padding:20px;
    }

    .hero{
        padding:50px 25px;
    }

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

    .hero p{
        font-size:17px;
    }

    h1{
        font-size:38px;
    }

    h2{
        font-size:28px;
    }

    .logo{
        max-width:300px;
    }

    .pricing-grid,
    .products-grid,
    .help-grid{
        grid-template-columns:1fr;
    }

    .price{
        font-size:34px;
    }

    .extra-price{
        font-size:40px;
    }
}
/* FAQ */

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

.faq-item{
    background:white;

    padding:30px;

    border-radius:24px;

    margin-bottom:24px;

    box-shadow:0 10px 25px rgba(0,0,0,0.05);

    transition:0.3s;

    border:1px solid rgba(99,102,241,0.08);
}

.faq-item:hover{
    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.faq-item h3{
    margin-top:0;

    margin-bottom:16px;

    font-size:24px;

    color:#111827;
}

.faq-item p{
    margin:0;

    color:#475569;

    line-height:1.9;

    font-size:17px;
}

/* FAQ MOBILE */

@media (max-width:768px){

    .faq-item{
        padding:24px;
    }

    .faq-item h3{
        font-size:21px;
    }

    .faq-item p{
        font-size:16px;
    }
}
@media (max-width:768px){

    .topbar{

        display:flex;
        flex-direction:column;

        align-items:center;

        padding:18px 15px;

        gap:20px;

        position:relative;

        border-radius:0 0 25px 25px;
    }

    .top-logo img{
        width:85px;
        height:auto;
    }

    .topbar nav{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

        align-items:center;

        gap:12px 18px;

        width:100%;
    }

    .topbar nav a{

        font-size:15px;

        padding:0;

        white-space:nowrap;
    }

}
.socials{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:15px;
}

.socials a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    opacity:0.8;
}
.socials img{
    width:42px;
    height:42px;
}
.socials img{
    transition:0.3s;
}

.socials img:hover{
    transform:scale(1.08);
}
.social-text{
    margin-top:15px;

    font-size:14px;

    color:#cbd5e1;

    line-height:1.6;

    max-width:180px;
}
.hero-socials{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:28px;

    width:100%;
}

.hero-socials img{

    width:46px;
    height:46px;

    transition:0.3s ease;
}

.hero-socials img:hover{

    transform:translateY(-4px) scale(1.05);
}
.hero-btn{

    font-size:18px;

    padding:16px 34px;

    border-radius:16px;

    box-shadow:0 12px 30px rgba(99,102,241,0.25);

    margin-bottom:20px;
}