/* ============================================================
   AiAuraLink – style.css
   Brand Colors extracted from logo: Cyan #00D4FF, Purple #8B5CF6,
   Deep Blue #0A0E1A, accent magenta #FF2D78
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300&family=JetBrains+Mono:wght@300;400;500&display=swap");

/* ── CSS Variables ── */
:root {
    --cyan: #00d4ff;
    --cyan-dim: #00a8cc;
    --purple: #8b5cf6;
    --purple-dim: #6d3fe0;
    --magenta: #ff2d78;
    --bg-deep: #04060f;
    --bg-card: #080c1a;
    --bg-glass: rgba(8, 12, 26, 0.75);
    --border-glow: rgba(0, 212, 255, 0.18);
    --text-primary: #e8f4ff;
    --text-secondary: #7a9bb5;
    /* --text-muted: #3e5570; */
    --text-muted: #7e848b;
    --grid-color: rgba(0, 212, 255, 0.04);
    --font-display: "Orbitron", sans-serif;
    --font-body: "Exo 2", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --nav-h: 80px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    /* cursor: none; */
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}

/* ── Custom Cursor ── */
#cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: screen;
}
#cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition:
        transform 0.18s ease,
        width 0.25s,
        height 0.25s,
        border-color 0.25s;
}
body:hover #cursor-ring {
    opacity: 1;
}
.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--purple);
}

/* ── Grid Background ── */
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        black 30%,
        transparent 100%
    );
}

/* ── Noise Overlay ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ══════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition:
        background var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);
    border-bottom: 1px solid transparent;
}

.header-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-header.scrolled {
    background: rgba(4, 6, 15, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: var(--border-glow);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.nav-logo .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.nav-logo .logo-ai {
    color: var(--text-primary);
}
.nav-logo .logo-aura {
    color: var(--cyan);
}
.nav-logo .logo-link {
    color: var(--purple);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 6px;
    position: relative;
    transition: color var(--transition);
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--cyan);
    transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--cyan);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

/* Nav CTA */
.nav-cta-btn {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--cyan);
    border-radius: 6px;
    color: var(--cyan);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.nav-cta-btn:hover {
    color: var(--bg-deep);
}
.nav-cta-btn:hover::before {
    transform: scaleX(1);
}
.nav-cta-btn span {
    position: relative;
    z-index: 1;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 6, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
}
.mobile-menu.open {
    display: flex;
    justify-content: start;
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color var(--transition);
    padding: 10px;
}
.mobile-menu a:hover {
    color: var(--cyan);
}

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 60px) 40px 80px;
    overflow: hidden;
    text-align: center;
}

/* Particle Canvas */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

/* Orb glows */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.12) 0%,
        transparent 70%
    );
    top: -100px;
    left: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.14) 0%,
        transparent 70%
    );
    bottom: -80px;
    right: -80px;
    animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 45, 120, 0.08) 0%,
        transparent 70%
    );
    top: 40%;
    left: 55%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, 30px) scale(1.08);
    }
}
@keyframes orbFloat2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -40px) scale(1.06);
    }
}
@keyframes orbFloat3 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Holographic ring */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.06);
    z-index: 1;
    pointer-events: none;
    animation: ringPulse 6s ease-in-out infinite;
}
.hero-ring::before {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.06);
    animation: ringPulse 6s ease-in-out infinite 1s;
}
.hero-ring::after {
    content: "";
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 45, 120, 0.04);
    animation: ringPulse 6s ease-in-out infinite 2s;
}
@keyframes ringPulse {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.04) rotate(180deg);
    }
}

/* Scanning line */
.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
    animation: scanDown 8s linear infinite;
}
@keyframes scanDown {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.15;
    }
    95% {
        opacity: 0.15;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s ease both;
}
.hero-badge::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-headline {
    font-family: var(--font-display);
    /* font-size: clamp(2.6rem, 6vw, 5rem); */
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.9s ease 0.1s both;
}
.hero-headline .line-1 {
    display: block;
    color: var(--text-primary);
}
.hero-headline .line-2 {
    display: block;
    background: linear-gradient(
        135deg,
        var(--cyan) 0%,
        var(--purple) 50%,
        var(--magenta) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.18rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.75;
    animation: fadeSlideUp 0.9s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeSlideUp 0.9s ease 0.3s both;
}

/* Primary CTA */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    opacity: 0;
    transition: opacity var(--transition);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
    transition: transform var(--transition);
}
.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Secondary CTA */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: transparent;
    padding: 15px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transition: opacity var(--transition);
}
.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover::before {
    opacity: 1;
}
.btn-secondary .play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.btn-secondary:hover .play-icon {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--cyan);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--border-glow);
    animation: fadeSlideUp 0.9s ease 0.5s both;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glow);
}

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
section {
    position: relative;
    z-index: 2;
}
.section-pad {
    padding: 100px 0px;
}
/* 
.container {
    max-width: 1200px;
    margin: 0 auto;
} */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cyan);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-heading .accent {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.8;
}

/* ══════════════════════════════════
   SERVICES SECTION
══════════════════════════════════ */
#services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.03) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-4px);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.service-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 300;
}
.service-tag {
    display: inline-block;
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 4px;
    padding: 4px 10px;
}

/* ══════════════════════════════════
   INDUSTRIES SECTION
══════════════════════════════════ */
#industries {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(8, 12, 26, 0.8) 20%,
        rgba(8, 12, 26, 0.8) 80%,
        transparent
    );
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 64px;
}
.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}
.industry-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.05);
    transform: translateY(-3px);
}
.industry-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.industry-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    text-transform: uppercase;
    line-height: 1.4;
    transition: color var(--transition);
}
.industry-card:hover .industry-name {
    color: var(--purple);
}

/* ══════════════════════════════════
   TECH STACK MARQUEE
══════════════════════════════════ */
#tech-stack {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}
.marquee-wrapper {
    display: flex;
    gap: 0;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: marqueeScroll 28s linear infinite;
    flex-shrink: 0;
    white-space: nowrap;
}
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    transition: all var(--transition);
    flex-shrink: 0;
}
.tech-item:hover {
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.25);
}
.tech-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    opacity: 0.5;
}

