/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#070707;
    color:#ffffff;

    font-family:'Inter',sans-serif;

    line-height:1.7;

    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

a{
    text-decoration:none;
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.background-glow{

    position:fixed;

    top:-250px;
    right:-200px;

    width:700px;
    height:700px;

    background:radial-gradient(
        circle,
        rgba(255,0,120,0.16),
        transparent 70%
    );

    z-index:-1;

    pointer-events:none;
}


/* =========================================
   NAVBAR
========================================= */

.navbar{

    width:100%;
    max-width:1150px;

    margin:auto;

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

    padding:28px 20px;
}

.logo{

    font-size:1.9rem;
    font-weight:800;

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

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

.nav-links{

    display:flex;
    align-items:center;

    gap:26px;
}

.nav-links a{

    color:#c8c8c8;

    font-size:0.96rem;
    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{

    color:white;
}

.nav-btn{

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

    color:white !important;

    padding:12px 22px;

    border-radius:14px;

    font-weight:600;
}


/* =========================================
   PAGE HERO
========================================= */

.page-hero{

    width:100%;
    max-width:850px;

    margin:auto;

    padding:70px 20px 30px;
}

.page-badge{

    display:inline-block;

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

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

    padding:9px 16px;

    border-radius:999px;

    font-size:0.82rem;
    font-weight:600;

    color:#d0d0d0;

    margin-bottom:22px;
}

.page-hero h1{

    font-size:3rem;
    font-weight:700;

    line-height:1.2;

    margin-bottom:18px;

    letter-spacing:-1px;
}

.page-hero h1 span{

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

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

.page-hero p{

    color:#aaaaaa;

    font-size:1rem;

    line-height:1.9;

    max-width:760px;
}


/* =========================================
   CONTENT SECTION
========================================= */

.content-section{

    width:100%;
    max-width:900px;

    margin:auto;

    padding:20px;
}


/* =========================================
   SIMPLE CONTENT CARDS
========================================= */

.glass-card{

    padding:34px 0;

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

.glass-card h2{

    font-size:1.45rem;

    font-weight:600;

    margin-bottom:18px;

    letter-spacing:-0.5px;
}

.glass-card p{

    color:#b6b6b6;

    font-size:1rem;

    line-height:1.9;

    margin-bottom:16px;
}

.glass-card ul{

    padding-left:22px;

    margin-top:12px;
}

.glass-card li{

    color:#b6b6b6;

    margin-bottom:12px;

    line-height:1.8;
}


/* =========================================
   AUTH PAGES
========================================= */

.auth-section{

    width:100%;
    min-height:100vh;

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

    padding:40px 20px 80px;
}

.auth-container{

    width:100%;
    max-width:1150px;

    display:grid;

    grid-template-columns:1fr 460px;

    gap:60px;

    align-items:center;
}

.auth-left h1{

    font-size:3.2rem;

    line-height:1.2;

    margin-bottom:22px;

    font-weight:700;
}

.auth-left h1 span{

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

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

.auth-left p{

    color:#a9a9a9;

    line-height:1.9;

    margin-bottom:32px;
}

.auth-features{

    display:flex;
    flex-direction:column;

    gap:22px;
}

.auth-features .glass-card{

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

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

    border-radius:22px;

    padding:24px;
}


/* =========================================
   AUTH CARD
========================================= */

.auth-card{

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

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

    border-radius:28px;

    padding:38px;
}

.auth-title{

    font-size:2rem;

    margin-bottom:10px;
}

.auth-subtitle{

    color:#a7a7a7;

    margin-bottom:28px;
}


/* =========================================
   FORM INPUTS
========================================= */

.input-group{

    margin-bottom:22px;
}

.input-group label{

    display:block;

    margin-bottom:10px;

    color:#e1e1e1;

    font-size:0.94rem;

    font-weight:600;
}

input,
textarea{

    width:100%;

    background:#101010;

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

    color:white;

    padding:16px 18px;

    border-radius:16px;

    outline:none;

    font-size:0.96rem;

    transition:0.3s;
}

input:focus,
textarea:focus{

    border-color:#ff0080;
}

input::placeholder,
textarea::placeholder{

    color:#7d7d7d;
}

textarea{

    resize:vertical;

    min-height:140px;
}


/* =========================================
   BUTTONS
========================================= */

.primary-btn,
button{

    border:none;
    outline:none;

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

    color:white;

    padding:15px 22px;

    border-radius:16px;

    font-size:0.96rem;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.primary-btn:hover,
button:hover{

    transform:translateY(-2px);
}


/* =========================================
   GOOGLE BUTTON
========================================= */

.google-btn{

    width:100%;

    background:white;

    color:black;

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

    gap:12px;

    margin-top:10px;
}


/* =========================================
   AUTH DIVIDER
========================================= */

.auth-divider{

    position:relative;

    text-align:center;

    margin:26px 0;

    color:#8c8c8c;
}

.auth-divider::before{

    content:"";

    position:absolute;

    top:50%;
    left:0;

    width:100%;
    height:1px;

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

    z-index:-1;
}

.auth-divider span{

    background:#070707;

    padding:0 12px;
}


/* =========================================
   AUTH FOOTER
========================================= */

.auth-footer{

    margin-top:24px;

    text-align:center;
}

.auth-footer a{

    color:#9f6cff;
}


/* =========================================
   CONTACT PAGE
========================================= */

.contact-layout{

    width:100%;
    max-width:1100px;

    margin:auto;

    padding:20px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.contact-info{

    display:flex;
    flex-direction:column;

    gap:22px;
}

.contact-info .glass-card,
.contact-form-wrapper .glass-card{

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

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

    border-radius:24px;

    padding:28px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1000px){

    .auth-container,
    .contact-layout{

        grid-template-columns:1fr;
    }

    .dashboard-layout{

        flex-direction:column;
    }

    .sidebar{

        width:100%;
    }
}

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        gap:20px;
    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;
    }

    .page-hero h1{

        font-size:2.3rem;
    }

    .auth-left h1{

        font-size:2.5rem;
    }

    .dashboard-main{

        padding:24px;
    }

    .dashboard-topbar{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;
    }
}

@media(max-width:500px){

    .page-hero h1{

        font-size:2rem;
    }

    .auth-card{

        padding:28px 22px;
    }
}

/* =========================
   DIRECT EMAIL
========================= */

.direct-contact{

    margin-top:24px;

    padding-top:20px;

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

    text-align:center;
}

.direct-contact-text{

    color:#b7b7b7;

    font-size:0.95rem;

    line-height:1.7;
}

.contact-email-link{

    color:#ff2cb4;

    text-decoration:none;

    font-weight:600;

    transition:0.25s ease;
}

.contact-email-link:hover{

    color:#ffffff;
}

/* =========================================================
   VIRALMINT AI — NEW SECONDARY PAGE GLOBAL STYLE
   Paste at bottom of css/pages.css
========================================================= */

:root {
    --vm-bg: #050507;
    --vm-card: rgba(255,255,255,0.045);
    --vm-card-soft: rgba(255,255,255,0.018);
    --vm-border: rgba(255,255,255,0.08);
    --vm-border-strong: rgba(255,255,255,0.13);
    --vm-text: #ffffff;
    --vm-muted: rgba(255,255,255,0.64);
    --vm-muted-2: rgba(255,255,255,0.48);
    --vm-pink: #ff0f8f;
    --vm-purple: #8b5cf6;
    --vm-gradient: linear-gradient(135deg, #ff0f8f, #8b5cf6);
}

/* Base secondary page reset */
body {
    font-family: 'Inter', sans-serif;
    background: var(--vm-bg);
    color: var(--vm-text);
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(circle at 85% 10%, rgba(255,15,143,0.14), transparent 32%),
        radial-gradient(circle at 8% 85%, rgba(139,92,246,0.12), transparent 34%),
        #050507;
}

/* Shared page container feel */
main {
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.035);
    border: 1px solid var(--vm-border);

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 800;

    letter-spacing: 0.2px;
}

/* =========================================================
   SECONDARY PAGE NAVBAR
========================================================= */

.page-header {
    width: 92%;
    max-width: 1360px;
    margin: 22px auto 0;
    position: relative;
    z-index: 100;
}

.page-navbar {
    height: 82px;

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

    padding: 0 32px;

    border-radius: 16px;

    background: rgba(5,7,12,0.66);
    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 20px 70px rgba(0,0,0,0.35);
}

.page-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

.page-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.page-logo span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.6px;
    white-space: nowrap;
}

.page-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.page-nav-links a {
    color: rgba(255,255,255,0.76);
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 700;

    transition: 0.25s ease;
}

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

.page-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.page-login-btn,
.page-primary-btn {
    height: 54px;

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

    padding: 0 24px;

    border-radius: 16px;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 800;

    transition: 0.28s ease;
}

.page-login-btn {
    color: #ffffff;

    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.09);
}

.page-login-btn:hover {
    background: rgba(255,255,255,0.055);
}

.page-primary-btn {
    color: #ffffff;

    background: var(--vm-gradient);

    box-shadow:
        0 12px 34px rgba(255,15,143,0.24);
}

.page-primary-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 44px rgba(255,15,143,0.32);
}

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

.faq-hero-section {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 0 60px;
    text-align: center;
}

.faq-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.faq-hero-content .section-tag {
    margin-bottom: 20px;
}

.faq-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 850;

    color: #ffffff;

    margin-bottom: 22px;
}

.faq-hero-content p {
    max-width: 760px;
    margin: 0 auto;

    color: var(--vm-muted);

    font-size: 1.08rem;
    line-height: 1.75;
}

/* FAQ layout */

.faq-page-section {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 110px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: start;
}

/* Sidebar */

.faq-sidebar {
    position: sticky;
    top: 26px;

    padding: 22px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.014)
        );

    border: 1px solid var(--vm-border);

    box-shadow:
        0 22px 60px rgba(0,0,0,0.28);
}

