/* --- CHAT-GD "UNLOCK AI" ULTIMATE THEME V10.2 --- */
:root {
    --neon: #39ff14;
    --neon-dim: rgba(57, 255, 20, 0.15);
    --neon-glow: rgba(57, 255, 20, 0.6);
    --neon-intense: rgba(57, 255, 20, 0.9);
    --bg: #030303;
    --card-bg: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #888;
    --border: 1px solid rgba(57, 255, 20, 0.3);
    --card-shadow: 0 0 20px rgba(57, 255, 20, 0.05);
}

body.light-mode {
    --bg: #F3F4F6;
    --card-bg: #FFFFFF;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border: 1px solid #E5E7EB;
    --neon: #00A60B;
    --neon-dim: rgba(0, 166, 11, 0.1);
    --neon-glow: rgba(0, 166, 11, 0.25);
    --neon-intense: rgba(0, 166, 11, 0.9);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Light Mode Overrides */
body.light-mode .card,
body.light-mode .price-card,
body.light-mode .contact-form-wrapper,
body.light-mode .persona-card {
    box-shadow: var(--card-shadow);
    border-color: transparent;
}

body.light-mode .card:hover,
body.light-mode .price-card:hover,
body.light-mode .persona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 166, 11, 0.15);
    border-color: var(--neon);
}

body.light-mode .accordion-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

body.light-mode .accordion-header:hover {
    background: #f9fafb;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #333;
}

body.light-mode .marquee-wrapper {
    background: #ffffff;
    border-color: #E5E7EB;
}

body.light-mode .btn-nav {
    color: var(--neon);
    border-color: var(--neon);
    background: #ffffff;
}

body.light-mode .btn-nav:hover {
    background: var(--neon);
    color: white;
}

body.light-mode .price-card.featured {
    background: #ffffff;
    border: 2px solid var(--neon);
    box-shadow: 0 20px 50px rgba(0, 166, 11, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-image: linear-gradient(var(--neon-dim) 1px, transparent 1px), linear-gradient(90deg, var(--neon-dim) 1px, transparent 1px);
    background-size: 50px 50px;
    padding-top: 90px;
}

body.light-mode {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

.container {
    max-width: 1440px;
    width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-neon {
    color: var(--neon);
}

.text-muted {
    color: var(--text-muted);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}

.flex {
    display: flex;
    align-items: center;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Persona Card Interaction */
.persona-card {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.15);
}

.section-pad {
    padding: 80px 0;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.glow-text {
    text-shadow: 0 0 20px var(--neon-glow);
}

/* COMPACT NAVIGATION HEADER */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1200px;
    padding: 8px 25px;
    border-radius: 50px;
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

body.light-mode nav {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px var(--neon-dim));
}

.theme-btn {
    background: transparent;
    border: 1px solid var(--neon);
    color: var(--neon);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.theme-btn:hover {
    background: var(--neon);
    color: var(--bg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-dim);
}

.btn-nav {
    border: 1px solid var(--neon);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--neon);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 0 15px var(--neon-dim);
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-nav:hover {
    background: var(--neon);
    color: var(--bg);
    box-shadow: 0 0 30px var(--neon-glow);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    z-index: 2000;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--neon);
    border-radius: 5px;
    transition: 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Badges & Buttons */
.system-badge {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--neon);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--neon-dim);
}

.hero-btn-glow {
    background: var(--neon);
    color: black;
    box-shadow: 0 0 30px var(--neon-glow);
}

body.light-mode .hero-btn-glow {
    color: white;
}

/* Spacing */
.w-full {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

.p-15 {
    padding: 15px;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8vw;
    min-height: 88vh;
    padding-bottom: 60px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 10;
    position: relative;
    margin-right: -20px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-decor {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.decor-line {
    position: absolute;
    top: -20px;
    left: 0;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, var(--neon), transparent);
}

.decor-dot {
    position: absolute;
    top: -24px;
    left: 200px;
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulseCore 2s infinite;
}

.decor-circle {
    position: absolute;
    top: 50px;
    left: -80px;
    width: 150px;
    height: 150px;
    border: 1px dashed var(--neon-dim);
    border-radius: 50%;
    animation: rotateRing 60s linear infinite reverse;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--neon);
    letter-spacing: -2px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.hero-benefits i {
    color: var(--neon);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero {
    border: 1px solid var(--neon);
    padding: 15px 40px;
    border-radius: 8px;
    color: var(--text-main);
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background: var(--neon);
    color: var(--bg);
    box-shadow: 0 0 40px var(--neon-glow);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--neon-dim);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--neon-dim);
}

/* Orbit Visual */
.node-visual {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--neon-dim) 0%, transparent 65%);
    transform: scale(0.95);
}

@media (min-width: 1600px) {
    .node-visual {
        transform: scale(1.1);
    }

    .hero-content {
        max-width: 700px;
    }
}

.node-visual.small {
    width: 500px;
    height: 500px;
}

.node-visual.small .energy-arc {
    width: 250px;
    height: 250px;
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateRing 90s linear infinite;
    z-index: 1;
}

.energy-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-left: 3px solid var(--neon);
    border-radius: 100% 0 0 0;
    transform-origin: 0% 0%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(-2px -2px 10px var(--neon-glow));
    animation: pulseArc 5s ease-in-out infinite alternate;
}