/* ══════════════════════════════════
   PRICING SECTION
══════════════════════════════════ */
#pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.06) 0%,
        rgba(0, 212, 255, 0.04) 100%
    );
}
.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 20px;
    right: -28px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--bg-deep);
    background: var(--purple);
    padding: 4px 36px;
    transform: rotate(40deg);
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-tier {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}
.pricing-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}
.pricing-price sup {
    font-size: 1rem;
    vertical-align: super;
}
.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.pricing-features {
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .pricing-features {
        padding-left: 0px;
    }
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-feature:last-child {
    border-bottom: none;
}
.feature-check {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.8rem;
}

.btn-outline {
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--cyan);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--cyan);
}
.btn-filled {
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    cursor: pointer;
    transition: all var(--transition);
}
.btn-filled:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
#cta-band {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(139, 92, 246, 0.08) 50%,
        rgba(255, 45, 120, 0.04) 100%
    );
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    padding: 100px 40px;
    text-align: center;
}
.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
}
.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
#main-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-glow);
    padding: 80px 0px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand .nav-logo {
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 280px;
    font-weight: 300;
}
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer;
}
.social-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition);
    font-weight: 300;
}
.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glow);
}
.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--cyan);
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glow text */
.glow-text {
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

/* ══════════════════════════════════
   SCROLLBAR
══════════════════════════════════ */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    :root {
        --nav-h: 68px;
    }
    #main-header {
        display: flex;
        justify-content: space-between;
    }
    .nav-links,
    .nav-cta-btn {
        display: none;
    }
    .nav-toggle {
        display: flex;
        background: transparent;
        border: none;
    }
    .section-pad {
        padding: 80px 0px;
    }
    #hero {
        padding: calc(var(--nav-h) + 40px) 20px 60px;
    }
    .hero-ring {
        width: 320px;
        height: 320px;
    }
    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }
    .hero-orb-2 {
        width: 250px;
        height: 250px;
    }
    .hero-stats {
        gap: 28px;
    }
    .stat-divider {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        flex-direction: column-reverse;
    }
    #cursor-dot,
    #cursor-ring {
        display: none;
    }
    body {
        cursor: auto;
    }
}
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
}

/* ══════════════════════════════════
   TRUSTED BY SECTION
══════════════════════════════════ */
#trusted-by {
    padding: 70px 40px;
    border-top: 1px solid var(--border-glow);
}
.trusted-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.trusted-label::before,
.trusted-label::after {
    content: "";
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow));
}
.trusted-label::after {
    background: linear-gradient(90deg, var(--border-glow), transparent);
}

.trusted-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.trusted-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 16px 24px;
    transition: all var(--transition);
    cursor: default;
}
.trusted-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-2px);
}
.trusted-item-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: grayscale(0.3);
    transition: filter var(--transition);
}
.trusted-item:hover .trusted-item-icon {
    filter: grayscale(0);
}
.trusted-item-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    white-space: nowrap;
}
.trusted-item:hover .trusted-item-name {
    color: var(--text-secondary);
}

/* ══════════════════════════════════
   SERVICES LEARN MORE BUTTON
══════════════════════════════════ */
.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.service-learn-more svg {
    transition: transform var(--transition);
}
.service-card:hover .service-learn-more {
    color: var(--cyan);
}
.service-card:hover .service-learn-more svg {
    transform: translateX(4px);
}

/* ══════════════════════════════════
   HOW IT WORKS SECTION
══════════════════════════════════ */
#how-it-works {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(8, 12, 26, 0.6) 30%,
        rgba(8, 12, 26, 0.6) 70%,
        transparent
    );
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 72px;
    position: relative;
}
/* connecting line */
.how-steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(12.5% + 1px);
    right: calc(12.5% + 1px);
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--purple),
        var(--magenta),
        var(--cyan)
    );
    z-index: 0;
    opacity: 0.3;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.step-node {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    position: relative;
    transition: all var(--transition);
    box-shadow: 0 0 0 8px var(--bg-deep);
}
.how-step:hover .step-node {
    border-color: var(--cyan);
    box-shadow:
        0 0 0 8px var(--bg-deep),
        0 0 24px rgba(0, 212, 255, 0.25);
    transform: scale(1.08);
}
.step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}
/* animated progress dot */
.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    position: absolute;
    top: 32px;
    right: 0;
    transform: translateX(50%);
    animation: stepPing 2.5s ease-in-out infinite;
    display: none;
}
.how-steps::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    top: 30px;
    left: calc(12.5% - 5px);
    box-shadow: 0 0 12px var(--cyan);
    animation: travelDot 8s linear infinite;
    z-index: 2;
}
@keyframes travelDot {
    0% {
        left: calc(12.5% - 5px);
        opacity: 0.8;
    }
    25% {
        left: calc(37.5% - 5px);
        opacity: 1;
    }
    50% {
        left: calc(62.5% - 5px);
        opacity: 0.8;
    }
    75% {
        left: calc(87.5% - 5px);
        opacity: 1;
    }
    100% {
        left: calc(12.5% - 5px);
        opacity: 0.8;
    }
}
@keyframes stepPing {
    0%,
    100% {
        transform: translateX(50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(50%) scale(1.6);
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .how-steps::before {
        display: none;
    }
    .how-steps::after {
        display: none;
    }
}
@media (max-width: 480px) {
    .how-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ══════════════════════════════════
   DASHBOARD PREVIEW SECTION
══════════════════════════════════ */
#dashboard-preview {
    overflow: hidden;
    padding: 120px 0px;
}
.dashboard-layout {
    /* display: grid;
    grid-template-columns: 1fr 1.5fr; */
    display: flex;
    gap: 64px;
    align-items: center;
    margin-top: 72px;
}
.dashboard-copy {
    width: 40%;
}
.mockup {
    width: 60%;
}
.dashboard-copy .section-label {
    margin-bottom: 14px;
}
.dashboard-copy .section-heading {
    margin-bottom: 20px;
}
.dashboard-copy .section-sub {
    margin-bottom: 36px;
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.dash-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.dash-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.dash-feat-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.dash-feat-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Fake Dashboard UI */
.dashboard-mockup {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.05);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform var(--transition);
}
.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glow);
}
.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}
.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}
.mockup-dots span:nth-child(3) {
    background: #28ca41;
}
.mockup-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.mockup-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #28ca41;
}
.mockup-status::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #28ca41;
    animation: pulse 2s infinite;
}

.mockup-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Stat row */
.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.mstat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px;
}
.mstat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.mstat-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}
.mstat-value.c {
    color: var(--cyan);
}
.mstat-value.p {
    color: var(--purple);
}
.mstat-value.m {
    color: var(--magenta);
}
.mstat-change {
    font-size: 0.6rem;
    color: #28ca41;
    margin-top: 2px;
}