.faq-sidebar-label {
    display: block;

    color: rgba(255,255,255,0.45);

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 16px;
}

.faq-sidebar a {
    display: block;

    padding: 12px 14px;

    border-radius: 14px;

    color: rgba(255,255,255,0.68);

    text-decoration: none;

    font-size: 0.94rem;
    font-weight: 700;

    transition: 0.25s ease;
}

.faq-sidebar a:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.055);
}

/* FAQ content */

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.faq-category {
    padding: 28px;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.014)
        );

    border: 1px solid var(--vm-border);

    box-shadow:
        0 24px 70px rgba(0,0,0,0.30);

    position: relative;
    overflow: hidden;
}

.faq-category::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 100% 0%, rgba(255,15,143,0.08), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(139,92,246,0.07), transparent 34%);

    pointer-events: none;
}

.faq-category > * {
    position: relative;
    z-index: 2;
}

.faq-category-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 22px;
}

.faq-category-heading span {
    width: 40px;
    height: 30px;

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

    border-radius: 999px;

    background: rgba(255,255,255,0.05);
    border: 1px solid var(--vm-border);

    color: rgba(255,255,255,0.62);

    font-size: 0.78rem;
    font-weight: 800;
}

.faq-category-heading h2 {
    color: #ffffff;

    font-size: 1.45rem;
    font-weight: 850;

    margin: 0;
}

