/* ===========================
   RESET & GLOBAL SETTINGS
=========================== */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    background: #050507;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}


/* ===========================
   COLOR VARIABLES
=========================== */

:root {

    --background: #050507;

    --surface: #0d0a16;

    --surface-light: #151022;

    --border: rgba(255,255,255,0.08);

    --text-secondary: #b7b7c9;

    --primary-gradient:
        linear-gradient(
            135deg,
            #ff0080,
            #7c4dff
        );

    --glass:
        rgba(255,255,255,0.04);

    --shadow:
        0 25px 60px rgba(0,0,0,0.45);

}


/* ===========================
   BACKGROUND EFFECTS
=========================== */


.background-grid {

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            rgba(255,255,255,0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.02) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    z-index: -5;

    opacity: 0.3;
}


/* Smooth gradient circles */

.gradient-orb {

    position: fixed;

    border-radius: 50%;

    filter: blur(120px);

    z-index: -4;

    opacity: 0.20;

}


.orb-one {

    width: 400px;

    height: 400px;

    background: #ff0080;

    top: -100px;

    right: -150px;
}


.orb-two {

    width: 450px;

    height: 450px;

    background: #6247ff;

    bottom: 0;

    left: -200px;
}


/* ===========================
   GENERAL SECTIONS
=========================== */


section {

    width: 100%;

    padding: 100px 7%;
}


section:nth-child(even) {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            transparent
        );
}



/* ===========================
   TYPOGRAPHY
=========================== */


h1,
h2,
h3,
h4 {

    font-weight: 800;

    letter-spacing: -0.03em;

}


h1 {

    font-size: clamp(
        3.3rem,
        7vw,
        6rem
    );

    line-height: 1.05;
}


h2 {

    font-size: clamp(
        2rem,
        4vw,
        3.6rem
    );

    line-height: 1.15;

}


p {

    color: var(--text-secondary);

    font-size: 1.08rem;

}


/* Section small labels */

.section-tag,
.hero-badge {

    display: inline-flex;

    align-items: center;

    padding: 10px 18px;

    border-radius: 999px;

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

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

    backdrop-filter: blur(10px);

    font-size: 0.82rem;

    font-weight: 600;

    margin-bottom: 24px;

    color: #ffffff;
}


/* ===========================
   BUTTON SYSTEM
=========================== */


.primary-btn,
.secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


/* Main CTA */

.primary-btn {
    color: white;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,15,143,0.8);

    box-shadow:
        inset 0 0 0 1px rgba(139,92,246,0.45),
        0 0 24px rgba(255,15,143,0.16);

    transition: .3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 1px rgba(139,92,246,0.65),
        0 0 32px rgba(255,15,143,0.25);
}


/* Secondary */

.secondary-btn {

    color: white;

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

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

    backdrop-filter: blur(10px);

    transition: .3s ease;
}

.secondary-btn:hover {

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


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


.header {
    position: relative;
    z-index: 100;
    padding: 22px 4% 0;
}

.navbar {
    position: relative;
    max-width: 1360px;
    height: 82px;
    margin: 0 auto;
    padding: 0 32px;

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

    background: none;
    border: none;
    border-radius: none;

    backdrop-filter:none;

    box-shadow:none;
}

/* ==========================
   FEATURES DROPDOWN
========================== */


.dropdown {

    position: relative;

}


.mega-menu {

    position: absolute;

    top: 48px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    padding: 12px;

    min-width: 650px;

    background:
    rgba(15,15,25,0.65);

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

    border-radius: 18px;

    backdrop-filter: blur(25px);

    box-shadow:
    0 10px 35px rgba(0,0,0,.35);


    opacity:0;
    visibility:hidden;
    transform:
    translateX(-50%)
    translateY(12px);

    transition:
    0.25s ease;

}



/* Keep menu open while moving mouse */

.dropdown:hover .mega-menu {

    opacity:1;

    visibility:visible;

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

}

.dropdown::after {

    content:"";

    position:absolute;

    left:0;

    top:100%;

    width:100%;

    height:25px;

}


/* Each feature button */


.feature-link {


    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    padding: 14px 22px;

    border-radius: 14px;

    white-space: nowrap;

    transition: .25s ease;

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


}


/* Hover effect */


.feature-link:hover {


    background:
        linear-gradient(
            90deg,
            #ff008c,
            #7c3cff
        );


    transform: translateY(-3px);
    
    box-shadow: 0 0 25px rgba(180,60,255,.45);

}


/* Menu Cards */

.menu-card {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 140px;

    height: 44px;

    padding: 0 18px;

    border-radius: 12px;

    text-decoration: none;

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

    font-size: 15px;

    font-weight: 600;

    letter-spacing: -0.2px;

    background: transparent;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;

}


.menu-card:hover {

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

    color: white;

    transform:
        translateY(-1px);

}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 42px;
    height: 42px;
}

.logo span {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation */


.nav-links {

    display: flex;

    list-style: none;

    gap: 38px;

}


.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
}

.nav-links a:hover {
    color: #ffffff;
    text-decoration: none;
}


/* Buttons */


.nav-buttons {

    display: flex;

    gap: 14px;

}


.login-btn {

    min-height: 52px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    border-radius: 16px;

    text-decoration: none;

    color: white;

    font-weight: 700;

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

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

}


/* Mobile Menu */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 1.8rem;

    cursor: pointer;

}

/* ===========================
   HERO SECTION
=========================== */

.hero {
    min-height: calc(100vh - 94px);

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 72px;

    width: 92%;
    max-width: 1360px;
    margin: 0 auto;

    padding: 55px 0 72px;

    position: relative;
    overflow: visible;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -120px -8% -80px;

    background:
        radial-gradient(circle at 85% 20%, rgba(255, 0, 128, 0.18), transparent 34%),
        radial-gradient(circle at 8% 80%, rgba(124, 77, 255, 0.10), transparent 32%);

    z-index: 0;
    pointer-events: none;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

/* ===========================
   HERO LEFT CONTENT
=========================== */


.hero-content {
    position: relative;
    z-index: 3;
    max-width: 660px;
    margin-top: -18px;
}


.hero-title {
    font-size: clamp(2.75rem, 4vw, 4.25rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 690px;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero-title span {

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

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    display: inline;
}

.hero-description {

    font-size: 1.08rem;

    line-height: 1.8;

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

    max-width: 560px;

    margin-bottom: 36px;
}

.hero-buttons {

    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-bottom: 28px;
}


.hero-trust {

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

    font-size: 0.92rem;
}



/* ===========================
   HERO RIGHT VISUAL
=========================== */

.hero-visual {
    position: relative;

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

    min-height: 560px;

    z-index: 2;
}


/* ===========================
   MAIN DASHBOARD
=========================== */


.dashboard-mockup {
    width: 100%;
    max-width: 450x;
    min-height: 500px;
    margin-top: -25px;

    position: relative;
    z-index: 2;
    overflow: hidden;

    padding: 33px;

    border-radius: 34px;

    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.065),
        rgba(255,255,255,0.012)
    );

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

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

    box-shadow:
        0 35px 90px rgba(0,0,0,0.55);

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

.dashboard-mockup:hover {
    transform: translateY(-4px);

    box-shadow:
        0 40px 100px rgba(0,0,0,0.62),
        0 0 40px rgba(139,92,246,0.10);
}

/* Soft background glow */
.dashboard-mockup::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -120px;
    right: -120px;

    background: radial-gradient(
        circle,
        rgba(255,0,150,0.12),
        rgba(139,92,246,0.06),
        transparent 70%
    );

    filter: blur(55px);

    pointer-events: none;

    z-index: 0;
}

/* Clean animated border */
.dashboard-mockup::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 34px;

    padding: 1.2px;

    background:
        linear-gradient(
            115deg,
            rgba(255,255,255,0.85),
            rgba(255,15,143,0.55),
            rgba(139,92,246,0.6),
            rgba(255,255,255,0.75)
        );

    background-size: 300% 300%;

    animation: cleanBorderMove 7s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;

    opacity: 0.9;

    z-index: 4;
}

@keyframes cleanBorderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.dashboard-mockup > * {
    position: relative;
    z-index: 2;
}

.dashboard-header {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 22px;
}