/* Chart area */
.mockup-chart-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}
.mockup-chart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
}
.mchart-title {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
}
.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(0deg, var(--cyan), rgba(0, 212, 255, 0.3));
    transition: height 1s ease;
    animation: barGrow 3s ease infinite alternate;
}
@keyframes barGrow {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}
.chart-bar:nth-child(2) {
    background: linear-gradient(0deg, var(--purple), rgba(139, 92, 246, 0.3));
    animation-delay: 0.2s;
}
.chart-bar:nth-child(3) {
    background: linear-gradient(0deg, var(--cyan), rgba(0, 212, 255, 0.3));
    animation-delay: 0.4s;
}
.chart-bar:nth-child(4) {
    background: linear-gradient(0deg, var(--magenta), rgba(255, 45, 120, 0.3));
    animation-delay: 0.6s;
}
.chart-bar:nth-child(5) {
    background: linear-gradient(0deg, var(--purple), rgba(139, 92, 246, 0.3));
    animation-delay: 0.8s;
}
.chart-bar:nth-child(6) {
    background: linear-gradient(0deg, var(--cyan), rgba(0, 212, 255, 0.3));
    animation-delay: 1s;
}
.chart-bar:nth-child(7) {
    background: linear-gradient(0deg, var(--cyan), rgba(0, 212, 255, 0.3));
    animation-delay: 1.2s;
}

/* Chatbot */
.mockup-chatbot {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-msg {
    font-size: 0.65rem;
    color: var(--text-secondary);
    padding: 7px 10px;
    border-radius: 8px;
    line-height: 1.5;
    max-width: 85%;
}
.chat-msg.bot {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.12);
    align-self: flex-start;
}
.chat-msg.user {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    align-self: flex-end;
}
.chat-typing {
    display: flex;
    gap: 3px;
    align-items: center;
    padding: 4px 0 0 4px;
}
.chat-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    animation: typingDot 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}
.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typingDot {
    0%,
    80%,
    100% {
        transform: scale(0.7);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Workflow row */
.mockup-workflow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px;
}
.workflow-nodes {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.wf-node {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-secondary);
    white-space: nowrap;
}
.wf-node-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s infinite;
}
.wf-node-dot.p {
    background: var(--purple);
    animation-delay: 0.5s;
}
.wf-node-dot.m {
    background: var(--magenta);
    animation-delay: 1s;
}
.wf-arrow {
    color: var(--text-muted);
    font-size: 0.7rem;
}

@media (max-width: 576px) {
    .wf-arrow {
        display: none;
    }
}
@media (max-width: 1024px) {
    .dashboard-layout {
        /* grid-template-columns: 1fr; */
        flex-direction: column;
    }
    .dashboard-mockup {
        transform: none;
    }
    .dashboard-copy {
        width: 100%;
    }

    .mockup {
        width: 100%;
    }
}

/* ══════════════════════════════════
   INDUSTRY SOLUTIONS SECTION (expanded)
══════════════════════════════════ */
#industry-solutions {
    background: transparent;
}
.industry-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}
.industry-sol-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}
.industry-sol-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity var(--transition);
}
.industry-sol-card:nth-child(1)::before {
    background: linear-gradient(90deg, #00d4ff, #8b5cf6);
}
.industry-sol-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8b5cf6, #ff2d78);
}
.industry-sol-card:nth-child(3)::before {
    background: linear-gradient(90deg, #ff2d78, #00d4ff);
}
.industry-sol-card:nth-child(4)::before {
    background: linear-gradient(90deg, #00d4ff, #ff2d78);
}
.industry-sol-card:nth-child(5)::before {
    background: linear-gradient(90deg, #8b5cf6, #00d4ff);
}
.industry-sol-card:nth-child(6)::before {
    background: linear-gradient(90deg, #ff2d78, #8b5cf6);
}
.industry-sol-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.25);
}
.industry-sol-card:hover::before {
    opacity: 1;
}

.isol-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.isol-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}
.isol-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}
.isol-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}
.isol-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    color: var(--text-secondary);
    font-weight: 300;
}
.isol-feat::before {
    content: "→";
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

@media (max-width: 1024px) {
    .industry-solutions-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .industry-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   WHY CHOOSE US SECTION
══════════════════════════════════ */
#why-choose {
    background: linear-gradient(
        180deg,
        transparent,
        rgba(8, 12, 26, 0.7) 30%,
        rgba(8, 12, 26, 0.7) 70%,
        transparent
    );
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.2);
}
.why-card:hover::before {
    opacity: 1;
}
.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.why-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.why-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   CASE STUDIES SECTION
══════════════════════════════════ */
#case-studies {
    background: transparent;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}
.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.02) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity var(--transition);
}
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.case-card:hover::before {
    opacity: 1;
}

.case-industry-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.case-industry-tag.health {
    background: rgba(0, 212, 255, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.case-industry-tag.hotel {
    background: rgba(139, 92, 246, 0.08);
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.case-industry-tag.ecom {
    background: rgba(255, 45, 120, 0.08);
    color: var(--magenta);
    border: 1px solid rgba(255, 45, 120, 0.2);
}

.case-stat {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.case-stat.c {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.case-stat.p {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.case-stat.m {
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-result {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}
.case-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
}
.case-divider {
    height: 1px;
    background: var(--border-glow);
    margin: 20px 0;
}
.case-client {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.case-client-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .case-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .case-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */

/* ── Page Hero (shared inner-page style) ── */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 80px) 40px 80px;
    text-align: center;
    overflow: hidden;
}
.page-hero-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    top: -80px;
    left: -100px;
    pointer-events: none;
    animation: orbFloat1 14s ease-in-out infinite;
}
.page-hero-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(60px);
    bottom: -60px;
    right: -60px;
    pointer-events: none;
    animation: orbFloat2 18s ease-in-out infinite;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}
.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .page-hero-badge {
        font-size: 9px;
    }
}

.page-hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse 2s infinite;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
}
.page-hero-title .accent {
    background: linear-gradient(
        135deg,
        var(--cyan),
        var(--purple),
        var(--magenta)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Page divider line ── */
.page-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-glow),
        transparent
    );
    margin: 0;
}

