/* ============================================================
   SWISS AGENTS - Ultra-Modern Dark Futuristic Website
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #06060b;
    --bg-card: #0c0c14;
    --bg-card-hover: #10101c;
    --surface: #12121e;
    --border: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 212, 255, 0.15);

    --text: #e4e4ec;
    --text-dim: #8888a0;
    --text-muted: #55556a;

    --neon-blue: #00d4ff;
    --neon-purple: #8b5cf6;
    --neon-teal: #06ffa5;
    --neon-pink: #f472b6;

    --glow-blue: 0 0 30px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    --glow-teal: 0 0 30px rgba(6, 255, 165, 0.3);

    --font-primary: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: rgba(0, 212, 255, 0.25);
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dim);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-blue);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -12px;
    min-width: 250px;
    padding: 12px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(8, 10, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.25s var(--ease-out),
        transform 0.25s var(--ease-out),
        visibility 0.25s;
    z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    transition: all 0.25s var(--ease-out);
}

.nav-dropdown-link:hover {
    color: #fff;
    background: rgba(0, 212, 255, 0.08);
}

.nav-cta {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dim);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--neon-blue);
    top: -200px;
    right: -100px;
    opacity: 0.12;
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
    animation: glowFloat 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-teal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.06; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Hero Circuits */
.hero-circuits {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.circuit-line {
    fill: none;
    stroke: var(--neon-blue);
    stroke-width: 1;
    stroke-dasharray: 8 12;
    animation: circuitFlow 20s linear infinite;
}

.cl-2 {
    stroke: var(--neon-purple);
    animation-duration: 25s;
    animation-direction: reverse;
}

.cl-3 {
    stroke: var(--neon-teal);
    animation-duration: 30s;
    opacity: 0.5;
}

@keyframes circuitFlow {
    to { stroke-dashoffset: -200; }
}

/* Hero Agent Avatar */
.hero-agent {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringRotate linear infinite;
}

.agent-ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 212, 255, 0.15);
    animation-duration: 20s;
}

.agent-ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(139, 92, 246, 0.15);
    animation-duration: 15s;
    animation-direction: reverse;
}

.agent-ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(6, 255, 165, 0.1);
    animation-duration: 10s;
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.agent-core {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-icon {
    width: 80px;
    height: 80px;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
}

.agent-pulse {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: agentPulse 3s ease-in-out infinite;
}

@keyframes agentPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-right: auto;
    padding-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 13px;
    font-weight: 500;
    color: var(--neon-blue);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-teal);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
    max-width: 780px;
    text-wrap: balance;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 6s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-microcopy {
    margin-top: 18px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
}

.hero-media {
    position: absolute;
    top: 42%;
    right: max(24px, calc((100vw - 1200px) / 2));
    transform: translateY(-50%);
    width: min(44vw, 560px);
    z-index: 2;
}

.hero-media-card {
    position: relative;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(10, 12, 22, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(0, 212, 255, 0.08);
    overflow: hidden;
}

.hero-media-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(139, 92, 246, 0.25), rgba(6, 255, 165, 0.35));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-media-status {
    position: absolute;
    top: 26px;
    left: 28px;
    right: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.status-live,
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(6, 6, 11, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.status-pill {
    color: var(--neon-blue);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-teal);
    box-shadow: 0 0 18px rgba(6, 255, 165, 0.9);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
    background: #040406;
}

.hero-media-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(6, 6, 11, 0.18), rgba(6, 6, 11, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-highlight {
    font-family: var(--font-primary);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-caption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(228, 228, 236, 0.8);
}

.hero-media-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.12);
    pointer-events: none;
}

.hero-media-orbit-1 {
    inset: -18px;
    animation: ringRotate 24s linear infinite;
}

.hero-media-orbit-2 {
    inset: 22px;
    border-color: rgba(139, 92, 246, 0.12);
    animation: ringRotate 18s linear infinite reverse;
}

.hero-floating-card {
    position: absolute;
    z-index: 3;
    max-width: 240px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(10, 12, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.hero-floating-card strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
}

.floating-card-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-blue);
}

.hero-floating-card-top {
    top: 52px;
    left: -58px;
}

.hero-floating-card-bottom {
    right: -48px;
    bottom: 54px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-teal));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.module-more-link {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
    padding: 16px 22px;
    border-color: rgba(0, 212, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(139, 92, 246, 0.08)),
        rgba(255, 255, 255, 0.02);
    color: #fff;
    font-weight: 600;
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.08),
        0 14px 30px rgba(0, 212, 255, 0.08);
}