.score {
    font-size: 1rem;
    color: rgba(255,255,255,0.74);
    margin-bottom: 18px;

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

.score span {
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 850;

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

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

.progress-bar {
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 28px;
}

.progress {
    width: 94%;
    height: 100%;
    border-radius: inherit;

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

    animation: loadBar 1.8s ease;
}

@keyframes loadBar {
    from {
        width: 0;
    }

    to {
        width: 94%;
    }
}

/* ===========================
   BLUEPRINT BOXES
=========================== */


.blueprint-box {

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

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

    border-radius: 20px;

    padding: 18px;

    margin-bottom: 20px;

    backdrop-filter: blur(10px);

}

.blueprint-box h3 {

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

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

    margin-bottom: 16px;

}

.blueprint-box p {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 0;
    margin: 0;

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

    color: white;
    font-size: 17px;
    font-weight: 500;
}

.blueprint-box p span {

    color: #b87cff;

    font-weight: 700;

    font-size: 13px;

}


/* ===========================
   DASHBOARD STATS
=========================== */


.stats {

    display: grid;

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

    gap: 14px;

}

.stats div {

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

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

    border-radius: 18px;

    padding: 16px;

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

    font-size: 13px;

    transition: .3s ease;

}

.stats div:hover {

    transform: translateY(-2px);

    border-color:
        rgba(255,255,255,0.12);

}


.stats span {

    display:block;

    margin-top:8px;

    font-size:1rem;

    font-weight:800;

    color:white;

}



/* ===========================
   FLOATING CARDS
=========================== */


.floating-card {

    position: absolute;

    background: rgba(15,10,25,0.78);

    backdrop-filter: blur(20px);

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

    border-radius: 18px;

    padding: 14px 20px;

    color: white;

    font-weight: 600;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);

    z-index: 3;

    animation:
        floating 5s ease-in-out infinite;
}



.trend-card h4 {

    font-size: 18px;

    margin: 0;

    color: #ff2ea6;

}


.trend-label {

    font-size: 14px;

    color: #ffffff;

}


/* ==========================
   TREND LIST
========================== */

.trend-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trend-icon {
    width: 38px;
    height: 38px;

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

    border-radius: 10px;

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

    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.trend-value {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}


/* ==========================
   STATS CARDS
========================== */

.stat-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 20px;
    color: rgba(255,255,255,0.65);
}

.stat-card p {
    margin: 0 0 8px;
    font-size: 15px;
}

.stat-card span {
    display: block;
    margin-bottom: 14px;

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

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

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

.mini-chart {
    width: 100%;
    height: 46px;
}

/* Smooth movement */


@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

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

@media (max-width: 980px) {

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
        padding: 60px 0 70px;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-mockup {
        max-width: 460px;
        min-height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .hero {
        width: 90%;
        padding: 48px 0 60px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
        line-height: 1.03;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-mockup {
        max-width: 100%;
        padding: 22px;
        border-radius: 28px;
    }

    .dashboard-mockup::after {
        border-radius: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   TRUST SECTION
=========================== */

.trust-section {

    text-align: center;

    padding-top: 60px;

}


.trust-heading {

    max-width: 850px;

    margin: 0 auto 45px;

    font-size: 1.25rem;

    color: #d7d7e8;

}


.trust-cards {

    display: grid;

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

    gap: 20px;

}


.trust-card {

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

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

    border-radius: 22px;

    padding: 26px 20px;

    font-weight: 600;

    color: white;

    backdrop-filter: blur(15px);

    transition: all .35s ease;

}


.trust-card:hover {

    transform: translateY(-8px);

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

}



/* ===========================
   PRODUCT DEMO SECTION
=========================== */

.demo-section {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;

}



/* Dashboard Image Container */

.demo-image {

    position: relative;

}


/* Custom shape image */

.demo-image img {

    width: 100%;

    display: block;

    border-radius: 40px 40px 90px 40px;

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

    box-shadow: 0 35px 80px rgba(0,0,0,.55);

    transform: rotate(-2deg);

}


/* Background layer */

.demo-image::before {

    content: "";

    position: absolute;

    inset: -15px;

    background: linear-gradient(
        135deg,
        rgba(255,0,128,.25),
        rgba(124,77,255,.25)
    );

    border-radius: 50px;

    z-index: -1;

    filter: blur(40px);

}


/* Play button */

.video-play {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 85px;

    height: 85px;

    border-radius: 50%;

    border: none;

    cursor: pointer;

    font-size: 1.6rem;

    color: white;

    background: var(--primary-gradient);

    box-shadow:
        0 15px 40px rgba(255,0,128,.45);

    transition: .3s;

}


.video-play:hover {

    transform:
        translate(-50%, -50%)
        scale(1.08);

}


/* Demo Content */

.demo-content h2 {

    margin: 15px 0 25px;

}


.demo-content p {

    margin-bottom: 28px;

}


.check-list {

    margin-bottom: 35px;

}


.check-item {

    margin-bottom: 15px;

    color: #e7e7f3;

    font-weight: 500;

}

/* ===========================
   PRODUCT DEMO IMAGE
=========================== */

.demo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.demo-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-preview-img {
    width: 100%;
    max-width: 520px;
    border-radius: 28px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.03);
}

.demo-preview-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(15, 10, 25, 0.82);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.demo-content h2 {
    margin: 18px 0 24px;
}

.demo-content p {
    margin-bottom: 28px;
    max-width: 560px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.check-item {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .demo-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .demo-image,
    .demo-content {
        text-align: center;
    }

    .demo-preview-img {
        max-width: 100%;
    }

    .check-list {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .demo-preview-img {
        border-radius: 22px;
    }

    .demo-preview-badge {
        top: 14px;
        left: 14px;
        font-size: 0.78rem;
        padding: 8px 12px;
    }
}

/* ===========================
   LIVE PREVIEW BADGE NEON BORDER
=========================== */

.demo-preview-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(20, 16, 30, 0.78);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    z-index: 3;
    overflow: hidden;
}

.demo-preview-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.65),
        rgba(255,255,255,0.35),
        rgba(255,0,128,0.45),
        rgba(124,77,255,0.45),
        rgba(255,255,255,0.85)
    );
    background-size: 220% 220%;
    animation: liveBadgeBorder 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.demo-preview-badge::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    box-shadow:
        0 0 6px rgba(255,255,255,0.10),
        0 0 10px rgba(255,0,128,0.06);
    pointer-events: none;
}

@keyframes liveBadgeBorder {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* ===========================
   TREND INTELLIGENCE
=========================== */


.trend-section {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    position: relative;

}


/* Slightly different background */

.trend-section {

    background:
        linear-gradient(
            135deg,
            rgba(124,77,255,.10),
            rgba(255,0,128,.05)
        );

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

    border-bottom: 1px solid rgba(255,255,255,.04);

}


/* Phone Visual */

.phone-visual {

    position: relative;

    display: flex;

    justify-content: center;

}


.phone-visual img {

    width: 100%;

    max-width: 360px;

    border-radius: 45px;

    box-shadow:
        0 40px 90px rgba(0,0,0,.6);

    transform: rotate(6deg);

}

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


@media (max-width: 992px) {


    .trust-cards {

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

    }


    .demo-section,
    .trend-section {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;

    }


    .check-list {

        display: inline-block;

        text-align: left;

    }


    .phone-visual img {

        transform: rotate(0deg);

    }


    .floating-trend-card:first-child {

        left: 0;

    }


    .floating-trend-card.score {

        right: 0;

    }

}



@media (max-width: 600px) {


    .trust-cards {

        grid-template-columns: 1fr;

    }


    .demo-image img {

        border-radius: 30px;

        transform: rotate(0deg);

    }


    .video-play {

        width: 65px;

        height: 65px;

        font-size: 1.2rem;

    }


    .floating-trend-card {

        padding: 12px 15px;

        font-size: .85rem;

    }


    .floating-trend-card strong {

        font-size: 1rem;

    }

}

/* ===========================
   SHARED FEATURE LAYOUT
=========================== */

.blueprint-section,
.profile-section,
.reel-section {
    
    display: grid;
    
    grid-template-columns: 1fr 1fr;
    
    align-items: center;
    
    gap: 80px;
}


/* Content side */

.feature-content h2,
.profile-content h2 {

    margin: 18px 0 25px;
}


.feature-content p,
.profile-content p {

    margin-bottom: 35px;

    max-width: 560px;
}

/* =========================================================
   TREND INTELLIGENCE SECTION — FINAL CLEAN VISUAL
========================================================= */

.trend-section {
    overflow: visible !important;
}

.trend-phone-visual {
    position: relative !important;
    width: 470px !important;
    height: 520px !important;

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

    overflow: visible !important;
}


/* Main image shape */

.trend-phone-frame {
    position: relative !important;

    width: 390px !important;
    height: 470px !important;

    overflow: hidden !important;

    border-radius:
        46% 54% 48% 52% /
        34% 42% 58% 66% !important;

    background: rgba(255,255,255,0.035) !important;

    border: 1px solid rgba(255,255,255,0.13) !important;

    box-shadow:
        0 35px 90px rgba(0,0,0,0.52),
        0 0 0 1px rgba(255,255,255,0.035),
        0 0 34px rgba(255,15,143,0.10),
        0 0 70px rgba(139,92,246,0.08) !important;
}

.trend-phone-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 70% 24%, rgba(255,15,143,0.14), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(139,92,246,0.14), transparent 42%),
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18));

    pointer-events: none;
    z-index: 2;
}

.trend-phone-frame img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    filter: brightness(0.86) contrast(1.08) saturate(1.08) !important;
}


/* Floating cards — same size feel as profile audit cards */

.trend-mini-card {
    position: absolute !important;
    z-index: 6 !important;

    width: 165px !important;

    padding: 14px 16px !important;

    border-radius: 16px !important;

    background:
        linear-gradient(
            180deg,
            rgba(25,16,38,0.96),
            rgba(12,9,20,0.98)
        ) !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    box-shadow:
        0 22px 60px rgba(0,0,0,0.44),
        0 0 24px rgba(255,15,143,0.08) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    animation: trendCardFloat 5.5s ease-in-out infinite !important;
}

.trend-growth-mini {
    top: 95px !important;
    right: -5px !important;
}

.trend-peak-mini {
    right: -25px !important;
    bottom: 128px !important;
    animation-delay: 1.4s !important;
}

.trend-mini-card span {
    display: block !important;

    margin-bottom: 7px !important;

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

    font-size: 0.66rem !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: 0.55px !important;
}

.trend-mini-card strong {
    display: block !important;

    color: #ff4fbd !important;

    font-size: 1.65rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;

    margin-bottom: 5px !important;
}

.trend-mini-card small {
    display: block !important;

    color: rgba(255,255,255,0.84) !important;

    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
}

.trend-mini-card em {
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.72rem !important;
    font-style: normal !important;
    font-weight: 750 !important;
}


/* Mini line graph */

.trend-mini-graph {
    width: 100% !important;
    height: 48px !important;
    margin-top: 4px !important;
    overflow: hidden !important;
}