/* FAQ accordion */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 18px;

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

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

    overflow: hidden;

    transition: 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.12);
}

.faq-item summary {
    cursor: pointer;

    padding: 20px 22px;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 800;

    list-style: none;

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

    gap: 18px;
}

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

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

    width: 28px;
    height: 28px;

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

    border-radius: 999px;

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

    color: #ff4dc4;

    font-size: 1.1rem;
    font-weight: 800;

    flex-shrink: 0;

    transition: 0.25s ease;
}

.faq-item[open] summary::after {
    content: "−";
    background: rgba(255,15,143,0.12);
}

.faq-item p {
    padding: 0 22px 22px;

    color: rgba(255,255,255,0.65);

    font-size: 0.98rem;
    line-height: 1.75;

    margin: 0;
}

/* FAQ CTA */

.faq-cta-section {
    width: 92%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 120px;
}

.faq-cta-box {
    position: relative;
    overflow: hidden;

    text-align: center;

    padding: 54px;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.014)
        );

    border: 1px solid var(--vm-border);

    box-shadow:
        0 32px 90px rgba(0,0,0,0.42);
}

.faq-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 0%, rgba(255,15,143,0.13), transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(139,92,246,0.10), transparent 34%);

    pointer-events: none;
}

.faq-cta-box > * {
    position: relative;
    z-index: 2;
}

.faq-cta-box .section-tag {
    margin-bottom: 20px;
}

.faq-cta-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 850;

    color: #ffffff;

    margin-bottom: 18px;
}

.faq-cta-box p {
    max-width: 660px;
    margin: 0 auto 28px;

    color: var(--vm-muted);

    font-size: 1rem;
    line-height: 1.75;
}

