/* ==========================================================================
   THEME VARIABLES & BASE SETUP (LIQUID PRISM THEME)
   ========================================================================== */
:root {
    /* Liquid Prism Palette */
    --bg-abyss: #010b14;
    --bg-slate: #0b192c;
    --bg-glass: rgba(11, 25, 44, 0.45);
    --bg-glass-hover: rgba(11, 25, 44, 0.7);
    --border-glass: rgba(255, 255, 255, 0.08);

    --accent-cyan: #06b6d4;
    --accent-amethyst: #a855f7;
    --accent-pink: #ec4899;

    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    /* Typography */
    --font-heading: 'Syne', 'Inter', sans-serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

    /* Layout & Dimensions */
    --container-max: 1350px;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 9999px;

    /* Transitions & FX */
    --transit-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transit-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.4);
    --glow-amethyst: 0 0 25px rgba(168, 85, 247, 0.4);
}

/* Base Reset & Utilities */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg-abyss);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-abyss);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-abyss);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-amethyst);
    border-radius: var(--radius-pill);
    border: 2px solid var(--bg-abyss);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

::selection {
    background: var(--accent-cyan);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   TYPOGRAPHY & BUTTONS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-cyan {
    color: var(--accent-cyan);
}

.text-pink {
    color: var(--accent-pink);
}

.holo-text {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-amethyst), var(--accent-pink));
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShine 4s linear infinite;
    display: inline-block;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 4rem;
}

/* Magnetic Liquid Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: var(--transit-fast);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-amethyst));
    z-index: -1;
    transition: var(--transit-fast);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    border-color: transparent;
    box-shadow: var(--glow-cyan);
    transform: scale(1.02);
}

.btn-outline {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

/* ==========================================================================
   STRICT EXACT HEADER & FOOTER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transit-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(1, 11, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transit-fast);
    filter: brightness(0) invert(1);
}

.main-nav ul {
    display: flex;
    gap: 3rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transit-fast);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover {
    color: var(--accent-cyan);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-amethyst));
    transition: var(--transit-smooth);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* Strict Footer */
.site-footer {
    background: var(--bg-abyss);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.footer-mesh {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand .logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transit-fast);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
}

.footer-contact span {
    color: var(--accent-amethyst);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   LIQUID BACKGROUND BLOBS (Global Decor)
   ========================================================================== */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: morphBlob 15s ease-in-out infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--accent-cyan);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-amethyst);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background: var(--accent-pink);
    opacity: 0.3;
    animation-delay: -10s;
}

/* ==========================================================================
   INDEX.HTML - 12 SECTIONS
   ========================================================================== */

/* 1. Hero Section (3D Parallax & Liquid Glass) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Hero Visual (Floating Glass Cards) */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: transform 0.1s;
    transform-style: preserve-3d;
}

.panel-main {
    width: 350px;
    height: 400px;
    z-index: 3;
}

.panel-sub-1 {
    width: 200px;
    height: 150px;
    top: 10%;
    left: 0;
    z-index: 2;
    animation: floatObj 6s ease-in-out infinite;
}

.panel-sub-2 {
    width: 250px;
    height: 180px;
    bottom: 10%;
    right: -5%;
    z-index: 4;
    animation: floatObj 8s ease-in-out infinite reverse;
}

/* 2. Marquee */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(1, 11, 20, 0.5);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-wrapper {
    display: flex;
    width: 200%;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    flex: 1;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 3. About / DNA */
.dna-section {
    padding: 8rem 0;
}

.dna-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.dna-visual {
    position: relative;
    height: 500px;
}

.prism-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-cyan), var(--bg-slate));
    box-shadow: inset -20px -20px 50px rgba(168, 85, 247, 0.5), 0 0 50px rgba(6, 182, 212, 0.3);
    animation: rotateOrb 15s linear infinite;
    position: relative;
}

.prism-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: spinDash 20s linear infinite reverse;
}

.dna-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.d-stat h3 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.d-stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 4. Core Services (Glass Grid) */
.services-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.svc-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 3rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transit-smooth);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transit-smooth);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.svc-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.svc-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.svc-card p {
    color: var(--text-secondary);
}

/* 5. Process Flow */
.process-section {
    padding: 8rem 0;
}

.flow-container {
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--border-glass);
    z-index: -1;
}

.flow-step:last-child::before {
    display: none;
}

.f-number {
    width: 70px;
    height: 70px;
    background: var(--bg-slate);
    border: 2px solid var(--accent-amethyst);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    box-shadow: var(--glow-amethyst);
    flex-shrink: 0;
}

.f-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
}

.f-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.f-content p {
    color: var(--text-secondary);
}

/* 6. Dashboard / Live Analytics Mockup */
.dashboard-section {
    padding: 8rem 0;
}

.dash-window {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(25px);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.dash-header {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    gap: 8px;
}

.d-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.d-dot:nth-child(2) {
    background: #ffbd2e;
}

.d-dot:nth-child(3) {
    background: #27c93f;
}

.dash-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem;
}