/* ══════════════════════════════════
   COMPANY STORY
══════════════════════════════════ */
#company-story {
    padding: 100px 0px;
}
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-visual {
    position: relative;
}
.story-card-main {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.story-card-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--purple),
        var(--magenta)
    );
}
.story-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 6px;
    padding: 5px 12px;
    margin-bottom: 20px;
}
.story-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 2px solid var(--cyan);
}
.story-quote-attr {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
/* Floating accent card */
.story-accent-card {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.15),
        rgba(0, 212, 255, 0.08)
    );
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
}
.sac-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.sac-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 4px;
}

.story-copy {
}
.story-copy .section-label {
    margin-bottom: 14px;
}
.story-copy .section-heading {
    margin-bottom: 20px;
}
.story-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.story-highlight::before {
    content: "✦";
    color: var(--cyan);
    font-size: 0.7rem;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-visual {
        order: -1;
    }
    .story-accent-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-block;
    }
}

/* ══════════════════════════════════
   MISSION & VISION
══════════════════════════════════ */
#mission-vision {
    padding: 0 0px 100px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(8, 12, 26, 0.7) 20%,
        rgba(8, 12, 26, 0.7) 80%,
        transparent
    );
}
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mv-card {
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}
.mv-card.mission {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.06) 0%,
        rgba(0, 212, 255, 0.02) 100%
    );
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.mv-card.vision {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.08) 0%,
        rgba(139, 92, 246, 0.02) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.25);
}
.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.mv-card.mission::before {
    background: linear-gradient(90deg, var(--cyan), transparent);
}
.mv-card.vision::before {
    background: linear-gradient(90deg, var(--purple), var(--magenta));
}

.mv-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}
.mission .mv-icon-wrap {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.vision .mv-icon-wrap {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.mv-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.mission .mv-label {
    color: var(--cyan);
}
.vision .mv-label {
    color: var(--purple);
}

.mv-heading {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 18px;
}
.mv-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.85;
}
.mv-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Decorative large letter */
.mv-bg-letter {
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0.03;
    letter-spacing: -0.05em;
}

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

/* ══════════════════════════════════
   CORE VALUES
══════════════════════════════════ */
#core-values {
    padding: 0 0px 100px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.value-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 100%,
        rgba(0, 212, 255, 0.06),
        transparent 70%
    );
    opacity: 0;
    transition: opacity var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}
.value-card:hover::after {
    opacity: 1;
}

.value-card:nth-child(2) {
    border-color: rgba(139, 92, 246, 0.2);
}
.value-card:nth-child(2):hover {
    border-color: rgba(139, 92, 246, 0.45);
}
.value-card:nth-child(2)::after {
    background: radial-gradient(
        circle at 50% 100%,
        rgba(139, 92, 246, 0.06),
        transparent 70%
    );
}

.value-card:nth-child(3) {
    border-color: rgba(255, 45, 120, 0.15);
}
.value-card:nth-child(3):hover {
    border-color: rgba(255, 45, 120, 0.4);
}
.value-card:nth-child(3)::after {
    background: radial-gradient(
        circle at 50% 100%,
        rgba(255, 45, 120, 0.06),
        transparent 70%
    );
}

.value-card:nth-child(4) {
    border-color: rgba(0, 212, 255, 0.12);
}

.value-emoji {
    font-size: 2.4rem;
    margin-bottom: 18px;
    display: block;
}
.value-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.value-card:nth-child(1) .value-name {
    color: var(--cyan);
}
.value-card:nth-child(2) .value-name {
    color: var(--purple);
}
.value-card:nth-child(3) .value-name {
    color: var(--magenta);
}
.value-card:nth-child(4) .value-name {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.value-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

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

/* ══════════════════════════════════
   FOUNDER SECTION
══════════════════════════════════ */
#founder {
    padding: 0 0px 100px;
}
.founder-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}
.founder-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.founder-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--purple),
        var(--magenta)
    );
}
.founder-avatar-wrap {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.05),
        rgba(139, 92, 246, 0.08)
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
.founder-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.15),
        rgba(139, 92, 246, 0.15)
    );
    border: 2px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
/* Grid scan overlay on avatar */
.founder-avatar-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.founder-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.4;
    animation: scanDown 4s linear infinite;
}
.founder-info {
    padding: 24px;
}
.founder-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.founder-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}
.founder-socials-row {
    display: flex;
    gap: 8px;
}
.founder-social {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.founder-social:hover {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.3);
}

.founder-copy {
}
.founder-copy .section-label {
    margin-bottom: 14px;
}
.founder-copy .section-heading {
    margin-bottom: 24px;
}
.founder-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.founder-stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 0;
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
    margin-bottom: 32px;
}
.founder-stat {
}
.founder-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.founder-stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}
.founder-quote {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-left: 3px solid var(--purple);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}
.founder-quote cite {
    display: block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--purple);
    font-style: normal;
}

@media (max-width: 900px) {
    .founder-layout {
        grid-template-columns: 1fr;
    }
    .founder-card {
        max-width: 340px;
    }
}

/* ══════════════════════════════════
   COMPANY TIMELINE
══════════════════════════════════ */
#company-timeline {
    padding: 0 0px 120px;
}
.timeline-intro {
    max-width: 560px;
    margin-bottom: 72px;
}

.timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* Vertical line */
.timeline-wrapper::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--cyan),
        var(--purple),
        var(--magenta),
        rgba(0, 212, 255, 0.1)
    );
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding-bottom: 52px;
    position: relative;
}
.timeline-item:last-child {
    padding-bottom: 0;
}

/* Node */
.tl-node {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
    transition: all var(--transition);
    cursor: default;
}
.tl-node-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.timeline-item:nth-child(1) .tl-node {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}
.timeline-item:nth-child(1) .tl-node-inner {
    background: rgba(0, 212, 255, 0.12);
}
.timeline-item:nth-child(2) .tl-node {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}
.timeline-item:nth-child(2) .tl-node-inner {
    background: rgba(139, 92, 246, 0.12);
}
.timeline-item:nth-child(3) .tl-node {
    border-color: rgba(255, 45, 120, 0.4);
    box-shadow: 0 0 20px rgba(255, 45, 120, 0.15);
}
.timeline-item:nth-child(3) .tl-node-inner {
    background: rgba(255, 45, 120, 0.12);
}
.timeline-item:nth-child(4) .tl-node {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.08),
        rgba(139, 92, 246, 0.08)
    );
}
.timeline-item:nth-child(4) .tl-node-inner {
    background: rgba(0, 212, 255, 0.1);
}