.module-more-link:hover {
    background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.12)),
        rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.12),
        0 18px 36px rgba(0, 212, 255, 0.12);
}

.btn-play-icon {
    font-size: 10px;
    opacity: 0.7;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

.hero-scroll-indicator span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* --- SECTIONS COMMON --- */
.section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    pointer-events: none;
    background: var(--neon-blue);
    top: 0;
    right: -200px;
}

.section-glow-purple {
    background: var(--neon-purple);
    left: -200px;
    right: auto;
}

.section-glow-teal {
    background: var(--neon-teal);
    top: auto;
    bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--neon-blue);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- PROBLEM SECTION --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--neon-blue);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.problem-solution-line {
    text-align: center;
}

.solution-arrow {
    width: 24px;
    margin: 0 auto 20px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.solution-arrow svg {
    width: 100%;
    height: auto;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.solution-teaser {
    font-family: var(--font-primary);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #fff;
}

/* --- SOLUTION / CAPABILITIES --- */
.workflow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.workflow-step span {
    font-size: 13px;
    color: var(--text-dim);
    max-width: 120px;
}

.workflow-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--neon-blue);
    transition: all 0.4s var(--ease-out);
}

.workflow-node svg {
    width: 40px;
    height: 40px;
}

.workflow-node:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.node-active {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.workflow-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: workflowPulse 3s ease-in-out infinite;
}

@keyframes workflowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0; }
}

.workflow-connector {
    width: 60px;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 8px;
    margin-bottom: 28px;
}

.workflow-connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    opacity: 0.3;
}

.workflow-connector-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: connectorDot 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--neon-blue);
}

@keyframes connectorDot {
    0% { left: 0; }
    100% { left: calc(100% - 4px); }
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.capability-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.capability-card:hover::before {
    opacity: 1;
}

.capability-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.capability-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    color: var(--neon-blue);
    transition: all 0.4s var(--ease-out);
}

.capability-card:hover .capability-icon {
    color: var(--neon-teal);
    filter: drop-shadow(0 0 10px rgba(6, 255, 165, 0.3));
}

.capability-icon svg {
    width: 100%;
    height: 100%;
}

.capability-card h3 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* --- MODULES SECTION --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.module-card {
    perspective: 1000px;
}

.module-card-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    transform-style: preserve-3d;
}

.module-card:hover .module-card-inner {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.module-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.06), transparent 50%);
    pointer-events: none;
    transition: all 0.5s;
}

[data-color="purple"] .module-glow {
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.06), transparent 50%);
}

[data-color="teal"] .module-glow {
    background: radial-gradient(circle at 50% 30%, rgba(6, 255, 165, 0.06), transparent 50%);
}

.module-card:hover .module-glow {
    opacity: 1.5;
}

.module-number {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 24px;
    right: 28px;
}

.module-icon-wrap {
    margin-bottom: 24px;
}

.module-icon {
    width: 64px;
    height: 64px;
    color: var(--neon-blue);
}

[data-color="purple"] .module-icon {
    color: var(--neon-purple);
}

[data-color="teal"] .module-icon {
    color: var(--neon-teal);
}

.module-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.module-tagline {
    font-size: 14px;
    color: var(--neon-blue);
    font-weight: 500;
    margin-bottom: 12px;
}

[data-color="purple"] .module-tagline {
    color: var(--neon-purple);
}

[data-color="teal"] .module-tagline {
    color: var(--neon-teal);
}

.module-desc {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.module-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.feature-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
    flex-shrink: 0;
}

[data-color="purple"] .feature-dot {
    background: var(--neon-purple);
    box-shadow: 0 0 8px var(--neon-purple);
}

[data-color="teal"] .feature-dot {
    background: var(--neon-teal);
    box-shadow: 0 0 8px var(--neon-teal);
}

/* --- PROCESS SECTION --- */
.process-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple), var(--neon-teal));
    transition: height 0.1s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.step-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out);
}

.step-node span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.4s;
}