.metric-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.m-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

.m-card p {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.m-card h3 {
    font-size: 2.5rem;
    font-family: var(--font-body);
}

.chart-col {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1rem;
    height: 100%;
}

.c-bar {
    flex: 1;
    background: var(--border-glass);
    border-radius: 4px 4px 0 0;
    position: relative;
    transform-origin: bottom;
    animation: growBar 1.5s ease-out forwards;
    opacity: 0;
}

.c-bar.cyan {
    background: linear-gradient(to top, var(--accent-amethyst), var(--accent-cyan));
}

/* 7. Interactive ROI Calculator */
.calculator-section {
    padding: 8rem 0;
}

.calc-module {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
}

.calc-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
}

.slider-wrap {
    margin-bottom: 3rem;
}

.sl-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.sl-head span {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.sl-val {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent-cyan);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -10px;
    border: 3px solid var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 3rem;
    margin-top: 2rem;
}

.res-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 2rem;
    text-align: center;
}

.res-box p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.res-box h3 {
    font-size: 3rem;
    color: var(--text-primary);
}

/* 8. Industry Verticals */
.industry-section {
    padding: 8rem 0;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ind-card {
    position: relative;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.ind-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: var(--transit-smooth);
}

.ind-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 11, 20, 1), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transit-fast);
}

.ind-card:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.ind-card:hover .ind-overlay {
    background: linear-gradient(to top, rgba(168, 85, 247, 0.7), transparent);
}

.ind-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: var(--transit-smooth);
}

.ind-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transit-smooth);
}

.ind-card:hover h3 {
    transform: translateY(0);
}

.ind-card:hover p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* 9. Client Success (Accordion/Tabs) */
.success-section {
    padding: 8rem 0;
}

.success-container {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.succ-row {
    border-bottom: 1px solid var(--border-glass);
}

.succ-row:last-child {
    border-bottom: none;
}

.succ-head {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transit-fast);
}

.succ-head:hover {
    background: rgba(255, 255, 255, 0.02);
}

.succ-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    transition: var(--transit-fast);
    font-weight: 300;
}

.succ-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.succ-body-inner {
    padding: 0 2.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.succ-row.active .succ-body {
    max-height: 500px;
}

.succ-row.active .succ-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.s-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.s-m h4 {
    font-size: 3rem;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.s-m span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* 10. Testimonials */
.testimonials-section {
    padding: 8rem 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.test-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 3rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    position: relative;
}

.test-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.test-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-glass);
}

/* 11. CTA Inline Form */
.cta-section {
    padding: 10rem 0;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(25px);
    box-shadow: var(--glow-amethyst);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-grp {
    display: flex;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transit-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-amethyst);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

select.form-input {
    appearance: none;
}

/* 12. Live Chat Widget */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-amethyst));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: var(--glow-cyan);
    transition: var(--transit-fast);
}

.chat-fab:hover {
    transform: scale(1.1);
}

.chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 340px;
    background: var(--bg-slate);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transit-fast);
    overflow: hidden;
}

.chat-window.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cw-head {
    background: var(--bg-abyss);
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    font-weight: 700;
}

.cw-close {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.cw-body {
    height: 280px;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-glass);
}

.c-msg {
    background: var(--bg-abyss);
    padding: 1rem;
    border: 1px solid var(--border-glass);
    border-radius: 12px 12px 12px 0;
    font-size: 0.9rem;
    max-width: 85%;
}

.cw-foot {
    display: flex;
    border-top: 1px solid var(--border-glass);
}

.cw-foot input {
    flex: 1;
    padding: 1.2rem;
    background: var(--bg-abyss);
    border: none;
    color: #fff;
    outline: none;
}

.cw-foot button {
    padding: 0 1.5rem;
    background: var(--accent-amethyst);
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================================================================
   LEGAL / INTERNAL PAGES
   ========================================================================== */
.page-hero {
    padding: 12rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.legal-content {
    padding: 6rem 0;
}

.legal-wrap {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 4rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
}

.legal-wrap h2 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin: 3rem 0 1.5rem;
}

.legal-wrap p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 3rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.ci-block {
    margin-bottom: 2rem;
}

.ci-block span {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-amethyst);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.ci-block p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ==========================================================================
   ANIMATIONS & MEDIA QUERIES
   ========================================================================== */
@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(360deg) scale(1.1);
    }
}

@keyframes holoShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes floatObj {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes rotateOrb {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinDash {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes growBar {
    from {
        opacity: 0;
        transform: scaleY(0);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1200px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: 1;
        height: 400px;
        margin-bottom: 3rem;
    }

    .dna-grid,
    .dash-body,
    .calc-results,
    .succ-body-inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(1, 11, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transit-smooth);
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .form-grp {
        flex-direction: column;
    }

    .legal-wrap {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .panel-main {
        width: 100%;
    }

    .panel-sub-1,
    .panel-sub-2 {
        display: none;
    }

    .s-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .chat-window {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 110px;
    }
}