.tl-node:hover {
    transform: scale(1.08);
}

/* Content card */
.tl-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.tl-content:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateX(4px);
}
.timeline-item:nth-child(1) .tl-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}
.timeline-item:nth-child(2) .tl-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), transparent);
}
.timeline-item:nth-child(3) .tl-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), transparent);
}
.timeline-item:nth-child(4) .tl-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--purple),
        var(--magenta)
    );
}

.tl-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.tl-phase {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    flex-shrink: 0;
}
.timeline-item:nth-child(1) .tl-phase {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.timeline-item:nth-child(2) .tl-phase {
    color: var(--purple);
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.timeline-item:nth-child(3) .tl-phase {
    color: var(--magenta);
    background: rgba(255, 45, 120, 0.08);
    border: 1px solid rgba(255, 45, 120, 0.2);
}
.timeline-item:nth-child(4) .tl-phase {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg-deep);
    border: none;
    font-weight: 700;
}

.tl-status {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}
.tl-status.active {
    color: #28ca41;
}
.tl-status.active::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #28ca41;
    animation: pulse 1.5s infinite;
}
.tl-status.planned {
    color: var(--text-muted);
}
.tl-status.planned::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
}

.tl-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.tl-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}
.tl-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tl-item-tag {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    padding: 4px 10px;
    transition: all var(--transition);
}
.tl-content:hover .tl-item-tag {
    color: var(--text-secondary);
    border-color: rgba(0, 212, 255, 0.15);
}

@media (max-width: 640px) {
    .timeline-wrapper::before {
        left: 20px;
    }
    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 20px;
    }
    .tl-node {
        width: 40px;
        height: 40px;
    }
    .tl-node-inner {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }
    .tl-content {
        padding: 24px 20px;
    }
    #company-timeline {
        padding: 0 0px 80px;
    }
    #company-story,
    #mission-vision,
    #core-values,
    #founder {
        /* padding-left: 20px;
        padding-right: 20px; */
    }
    .page-hero {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ══════════════════════════════════
   ABOUT CTA STRIP
══════════════════════════════════ */
#about-cta {
    padding: 0 0px 80px;
}
.about-cta-inner {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(139, 92, 246, 0.07) 50%,
        rgba(255, 45, 120, 0.04) 100%
    );
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyan),
        var(--purple),
        transparent
    );
}
@media (max-width: 640px) {
    .about-cta-inner {
        padding: 48px 24px;
    }
    #about-cta {
        /* padding-left: 20px;
        padding-right: 20px; */
    }
}

/* ══════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════ */
#back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 990;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
#back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.12),
        rgba(139, 92, 246, 0.1)
    );
    opacity: 0;
    transition: opacity var(--transition);
}
#back-to-top:hover {
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow:
        0 0 24px rgba(0, 212, 255, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4);
}
#back-to-top:hover::before {
    opacity: 1;
}

/* Arrow icon */
.btt-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition:
        transform var(--transition),
        color var(--transition);
}
#back-to-top:hover .btt-arrow {
    transform: translateY(-2px);
    color: var(--cyan);
}

/* Progress ring */
.btt-ring {
    position: absolute;
    inset: -2px;
    border-radius: 13px;
    pointer-events: none;
}
.btt-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.btt-ring-track {
    fill: none;
    stroke: rgba(0, 212, 255, 0.08);
    stroke-width: 2;
}
.btt-ring-fill {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
    transition: stroke-dashoffset 0.1s linear;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 24px;
        right: 20px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */

/* ── Form Elements Base ── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form-label span.req {
    color: var(--cyan);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
    -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: rgba(0, 212, 255, 0.45);
    background: rgba(0, 212, 255, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.07);
}
.form-input:focus + .form-focus-line,
.form-select:focus + .form-focus-line {
    width: 100%;
}

/* Input wrapper for focus line effect */
.form-input-wrap {
    position: relative;
}
.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-radius: 1px;
    transition: width 0.4s ease;
    pointer-events: none;
}

/* Select arrow */
.form-select-wrap {
    position: relative;
}
.form-select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
    transition: border-color var(--transition);
}
.form-select-wrap:focus-within::after {
    border-top-color: var(--cyan);
}
.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

/* Submit button full width */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 17px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}
.btn-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    opacity: 0;
    transition: opacity var(--transition);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(0, 212, 255, 0.35);
}
.btn-submit:hover::before {
    opacity: 1;
}
.btn-submit span,
.btn-submit svg {
    position: relative;
    z-index: 1;
}
.btn-submit .btn-icon {
    transition: transform var(--transition);
}
.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Success state */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 32px;
    gap: 16px;
}
.form-success.show {
    display: flex;
}
.form-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successPop {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.form-success p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ══════════════════════════════════
   CONTACT LAYOUT
══════════════════════════════════ */
#contact-main {
    padding: 80px 0px 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

/* ── Left: Form Card ── */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--cyan),
        var(--purple),
        var(--magenta)
    );
}
.contact-form-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.contact-form-header {
    margin-bottom: 36px;
}
.contact-form-header .section-label {
    margin-bottom: 12px;
}
.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Character counter */
.form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.char-counter {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ── Right: Info Column ── */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Meeting Booking Card */
.booking-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--magenta));
}
.booking-card-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 14px;
}
.booking-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.booking-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Fake calendar slot picker */
.booking-slots-label {
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.booking-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.slot-btn {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    padding: 7px 14px;
    cursor: pointer;
    transition: all var(--transition);
}
.slot-btn:hover,
.slot-btn.selected {
    color: var(--purple);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.07);
}
.booking-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.booking-note svg {
    flex-shrink: 0;
    color: var(--cyan);
}
.btn-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    padding: 14px 24px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}
.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.35);
}
.btn-booking span {
    position: relative;
    z-index: 1;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 32px;
}
.contact-info-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ci-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.contact-info-item:hover .ci-icon {
    background: rgba(0, 212, 255, 0.14);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}
.ci-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.ci-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    transition: color var(--transition);
}
.contact-info-item:hover .ci-value {
    color: var(--text-primary);
}
a.contact-info-item {
    cursor: pointer;
}

/* Social row inside info card */
.ci-social-row {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.ci-social {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer;
}
.ci-social:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.3);
}

/* ══════════════════════════════════
   MAP SECTION
══════════════════════════════════ */
#contact-map {
    padding: 0 40px 80px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* Dark overlay to match site palette */