.process-step.is-active .step-node {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.process-step.is-active .step-node span {
    color: var(--neon-blue);
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    margin-top: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.process-footnote {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
}

/* --- ABOUT SECTION --- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1600px;
}

.about-symbol {
    position: relative;
    width: 420px;
    height: 420px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1600px;
}

.about-symbol-halo,
.about-symbol-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.about-symbol-halo-outer {
    inset: 18px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.02) 42%, transparent 64%);
    filter: blur(10px);
    animation: symbolBreathe 6s ease-in-out infinite;
}

.about-symbol-halo-inner {
    inset: 74px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.09), rgba(139, 92, 246, 0.02) 36%, transparent 62%);
    filter: blur(8px);
    animation: symbolBreathe 4.8s ease-in-out infinite reverse;
}

.about-symbol-orbit {
    inset: 46px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.04),
        inset 0 0 24px rgba(0, 212, 255, 0.04);
    animation: symbolSpin 18s linear infinite;
}

.about-symbol-orbit::before,
.about-symbol-orbit::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(0, 212, 255, 0.75) 55%, rgba(0, 212, 255, 0));
}

.about-symbol-orbit::before {
    top: 10%;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
}

.about-symbol-orbit::after {
    right: 12%;
    bottom: 18%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(139, 92, 246, 0.7) 55%, rgba(139, 92, 246, 0));
}

.about-symbol-core {
    position: relative;
    width: 220px;
    height: 220px;
    transform-style: preserve-3d;
    transform: rotateX(62deg) rotateZ(45deg);
    transition: transform 0.7s var(--ease-out);
}

.about-symbol:hover .about-symbol-core {
    transform: rotateX(68deg) rotateZ(45deg) translateY(-6px);
}

.about-symbol-layer {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        rgba(8, 10, 22, 0.9);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform-style: preserve-3d;
    transition: transform 0.7s var(--ease-out), border-color 0.7s var(--ease-out);
}

.about-symbol-layer::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-symbol-layer-back {
    transform: translateZ(-56px) scale(0.9);
    border-color: rgba(139, 92, 246, 0.18);
}

.about-symbol-layer-mid {
    transform: translateZ(-24px) scale(0.96);
    border-color: rgba(0, 212, 255, 0.18);
}

.about-symbol-layer-front {
    transform: translateZ(12px);
    border-color: rgba(6, 255, 165, 0.16);
}

.about-symbol:hover .about-symbol-layer-back {
    transform: translateZ(-78px) scale(0.88);
}

.about-symbol:hover .about-symbol-layer-mid {
    transform: translateZ(-28px) scale(0.95);
}

.about-symbol:hover .about-symbol-layer-front {
    transform: translateZ(28px);
}

.about-symbol-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.36), transparent 35%),
        linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-teal));
    box-shadow:
        0 0 36px rgba(0, 212, 255, 0.26),
        0 0 64px rgba(139, 92, 246, 0.18);
    transform: translate(-50%, -50%) translateZ(42px) rotate(0deg);
    animation: symbolCoreTurn 8s linear infinite;
}

.about-symbol-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(0, 212, 255, 0.72) 55%, rgba(0, 212, 255, 0));
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.26);
}

.about-symbol-dot-1 {
    top: 64px;
    right: 88px;
    animation: symbolFloatA 5.2s ease-in-out infinite;
}

.about-symbol-dot-2 {
    bottom: 76px;
    left: 72px;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(139, 92, 246, 0.72) 55%, rgba(139, 92, 246, 0));
    animation: symbolFloatB 4.6s ease-in-out infinite;
}

.about-symbol-dot-3 {
    top: 50%;
    right: 30px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(6, 255, 165, 0.72) 55%, rgba(6, 255, 165, 0));
    animation: symbolFloatC 4.2s ease-in-out infinite;
}

@keyframes symbolSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes symbolBreathe {
    0%, 100% {
        transform: scale(0.98);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes symbolCoreTurn {
    to {
        transform: translate(-50%, -50%) translateZ(42px) rotate(360deg);
    }
}

@keyframes symbolFloatA {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(10px, -10px, 0);
    }
}

@keyframes symbolFloatB {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-12px, 8px, 0);
    }
}

@keyframes symbolFloatC {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(8px, -12px, 0);
    }
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

.value-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-blue);
}

/* --- FAQ SECTION --- */
.faq-showcase {
    max-width: 920px;
    margin: 0 auto;
}

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

.faq-item {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.12), transparent 50%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
    pointer-events: none;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.16);
    transform: translateY(-3px);
}

.faq-item.active {
    border-color: rgba(0, 212, 255, 0.22);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.24),
        0 0 40px rgba(0, 212, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

.faq-question-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.14);
    color: var(--neon-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: all 0.35s var(--ease-out);
}

.faq-question-text {
    position: relative;
    z-index: 1;
}

.faq-item:hover .faq-question-meta,
.faq-item.active .faq-question-meta {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    border-color: rgba(0, 212, 255, 0.22);
}

