*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:#1f2937;
    line-height:1.7;
    overflow-x:hidden;
}

/* ===================================================== */
/* NAVBAR */
/* ===================================================== */

.navbar{
    background:linear-gradient(90deg,#081427,#0c1f3f);
    height:86px;
    display:flex;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.container{
    width:92%;
    max-width:1380px;
    margin:auto;
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}



/* =========================
   LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    cursor:pointer;
}

.logo img{
    width:52px;
    height:52px;
    transition:.25s ease;
}

.logo:hover img{
    transform:translateY(-2px);
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

/* FOXYPREVIEWER */

.logo-text h2{
    margin:0;
    padding:0;

    font-size:34px;
    font-weight:800;
    letter-spacing:-1.4px;
}

/* FOXY */

.foxy{
    color:#ff7a1a;

    text-shadow:
        0 0 12px rgba(255,122,26,.25);
}

/* PREVIEWER */

.previewer{
    color:#ffffff;
}

/* TAGLINE */

.tagline{
    margin-top:4px;

    color:rgba(255,255,255,.65);

    font-size:13px;
    font-weight:500;

    letter-spacing:.4px;
}










.menu{
    display:flex;
    gap:38px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.menu a:hover{
    opacity:.7;
}



/* =========================================================
   DROPDOWN MENU
========================================================= */

.dropdown{
    position:relative;
}

.dropbtn{
    display:flex;
    align-items:center;
}

/* DROPDOWN PANEL */

.dropdown-content{
    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#111827;

    border:1px solid rgba(255,255,255,.06);

    border-radius:16px;

    padding:12px 0;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.22s ease;

    box-shadow:
        0 18px 50px rgba(0,0,0,.35);

    z-index:9999;
}

/* SHOW ON HOVER */

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ITEMS */

.dropdown-content a{
    display:block;

    padding:14px 20px;

    color:white;

    font-size:14px;
    font-weight:500;

    text-decoration:none;

    transition:.18s;
}

/* HOVER */

.dropdown-content a:hover{
    background:rgba(255,255,255,.06);

    color:#ff7a1a;

    padding-left:24px;
}






/* =========================================================
   RIGHT-ALIGNED DROPDOWN
========================================================= */

.dropdown-right .dropdown-content{

    left:auto;

    right:0;
}

/* PREVENT TEXT BREAKS */

.dropdown-content a{

    white-space:nowrap;
}

/* SMALL GAP ON BUTTON */

.dropbtn{

    gap:5px;
}









/* ===================================================== */
/* HERO */
/* ===================================================== */

.hero{
    padding:36px 0 24px;
    background:white;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:#3b82f6;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:26px;
    box-shadow:0 6px 18px rgba(59,130,246,.2);
}

.hero h1{
    font-size:42px;
    line-height:1.02;
    font-weight:800;
    color:#132238;
    margin-bottom:28px;
}

.hero-subtitle{
    font-size:16px;
    color:#6b7280;
    margin-bottom:22px;
    max-width:700px;
    line-height:1.0;
}

.hero-description{
    font-size:14px;
    color:#4b5563;
    margin-bottom:24px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:20px;
}


.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:13px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    transition:.25s;
}

.btn-primary{
    background:#2563eb;
    color:white;
    box-shadow:0 10px 30px rgba(37,99,235,.25);
}

.btn-primary:hover{
    transform:translateY(-2px);
    background:#1e54ca;
}

.btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
    background:white;
}

.btn-secondary:hover{
    background:#f1f6ff;
}



.feature-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:10px;
}

.tag{
    background:#f3f6fb;
    border:1px solid #dbe3f0;

    padding:6px 10px;

    border-radius:8px;

    font-size:11px;
    font-weight:600;

    color:#334155;

    line-height:1;
    white-space:nowrap;
}




.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/* ===================================================== */
/* SECTIONS */
/* ===================================================== */

.section{
    padding:32px 0;
}

.section-light{
    background:#f5f8fc;
}

.section-title{
    text-align:center;
    margin-bottom:36px;
}

.section-title h2{
    font-size:36px;
    color:#172033;
    margin-bottom:20px;
    font-weight:800;
}

.section-divider{
    width:70px;
    height:5px;
    background:#2563eb;
    border-radius:10px;
    margin:0 auto 24px;
}

.section-title p{
    max-width:950px;
    margin:auto;
    color:#4b5563;
    font-size:20px;
}

/* ===================================================== */
/* HIGHLIGHT */
/* ===================================================== */

.highlight-box{
    background:white;
    border-radius:22px;
    padding:38px 42px;
    display:flex;
    align-items:center;
    gap:24px;
    margin-top:50px;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    border-left:8px solid #2563eb;
}