.trend-mini-graph svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.trend-mini-grid {
    stroke: rgba(255,255,255,0.075) !important;
    stroke-width: 1 !important;
    stroke-dasharray: 2 6 !important;
}


/* Mini progress */

.trend-mini-progress {
    width: 100% !important;
    height: 7px !important;

    margin: 10px 0 8px !important;

    border-radius: 999px !important;

    background: rgba(255,255,255,0.13) !important;

    overflow: hidden !important;
}

.trend-mini-progress i {
    display: block !important;

    width: 72% !important;
    height: 100% !important;

    border-radius: inherit !important;

    background:
        linear-gradient(
            90deg,
            #ff4fbd,
            #ff75d5,
            #9b66ff
        ) !important;
}


@keyframes trendCardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* Responsive */

@media (max-width: 1050px) {

    .trend-phone-visual {
        width: 430px !important;
        height: 500px !important;
    }

    .trend-phone-frame {
        width: 360px !important;
        height: 440px !important;
    }

    .trend-growth-mini {
        top: 88px !important;
        right: 0 !important;
    }

    .trend-peak-mini {
        right: -8px !important;
        bottom: 120px !important;
    }

}


@media (max-width: 768px) {

    .trend-phone-visual {
        width: min(100%, 390px) !important;
        height: 470px !important;
        margin: 40px auto 0 !important;
    }

    .trend-phone-frame {
        width: 340px !important;
        height: 410px !important;
    }

    .trend-mini-card {
        transform: scale(0.9) !important;
    }

    .trend-growth-mini {
        top: 70px !important;
        right: 0 !important;
    }

    .trend-peak-mini {
        right: 0 !important;
        bottom: 100px !important;
    }

}


@media (max-width: 520px) {

    .trend-phone-visual {
        height: auto !important;
        padding: 20px 0 !important;
    }

    .trend-phone-frame {
        width: 285px !important;
        height: 350px !important;
    }

    .trend-mini-card {
        display: none !important;
    }

}

/* =========================================================
   TREND INTELLIGENCE CARDS — FINAL OVERRIDE ONLY
   Paste AFTER all old Trend Intelligence CSS
========================================================= */

.trend-phone-visual {
    position: relative !important;
    overflow: visible !important;
}

/* Card base */
.trend-mini-card {
    position: absolute !important;
    z-index: 20 !important;

    width: 138px !important;
    padding: 11px 13px !important;

    border-radius: 15px !important;

    background:
        linear-gradient(
            180deg,
            rgba(24, 15, 38, 0.96),
            rgba(11, 8, 18, 0.98)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.10) !important;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(255, 15, 143, 0.07) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    animation: trendCardFloatSmall 5.5s ease-in-out infinite !important;
}

/* Trend Growth — left/top like profile audit */
.trend-growth-mini {
    top: 104px !important;
    left: 18px !important;
    right: auto !important;
    bottom: auto !important;
}

/* Before Peak — right/middle */
.trend-peak-mini {
    top: 250px !important;
    right: 14px !important;
    left: auto !important;
    bottom: auto !important;
    animation-delay: 1.4s !important;
}

/* Label */
.trend-mini-card span {
    display: block !important;
    margin-bottom: 6px !important;

    font-size: 0.55rem !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: 0.45px !important;

    color: rgba(255, 255, 255, 0.74) !important;
}

/* Main value */
.trend-mini-card strong {
    display: block !important;

    font-size: 1.32rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;

    margin-bottom: 4px !important;

    color: #ff4fbd !important;
}

/* Small text */
.trend-mini-card small {
    display: block !important;

    font-size: 0.62rem !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;

    color: rgba(255, 255, 255, 0.84) !important;
}

.trend-mini-card em {
    font-size: 0.58rem !important;
    font-style: normal !important;
    font-weight: 750 !important;
    color: rgba(255, 255, 255, 0.82) !important;
}

/* Smaller sharp graph */
.trend-mini-graph {
    width: 100% !important;
    height: 36px !important;
    margin-top: 4px !important;
    overflow: hidden !important;
}

.trend-mini-graph svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.trend-mini-grid {
    stroke: rgba(255, 255, 255, 0.07) !important;
    stroke-width: 1 !important;
    stroke-dasharray: 2 6 !important;
}

/* Progress bar */
.trend-mini-progress {
    width: 100% !important;
    height: 6px !important;

    margin: 8px 0 7px !important;

    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.13) !important;

    overflow: hidden !important;
}

.trend-mini-progress i {
    display: block !important;

    width: 72% !important;
    height: 100% !important;

    border-radius: inherit !important;

    background:
        linear-gradient(
            90deg,
            #ff4fbd,
            #ff75d5,
            #9b66ff
        ) !important;
}

/* Soft float */
@keyframes trendCardFloatSmall {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Tablet */
@media (max-width: 1050px) {

    .trend-growth-mini {
        top: 96px !important;
        left: 12px !important;
    }

    .trend-peak-mini {
        top: 238px !important;
        right: 10px !important;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .trend-mini-card {
        transform: scale(0.88) !important;
    }

    .trend-growth-mini {
        top: 78px !important;
        left: 2px !important;
    }

    .trend-peak-mini {
        top: 218px !important;
        right: 2px !important;
    }

}

@media (max-width: 520px) {

    .trend-mini-card {
        display: none !important;
    }

}

/* ===========================
   VIRAL BLUEPRINT ENGINE
=========================== */


.blueprint-section {

    position: relative;
}


/* Main blueprint card */

.blueprint-card {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

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

    backdrop-filter: blur(25px);

    border-radius: 35px;

    padding: 35px;

    width: 450px;

    height: 550px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 35px 80px rgba(0,0,0,.55);

    transition: .4s ease;

    transform: scale(.85);

}


/* Hover effect */

.blueprint-card:hover {

    transform:
        translateY(-10px);
}


.blueprint-header {

    color: #c9c9dc;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 25px;

}


/* Score */

.blueprint-score {

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 1.15rem;

    margin-bottom: 30px;
}


.blueprint-score span {

    font-size: 2rem;

    font-weight: 800;

    background: var(--primary-gradient);

    -webkit-background-clip: text;

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


/* Individual blocks */

.blueprint-item {

    background: rgba(255,255,255,.04);

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

    border-radius: 22px;

    padding: 20px;

    margin-bottom: 18px;

}


.blueprint-item strong {

    display: block;

    margin-bottom: 10px;

    font-size: 1rem;

}

/* =========================================================
   PROFILE AUDIT SECTION — FINAL CLEAN VISUAL
========================================================= */

.profile-section {
    overflow: visible !important;
}

.creator-visual {
    position: relative !important;
    width: 470px !important;
    height: 540px !important;

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

    overflow: visible !important;
}


/* Image frame: stylish oval / organic SaaS shape */

.profile-audit-image-frame {
    position: relative !important;

    width: 420px !important;
    height: 500px !important;

    overflow: hidden !important;

    border-radius:
        46% 54% 48% 52% /
        34% 42% 58% 66% !important;

    background: rgba(255,255,255,0.035) !important;

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

    box-shadow:
        0 35px 90px rgba(0,0,0,0.48),
        inset 0 0 45px rgba(255,255,255,0.025) !important;
}

.profile-audit-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 70% 22%, rgba(255,15,143,0.18), transparent 34%),
        radial-gradient(circle at 18% 82%, rgba(139,92,246,0.15), transparent 42%),
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18));

    pointer-events: none;
    z-index: 2;
}

.profile-audit-image-frame img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;

    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    filter: brightness(0.84) contrast(1.08) saturate(1.08) !important;
}


/* Floating Cards */

.profile-score,
.growth-card {
    position: absolute !important;
    z-index: 6 !important;

    min-width: 170px !important;

    padding: 18px 21px !important;

    border-radius: 18px !important;

    background:
        linear-gradient(
            180deg,
            rgba(25,16,38,0.96),
            rgba(12,9,20,0.98)
        ) !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    box-shadow:
        0 22px 60px rgba(0,0,0,0.44),
        0 0 24px rgba(255,15,143,0.08) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    animation: profileCardFloat 5.5s ease-in-out infinite !important;
}

.profile-score {
    top: 100px !important;
    left: 0 !important;
}

.growth-card {
    right: -5px !important;
    bottom: 145px !important;
    animation-delay: 1.4s !important;
}

.profile-score span,
.growth-card span {
    display: block !important;

    margin-bottom: 10px !important;

    color: rgba(255,255,255,0.88) !important;

    font-size: 0.92rem !important;
    font-weight: 850 !important;
}