.map-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 6, 15, 0.4));
    pointer-events: none;
    z-index: 1;
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
    filter: invert(90%) hue-rotate(185deg) saturate(0.7) brightness(0.85);
}
/* Map pin info box */
.map-pin-box {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
}
.map-pin-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.map-pin-name {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.map-pin-addr {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

/* ══════════════════════════════════
   CONTACT PAGE RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        order: -1;
    }
    .contact-info-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    #contact-main {
        padding: 60px 0px 80px;
    }
    #contact-map {
        padding: 0 0px 60px;
    }
    .contact-form-card {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        grid-template-columns: 1fr;
    }
    .map-wrapper iframe {
        height: 300px;
    }
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════ */

/* ── Service Nav Pills ── */
#service-nav {
    position: sticky;
    top: var(--nav-h);
    z-index: 50;
    padding: 0 40px;
    background: rgba(4, 6, 15, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-glow);
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-nav-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 14px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.service-nav-inner::-webkit-scrollbar {
    display: none;
}
.snav-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    background: none;
}
.snav-pill .snav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
    transition: background var(--transition);
}
.snav-pill:hover {
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.08);
}
.snav-pill.active {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border-color: rgba(0, 212, 255, 0.25);
}
.snav-pill.active .snav-dot {
    background: var(--cyan);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    #service-nav {
        padding: 0 16px;
    }
    .snav-pill {
        font-size: 0.62rem;
        padding: 7px 12px;
    }
}

/* ── Service Section Wrapper ── */
.service-section {
    padding: 100px 0px;
    position: relative;
    border-top: 1px solid var(--border-glow);
}
.service-section:nth-child(even) {
    background: linear-gradient(
        180deg,
        rgba(8, 12, 26, 0.6) 0%,
        transparent 100%
    );
}

/* Header row inside each service */
.svc-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.svc-header-copy {
}
.svc-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    position: absolute;
    top: 60px;
    right: 40px;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
}

/* Service label pill */
.svc-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 18px;
}
.svc-label-pill.c1 {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.svc-label-pill.c2 {
    color: #25d366;
    background: rgba(37, 211, 102, 0.07);
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.svc-label-pill.c3 {
    color: var(--purple);
    background: rgba(139, 92, 246, 0.07);
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.svc-label-pill.c4 {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.svc-label-pill.c5 {
    color: var(--magenta);
    background: rgba(255, 45, 120, 0.07);
    border: 1px solid rgba(255, 45, 120, 0.2);
}
.svc-label-pill.c6 {
    color: #34d399;
    background: rgba(52, 211, 153, 0.07);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.svc-icon-large {
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 24px;
}
.svc-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.svc-tagline {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
}

/* CTA in header */
.svc-header-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    flex-shrink: 0;
    padding-top: 8px;
}
.svc-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.svc-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(0, 212, 255, 0.35);
}
.svc-id-badge {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-align: right;
}

/* ── Problem / Solution block ── */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 56px;
}
.ps-card {
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}
.ps-card.problem {
    background: rgba(255, 45, 120, 0.04);
    border: 1px solid rgba(255, 45, 120, 0.15);
}
.ps-card.solution {
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
}
.ps-card.problem::before {
    content: "⚠";
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-size: 4rem;
    opacity: 0.04;
    pointer-events: none;
}
.ps-card.solution::before {
    content: "✓";
    position: absolute;
    bottom: 12px;
    right: 18px;
    font-size: 4rem;
    opacity: 0.04;
    pointer-events: none;
    font-family: var(--font-display);
}
.ps-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.problem .ps-label {
    color: var(--magenta);
}
.solution .ps-label {
    color: var(--cyan);
}
.ps-heading {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.ps-text {
    font-size: 0.87rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

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

/* ── Features + Benefits grid ── */
.fb-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-bottom: 56px;
    align-items: start;
}

/* Features list */
.features-block-title,
.benefits-block-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.features-block-title::after,
.benefits-block-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-glow);
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all var(--transition);
}
.feat-item:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.02);
    transform: translateX(4px);
}
.feat-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.feat-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.feat-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* Benefits list */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition);
}
.benefit-item:hover {
    background: rgba(0, 212, 255, 0.03);
    border-color: rgba(0, 212, 255, 0.12);
}
.benefit-check {
    font-size: 0.7rem;
    color: var(--cyan);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-text {
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
}
.benefit-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 900px) {
    .fb-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ── Demo CTA strip ── */
.svc-demo-strip {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.04) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.svc-demo-strip-copy {
}
.svc-demo-strip-copy p:first-child {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.svc-demo-strip-copy p:last-child {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
}
.svc-demo-strip-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── FAQ accordion ── */
.faq-block {
    margin-bottom: 0;
}
.faq-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-glow);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open {
    border-color: rgba(0, 212, 255, 0.25);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
    user-select: none;
}
.faq-item.open .faq-question {
    color: var(--text-primary);
}
.faq-q-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-q-icon svg {
    transition: transform var(--transition);
}
.faq-item.open .faq-q-icon {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
}
.faq-item.open .faq-q-icon svg {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}

/* ── Service section responsive ── */
@media (max-width: 768px) {
    .service-section {
        padding: 60px 0px;
    }
    .svc-header {
        grid-template-columns: 1fr;
    }
    .svc-header-cta {
        align-items: flex-start;
    }
    .svc-number {
        display: none;
    }
    #service-nav {
        top: 68px;
    }
}

/* ══════════════════════════════════════════════════════
   DEMO PAGE
══════════════════════════════════════════════════════ */

/* ── Demo Tab Navigation ── */
#demo-nav {
    position: sticky;
    top: var(--nav-h);
    z-index: 50;
    padding: 0 40px;
    background: rgba(4, 6, 15, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-glow);
}
.demo-nav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}
.demo-nav-inner::-webkit-scrollbar {
    display: none;
}
.demo-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 18px 24px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.demo-tab-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.demo-tab-btn:hover {
    color: var(--text-secondary);
}
.demo-tab-btn.active {
    color: var(--cyan);
}
.demo-tab-btn.active::after {
    transform: scaleX(1);
}
.demo-tab-icon {
    font-size: 1rem;
}
.demo-tab-live {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    color: var(--bg-deep);
    background: #28ca41;
    border-radius: 3px;
    padding: 2px 5px;
    font-weight: 700;
}