/* =========================================================
   SECONDARY PAGE RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .page-navbar {
        height: auto;
        padding: 18px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .page-nav-actions {
        margin-left: auto;
    }

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

    .faq-sidebar {
        position: relative;
        top: auto;

        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .faq-sidebar-label {
        width: 100%;
    }

    .page-footer-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

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

    .page-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .page-header {
        width: 92%;
        margin-top: 14px;
    }

    .page-logo span {
        display: none;
    }

    .page-nav-actions {
        width: 100%;
        justify-content: center;
    }

    .page-login-btn,
    .page-primary-btn {
        flex: 1;
        padding: 0 16px;
    }

    .faq-hero-section {
        width: 90%;
        padding: 80px 0 40px;
    }

    .faq-hero-content h1 {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
        letter-spacing: -2px;
    }

    .faq-page-section {
        width: 90%;
        padding-bottom: 80px;
    }

    .faq-category {
        padding: 20px;
        border-radius: 24px;
    }

    .faq-item summary {
        padding: 18px;
        font-size: 0.95rem;
    }

    .faq-item p {
        padding: 0 18px 18px;
    }

    .faq-cta-section {
        width: 90%;
        padding-bottom: 90px;
    }

    .faq-cta-box {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .page-footer {
        padding: 58px 0 30px;
    }

    .page-footer-inner,
    .page-footer-bottom {
        width: 88%;
    }

    .page-footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   PREMIUM WHITE FOOTER
=========================== */


.footer {

    background: #ffffff;

    color: #111111;

    padding: 90px 7% 40px;

    margin-top: 120px;

}


.footer-top {

    display: grid;

    grid-template-columns: 1.3fr 2fr;

    gap: 60px;

    margin-bottom: 60px;

}


.footer-logo {

    font-size: 2rem;

    font-weight: 800;

    color: #111;

    text-decoration: none;

}


.footer-description {

    color: #555;

    margin: 25px 0;

    max-width: 420px;

}


.footer-social {

    display: flex;

    gap: 15px;

}


.footer-social a {

    color: #444;

    text-decoration: none;

    font-weight: 600;

}


.footer-grid {

    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 35px;

}


.footer-column h4 {

    margin-bottom: 22px;

    color: #111;

}


.footer-column a {

    display: block;

    margin-bottom: 15px;

    text-decoration: none;

    color: #666;

    transition: .3s;

}


.footer-column a:hover {

    color: #ff0080;

}


.footer-trust {

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    padding: 22px 0;

    display: flex;

    justify-content: center;

    gap: 40px;

    color: #444;

}


.footer-bottom {

    padding-top: 30px;

    display: flex;

    justify-content: space-between;

    color: #666;

}


/* ===========================
   RESPONSIVE DESIGN
=========================== */


@media(max-width: 992px) {


    .comparison-table,
    .security-cards,
    .user-grid,
    .pricing-grid,
    .footer-top,
    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    .footer-top {

        display: block;

    }


    .footer-brand {

        margin-bottom: 40px;

    }


    .footer-bottom,
    .footer-trust {

        flex-direction: column;

        text-align: center;

        gap: 15px;

    }

}


@media(max-width: 650px) {


    .comparison-table,
    .security-cards,
    .user-grid,
    .pricing-grid,
    .footer-grid {

        grid-template-columns: 1fr;

    }


    .price-card.popular {

        transform: none;

    }


    .price-card.popular:hover {

        transform: translateY(-10px);

    }


    .footer {

        text-align: center;

    }


    .footer-social {

        justify-content: center;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 12px;

    }

}

/* =========================================================
   FOOTER FULL WIDTH FIX — SECONDARY PAGES
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Force footer white background to touch screen edges */
.page-footer {
    width: 100vw !important;
    max-width: none !important;

    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;

    background: #f6f6f7 !important;

    border-radius: 0 !important;
    padding: 76px 0 34px !important;

    position: relative;
    left: 0;
    right: 0;
}

/* Keep footer content centered professionally */
.page-footer-inner,
.page-footer-strip,
.page-footer-bottom {
    width: 86% !important;
    max-width: 1360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* =========================================================
   VIRALMINT AI — GLOBAL NAVBAR WITH MOBILE MENU
========================================================= */

.vm-global-header {
    width: 100%;
    position: relative;
    z-index: 9999;

    background:
        linear-gradient(
            90deg,
            #050507 0%,
            #07070b 48%,
            rgba(35, 0, 18, 0.92) 100%
        );

    border-bottom: 1px solid rgba(255,255,255,0.055);
}

.vm-global-nav {
    width: 92%;
    max-width: 1360px;
    height: 96px;
    margin: 0 auto;

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

    gap: 34px;
}

/* Logo */

.vm-global-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    text-decoration: none;
    flex-shrink: 0;
}