.profile-score strong,
.growth-card strong {
    display: block !important;

    color: #ff4fbd !important;

    font-size: 1.35rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

@keyframes profileCardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* Responsive */

@media (max-width: 1050px) {

    .creator-visual {
        width: 430px !important;
        height: 500px !important;
    }

    .profile-audit-image-frame {
        width: 380px !important;
        height: 455px !important;
    }

    .profile-score {
        top: 84px !important;
        left: 4px !important;
    }

    .growth-card {
        right: 2px !important;
        bottom: 120px !important;
    }

}


@media (max-width: 768px) {

    .creator-visual {
        width: min(100%, 390px) !important;
        height: 470px !important;
        margin: 40px auto 0 !important;
    }

    .profile-audit-image-frame {
        width: 340px !important;
        height: 410px !important;
    }

    .profile-score,
    .growth-card {
        transform: scale(0.9) !important;
    }

    .profile-score {
        top: 60px !important;
        left: 0 !important;
    }

    .growth-card {
        right: 0 !important;
        bottom: 100px !important;
    }

}


@media (max-width: 520px) {

    .creator-visual {
        height: auto !important;
        padding: 20px 0 !important;
    }

    .profile-audit-image-frame {
        width: 285px !important;
        height: 350px !important;
    }

    .profile-score,
    .growth-card {
        display: none !important;
    }

}

/* ===========================
   PROFILE AUDIT CARD REFINEMENT
=========================== */

.profile-score,
.growth-card {
    min-width: 150px !important;
    padding: 15px 18px !important;
    border-radius: 16px !important;
}

.profile-score span,
.growth-card span {
    font-size: 0.84rem !important;
    margin-bottom: 8px !important;
}

.profile-score strong,
.growth-card strong {
    font-size: 1.22rem !important;
}

/* Better positioning after smaller card size */

.profile-score {
    top: 92px !important;
    left: 4px !important;
}

.growth-card {
    right: 10px !important;
    bottom: 155px !important;
}

/* ===========================
   PROFILE AUDIT IMAGE SOFT GLOW
=========================== */

.profile-audit-image-frame {
    border: 1px solid rgba(255, 255, 255, 0.13) !important;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(255, 255, 255, 0.035),
        0 0 34px rgba(255, 15, 143, 0.10),
        0 0 70px rgba(139, 92, 246, 0.08) !important;
}

.profile-audit-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius:
        46% 54% 48% 52% /
        34% 42% 58% 66%;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 15, 143, 0.20),
        rgba(139, 92, 246, 0.16)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
}

/* =========================================================
   REEL ANALYZER — FINAL PROFESSIONAL VISUAL
   Different style from oval sections
========================================================= */

.reel-section {
    overflow: visible !important;
}

.reel-visual {
    position: relative !important;

    width: 470px !important;
    height: 560px !important;

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

    overflow: visible !important;
}


/* Main rectangular / tilted analysis frame */

.reel-image-frame {
    position: relative !important;

    width: 360px !important;
    height: 500px !important;

    overflow: hidden !important;

    border-radius: 34px !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.015)
        ) !important;

    border: 1px solid rgba(255,255,255,0.13) !important;

    box-shadow:
        0 35px 90px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.035),
        0 0 34px rgba(255,15,143,0.10),
        0 0 70px rgba(139,92,246,0.08) !important;

    transform: rotate(-4deg) perspective(900px) rotateY(5deg) !important;
}

.reel-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.16),
            transparent 35%,
            rgba(255,15,143,0.08)
        );

    pointer-events: none;
    z-index: 3;
}

.reel-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 75% 15%, rgba(255,15,143,0.16), transparent 34%),
        radial-gradient(circle at 20% 85%, rgba(139,92,246,0.14), transparent 42%),
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.16));

    pointer-events: none;
    z-index: 2;
}

.reel-image-frame img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;

    border-radius: 0 !important;
    transform: none !important;
    box-shadow: none !important;

    filter: brightness(0.94) contrast(1.04) saturate(1.05) !important;
}


/* Stop old direct image CSS from affecting this */

.reel-visual > img {
    display: none !important;
}


/* Floating Cards */

.reel-score-card,
.retention-card {
    position: absolute !important;
    z-index: 6 !important;

    min-width: 150px !important;

    padding: 15px 18px !important;

    border-radius: 16px !important;

    background:
        linear-gradient(
            180deg,
            rgba(25,16,38,0.96),
            rgba(12,9,20,0.98)
        ) !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    box-shadow:
        0 22px 60px rgba(0,0,0,0.44),
        0 0 24px rgba(255,15,143,0.08) !important;

    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;

    color: #ffffff !important;

    animation: reelCardFloat 5.5s ease-in-out infinite !important;
}

.reel-score-card {
    top: 115px !important;
    left: 10px !important;
}

.retention-card {
    right: 8px !important;
    bottom: 145px !important;
    animation-delay: 1.4s !important;
}

.reel-score-card span,
.retention-card span {
    display: block !important;

    margin-bottom: 8px !important;

    color: rgba(255,255,255,0.88) !important;

    font-size: 0.84rem !important;
    font-weight: 850 !important;
}

.reel-score-card strong,
.retention-card strong {
    display: block !important;

    margin-top: 0 !important;

    color: #ff4fbd !important;

    font-size: 1.22rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

@keyframes reelCardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* Responsive */

@media (max-width: 1050px) {

    .reel-visual {
        width: 430px !important;
        height: 520px !important;
    }

    .reel-image-frame {
        width: 330px !important;
        height: 465px !important;
    }

    .reel-score-card {
        top: 95px !important;
        left: 6px !important;
    }

    .retention-card {
        right: 4px !important;
        bottom: 125px !important;
    }

}


@media (max-width: 768px) {

    .reel-visual {
        width: min(100%, 390px) !important;
        height: 500px !important;
        margin: 40px auto 0 !important;
    }

    .reel-image-frame {
        width: 310px !important;
        height: 440px !important;
        transform: rotate(-2deg) !important;
    }

    .reel-score-card,
    .retention-card {
        transform: scale(0.9) !important;
    }

    .reel-score-card {
        top: 80px !important;
        left: 0 !important;
    }

    .retention-card {
        right: 0 !important;
        bottom: 110px !important;
    }

}


@media (max-width: 520px) {

    .reel-visual {
        height: auto !important;
        padding: 20px 0 !important;
    }

    .reel-image-frame {
        width: 285px !important;
        height: 400px !important;
        transform: rotate(0deg) !important;
    }

    .reel-score-card,
    .retention-card {
        display: none !important;
    }

}

/* ===========================
   REEL IMAGE TINT REFINEMENT
=========================== */

.reel-image-frame img {
    filter: brightness(0.98) contrast(1.05) saturate(0.95) !important;
}

.reel-image-frame::after {
    background:
        radial-gradient(circle at 75% 15%, rgba(255,15,143,0.06), transparent 34%),
        radial-gradient(circle at 20% 85%, rgba(139,92,246,0.08), transparent 42%),
        linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.12)) !important;
}

.reel-image-frame::before {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.10),
            transparent 38%,
            rgba(255,15,143,0.025)
        ) !important;
}


/* ===========================
   HOW VIRALMINT AI WORKS
=========================== */


.workflow-section {

    text-align: center;
}


.workflow-section h2 {

    max-width: 900px;

    margin:
        20px auto;
}


.workflow-container {

    margin-top: 70px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}


/* Step cards */

.workflow-card {

    width: 300px;

    background:
        rgba(255,255,255,.04);

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

    border-radius: 30px;

    padding: 35px;

    backdrop-filter: blur(20px);

    transition: .4s ease;

}


.workflow-card:hover {

    transform:
        translateY(-10px);

    background:
        rgba(255,255,255,.07);
}


.workflow-icon {

    width: 70px;

    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    background:
        var(--primary-gradient);

    border-radius: 20px;

}


.workflow-card h3 {

    margin-bottom: 15px;

    font-size: 1.35rem;
}


.workflow-arrow {

    font-size: 2rem;

    color: #ff4da6;

}


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


@media (max-width: 992px) {


    .blueprint-section,
    .profile-section,
    .reel-section {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .feature-content p,
    .profile-content p {

        margin-left: auto;

        margin-right: auto;
    }


    .creator-visual,
    .reel-visual {

        margin-top: 30px;
    }


    .reel-visual img {

        transform: none;
    }


    .profile-score {

        left: 10px;
    }


    .growth-card {

        right: 10px;
    }


    .reel-score-card {

        left: 10px;
    }


    .retention-card {

        right: 10px;
    }


    .workflow-arrow {

        display: none;
    }

}


@media (max-width: 600px) {


    .workflow-card {

        width: 100%;
    }


    .profile-score,
    .growth-card,
    .reel-score-card,
    .retention-card {

        font-size: .85rem;

        padding: 12px 15px;
    }


    .creator-visual img {

        max-width: 300px;
    }

}

/* ===========================
   COMPARISON SECTION
=========================== */


.comparison-section {

    text-align: center;

}


.section-heading {

    max-width: 850px;

    margin: 0 auto 70px;

}


.section-heading p {

    margin-top: 20px;

}


.comparison-table {

    display: grid;

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

    gap: 30px;

}


.comparison-column {

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

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

    border-radius: 35px;

    padding: 45px;

    text-align: left;

    backdrop-filter: blur(20px);

    transition: .4s ease;

}


.comparison-column:hover {

    transform: translateY(-10px);

}


.comparison-column.active {

    background: linear-gradient(
        145deg,
        rgba(255,0,128,.15),
        rgba(124,77,255,.15)
    );

    border-color: rgba(255,255,255,.18);

}


.comparison-column h3 {

    margin-bottom: 30px;

}


.comparison-column ul {

    list-style: none;

}


.comparison-column li {

    margin-bottom: 18px;

    color: #d6d6e8;

}


/* ===========================
   SECURITY / TRANSPARENCY
=========================== */


.security-section {

    background:
        linear-gradient(
            135deg,
            rgba(124,77,255,.08),
            rgba(255,255,255,.02)
        );

}


.security-content {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 60px;

}


.security-cards {

    display: grid;

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

    gap: 25px;

}


.security-card {

    background: rgba(255,255,255,.05);

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

    border-radius: 30px;

    padding: 35px;

    text-align: center;

    transition: .35s ease;

}


.security-card:hover {

    transform: translateY(-10px);

}


.security-icon {

    font-size: 2.5rem;

    margin-bottom: 20px;

}


.security-card h3 {

    margin-bottom: 15px;

}

/* =========================================================
   WHO USES VIRALMINT AI — NEW CLEAN PROFESSIONAL SECTION
========================================================= */

.vm-audience-section {
    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 110px 0;
    position: relative;
    overflow: visible;
}


/* ===========================
   HEADER
=========================== */

.vm-audience-header {
    max-width: 850px;
    margin: 0 auto 58px;
    text-align: center;
}

.vm-audience-header .section-tag {
    margin: 0 auto 22px;
}

.vm-audience-header h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2.6px;
}