@media (max-width: 768px) {
    #demo-nav {
        padding: 0 16px;
        top: 68px;
    }
    .demo-tab-btn {
        padding: 14px 14px;
        font-size: 0.62rem;
        gap: 6px;
    }
}

/* ── Demo Section Wrapper ── */
.demo-section {
    /* display: none; */
    padding: 80px 0px 100px;
    animation: fadeSlideUp 0.5s ease both;
}
.demo-section.active {
    display: block;
}

@media (max-width: 768px) {
    .demo-section {
        padding: 48px 0px 64px;
    }
}

/* ── Demo Section Header ── */
.demo-section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.demo-section-copy {
}
.demo-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.demo-section-badge.live {
    color: #28ca41;
    background: rgba(40, 202, 65, 0.07);
    border: 1px solid rgba(40, 202, 65, 0.25);
}
.demo-section-badge.live::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #28ca41;
    animation: pulse 1.5s infinite;
}
.demo-section-badge.sim {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.2);
}
.demo-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
}
.demo-section-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
}
.demo-stats-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.demo-stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 16px 20px;
}
.demo-stat-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.demo-stat-lbl {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════════
   DEMO 1 — AI CHATBOT
══════════════════════════════════ */
.chatbot-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* Chat window */
.chat-window {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 580px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.chat-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glow);
    flex-shrink: 0;
}
.chat-topbar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.chat-topbar-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}
.chat-topbar-status {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: #28ca41;
    display: flex;
    align-items: center;
    gap: 4px;
}
.chat-topbar-status::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #28ca41;
    animation: pulse 2s infinite;
}
.chat-topbar-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}
.chat-topbar-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.chat-topbar-btn:hover {
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Messages area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.15) transparent;
}
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.15);
    border-radius: 4px;
}

.chat-msg-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}
.chat-msg-row.user {
    flex-direction: row-reverse;
}

.chat-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.chat-avatar-sm.user-av {
    background: linear-gradient(135deg, var(--purple), var(--magenta));
}

.chat-bubble {
    max-width: 72%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}
.chat-bubble.bot {
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.12);
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}
.chat-bubble.user {
    background: linear-gradient(
        135deg,
        rgba(139, 92, 246, 0.15),
        rgba(0, 212, 255, 0.1)
    );
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
    border-bottom-right-radius: 4px;
}
.chat-bubble.typing {
    padding: 14px 18px;
}
.chat-time {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    align-self: flex-end;
    padding-bottom: 2px;
    flex-shrink: 0;
}

/* Suggestions chips */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}
.suggestion-chip {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.18);
    border-radius: 100px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.suggestion-chip:hover {
    background: rgba(0, 212, 255, 0.14);
    transform: translateY(-1px);
}

/* Input area */
.chat-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid var(--border-glow);
    flex-shrink: 0;
}
.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
}
.chat-input::placeholder {
    color: var(--text-muted);
}
.chat-input:focus {
    border-color: rgba(0, 212, 255, 0.35);
}
.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.chat-send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.35);
}
.chat-send-btn svg {
    color: var(--bg-deep);
}

/* Right sidebar info */
.chatbot-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chatbot-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px;
}
.chatbot-info-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.chatbot-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chatbot-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}
.chatbot-info-item::before {
    content: "→";
    color: var(--cyan);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.topic-chip {
    font-family: var(--font-mono);
    font-size: 0.63rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    padding: 4px 10px;
    cursor: pointer;
    transition: all var(--transition);
}
.topic-chip:hover {
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.2);
}

@media (max-width: 1024px) {
    .chatbot-layout {
        grid-template-columns: 1fr;
    }
    .chatbot-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .chatbot-sidebar {
        grid-template-columns: 1fr;
    }
    .chat-window {
        height: 460px;
    }
}

/* ══════════════════════════════════
   DEMO 2 — WHATSAPP SIMULATION
══════════════════════════════════ */
.whatsapp-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
}

/* Phone frame */
.wa-phone-frame {
    background: #0d1117;
    border: 8px solid #1a1f2e;
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
}
.wa-phone-notch {
    width: 100px;
    height: 24px;
    background: #0d1117;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wa-notch-cam {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e2433;
}
.wa-notch-spk {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #1e2433;
}
.wa-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
}

.wa-header {
    background: #128c7e;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.wa-contact-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.wa-contact-status {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}
.wa-header-icons {
    margin-left: auto;
    display: flex;
    gap: 14px;
}
.wa-header-icons i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.wa-chat-bg {
    background: #0b141a;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20z' fill='%23ffffff' fill-opacity='0.01'/%3E%3C/svg%3E");
    padding: 12px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 380px;
    scrollbar-width: none;
}
.wa-chat-bg::-webkit-scrollbar {
    display: none;
}

.wa-bubble {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    line-height: 1.5;
}
.wa-bubble.bot {
    background: #202c33;
    color: #e9edef;
    border-radius: 0 8px 8px 8px;
    align-self: flex-start;
}
.wa-bubble.user {
    background: #005c4b;
    color: #e9edef;
    border-radius: 8px 0 8px 8px;
    align-self: flex-end;
}
.wa-bubble-time {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 3px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}
.wa-tick {
    color: #53bdeb;
}
.wa-date-divider {
    text-align: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    padding: 3px 10px;
    align-self: center;
}

.wa-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #202c33;
    padding: 8px 12px;
}
.wa-emoji-btn,
.wa-attach-btn {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--transition);
    flex-shrink: 0;
}
.wa-emoji-btn:hover,
.wa-attach-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}
.wa-text-input {
    flex: 1;
    background: #2a3942;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: #e9edef;
    font-size: 0.78rem;
    outline: none;
    font-family: var(--font-body);
    font-weight: 300;
}
.wa-text-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.wa-send-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #00a884;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}
.wa-send-btn:hover {
    background: #00c49a;
    transform: scale(1.08);
}
.wa-send-btn svg {
    color: #fff;
}

/* WA sidebar */
.wa-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.wa-scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px;
}
.wa-scenario-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.wa-scenario-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wa-scenario-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 9px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}
.wa-scenario-btn:hover,
.wa-scenario-btn.active {
    color: var(--text-primary);
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}
.wa-scenario-btn .s-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .whatsapp-layout {
        grid-template-columns: 1fr;
    }
    .wa-phone-frame {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ══════════════════════════════════
   DEMO 3 — VOICE AI
══════════════════════════════════ */
.voice-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Voice player */
.voice-player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.voice-player-top {
    padding: 32px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.04), transparent);
    border-bottom: 1px solid var(--border-glow);
}