.faq-toggle span {
    position: absolute;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.faq-toggle span:first-child {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle span:last-child {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle span:last-child {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition:
        height 0.55s var(--ease-out),
        opacity 0.35s var(--ease-out);
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

.faq-answer p {
    padding: 0 24px 24px 84px;
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.8;
}

/* --- CTA BANNER --- */
.section-cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-blue);
    opacity: 0.08;
    left: 20%;
    top: -50%;
}

.cta-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-purple);
    opacity: 0.06;
    right: 20%;
    bottom: -50%;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-banner-content p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CONTACT SECTION --- */
.contact-layout {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--ease-out);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow {
    width: 100%;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* --- PAGE HEADER (Subpages) --- */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    text-align: center;
}

.page-header .section-title {
    margin-bottom: 16px;
}

.page-header .section-subtitle {
    margin-top: 0;
}

.page-header-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-blue);
}

/* --- SCROLL ANIMATIONS --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for cards */
.animate-on-scroll[style*="--delay: 1"] { transition-delay: 0.1s; }
.animate-on-scroll[style*="--delay: 2"] { transition-delay: 0.2s; }
.animate-on-scroll[style*="--delay: 3"] { transition-delay: 0.3s; }
.animate-on-scroll[style*="--delay: 4"] { transition-delay: 0.4s; }
.animate-on-scroll[style*="--delay: 5"] { transition-delay: 0.5s; }
.animate-on-scroll[style*="--delay: 6"] { transition-delay: 0.6s; }
.animate-on-scroll[style*="--delay: 7"] { transition-delay: 0.7s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-agent {
        display: none;
    }

    .hero {
        display: block;
        padding-bottom: 64px;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding-left: 0;
    }

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

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

    .hero-media {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: min(100%, 720px);
        margin: 24px auto 0;
    }

    .hero-floating-card-top {
        left: 16px;
    }

    .hero-floating-card-bottom {
        right: 16px;
    }

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

    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-symbol {
        width: 400px;
        height: 400px;
    }

    .about-content .section-label,
    .about-content .section-title {
        text-align: center;
    }

    .about-values {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 11, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
        padding: 0 0 0 12px;
        border: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-link {
        width: 100%;
        padding: 8px 0;
        border-radius: 0;
        font-size: 13px;
    }

    .nav-dropdown-link:hover {
        background: none;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 40px 0;
    }

    .hero-media-card {
        padding: 12px;
        border-radius: 22px;
    }

    .hero-media-status {
        top: 20px;
        left: 20px;
        right: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-media-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 16px;
    }

    .hero-floating-card {
        position: static;
        max-width: none;
        margin: 12px 0 0;
    }

    .faq-question {
        grid-template-columns: 1fr auto;
        gap: 14px;
        font-size: 16px;
    }

    .faq-question-meta {
        display: none;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

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

    .workflow {
        flex-direction: column;
        gap: 16px;
    }

    .workflow-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .workflow-connector-line {
        width: 1px;
        height: 100%;
    }

    .workflow-connector-dot {
        animation: connectorDotVert 2s ease-in-out infinite;
    }

    @keyframes connectorDotVert {
        0% { top: 0; left: 50%; transform: translateX(-50%); }
        100% { top: calc(100% - 4px); left: 50%; transform: translateX(-50%); }
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-media {
        margin-top: 20px;
    }

    .status-live,
    .status-pill {
        font-size: 11px;
        padding: 8px 10px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================================
   NEW SECTIONS - Stats, Use Cases, Lead Gen, Team, Floating CTA
   ============================================================ */

/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
}

.stat-item {
    background: var(--bg-card);
    padding: 44px 24px;
    text-align: center;
    transition: background 0.3s var(--ease-out);
}

.stat-item:hover {
    background: var(--bg-card-hover);
}

.stat-value {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* --- USE CASES SECTION --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-teal));
    opacity: 0;
    transition: opacity 0.4s;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.use-case-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--neon-blue);
    transition: all 0.4s var(--ease-out);
}

.use-case-card:hover .use-case-icon {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.use-case-icon svg {
    width: 26px;
    height: 26px;
}

.use-case-card h3 {
    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.use-case-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.75;
}

.use-case-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--neon-blue);
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.07);
    border-radius: 100px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

/* --- LEAD GEN HIGHLIGHT BANNER --- */
.agent-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agent-showcase-stage {
    display: grid;
}

.agent-showcase-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.99);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), visibility 0.7s;
    pointer-events: none;
}

.agent-showcase-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 1;
}

.lead-gen-banner {
    background: var(--bg-card);
    border: 1px solid rgba(244, 114, 182, 0.15);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-gen-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--neon-pink);
    filter: blur(130px);
    opacity: 0.07;
    pointer-events: none;
}

.lead-gen-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lead-gen-content p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 28px;
}

.lead-gen-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.lead-gen-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
}

.lead-gen-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    flex-shrink: 0;
}