.vm-audience-header p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1.08rem;
    line-height: 1.75;
}


/* ===========================
   CARD GRID
=========================== */

.vm-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.vm-audience-card {
    position: relative;
    overflow: hidden;

    min-height: 430px;

    padding: 34px 30px 28px;

    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.085);

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

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

.vm-audience-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(255, 15, 143, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 100%,
            rgba(139, 92, 246, 0.10),
            transparent 35%
        );

    opacity: 0.7;
    pointer-events: none;
}

.vm-audience-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

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

    opacity: 0.85;
}

.vm-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);

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


/* ===========================
   CARD TOP
=========================== */

.vm-audience-card-top {
    position: relative;
    z-index: 2;

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

    margin-bottom: 34px;
}

.vm-audience-icon {
    width: 64px;
    height: 64px;

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

    border-radius: 18px;

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

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

    box-shadow:
        0 18px 36px rgba(255, 15, 143, 0.14);
}

.vm-audience-icon span {
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1;
}

.vm-audience-type {
    padding: 7px 12px;

    border-radius: 999px;

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

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

    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.4px;
}


/* ===========================
   CARD CONTENT
=========================== */

.vm-audience-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: #ffffff;

    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.6px;
}

.vm-audience-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 26px;

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

    font-size: 0.98rem;
    line-height: 1.65;
}

.vm-audience-card ul {
    position: relative;
    z-index: 2;

    display: grid;
    gap: 13px;

    margin: 0;
    padding: 24px 0 0;

    list-style: none;

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

.vm-audience-card li {
    position: relative;

    padding-left: 30px;

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

    font-size: 0.95rem;
    line-height: 1.45;
    font-weight: 600;
}

.vm-audience-card li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 18px;
    height: 18px;

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

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 0.7rem;
    font-weight: 900;
}


/* ===========================
   BOTTOM STRIP
=========================== */

.vm-audience-bottom {
    margin-top: 28px;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;

    padding: 28px 34px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.014)
        );

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

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

.vm-audience-bottom-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vm-audience-bottom-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

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

    border-radius: 18px;

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

    color: #ffffff;

    font-size: 1.4rem;
}

.vm-audience-bottom h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: -0.3px;
}

.vm-audience-bottom p {
    margin: 0;

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

    font-size: 0.98rem;
    line-height: 1.6;
}

.vm-audience-bottom-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.vm-audience-bottom-tags span {
    padding: 10px 14px;

    border-radius: 999px;

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

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

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


/* ===========================
   PERFORMANCE-FRIENDLY MOBILE
=========================== */

@media (max-width: 1180px) {

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

    .vm-audience-card {
        min-height: 390px;
    }

}


@media (max-width: 768px) {

    .vm-audience-section {
        width: 90%;
        padding: 85px 0;
    }

    .vm-audience-header {
        margin-bottom: 42px;
        text-align: left;
    }

    .vm-audience-header .section-tag {
        margin-left: 0;
    }

    .vm-audience-header h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
        letter-spacing: -1.6px;
    }

    .vm-audience-header p {
        font-size: 0.98rem;
    }

    .vm-audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-audience-card {
        min-height: auto;
        padding: 26px 24px;
        border-radius: 24px;

        box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.22);

        transition: none;
    }

    .vm-audience-card:hover {
        transform: none;
    }

    .vm-audience-card-top {
        margin-bottom: 24px;
    }

    .vm-audience-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        box-shadow: none;
    }

    .vm-audience-card h3 {
        font-size: 1.28rem;
    }

    .vm-audience-card p {
        font-size: 0.94rem;
        margin-bottom: 22px;
    }

    .vm-audience-card ul {
        gap: 11px;
        padding-top: 20px;
    }

    .vm-audience-card li {
        font-size: 0.91rem;
    }

    .vm-audience-bottom {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 24px;
        box-shadow:
            0 16px 40px rgba(0, 0, 0, 0.20);
    }

    .vm-audience-bottom-tags {
        justify-content: flex-start;
    }

}


@media (max-width: 480px) {

    .vm-audience-card {
        padding: 24px 20px;
    }

    .vm-audience-type {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .vm-audience-bottom-copy {
        align-items: flex-start;
    }

    .vm-audience-bottom-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 15px;
    }

}

/* =========================================================
   WHO USES VIRALMINT AI — REFINED FINAL VERSION
========================================================= */

.vm-audience-section {
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 95px 0 85px;
    position: relative;
    overflow: hidden;
}

/* ===========================
   HEADER
=========================== */

.vm-audience-header {
    max-width: 980px;
    margin: 0 auto 46px;
    text-align: center;
}

.vm-audience-header .section-tag {
    margin: 0 auto 20px;
}

.vm-audience-header h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
}

.vm-audience-header p {
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 1.04rem;
    line-height: 1.8;
}

/* ===========================
   CARD GRID
=========================== */

.vm-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 10px;
}

/* ===========================
   CARDS
=========================== */

.vm-audience-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 28px 26px 24px;
    border-radius: 26px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 14px 38px rgba(0,0,0,0.22);

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

.vm-audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.28);
}

.vm-audience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.88;
}

.vm-audience-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    border-radius: 0 0 26px 26px;
}

/* Different tone for each card */

.vm-audience-card:nth-child(1)::before {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 51, 153, 0.14), transparent 36%),
        radial-gradient(circle at 90% 100%, rgba(130, 74, 255, 0.08), transparent 40%);
}