.vm-global-logo img {
    width: 44px;
    height: 44px;

    object-fit: contain;
    border-radius: 12px;

    display: block;
}

.vm-global-logo span {
    color: #ffffff;

    font-size: 1.28rem;
    font-weight: 850;

    letter-spacing: -0.9px;
    line-height: 1;

    white-space: nowrap;
}

.vm-global-logo strong {
    font-weight: 850;

    background:
        linear-gradient(
            135deg,
            #ff0f8f,
            #8b5cf6
        );

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

/* Desktop links */

.vm-global-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 34px;

    list-style: none;

    padding: 0;
    margin: 0;

    flex: 1;
}

.vm-global-links a {
    position: relative;

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 750;

    transition: color 0.22s ease;
}

.vm-global-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #ff0f8f,
            #8b5cf6
        );

    transition: width 0.24s ease;
}

.vm-global-links a:hover {
    color: #ffffff;
}

.vm-global-links a:hover::after {
    width: 100%;
}

/* Desktop actions */

.vm-global-actions {
    display: flex;
    align-items: center;
    gap: 14px;

    flex-shrink: 0;
}

.vm-nav-login,
.vm-nav-cta {
    height: 54px;

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

    padding: 0 25px;

    border-radius: 16px;

    text-decoration: none;

    font-size: 0.96rem;
    font-weight: 850;

    transition: 0.24s ease;
}

.vm-nav-login {
    color: #ffffff;

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

    border: 1px solid rgba(255,255,255,0.085);
}

.vm-nav-login:hover {
    background: rgba(255,255,255,0.055);

    border-color: rgba(255,255,255,0.14);
}

.vm-nav-cta {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff0f8f,
            #8b5cf6
        );

    box-shadow:
        0 12px 34px rgba(255,15,143,0.24);
}

.vm-nav-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 44px rgba(255,15,143,0.32);
}

/* Mobile hamburger */

.vm-mobile-toggle {
    display: none;

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.10);

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.vm-mobile-toggle span {
    width: 20px;
    height: 2px;

    border-radius: 999px;

    background: #ffffff;

    transition: 0.25s ease;
}

.vm-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vm-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.vm-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */

.vm-mobile-menu {
    display: none;

    width: 92%;
    max-width: 1360px;

    margin: 0 auto 18px;

    padding: 18px;

    border-radius: 20px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.018)
        );

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

    box-shadow:
        0 22px 70px rgba(0,0,0,0.38);
}

.vm-mobile-menu.active {
    display: block;
}

.vm-mobile-menu a {
    display: block;

    padding: 14px 14px;

    border-radius: 14px;

    color: rgba(255,255,255,0.78);

    text-decoration: none;

    font-size: 0.98rem;
    font-weight: 750;

    transition: 0.22s ease;
}

.vm-mobile-menu a:hover {
    color: #ffffff;

    background: rgba(255,255,255,0.055);
}

.vm-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-top: 12px;
}

.vm-mobile-login,
.vm-mobile-cta {
    text-align: center;

    height: 50px;

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

    font-weight: 850 !important;
}

.vm-mobile-login {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.09);
}

.vm-mobile-cta {
    background:
        linear-gradient(
            135deg,
            #ff0f8f,
            #8b5cf6
        );

    color: #ffffff !important;
}

/* =========================================================
   GLOBAL NAVBAR RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .vm-global-links {
        gap: 24px;
    }

    .vm-global-links a {
        font-size: 0.9rem;
    }

    .vm-nav-login,
    .vm-nav-cta {
        padding: 0 20px;
    }

}

@media (max-width: 850px) {

    .vm-global-nav {
        height: 82px;
        width: 90%;
    }

    .vm-global-links,
    .vm-global-actions {
        display: none;
    }

    .vm-mobile-toggle {
        display: flex;
    }

}

@media (max-width: 520px) {

    .vm-global-logo span {
        font-size: 1.08rem;
    }

    .vm-global-logo img {
        width: 40px;
        height: 40px;
    }

    .vm-mobile-actions {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   GLOBAL NAVBAR DROPDOWNS
========================================================= */

.vm-global-links {
    gap: 42px;
}