.lead-gen-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-flow-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s var(--ease-out);
}

.lead-flow-item:hover {
    border-color: rgba(244, 114, 182, 0.2);
    transform: translateX(6px);
    box-shadow: -4px 0 20px rgba(244, 114, 182, 0.08);
}

.lead-flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lead-flow-dot-pink { background: var(--neon-pink); box-shadow: 0 0 10px var(--neon-pink); }
.lead-flow-dot-blue { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.lead-flow-dot-teal { background: var(--neon-teal); box-shadow: 0 0 10px var(--neon-teal); }
.lead-flow-dot-purple { background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }

.lead-flow-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.4;
}

.lead-flow-text strong {
    color: #fff;
    font-weight: 600;
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.agent-showcase-arrow {
    appearance: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        rgba(6, 8, 18, 0.88);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.agent-showcase-arrow svg {
    width: 22px;
    height: 22px;
}

.agent-showcase-arrow:hover,
.agent-showcase-arrow:focus-visible {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(0, 212, 255, 0.12);
    outline: none;
}

.agent-showcase-arrow-prev {
    left: -28px;
}

.agent-showcase-arrow-next {
    right: -28px;
}

/* --- PINK MODULE COLOR --- */
[data-color="pink"] .module-glow {
    background: radial-gradient(circle at 50% 30%, rgba(244, 114, 182, 0.06), transparent 50%);
}

[data-color="pink"] .module-icon {
    color: var(--neon-pink);
}

[data-color="pink"] .module-tagline {
    color: var(--neon-pink);
}

[data-color="pink"] .feature-dot {
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
}

/* --- TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    transition: width 0.4s var(--ease-out);
    border-radius: 2px;
}

.team-card:hover::after {
    width: 80%;
}

.team-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.15);
    transition: border-color 0.4s, box-shadow 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-card:hover .team-avatar {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.15);
}

.team-avatar-bg {
    position: absolute;
    inset: 0;
}

.team-card:nth-child(1) .team-avatar-bg { background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(139,92,246,0.1)); }
.team-card:nth-child(2) .team-avatar-bg { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(6,255,165,0.1)); }
.team-card:nth-child(3) .team-avatar-bg { background: linear-gradient(135deg, rgba(6,255,165,0.18), rgba(0,212,255,0.1)); }
.team-card:nth-child(4) .team-avatar-bg { background: linear-gradient(135deg, rgba(244,114,182,0.18), rgba(139,92,246,0.1)); }
.team-card:nth-child(5) .team-avatar-bg { background: linear-gradient(135deg, rgba(0,212,255,0.18), rgba(244,114,182,0.1)); }

.team-card:nth-child(1) .team-avatar svg { color: var(--neon-blue); }
.team-card:nth-child(2) .team-avatar svg { color: var(--neon-purple); }
.team-card:nth-child(3) .team-avatar svg { color: var(--neon-teal); }
.team-card:nth-child(4) .team-avatar svg { color: var(--neon-pink); }
.team-card:nth-child(5) .team-avatar svg { color: var(--neon-blue); }

.team-avatar svg {
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 1;
    opacity: 0.75;
    transition: opacity 0.4s;
}

.team-card:hover .team-avatar svg {
    opacity: 1;
}

.team-name {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    color: var(--neon-blue);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* --- FLOATING CTA BUTTON --- */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    pointer-events: none;
}

.floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.floating-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-teal));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: inherit;
}

.floating-cta-btn:hover::before {
    opacity: 1;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(0, 212, 255, 0.55);
}

.floating-cta-btn span,
.floating-cta-btn svg {
    position: relative;
    z-index: 1;
}

.floating-pulse {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: dotPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .lead-gen-banner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .agent-showcase-arrow {
        width: 52px;
        height: 52px;
    }

    .agent-showcase-arrow-prev {
        left: -18px;
    }

    .agent-showcase-arrow-next {
        right: -18px;
    }

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

}

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

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .lead-gen-banner {
        padding: 32px 24px;
    }

    .agent-showcase-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
        width: 48px;
        height: 48px;
    }

    .agent-showcase-arrow-prev {
        left: 24px;
    }

    .agent-showcase-arrow-next {
        right: 24px;
    }

    .floating-cta {
        bottom: 20px;
        right: 16px;
    }

    .floating-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .about-symbol {
        width: min(100%, 340px);
        height: 340px;
    }

    .about-symbol-core {
        width: 180px;
        height: 180px;
    }

    .about-symbol-center {
        width: 60px;
        height: 60px;
    }

    .about-symbol-orbit {
        inset: 38px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

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