.vm-audience-card:nth-child(1)::after {
    background: linear-gradient(90deg, #ff4fae, #a45cff);
}

.vm-audience-card:nth-child(2)::before {
    background:
        radial-gradient(circle at 15% 8%, rgba(166, 92, 255, 0.16), transparent 34%),
        radial-gradient(circle at 85% 100%, rgba(255, 102, 179, 0.08), transparent 42%);
}

.vm-audience-card:nth-child(2)::after {
    background: linear-gradient(90deg, #8c5cff, #c86cff);
}

.vm-audience-card:nth-child(3)::before {
    background:
        radial-gradient(circle at 12% 10%, rgba(98, 114, 255, 0.18), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(122, 58, 255, 0.08), transparent 42%);
}

.vm-audience-card:nth-child(3)::after {
    background: linear-gradient(90deg, #6478ff, #8f6bff);
}

.vm-audience-card:nth-child(4)::before {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 88, 136, 0.16), transparent 36%),
        radial-gradient(circle at 85% 100%, rgba(179, 62, 255, 0.08), transparent 42%);
}

.vm-audience-card:nth-child(4)::after {
    background: linear-gradient(90deg, #ff5a96, #ff4fc4);
}

/* ===========================
   CARD TOP
=========================== */

.vm-audience-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.vm-audience-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.55rem;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.vm-audience-card:nth-child(1) .vm-audience-icon {
    background: linear-gradient(135deg, #ff4fae, #a255ff);
}

.vm-audience-card:nth-child(2) .vm-audience-icon {
    background: linear-gradient(135deg, #9e62ff, #cf6dff);
}

.vm-audience-card:nth-child(3) .vm-audience-icon {
    background: linear-gradient(135deg, #6f7bff, #8670ff);
}

.vm-audience-card:nth-child(4) .vm-audience-icon {
    background: linear-gradient(135deg, #ff648f, #cf55ff);
}

.vm-audience-type {
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.64);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* ===========================
   CARD CONTENT
=========================== */

.vm-audience-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #fff;
    font-size: 1.32rem;
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: -0.4px;
}

.vm-audience-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: rgba(255,255,255,0.70);
    font-size: 0.98rem;
    line-height: 1.62;
}

.vm-audience-card ul {
    position: relative;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 18px 0 0;
    display: grid;
    gap: 11px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.vm-audience-card li {
    position: relative;
    padding-left: 28px;
    color: rgba(255,255,255,0.86);
    font-size: 0.94rem;
    line-height: 1.45;
    font-weight: 600;
}

.vm-audience-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
}

.vm-audience-card:nth-child(1) li::before {
    background: linear-gradient(135deg, #ff4fae, #b65cff);
}

.vm-audience-card:nth-child(2) li::before {
    background: linear-gradient(135deg, #9f63ff, #c86bff);
}

.vm-audience-card:nth-child(3) li::before {
    background: linear-gradient(135deg, #6676ff, #8f6fff);
}

.vm-audience-card:nth-child(4) li::before {
    background: linear-gradient(135deg, #ff5f97, #d65cff);
}

/* ===========================
   BOTTOM PANEL
=========================== */

.vm-audience-bottom {
    margin-top: 22px;
    padding: 28px 34px;
    border-radius: 28px;

    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: center;

    background:
        linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 14px 38px rgba(0,0,0,0.20);
}

.vm-audience-bottom-copy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vm-audience-bottom-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,79,174,0.22), rgba(138,92,246,0.18));
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.25rem;
}

.vm-audience-bottom h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 1.42rem;
    font-weight: 850;
    letter-spacing: -0.4px;
}

.vm-audience-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 0.98rem;
    line-height: 1.65;
}

.vm-audience-bottom-tags {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: end;
    gap: 12px;
}

.vm-audience-bottom-tags span {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

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

@media (max-width: 1180px) {
    .vm-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vm-audience-card {
        min-height: 380px;
    }

    .vm-audience-bottom {
        grid-template-columns: 1fr;
    }

    .vm-audience-bottom-tags {
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .vm-audience-section {
        width: 90%;
        padding: 80px 0 70px;
    }

    .vm-audience-header {
        text-align: left;
        margin-bottom: 34px;
    }

    .vm-audience-header .section-tag {
        margin-left: 0;
    }

    .vm-audience-header h2 {
        font-size: clamp(2.15rem, 9vw, 3.2rem);
        letter-spacing: -1.4px;
    }

    .vm-audience-header p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .vm-audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vm-audience-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 24px;
        box-shadow: 0 10px 26px rgba(0,0,0,0.16);
        transition: none;
    }

    .vm-audience-card:hover {
        transform: none;
        box-shadow: 0 10px 26px rgba(0,0,0,0.16);
    }

    .vm-audience-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .vm-audience-card h3 {
        font-size: 1.24rem;
    }

    .vm-audience-card p {
        font-size: 0.94rem;
    }

    .vm-audience-bottom {
        margin-top: 18px;
        padding: 22px;
        border-radius: 22px;
        gap: 18px;
        box-shadow: 0 10px 26px rgba(0,0,0,0.16);
    }

    .vm-audience-bottom-copy {
        align-items: flex-start;
    }

    .vm-audience-bottom-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 14px;
    }

    .vm-audience-bottom h3 {
        font-size: 1.18rem;
    }

    .vm-audience-bottom p {
        font-size: 0.93rem;
    }

    .vm-audience-bottom-tags {
        grid-template-columns: repeat(2, max-content);
        gap: 10px;
        justify-content: start;
    }

    .vm-audience-bottom-tags span {
        padding: 10px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .vm-audience-bottom-tags {
        grid-template-columns: 1fr 1fr;
    }

    .vm-audience-bottom-tags span {
        text-align: center;
    }
}

/* =========================================================
   AUDIENCE ICON + COLOR REFINEMENT
   Paste after current audience CSS
========================================================= */

/* Cleaner SVG icons */

.vm-audience-icon svg {
    width: 31px;
    height: 31px;
    display: block;
}

.vm-audience-icon svg path {
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Better icon box */

.vm-audience-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    color: #ffffff !important;

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

/* Card 1 — Creators */

.vm-audience-card:nth-child(1) .vm-audience-icon {
    background:
        linear-gradient(
            135deg,
            #ff3fa7 0%,
            #b44dff 100%
        ) !important;
}

.vm-audience-card:nth-child(1)::before {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 63, 167, 0.18), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(180, 77, 255, 0.10), transparent 42%) !important;
}

.vm-audience-card:nth-child(1)::after {
    background: linear-gradient(90deg, #ff3fa7, #b44dff) !important;
}


/* Card 2 — Brands */

.vm-audience-card:nth-child(2) .vm-audience-icon {
    background:
        linear-gradient(
            135deg,
            #9f5cff 0%,
            #d45cff 100%
        ) !important;
}

.vm-audience-card:nth-child(2)::before {
    background:
        radial-gradient(circle at 14% 8%, rgba(159, 92, 255, 0.20), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(212, 92, 255, 0.10), transparent 42%) !important;
}

.vm-audience-card:nth-child(2)::after {
    background: linear-gradient(90deg, #9f5cff, #d45cff) !important;
}


/* Card 3 — Businesses */

.vm-audience-card:nth-child(3) .vm-audience-icon {
    background:
        linear-gradient(
            135deg,
            #6c78ff 0%,
            #8a6dff 100%
        ) !important;
}

.vm-audience-card:nth-child(3)::before {
    background:
        radial-gradient(circle at 14% 8%, rgba(108, 120, 255, 0.22), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(138, 109, 255, 0.10), transparent 42%) !important;
}

.vm-audience-card:nth-child(3)::after {
    background: linear-gradient(90deg, #6c78ff, #8a6dff) !important;
}


/* Card 4 — Agencies */

.vm-audience-card:nth-child(4) .vm-audience-icon {
    background:
        linear-gradient(
            135deg,
            #ff5a9b 0%,
            #d956ff 100%
        ) !important;
}

.vm-audience-card:nth-child(4)::before {
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 90, 155, 0.20), transparent 34%),
        radial-gradient(circle at 90% 100%, rgba(217, 86, 255, 0.10), transparent 42%) !important;
}

.vm-audience-card:nth-child(4)::after {
    background: linear-gradient(90deg, #ff5a9b, #d956ff) !important;
}


/* Slightly richer cards, but not too strong */

.vm-audience-card {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.047),
            rgba(255, 255, 255, 0.014)
        ) !important;

    border-color: rgba(255, 255, 255, 0.105) !important;
}

.vm-audience-card:hover {
    border-color: rgba(255, 255, 255, 0.17) !important;
}


/* Type pills cleaner */

.vm-audience-type {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    color: rgba(255, 255, 255, 0.68) !important;
}


/* Mobile performance */

@media (max-width: 768px) {
    .vm-audience-icon {
        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    }

    .vm-audience-icon svg {
        width: 27px;
        height: 27px;
    }
}

/* ===========================
   PRICING SECTION
=========================== */

.pricing-section {
    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 105px 0 115px;
    position: relative;
}

.pricing-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 62px;
}

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

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

.pricing-heading p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.03rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
}


/* Grid */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* Card */

.pricing-card {
    position: relative;

    min-height: 520px;

    padding: 34px;

    border-radius: 30px;

    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);

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

    display: flex;
    flex-direction: column;

    overflow: hidden;

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

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;

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

    pointer-events: none;
    opacity: 0.85;
}

.pricing-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,255,255,0.14);

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

.pricing-card > * {
    position: relative;
    z-index: 2;
}


/* Featured Pro Card */

.featured-pricing-card {
    border-color: rgba(255,15,143,0.28);

    background:
        linear-gradient(
            180deg,
            rgba(255,15,143,0.13),
            rgba(139,92,246,0.055),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        0 34px 95px rgba(0,0,0,0.46),
        0 0 34px rgba(255,15,143,0.10);
}

.featured-pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 30px;
    padding: 1px;

    background:
        linear-gradient(
            130deg,
            rgba(255,255,255,0.18),
            rgba(255,15,143,0.70),
            rgba(139,92,246,0.62),
            rgba(255,255,255,0.16)
        );

    background-size: 260% 260%;
    animation: pricingBorderMove 8s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    opacity: 0.75;
}

@keyframes pricingBorderMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 260% 50%;
    }
}


/* Popular Badge */

.popular-badge {
    position: absolute;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    padding: 9px 22px;

    border-radius: 999px;

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

    color: #ffffff;

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

    white-space: nowrap;

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

    z-index: 10;
}

.featured-pricing-card {
    overflow: visible;
    padding-top: 54px;
}

.popular-badge {
    top: -18px;
    transform: translateX(-50%);
}

/* Plan Text */

.plan-label {
    display: inline-flex;
    width: fit-content;

    padding: 8px 13px;

    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: 750;
    text-transform: uppercase;
    letter-spacing: 0.8px;

    margin-bottom: 18px;
}

.pricing-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-card-header p {
    color: rgba(255,255,255,0.62);
    font-size: 0.98rem;
    line-height: 1.65;
    min-height: 52px;
}


/* Price */

.price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 850;

    color: #ffffff;

    margin: 28px 0 28px;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.52);
}

.coming-price {
    font-size: 1.45rem;
    line-height: 1.25;
    color: rgba(255,255,255,0.78);
}


/* Features */

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    flex: 1;
}

.pricing-features li {
    position: relative;

    padding-left: 28px;

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

    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 600;
}

.pricing-features li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #ff2fa3;

    font-weight: 900;
}


/* Buttons */

.pricing-btn {
    width: 100%;

    height: 54px;

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

    border-radius: 16px;

    text-decoration: none;

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

    transition: 0.28s ease;
}

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

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

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

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

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

.secondary-pricing-btn {
    color: #ffffff;

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

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

.secondary-pricing-btn:hover {
    background: rgba(255,255,255,0.055);

    transform: translateY(-2px);
}


/* Footer Action */

.pricing-footer-action {
    text-align: center;
    margin-top: 44px;
}

.pricing-footer-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    height: 54px;

    border-radius: 16px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

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

    border: 1px solid rgba(255,15,143,0.55);

    transition: 0.28s ease;
}

.pricing-footer-action a:hover {
    transform: translateY(-2px);

    background: rgba(255,15,143,0.08);
}


@media (max-width: 1050px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .pricing-card {
        min-height: auto;
    }
}

@media (max-width: 650px) {
    .pricing-section {
        width: 90%;
        padding: 80px 0 90px;
    }

    .pricing-card {
        padding: 28px;
        border-radius: 26px;
    }

    .pricing-heading h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
}

/* ===========================
   FAQ SECTION
=========================== */


.faq-section {

    max-width: 900px;

    margin: auto;

}