.vm-nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.vm-nav-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 22px;
}

.vm-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vm-dropdown-trigger span {
    font-size: 0.7rem;
    opacity: 0.75;
    transform: translateY(1px);
}

.vm-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;

    width: 285px;

    transform: translateX(-50%) translateY(8px);

    padding: 10px;

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(12,12,18,0.98),
            rgba(7,7,11,0.98)
        );

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

    box-shadow:
        0 28px 80px rgba(0,0,0,0.55);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;

    z-index: 99999;
}

.vm-dropdown-menu-small {
    width: 240px;
}

.vm-nav-dropdown:hover .vm-dropdown-menu,
.vm-nav-dropdown:focus-within .vm-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

.vm-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;

    padding: 13px 14px;

    border-radius: 13px;

    color: rgba(255,255,255,0.76);

    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 750;

    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.vm-dropdown-menu a::after {
    display: none;
}

.vm-dropdown-menu a:hover {
    color: #ffffff;

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

    transform: translateX(3px);
}

.vm-dropdown-menu a span {
    width: 30px;
    height: 24px;

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

    border-radius: 999px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);

    color: rgba(255,255,255,0.55);

    font-size: 0.72rem;
    font-weight: 850;
}

.vm-mobile-group-title {
    display: block;

    padding: 14px 14px 6px;

    color: rgba(255,255,255,0.42);

    font-size: 0.75rem;
    font-weight: 850;

    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================
   VIRALMINT AI — BLOG PAGE
   Paste at bottom of css/pages.css
========================================================= */

/* Blog Hero */

.blog-hero-section {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 0 54px;
    text-align: center;
}

.blog-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-content .section-tag {
    margin-bottom: 20px;
}

.blog-hero-content h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 22px;
}

.blog-hero-content p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255,255,255,0.66);
    font-size: 1.08rem;
    line-height: 1.75;
}


/* Featured Article */

.blog-featured-section {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 0 54px;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;

    text-decoration: none;
    color: inherit;

    padding: 22px;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.014)
        );

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

    box-shadow:
        0 30px 90px rgba(0,0,0,0.38);

    overflow: hidden;

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,15,143,0.25);
    box-shadow:
        0 38px 110px rgba(0,0,0,0.48);
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,15,143,0.18),
            rgba(139,92,246,0.18)
        );
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.blog-featured-content {
    padding: 20px 14px 20px 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    margin-bottom: 18px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    border-radius: 999px;

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

    color: rgba(255,255,255,0.62);

    font-size: 0.78rem;
    font-weight: 800;
}

.blog-featured-content h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 18px;
}

.blog-featured-content p {
    color: rgba(255,255,255,0.66);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 26px;
}

.blog-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;

    color: rgba(255,255,255,0.48);

    font-size: 0.94rem;
    font-weight: 700;
}


/* Category Pills */

.blog-categories-section {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 66px;
}

.blog-category-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-category-pills a {
    padding: 11px 18px;

    border-radius: 999px;

    color: rgba(255,255,255,0.68);

    text-decoration: none;

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

    font-size: 0.92rem;
    font-weight: 750;

    transition: 0.24s ease;
}

.blog-category-pills a:hover,
.blog-category-pills a.active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(255,15,143,0.22),
            rgba(139,92,246,0.18)
        );

    border-color: rgba(255,15,143,0.24);
}


/* Blog Grid */

.blog-grid-section {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 0 110px;
}

.blog-section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.blog-section-heading .section-tag {
    margin-bottom: 18px;
}

.blog-section-heading h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 16px;
}

.blog-section-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.62);
    font-size: 1.02rem;
    line-height: 1.75;
}

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

.blog-card {
    display: flex;
    flex-direction: column;

    text-decoration: none;
    color: inherit;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.014)
        );

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

    overflow: hidden;

    box-shadow:
        0 24px 70px rgba(0,0,0,0.28);

    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,15,143,0.22);

    box-shadow:
        0 34px 92px rgba(0,0,0,0.42);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,15,143,0.16),
            rgba(139,92,246,0.16)
        );
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h3 {
    font-size: 1.28rem;
    line-height: 1.22;
    letter-spacing: -0.6px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 14px;
}

.blog-card-content p {
    color: rgba(255,255,255,0.62);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;

    color: rgba(255,255,255,0.44);

    font-size: 0.86rem;
    font-weight: 700;
}


/* Blog CTA */

.blog-cta-section {
    width: 92%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 0 120px;
}