.arc1 {
    transform: rotate(0deg) skewX(-15deg);
}

.arc2 {
    transform: rotate(90deg) skewX(-15deg);
    animation-delay: -1.25s;
}

.arc3 {
    transform: rotate(180deg) skewX(-15deg);
    animation-delay: -2.5s;
}

.arc4 {
    transform: rotate(270deg) skewX(-15deg);
    animation-delay: -3.75s;
}

.center-node {
    width: 180px;
    height: 180px;
    border: 4px solid var(--neon);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    position: relative;
    z-index: 10;
    box-shadow: 0 0 60px var(--neon-dim), inset 0 0 30px var(--neon-dim);
    animation: pulseCore 4s ease-in-out infinite;
    overflow: hidden;
}

/* --- ORBIT NODES (FIXED GEOMETRY) --- */
.orbit-node {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid var(--neon);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    background: var(--card-bg);
    z-index: 5;
    text-align: center;
    padding: 5px;
    box-shadow: 0 0 25px var(--neon-dim);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
    animation: counterRotate 90s linear infinite;
    cursor: pointer;
    margin-top: -45px;
    margin-left: -45px;
    text-decoration: none;
    /* Removed underline */
}

.orbit-node:hover,
.orbit-node:active {
    animation-play-state: paused;
    background: var(--neon-dim);
    color: var(--neon);
    border-color: var(--text-main);
    box-shadow: 0 0 40px var(--neon-glow);
    z-index: 20;
}

.orbit-node i {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--neon);
    transition: transform 0.3s, color 0.3s;
}

.orbit-node:hover i,
.orbit-node:active i {
    transform: scale(1.4);
    color: var(--neon);
}