.faq-container {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


.faq-item {

    background: rgba(255,255,255,.05);

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

    border-radius: 25px;

    padding: 30px;

}


.faq-item h3 {

    margin-bottom: 15px;

}


/* ===========================
   FINAL CTA
=========================== */


.final-cta {

    text-align: center;

    max-width: 900px;

    margin: 0 auto;

}


.final-cta h2 {

    margin-bottom: 25px;

}


.final-cta p {

    margin-bottom: 40px;

}


/* ===========================
   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;

    }

}

/* ===========================
   FINAL HERO POLISH OVERRIDES
=========================== */

/* Smaller, cleaner hero heading */
.hero-title {
    font-size: clamp(2.9rem, 4.2vw, 4.45rem);
    line-height: 1.06;
    letter-spacing: -2.6px;
    max-width: 650px;
    margin-bottom: 22px;
}

/* Slightly smaller paragraph */
.hero-description {
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 34px;
}

/* Make the Trend Intelligence dashboard smaller */
.dashboard-mockup {
    max-width: 460px;
    min-height: 520px;
    padding: 30px;
    border-radius: 32px;
    margin-top: -35px;
}

/* Match animated border radius after reducing card */
.dashboard-mockup::after {
    border-radius: 32px;
}

/* Reduce big score slightly */
.score span {
    font-size: 2.15rem;
}

/* Compact progress area */
.progress-bar {
    height: 9px;
    margin-bottom: 24px;
}

/* Compact trend list card */
.blueprint-box {
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 18px;
}

.blueprint-box h3 {
    font-size: 10.5px;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.blueprint-box p {
    padding: 11px 0;
    font-size: 14px;
}

/* Smaller trend icons */
.trend-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 14px;
}

.trend-left {
    gap: 13px;
}

/* Smaller bottom stat cards */
.stats {
    gap: 12px;
}

.stat-card {
    padding: 16px;
    border-radius: 16px;
}

.stat-card p {
    font-size: 13px;
}

.stat-card span {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.mini-chart {
    height: 38px;
}

/* Primary CTA should be full gradient */
.hero-buttons .primary-btn,
.nav-buttons .primary-btn {
    background: linear-gradient(
        135deg,
        #ff0f8f,
        #8b5cf6
    );

    border: none;

    color: #ffffff;

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

    transition: 0.28s ease;
}

.hero-buttons .primary-btn:hover,
.nav-buttons .primary-btn:hover {
    transform: translateY(-2px);

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

/* Keep Watch Demo clean outline */
.secondary-btn {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: none;
}

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

/* ===========================
   FINAL AUDIENCE SECTION POLISH
=========================== */

.audience-section {
    padding: 95px 0 105px;
}

.audience-panel {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 46px;
    padding: 52px;
    border-radius: 34px;

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

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

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

.audience-copy h2 {
    font-size: clamp(2.25rem, 3.4vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -2.2px;
    max-width: 520px;
}

.audience-copy p {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.75;
}

.audience-points span {
    padding: 9px 13px;
    font-size: 0.82rem;
}


/* Make right-side cards more premium and less cramped */

.audience-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.audience-card {
    display: block;

    min-height: 300px;

    padding: 16px;

    border-radius: 26px;

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

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

    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,15,143,0.24);
}


/* Image now becomes the main visual */

.audience-image {
    width: 100%;
    height: 135px;

    border-radius: 20px;

    margin-bottom: 18px;

    padding: 2px;

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

.audience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 18px;
}


/* Number badge */

.audience-number {
    width: 34px;
    height: 25px;

    margin-bottom: 12px;

    font-size: 0.72rem;

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


/* Text spacing */

.audience-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 8px;
}

.audience-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.62);
}


/* Make cards feel slightly different but still clean */

.audience-card:nth-child(2) {
    transform: translateY(-8px);
}

.audience-card:nth-child(2):hover {
    transform: translateY(-14px);
}

.audience-card:nth-child(3) {
    transform: translateY(8px);
}

.audience-card:nth-child(3):hover {
    transform: translateY(2px);
}


/* Responsive */

@media (max-width: 1100px) {
    .audience-panel {
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .audience-copy {
        text-align: center;
        margin: 0 auto;
    }

    .audience-copy h2 {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .audience-points {
        justify-content: center;
    }

    .audience-card:nth-child(2),
    .audience-card:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 700px) {
    .audience-panel {
        padding: 26px;
        border-radius: 28px;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-image {
        height: 190px;
    }

    .audience-card {
        min-height: auto;
    }
}

/* ===========================
   AUDIENCE / USERS SECTION FINAL
=========================== */

.audience-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;

    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 42px;

    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.42);
    position: relative;
    overflow: hidden;
}

.audience-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 88%, rgba(124,77,255,0.10), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255,0,128,0.10), transparent 28%);
    pointer-events: none;
}

.audience-copy,
.audience-cards {
    position: relative;
    z-index: 2;
}

.audience-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audience-copy h2 {
    font-size: clamp(2.3rem, 3.6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 22px;
    max-width: 520px;
}

.audience-copy p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 0 26px;
}

.audience-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audience-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 0.84rem;
    font-weight: 600;
}

/* Right side cards */

.audience-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.audience-card {
    position: relative;
    min-height: 220px;
    padding: 22px 20px 20px;

    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.018)
    );
    border: 1px solid rgba(255,255,255,0.08);

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

.audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,0,128,0.28);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.audience-number {
    width: 34px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
    font-size: 0.75rem;
    font-weight: 700;
}

.audience-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 18px;

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

    background: linear-gradient(135deg, rgba(255,0,128,0.16), rgba(139,92,246,0.16));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.audience-icon span {
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #ff0f8f, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audience-card h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
    color: #ffffff;
}

.audience-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.64);
    max-width: 95%;
}

/* slight layout variation */
.audience-card:nth-child(2) {
    transform: translateY(8px);
}
.audience-card:nth-child(2):hover {
    transform: translateY(2px);
}

.audience-card:nth-child(3) {
    transform: translateY(-8px);
}
.audience-card:nth-child(3):hover {
    transform: translateY(-14px);
}

/* Responsive */
@media (max-width: 1100px) {
    .audience-panel {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .audience-copy {
        text-align: center;
    }

    .audience-copy h2,
    .audience-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .audience-points {
        justify-content: center;
    }

    .audience-card:nth-child(2),
    .audience-card:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 700px) {
    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-panel {
        padding: 24px;
        border-radius: 28px;
    }

    .audience-copy h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .audience-card {
        min-height: auto;
    }
}

/* ===========================
   USERS / AUDIENCE SECTION
=========================== */

.users-section {
    width: 92%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 90px 0 110px;
}

/* OUTER BIG BOX */
.audience-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 28px;

    width: 100%;
    padding: 34px 34px;

    border-radius: 34px;
    overflow: hidden;

    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.035),
        rgba(255,255,255,0.012)
    );

    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* soft brand glow inside */
.audience-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 85%, rgba(124,77,255,0.12), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(255,0,128,0.10), transparent 24%);
    z-index: 0;
}

/* moving neon border */
.audience-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 34px;
    padding: 1.2px;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.10),
        rgba(255,0,128,0.85),
        rgba(139,92,246,0.85),
        rgba(255,255,255,0.18),
        rgba(255,0,128,0.70)
    );
    background-size: 240% 240%;
    animation: audienceBorderFlow 7s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

@keyframes audienceBorderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 220% 50%;
    }
}

/* left side */
.audience-copy,
.audience-cards {
    position: relative;
    z-index: 2;
}

.audience-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 12px 8px 8px;
}

.audience-copy .section-tag {
    width: fit-content;
    margin-bottom: 18px;
}

.audience-copy h2 {
    font-size: clamp(2.7rem, 4vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -2.4px;
    max-width: 520px;
    margin: 0 0 20px;
}

.audience-copy p {
    max-width: 540px;
    font-size: 1.06rem;
    line-height: 1.82;
    color: rgba(255,255,255,0.70);
    margin: 0 0 24px;
}

.audience-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.audience-points span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.84);

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

/* RIGHT SIDE GRID */
.audience-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-content: center;
}

/* SMALL INNER CARDS */
.audience-card {
    position: relative;
    min-height: 160px;
    padding: 18px 18px 16px;

    border-radius: 24px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.045),
        rgba(255,255,255,0.015)
    );
    border: 1px solid rgba(255,255,255,0.07);

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

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,0,128,0.08), transparent 35%);
    opacity: 0.8;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,0,128,0.22);
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.audience-number {
    width: 38px;
    height: 26px;
    border-radius: 999px;

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

    margin-bottom: 14px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);

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

.audience-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    margin-bottom: 16px;

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

    background: linear-gradient(
        135deg,
        rgba(255,0,128,0.16),
        rgba(139,92,246,0.16)
    );
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.audience-icon span {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(135deg, #ff0f8f, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audience-card h3 {
    margin: 0 0 10px;
    font-size: 1.06rem;
    line-height: 1.18;
    color: #ffffff;
}

.audience-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.62;
    color: rgba(255,255,255,0.66);
    max-width: 95%;
}

/* remove awkward vertical feeling */
.audience-card:nth-child(2),
.audience-card:nth-child(3),
.audience-card:nth-child(4) {
    transform: none;
}

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

@media (max-width: 1150px) {
    .audience-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .audience-copy {
        padding: 0;
    }

    .audience-copy h2,
    .audience-copy p {
        max-width: 100%;
    }

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

@media (max-width: 700px) {
    .users-section {
        width: 92%;
        padding: 70px 0 90px;
    }

    .audience-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .audience-copy h2 {
        font-size: clamp(2rem, 9vw, 3.1rem);
        line-height: 1.04;
    }

    .audience-copy p {
        font-size: 0.98rem;
    }

    .audience-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .audience-card {
        min-height: auto;
    }
}

/* ===========================
   FINAL AUDIENCE HEADING FIX
=========================== */

.audience-copy h2 {
    font-size: clamp(2.1rem, 3vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -1.8px;
    max-width: 560px;
    margin-bottom: 20px;
}

/* ===========================
   AUDIENCE MAIN HEADING
=========================== */

.audience-top-heading {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 46px;
}

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

.audience-top-heading h2 {
    font-size: clamp(2.25rem, 3.4vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 16px;
}

.audience-top-heading p {
    max-width: 720px;
    margin: 0 auto;

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

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

/* ===========================
   WORKFLOW / PROCESS SECTION
=========================== */

/* ===========================
   WORKFLOW / PROCESS SECTION
=========================== */

.vm-process-flow {
    width: 90%;
    max-width: 1120px;
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    align-items: center;
    gap: 0;
}

.vm-process-card {
    position: relative;
    width: 100%;
    min-height: 310px;
    padding: 34px 28px;

    border-radius: 28px;

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

    text-align: center;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.07);

    box-shadow:
        0 16px 40px rgba(0,0,0,0.28);

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

.vm-process-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 22px 50px rgba(0,0,0,0.34);
}

/* soft inner light */
.vm-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 140, 0.10), transparent 32%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 28%);
    pointer-events: none;
}