.blog-cta-box {
    position: relative;
    overflow: hidden;

    text-align: center;

    padding: 56px;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.014)
        );

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

    box-shadow:
        0 32px 90px rgba(0,0,0,0.42);
}

.blog-cta-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 50% 0%, rgba(255,15,143,0.13), transparent 35%),
        radial-gradient(circle at 0% 100%, rgba(139,92,246,0.10), transparent 34%);

    pointer-events: none;
}

.blog-cta-box > * {
    position: relative;
    z-index: 2;
}

.blog-cta-box .section-tag {
    margin-bottom: 20px;
}

.blog-cta-box h2 {
    font-size: clamp(2rem, 3.6vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -1.8px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 18px;
}

.blog-cta-box p {
    max-width: 680px;
    margin: 0 auto 30px;

    color: rgba(255,255,255,0.66);

    font-size: 1rem;
    line-height: 1.75;
}

/* =========================================================
   BLOG PAGE RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-content {
        padding: 10px 8px 8px;
    }

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

}

@media (max-width: 650px) {

    .blog-hero-section {
        width: 90%;
        padding: 82px 0 42px;
    }

    .blog-hero-content h1 {
        font-size: clamp(2.3rem, 11vw, 3.4rem);
        letter-spacing: -2px;
    }

    .blog-featured-section,
    .blog-categories-section,
    .blog-grid-section,
    .blog-cta-section {
        width: 90%;
    }

    .blog-featured-card {
        padding: 14px;
        border-radius: 26px;
    }

    .blog-featured-image {
        border-radius: 20px;
    }

    .blog-featured-content h2 {
        font-size: 2rem;
        letter-spacing: -1.2px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-card {
        border-radius: 24px;
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-cta-box {
        padding: 36px 22px;
        border-radius: 28px;
    }

}

.hidden {
    display: none !important;
}

.nav-dashboard-btn,
.mobile-dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    background:
        linear-gradient(135deg, rgba(255, 20, 147, 0.95), rgba(139, 92, 246, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 14px 34px rgba(139, 92, 246, 0.22),
        0 8px 24px rgba(255, 20, 147, 0.16);
    transition: 0.25s ease;
}

.nav-dashboard-btn:hover,
.mobile-dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 44px rgba(139, 92, 246, 0.3),
        0 10px 30px rgba(255, 20, 147, 0.22);
}

.mobile-dashboard-btn {
    width: 100%;
    margin-top: 12px;
}

/* =========================================
   GLOBAL NAVBAR ACTION BUTTONS POLISH
========================================= */

.hidden {
    display: none !important;
}

.vm-global-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

/* Remove default browser link style */
.vm-global-actions a,
.nav-login-btn,
.nav-start-btn,
.nav-dashboard-btn {
    text-decoration: none !important;
    outline: none;
}

/* Login button */
.nav-login-btn {
    min-width: 96px;
    height: 54px;
    padding: 0 26px;
    border-radius: 18px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );

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

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 45px rgba(0, 0, 0, 0.24);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.04)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 22px 55px rgba(0, 0, 0, 0.3);
}

/* Start Free + Return Dashboard button */
.nav-start-btn,
.nav-dashboard-btn {
    min-width: 126px;
    height: 54px;
    padding: 0 28px;
    border-radius: 18px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.01em;

    background:
        linear-gradient(
            135deg,
            #ff1bbf 0%,
            #b446ff 48%,
            #7c5cff 100%
        );

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

    box-shadow:
        0 18px 42px rgba(255, 27, 191, 0.22),
        0 10px 28px rgba(124, 92, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.nav-start-btn:hover,
.nav-dashboard-btn:hover {
    transform: translateY(-2px);
    color: #ffffff !important;
    filter: brightness(1.08);

    box-shadow:
        0 24px 56px rgba(255, 27, 191, 0.3),
        0 14px 36px rgba(124, 92, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Return Dashboard needs more width */
.nav-dashboard-btn {
    min-width: 190px;
}

/* =========================================
   AUTH VISIBILITY FINAL OVERRIDE
   Must stay at the very bottom
========================================= */

.hidden,
[data-auth].hidden,
.nav-login-btn.hidden,
.nav-start-btn.hidden,
.nav-dashboard-btn.hidden,
.mobile-login-btn.hidden,
.mobile-start-btn.hidden,
.mobile-dashboard-btn.hidden {
    display: none !important;
}