.highlight-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    border:3px solid #2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#2563eb;
    flex-shrink:0;
}

.highlight-text{
    font-size:28px;
    font-weight:700;
    color:#172033;
}

/* ===================================================== */
/* FEATURES */
/* ===================================================== */

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:60px 40px;
}

.feature-item{
    text-align:center;
}

.feature-icon{
    width:86px;
    height:86px;
    margin:auto;
    margin-bottom:28px;
}

.feature-item h3{
    font-size:28px;
    margin-bottom:18px;
    color:#172033;
}

.feature-item p{
    color:#4b5563;
    font-size:18px;
}

/* ===================================================== */
/* CARDS */
/* ===================================================== */

.cards-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:34px;
}

.card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:.25s;
}

.card:hover{
    transform:translateY(-6px);
}

.card img{
    width:100%;
    display:block;
}

.card-content{
    padding:25px;
}

.card h3{
    font-size:20px;
    margin-bottom:16px;
    color:#172033;
}

.card p{
    font-size:14px;
    color:#4b5563;
}

/* ===================================================== */
/* CODE */
/* ===================================================== */

.codebox{
    position:relative;
    background:#0f172a;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:22px 26px;
    overflow-x:auto;
    box-shadow:
        0 10px 30px rgba(0,0,0,.35);
    margin-top:24px;
}

/* CODE */
.codebox pre{
    margin:0;
}

/* TEXT */
.codebox code{
    color:#f8fafc;
    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;
    font-size:15px;
    line-height:1.3;
    white-space:pre-wrap;
}

/* COMMENTS */
.codebox .comment{
    color:#22c55e;
}

/* OPTIONAL FOXPRO COMMAND COLOR */

.codebox .keyword{
    color:#60a5fa;
    font-weight:600;
}

.codebox::before{
    content:"FOXPRO";
    position:absolute;
    top:10px;
    right:16px;
    font-size:11px;
    color:rgba(255,255,255,.35);
    letter-spacing:1px;
}







/* ===================================================== */
/* QUOTES */
/* ===================================================== */

.quote-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