/* Animated waveform */
.voice-visualiser {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 64px;
    margin: 0 auto 24px;
}
.voice-bar {
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    animation: voiceBar 1.2s ease-in-out infinite;
    opacity: 0.3;
}
.voice-bar:nth-child(1) {
    height: 20%;
    animation-delay: 0s;
}
.voice-bar:nth-child(2) {
    height: 40%;
    animation-delay: 0.1s;
}
.voice-bar:nth-child(3) {
    height: 60%;
    animation-delay: 0.2s;
}
.voice-bar:nth-child(4) {
    height: 80%;
    animation-delay: 0.3s;
}
.voice-bar:nth-child(5) {
    height: 100%;
    animation-delay: 0.4s;
}
.voice-bar:nth-child(6) {
    height: 70%;
    animation-delay: 0.5s;
}
.voice-bar:nth-child(7) {
    height: 50%;
    animation-delay: 0.6s;
}
.voice-bar:nth-child(8) {
    height: 90%;
    animation-delay: 0.7s;
}
.voice-bar:nth-child(9) {
    height: 65%;
    animation-delay: 0.8s;
}
.voice-bar:nth-child(10) {
    height: 40%;
    animation-delay: 0.9s;
}
.voice-bar:nth-child(11) {
    height: 25%;
    animation-delay: 1s;
}
.voice-bar:nth-child(12) {
    height: 55%;
    animation-delay: 1.1s;
}
.voice-bar:nth-child(13) {
    height: 75%;
    animation-delay: 0.9s;
}
.voice-bar:nth-child(14) {
    height: 45%;
    animation-delay: 0.7s;
}
.voice-bar:nth-child(15) {
    height: 30%;
    animation-delay: 0.5s;
}
@keyframes voiceBar {
    0%,
    100% {
        transform: scaleY(0.4);
        opacity: 0.25;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}
.voice-playing .voice-bar {
    opacity: 1;
}
.voice-playing .voice-bar {
    animation-play-state: running;
}

.voice-agent-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.voice-agent-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
}

/* Voice Controls */
.voice-controls {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.voice-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.voice-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 36px;
}
.voice-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}
.voice-progress-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    width: 0%;
    transition: width 0.2s linear;
    position: relative;
}
.voice-progress-fill::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}
.voice-btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.voice-ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}
.voice-ctrl-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}
.voice-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}
.voice-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.45);
}
.voice-play-btn svg {
    color: var(--bg-deep);
}

/* Sample list */
.voice-samples-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px;
}
.voice-samples-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.voice-sample-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.voice-sample-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all var(--transition);
}
.voice-sample-item:hover,
.voice-sample-item.active {
    border-color: rgba(0, 212, 255, 0.25);
    background: rgba(0, 212, 255, 0.04);
}
.vs-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--cyan);
    flex-shrink: 0;
    transition: all var(--transition);
}
.voice-sample-item:hover .vs-play {
    background: rgba(0, 212, 255, 0.2);
}
.vs-info {
    flex: 1;
}
.vs-name {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.vs-desc {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-top: 2px;
}
.vs-dur {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    flex-shrink: 0;
}
.voice-cta-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.voice-transcript {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px;
    margin-top: 0;
}
.vt-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vt-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-glow);
}
.vt-line {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.vt-speaker {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    padding-top: 2px;
    min-width: 44px;
}
.vt-speaker.ai {
    color: var(--cyan);
}
.vt-speaker.usr {
    color: var(--purple);
}
.vt-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .voice-layout {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   DEMO 4 — WORKFLOW AUTOMATION
══════════════════════════════════ */
.workflow-canvas {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.wf-canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.wf-canvas-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}
.wf-run-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 9px 18px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.wf-run-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Node grid */
.wf-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.wf-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.wf-node {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    transition: all var(--transition);
    position: relative;
}
.wf-node:hover {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.04);
}
.wf-node.active {
    border-color: rgba(0, 212, 255, 0.5);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}
.wf-node.done {
    border-color: rgba(40, 202, 65, 0.4);
    background: rgba(40, 202, 65, 0.05);
}
.wf-node.error {
    border-color: rgba(255, 45, 120, 0.4);
    background: rgba(255, 45, 120, 0.05);
}
.wf-node-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.wf-node.active .wf-node-icon {
    animation: spin 2s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.wf-node-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.wf-node-sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-top: 2px;
}
.wf-node-status {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.wf-node-status.run {
    color: var(--cyan);
}
.wf-node-status.done {
    color: #28ca41;
}
.wf-node-status.err {
    color: var(--magenta);
}
.wf-node-status.wait {
    color: var(--text-muted);
}

.wf-arrow-h {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.7rem;
}
.wf-arrow-v {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 16px 4px 16px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    gap: 8px;
}
@media (max-width: 768px) {
    .wf-arrow-v {
        display: none;
    }
}
.wf-branch {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.wf-branch-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}
.wf-branch-label.yes {
    color: #28ca41;
    background: rgba(40, 202, 65, 0.08);
    border: 1px solid rgba(40, 202, 65, 0.2);
}
.wf-branch-label.no {
    color: var(--magenta);
    background: rgba(255, 45, 120, 0.08);
    border: 1px solid rgba(255, 45, 120, 0.2);
}

/* Execution log */
.wf-log {
    margin-top: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    max-height: 140px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.15) transparent;
}
.wf-log::-webkit-scrollbar {
    width: 3px;
}
.wf-log::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.15);
}
.wf-log-line {
    display: flex;
    gap: 12px;
    padding: 4px 0;
}
.wf-log-time {
    color: var(--text-muted);
    flex-shrink: 0;
}
.wf-log-msg.info {
    color: var(--cyan);
}
.wf-log-msg.success {
    color: #28ca41;
}
.wf-log-msg.warn {
    color: #f59e0b;
}
.wf-log-msg.error {
    color: var(--magenta);
}

/* Workflow scenario selector */
.wf-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}
.wf-scenario-btn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}
.wf-scenario-btn:hover,
.wf-scenario-btn.active {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}
.wf-scenario-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.wf-scenario-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.wf-scenario-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 2px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .wf-scenarios {
        grid-template-columns: 1fr;
    }
}

/* ── Demo Bottom CTA ── */
#demo-cta {
    border-top: 1px solid var(--border-glow);
}