body.light-mode .orbit-node {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

body.light-mode .orbit-node:hover,
body.light-mode .orbit-node:active {
    background: var(--neon);
    color: white;
    border-color: var(--neon);
}

body.light-mode .orbit-node:hover i,
body.light-mode .orbit-node:active i {
    color: white;
}

/* GEOMETRIC POSITIONS */
.n1 {
    top: 0%;
    left: 50%;
}

.n2 {
    top: 14.65%;
    left: 85.35%;
}

.n3 {
    top: 50%;
    left: 100%;
}

.n4 {
    top: 85.35%;
    left: 85.35%;
}

.n5 {
    top: 100%;
    left: 50%;
}

.n6 {
    top: 85.35%;
    left: 14.65%;
}

.n7 {
    top: 50%;
    left: 0%;
}

.n8 {
    top: 14.65%;
    left: 14.65%;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes counterRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulseCore {

    0%,
    100% {
        box-shadow: 0 0 60px var(--neon-dim), inset 0 0 30px var(--neon-dim);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 100px var(--neon-glow), inset 0 0 50px var(--neon-glow);
        transform: scale(1.03);
        border-color: white;
    }
}

@keyframes pulseArc {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
        filter: drop-shadow(-4px -4px 20px var(--neon-intense));
    }
}

/* Marquee */
.marquee-wrapper {
    overflow: hidden;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.marquee-item {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section-header {
    margin-bottom: 70px;
}



.section-title {
    font-size: 3rem;
    color: var(--text-main);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    background: var(--card-bg);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(57, 255, 20, 0.2);
    border-color: var(--neon);
}

.card h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--neon);
}

.card.featured-glow {
    border-width: 2px;
    box-shadow: 0 0 40px var(--neon-dim);
}

/* --- FEATURES SECTION IMPROVEMENTS --- */
.align-center {
    align-items: center;
}

.tight-bottom {
    margin-bottom: 5px;
}

.features-subtext {
    max-width: 450px;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 1.1rem;
    font-weight: 500;
}

.text-danger {
    color: #ff3333;
    margin-right: 15px;
    font-size: 1.3rem;
}

.featured-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(57, 255, 20, 0.05) 100%);
    border: 1px solid var(--neon-dim);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-icon-success {
    font-size: 3.5rem;
    color: var(--neon);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px var(--neon-dim));
}

/* Use-Case Cards */
.use-case-card {
    padding: 30px;
}

.card-header-row {
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.card-small-icon {
    font-size: 1.4rem;
    color: var(--neon);
}

.card-small-title {
    margin: 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.2;
}

/* Filter Bar */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-dim);
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

/* The Grid */
.persona-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Persona Card Design */
.persona-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(20, 20, 20, 1) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

body.light-mode .persona-card {
    background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
}

.persona-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.1);
}

.p-card-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
}

.p-icon-lg {
    font-size: 2.5rem;
    color: var(--neon);
    filter: drop-shadow(0 0 10px var(--neon-dim));
}

.badge {
    background: var(--neon);
    color: black;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

body.light-mode .badge {
    color: white;
}

.persona-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.p-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.p-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.p-tags span {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 20px;
}

body.light-mode .p-tags span {
    background: rgba(0, 0, 0, 0.05);
}

/* --- PERSONA VIEWER FIX (HOME PAGE) --- */
.persona-viewer {
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Left sidebar | Right content */
    gap: 40px;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    align-items: start;
    min-height: 500px;
}

body.light-mode .persona-viewer {
    background: rgba(255, 255, 255, 0.7);
}

/* Sidebar List */
.persona-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* The Buttons (Tabs) */
.p-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    /* Fixes white background issue */
    border: 1px solid var(--border);
    padding: 15px 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

body.light-mode .p-btn {
    border-color: #ddd;
}

.p-btn:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: var(--neon);
    color: white;
}

.p-btn.active {
    background: var(--neon-dim);
    border-color: var(--neon);
    color: var(--neon);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.p-btn i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* View All Button inside List */
.persona-list .btn-nav {
    text-align: center;
    margin-top: 10px;
    background: var(--card-bg);
    width: 100%;
    display: block;
}

/* Display Area (Right Side) */
.persona-display {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.persona-icon {
    font-size: 4rem;
    color: var(--neon);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

.persona-title {
    color: var(--text-main);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.persona-role {
    color: var(--neon);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
}

.persona-desc {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- PRICING SECTION --- */
.price-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.price-card:hover {
    border-color: var(--neon);
    transform: translateY(-5px);
}

.price-card h3 {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: white;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.price-card .price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.price-card .text-muted {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 100%;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.95rem;
    text-align: left;
}

.price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--neon);
    font-size: 0.9rem;
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border: 1px solid var(--neon);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-card button {
    margin-top: auto;
    width: 100%;
}

/* --- FAQ & ECOSYSTEM --- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    width: 100%;
    padding: 25px;
    background: var(--card-bg);
    border: none;
    text-align: left;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header.active {
    background: var(--neon-dim);
    color: var(--neon);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: var(--bg);
    color: var(--text-muted);
    padding: 0 25px;
    line-height: 1.7;
}

.ecosystem-section {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ecosystem-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.eco-item {
    text-align: center;
    width: 150px;
    transition: 0.3s;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eco-item:hover {
    border-color: var(--neon);
    background: var(--card-bg);
    transform: translateY(-10px);
}

.eco-icon {
    font-size: 3rem;
    color: var(--neon);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--neon-dim));
}

/* Synergy / Power Pairs */
.synergy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--card-bg), var(--bg));
    border: 1px dashed var(--border);
}

.synergy-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-main);
}