.quote{
    background:white;
    border-radius:22px;
    padding:36px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.quote p{
    font-size:22px;
    color:#374151;
    font-style:italic;
}

.quote strong{
    display:block;
    margin-top:18px;
    color:#111827;
}

/* ===================================================== */
/* CTA */
/* ===================================================== */

.cta{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    padding:48px 0;
    color:white;
    text-align:center;
}

.cta h2{
    font-size:36px;
    margin-bottom:24px;
    font-weight:800;
}

.cta p{
    font-size:20px;
    max-width:900px;
    margin:auto;
    opacity:.92;
    margin-bottom:36px;
}



/* =========================================================
   FOOTER
   ========================================================= */

.footer{
    background:linear-gradient(90deg,#081427,#0c1f3f);
    color:white;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.06);
}

.footer .container{
    padding:22px 0 16px;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:22px;
    margin-bottom:30px;
}

/* BRAND */

.footer-brand{
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

.footer-brand img{
    width:58px;
    height:58px;
}

.footer-brand h3{
    margin:0;
    font-size:26px;
    line-height:1;
    font-weight:800;
    letter-spacing:-1px;
}

.footer-brand span{
    color:rgba(255,255,255,.65);
    font-size:14px;
}


/* =========================================================
   FOOTER BRAND FIXES
========================================================= */

.footer-brand .foxy{
    color:#ff7a1a;
}

.footer-brand .previewer{
    color:#ffffff;
}




/* DESCRIPTION */
.footer-description{
    color:#9ca3b5;
    line-height:1.6;
    max-width:460px;
    font-size:14px;
}


/* TITLES */

.footer h4{
    margin-bottom:14px;
    font-size:14px;
    color:white;
}


/* LINKS */

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul a{
    font-size:14px;
}

.footer li{
    margin-bottom:5px;
}

.footer a{
    color:#9ca3b5;
    text-decoration:none;
    transition:.2s;
}

.footer a:hover{
    color:white;
}

/* SUPPORT */

.footer-support{
    color:#9ca3b5;
    line-height:1.7;
    margin-bottom:24px;
}

/* BUTTON */

.footer-button{
    display:inline-block;
    background:#ff7a1a;
    color:white !important;
    padding:11px 15px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.footer-button:hover{
    background:#ff933f;
    transform:translateY(-2px);
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:26px;

    display:flex;
    justify-content:space-between;
    gap:20px;

    color:#7d8799;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:900px){

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

}




/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media(max-width:1100px){


.hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
}


.hero h1{
    font-size:50px;
}

.section-title h2{
    font-size:36px;
}

.cta h2{
    font-size:36px;
}

}

@media(max-width:768px){

.menu{
    display:none;
}

.hero{
    padding-top:50px;
}

.hero h1{
    font-size:46px;
}

.hero-subtitle{
    font-size:22px;
}

.section-title h2{
    font-size:36px;
}

.section-title p{
    font-size:18px;
}

.highlight-box{
    flex-direction:column;
    text-align:center;
}

.highlight-text{
    font-size:22px;
}

.footer-box{
    flex-direction:column;
    text-align:center;
}

.cta h2{
    font-size:38px;
}

}



/* =====================================================
   REVIEWS
===================================================== */
.reviews{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:22px;

    margin-top:34px;
}

.review{
    background:white;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:20px 22px;

    box-shadow:
        0 4px 14px rgba(0,0,0,.04);

    transition:.2s;
}

.review:hover{
    transform:translateY(-3px);

    box-shadow:
        0 10px 24px rgba(0,0,0,.08);
}

.review .stars{
    color:#facc15;

    font-size:15px;

    letter-spacing:2px;

    margin-bottom:12px;
}

.review .quote{
    font-style:italic;

    color:#374151;

    font-size:15px;

    line-height:1.7;

    margin-bottom:14px;
}

.review .author{
    font-size:13px;

    color:#6b7280;

    font-weight:600;
}

/* MOBILE */

@media(max-width:900px){

.reviews{
    grid-template-columns:1fr;
}

}



/* =========================================================
   RELEASES
   ========================================================= */

.release-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.release-card{
    background:white;
    border-radius:18px;
    padding:14px 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;

    border:1px solid #e5e7eb;

    transition:.22s ease;
}

.release-card:hover{
    transform:translateY(-2px);

    box-shadow:
        0 14px 24px rgba(0,0,0,.06);
}

.release-left{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.release-title{
    font-size:18px;
    font-weight:700;
    color:#172033;

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.release-meta{
    color:#6b7280;
    font-size:13px;
}

.release-badge{
    font-size:11px;
    font-weight:700;
    padding:5px 10px;
    border-radius:999px;
}

.latest-badge{
    background:#dcfce7;
    color:#16a34a;
}

.popular-badge{
    background:#fef3c7;
    color:#d97706;
}

.btn-small{
    padding:10px 16px;
    font-size:12px;
}

.compact-tags .tag{
    padding:8px 12px;
    font-size:12px;
}

@media(max-width:768px){

.release-card{
    flex-direction:column;
    align-items:flex-start;
}

.release-right{
    width:100%;
}

.release-right .btn{
    width:100%;
    justify-content:center;
}

}





/* =========================================================
   PRICING
   ========================================================= */

.pricing-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(260px,320px));
    justify-content:center;
    gap:18px;
}

.pricing-card{
    position:relative;
    background:white;
    border-radius:18px;
    padding:20px 18px;
    border:1px solid #e5e7eb;
    box-shadow:
        0 10px 28px rgba(0,0,0,.05);
    transition:.18s ease;
}

.pricing-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.featured-plan{
    border:2px solid #2563eb;

    transform:scale(1.02);
}

.featured-badge{
    position:absolute;

    top:-14px;
    right:24px;

    background:#2563eb;
    color:white;

    padding:8px 14px;

    border-radius:999px;

    font-size:11px;
    font-weight:700;

    letter-spacing:.5px;
}

.pricing-name{
    font-size:24px;
    font-weight:800;

    color:#172033;

    margin-bottom:8px;
}

.pricing-price{
    font-size:38px;
    font-weight:800;

    color:#2563eb;

    margin-bottom:8px;
}

.pricing-subtitle{
    color:#6b7280;

    margin-bottom:28px;

    font-size:14px;
}

.pricing-features{
    list-style:none;

    padding:0;
    margin:0 0 34px 0;
}

.pricing-features li{
    padding:7px 0;

    color:#374151;

    border-bottom:1px solid #f1f5f9;

    font-size:14px;
}

.pricing-button{
    width:100%;
    justify-content:center;
}

.renewals-grid{
    max-width:900px;
    margin:auto;
}

.renewal-card{
    padding:34px 30px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:24px;

    max-width:950px;
    margin:auto;
}

.faq-item{
    background:white;

    border-radius:20px;

    padding:30px 34px;

    border:1px solid #e5e7eb;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

.faq-item h3{
    margin-bottom:14px;

    color:#172033;

    font-size:24px;
}

.faq-item p{
    color:#4b5563;

    font-size:17px;
}

@media(max-width:768px){

.pricing-name{
    font-size:30px;
}

.pricing-price{
    font-size:42px;
}

.featured-plan{
    transform:none;
}

}