.vm-process-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;

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

    margin-bottom: 24px;

    font-size: 2rem;

    background: linear-gradient(135deg, #ff0f8f, #8b5cf6);
    box-shadow:
        0 10px 26px rgba(255,15,143,0.20);
}

.vm-process-card h3 {
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.vm-process-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    max-width: 240px;
    margin: 0 auto;
}

.vm-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.9rem;
    font-weight: 700;
    color: #ff2fa3;
}

@media (max-width: 1050px) {
    .vm-process-flow {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 520px;
    }

    .vm-process-arrow {
        transform: rotate(90deg);
        margin: -4px 0;
    }

    .vm-process-card {
        min-height: 280px;
    }
}

/* ===========================
   WORKFLOW / PROCESS FINAL CLEAN
=========================== */

.vm-process-flow {
    width: 90%;
    max-width: 1080px;
    margin: 70px auto 0;

    display: grid;
    grid-template-columns: 1fr 52px 1fr 52px 1fr;
    align-items: center;
    gap: 0;
}

.vm-process-card {
    position: relative;

    width: 100%;
    min-height: 292px;
    padding: 32px 26px;

    border-radius: 26px;

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

    text-align: center;

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

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

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

    overflow: hidden;

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

.vm-process-card::before {
    content: "";
    position: absolute;
    inset: 0;

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

    pointer-events: none;
}

.vm-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.13);

    box-shadow:
        0 28px 70px rgba(0,0,0,0.34);
}

.vm-process-icon,
.vm-process-card h3,
.vm-process-card p {
    position: relative;
    z-index: 2;
}

.vm-process-icon {
    width: 68px;
    height: 68px;

    border-radius: 18px;

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

    margin-bottom: 24px;

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

    font-size: 2rem;

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

.vm-process-card h3 {
    font-size: 1.18rem;
    line-height: 1.25;
    font-weight: 800;

    color: #ffffff;

    margin-bottom: 14px;
}

.vm-process-card p {
    font-size: 0.98rem;
    line-height: 1.65;

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

    max-width: 235px;

    margin: 0 auto;
}

.vm-process-arrow {
    color: #ff2fa3;

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

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

/* =========================================================
   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;
}

/* =========================================================
   FINAL TREND INTELLIGENCE CARDS
   New classes used to avoid old CSS conflicts
========================================================= */

.vmtrend-wrap,
.trend-section,
.trend-visual-column,
.feature-visual,
.feature-section {
    overflow: visible !important;
}

.vmtrend-wrap {
    position: relative !important;
    width: 390px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: 80px !important;
    overflow: visible !important;
}

.vmtrend-img {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 34px !important;
    transform: rotate(4deg) !important;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45) !important;
}

.vmtrend-card,
.vmtrend-card * {
    box-sizing: border-box !important;
}

.vmtrend-card {
    position: absolute !important;
    z-index: 8 !important;
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(24, 15, 38, 0.96), rgba(11, 8, 18, 0.98)) !important;
    border: 1px solid rgba(255, 70, 190, 0.30) !important;
    border-radius: 17px !important;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.48),
        0 0 26px rgba(255, 45, 170, 0.10) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    animation: vmtrendFloat 5s ease-in-out infinite !important;
}

/* left top card */
.vmtrend-growth-card {
    width: 198px !important;
    height: 132px !important;
    top: 38px !important;
    left: -78px !important;
    padding: 13px 15px 10px !important;
}

/* right middle card */
.vmtrend-peak-card {
    width: 180px !important;
    height: 128px !important;
    top: 175px !important;
    right: -72px !important;
    padding: 14px 15px !important;
    animation-delay: 1.4s !important;
}

.vmtrend-label {
    display: block !important;
    margin: 0 0 7px !important;
    color: rgba(255, 255, 255, 0.74) !important;
    font-size: 0.63rem !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: 0.55px !important;
}

.vmtrend-growth-card h3 {
    margin: 0 0 2px !important;
    color: #ff4fbd !important;
    font-size: 2.05rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.8px !important;
}

.vmtrend-growth-card p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 0.72rem !important;
    line-height: 1.2 !important;
    font-weight: 650 !important;
}

.vmtrend-graph {
    width: 100% !important;
    height: 54px !important;
    margin-top: 4px !important;
    overflow: hidden !important;
}

.vmtrend-graph svg {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.vmtrend-grid {
    stroke: rgba(255, 255, 255, 0.075) !important;
    stroke-width: 1 !important;
    stroke-dasharray: 2 6 !important;
}

.vmtrend-peak-card p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.83) !important;
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    font-weight: 650 !important;
}

.vmtrend-peak-card h3 {
    margin: 8px 0 11px !important;
    color: #ffffff !important;
    font-size: 2.05rem !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -1px !important;
}

.vmtrend-peak-card h3 small {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.76rem !important;
    font-weight: 750 !important;
}

.vmtrend-progress {
    width: 100% !important;
    height: 7px !important;
    margin: 0 0 9px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.13) !important;
    overflow: hidden !important;
}

.vmtrend-progress span {
    display: block !important;
    width: 72% !important;
    height: 100% !important;
    border-radius: inherit !important;
    background: linear-gradient(90deg, #ff4fbd, #ff75d5, #9b66ff) !important;
}

.vmtrend-stage {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.72rem !important;
}

@keyframes vmtrendFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* Tablet */
@media (max-width: 1180px) {
    .vmtrend-wrap {
        width: 370px !important;
        margin-right: 50px !important;
    }

    .vmtrend-growth-card {
        left: -52px !important;
        top: 36px !important;
        transform: scale(0.94) !important;
    }

    .vmtrend-peak-card {
        right: -48px !important;
        top: 165px !important;
        transform: scale(0.94) !important;
    }
}

/* Mobile / stacked layout */
@media (max-width: 900px) {
    .vmtrend-wrap {
        width: min(100%, 380px) !important;
        margin: 38px auto 0 !important;
    }

    .vmtrend-growth-card {
        left: -18px !important;
        top: 30px !important;
        transform: scale(0.86) !important;
        transform-origin: left top !important;
    }

    .vmtrend-peak-card {
        right: -18px !important;
        top: 160px !important;
        transform: scale(0.86) !important;
        transform-origin: right top !important;
    }
}

/* Small mobile */
@media (max-width: 560px) {
    .vmtrend-card {
        display: none !important;
    }

    .vmtrend-img {
        transform: rotate(0deg) !important;
    }
}

/* =========================================================
   FINAL POSITION FIX — TREND INTELLIGENCE CARDS
   Paste at the VERY bottom of index.css
========================================================= */

.vmtrend-wrap {
    position: relative !important;
    width: 390px !important;
    margin-left: auto !important;
    margin-right: 130px !important;
    overflow: visible !important;
}

.vmtrend-img {
    width: 100% !important;
    border-radius: 34px !important;
    transform: rotate(4deg) !important;
}

/* Growth card: left/top of phone */
.vmtrend-growth-card {
    width: 205px !important;
    height: 126px !important;
    top: 62px !important;
    left: -118px !important;
    right: auto !important;
    bottom: auto !important;
    padding: 13px 15px 9px !important;
    border-radius: 17px !important;
}

/* Peak card: right/middle of phone */
.vmtrend-peak-card {
    width: 180px !important;
    height: 122px !important;
    top: 215px !important;
    right: -105px !important;
    left: auto !important;
    bottom: auto !important;
    padding: 13px 15px !important;
    border-radius: 17px !important;
}

/* Growth text */
.vmtrend-growth-card .vmtrend-label {
    font-size: 0.62rem !important;
    margin-bottom: 7px !important;
}

.vmtrend-growth-card h3 {
    font-size: 2.05rem !important;
    margin-bottom: 2px !important;
}

.vmtrend-growth-card p {
    font-size: 0.72rem !important;
}

/* Smaller sharper graph */
.vmtrend-graph {
    height: 50px !important;
    margin-top: 3px !important;
}

/* Peak text */
.vmtrend-peak-card .vmtrend-label {
    font-size: 0.62rem !important;
    margin-bottom: 8px !important;
}

.vmtrend-peak-card p {
    font-size: 0.72rem !important;
}

.vmtrend-peak-card h3 {
    font-size: 2rem !important;
    margin: 7px 0 10px !important;
}

.vmtrend-peak-card h3 small {
    font-size: 0.72rem !important;
}

.vmtrend-progress {
    height: 7px !important;
    margin-bottom: 8px !important;
}

/* Soft float only */
.vmtrend-card {
    animation: vmtrendFloatSoft 5s ease-in-out infinite !important;
}

.vmtrend-peak-card {
    animation-delay: 1.2s !important;
}

@keyframes vmtrendFloatSoft {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Important: stop clipping */
.trend-section,
.trend-visual-column,
.feature-section,
.feature-visual,
.vmtrend-wrap {
    overflow: visible !important;
}

.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;
}