.synergy-icons i {
    color: var(--neon);
    filter: drop-shadow(0 0 15px var(--neon-glow));
}

.plus {
    font-weight: 800;
    color: var(--text-muted);
}

/* --- UPDATED CONTACT SECTION STYLES --- */
.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: 0.3s;
}

.contact-method:hover .icon-circle {
    border-color: var(--neon);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.contact-method:hover .text-neon {
    text-shadow: 0 0 10px var(--neon);
}

/* Community Block */
.community-block {
    background: linear-gradient(145deg, var(--card-bg), transparent);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    margin-top: 10px;
}

.social-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: 0.3s;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--neon);
    color: black;
    border-color: var(--neon);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
}

/* Form Visual Branding */
.contact-form-wrapper {
    padding: 0;
    overflow: hidden;
}

.form-visual-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.secure-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

/* FIX: Improved Form Input Styling */
.contact-form-wrapper form {
    padding: 30px 40px 40px 40px;
}

.form-group label {
    display: block;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
    display: block;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

/* FORCE DARK OPTIONS */
.form-group select option {
    background-color: #0a0a0a;
    color: white;
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon);
    box-shadow: 0 0 10px var(--neon-dim);
}

/* Footer */
footer {
    border-top: 1px solid var(--neon);
    padding: 80px 0 40px;
    margin-top: 0;
    color: #888;
    background: var(--bg);
}

body.light-mode footer {
    border-top-color: #e5e7eb;
}

footer h4 {
    color: var(--neon);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 800;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 15px;
}

footer a {
    color: #888;
    transition: 0.3s;
    text-decoration: none;
}

footer a:hover {
    color: var(--neon);
    padding-left: 8px;
    text-shadow: 0 0 10px var(--neon-dim);
}

.social-icon {
    color: #aaa;
    cursor: pointer;
}

.social-icon:hover {
    color: var(--neon);
}

/* Chat Widget */
.chat-widget-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--neon);
    color: black;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.3);
    display: flex;
    gap: 8px;
    align-items: center;
    transition: 0.3s;
    z-index: 10000;
}

body.light-mode .chat-widget-trigger {
    color: white;
}

.chat-widget-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--neon-glow);
}

.ai-widget-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--neon);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10001;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-widget-container.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.ai-header {
    background: rgba(57, 255, 20, 0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neon);
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

#personaSelector {
    background: #000;
    color: var(--neon);
    border: 1px solid var(--neon);
    border-radius: 5px;
    font-size: 0.75rem;
    padding: 4px 8px;
    outline: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-right: 15px;
    max-width: 140px;
}

#personaSelector optgroup {
    background: #111;
    color: #fff;
    font-weight: 700;
}

#personaSelector option {
    background: #000;
    color: var(--neon);
    padding: 5px;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon);
    animation: pulseCore 2s infinite;
}

.close-chat {
    cursor: pointer;
    transition: 0.3s;
}

.close-chat:hover {
    color: white;
}

.ai-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.message.ai-msg {
    align-self: flex-start;
}

.message.user-msg {
    align-self: flex-end;
    align-items: flex-end;
}

.msg-content {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-msg .msg-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-top-left-radius: 2px;
}

.user-msg .msg-content {
    background: var(--neon-dim);
    border: 1px solid var(--neon);
    color: white;
    border-top-right-radius: 2px;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.1);
}

.msg-time {
    font-size: 0.7rem;
    color: #666;
    margin-left: 2px;
}

.ai-input-area {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.ai-input-area input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 30px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.ai-input-area input:focus {
    border-color: var(--neon);
}

.ai-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--neon);
    color: black;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-input-area button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--neon-glow);
}

.chat-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
    justify-content: flex-end;
}

.chat-option-btn {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid var(--neon);
    color: var(--neon);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.chat-option-btn:hover {
    background: var(--neon);
    color: black;
    box-shadow: 0 0 10px var(--neon-glow);
    transform: translateY(-2px);
}

.chat-recommendation {
    border: 1px solid var(--neon);
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
    text-align: center;
}

.rec-icon {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 10px;
}

.rec-btn {
    background: var(--neon);
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
}

/* =========================================
   MOBILE & LAYOUT OPTIMIZATIONS (FIXED)
   ========================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .node-visual {
        transform: scale(0.7);
        margin-left: -50px;
    }

    .persona-viewer {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .persona-viewer {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 25px;
    }

    .persona-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }

    .p-btn {
        flex: 0 0 auto;
        width: auto;
        white-space: nowrap;
    }

    .persona-display {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero-decor {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* MODERN FULLSCREEN MENU */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* Full width */
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        /* Center Items */
        align-items: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
        opacity: 0;
    }

    body.light-mode .nav-links {
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
    }

    /* Staggered Animation for Links */
    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.3s;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .desktop-only {
        display: none;
    }

    nav {
        padding: 10px 15px;
        top: 10px;
        width: 95%;
    }

    .logo-img {
        height: 40px;
    }

    /* Updated size */
    .hamburger span {
        width: 22px;
        height: 2px;
    }

    .hero {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        gap: 0;
        padding-top: 85px;
        min-height: auto;
        overflow-x: hidden;
    }

    /* FIXED: INCREASED MARGIN-TOP TO 160PX */
    .hero-content {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 20;
        margin-top: 160px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-benefits,
    .hero-btns,
    .hero-stats {
        justify-content: center;
    }

    .hero-stats {
        padding-bottom: 40px;
        margin-bottom: 0;
        border-bottom: 1px solid var(--border);
    }

    .node-visual {
        width: 100%;
        max-width: 600px;
        height: 600px;
        position: relative;
        left: 0;
        margin-left: 0;
        transform: scale(0.62);
        margin-top: -180px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .grid-2,
    .grid-3,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-pad {
        padding: 50px 0;
    }

    .persona-display h3 {
        font-size: 2rem;
    }

    .contact-form-wrapper form {
        padding: 25px;
    }

    .ai-widget-container {
        width: 100%;
        height: 75vh;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        z-index: 10000;
        border: 1px solid var(--neon);
        border-bottom: none;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
        transform: translateY(100%);
    }

    .ai-widget-container.active {
        transform: translateY(0);
    }

    .ai-header {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .chat-widget-trigger {
        bottom: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .chat-widget-trigger span {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn-hero {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .node-visual {
        transform: scale(0.55);
        margin-top: -120px;
        margin-bottom: -160px;
        left: 0;
        width: 100%;
        margin-left: 0;
    }

    /* Prevent Zoom on IOs */
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Button Visibility Fix */
.btn-hero.hero-btn-glow {
    background: var(--neon);
    color: black;
    box-shadow: 0 0 30px var(--neon-glow);
}

body.light-mode .btn-hero.hero-btn-glow {
    background: var(--neon);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 166, 11, 0.3);
    border-color: var(--neon);
}

.btn-hero.hero-btn-glow:hover {
    background: transparent;
    color: var(--neon);
    box-shadow: 0 0 40px var(--neon-glow);
}

body.light-mode .btn-hero.hero-btn-glow:hover {
    background: transparent;
    color: var(--neon);
    box-shadow: 0 5px 15px rgba(0, 166, 11, 0.2);
}