/* --------------------------------------------------
   GLOBAL STYLES & VARIABLES
-------------------------------------------------- */
:root {
    --bg-primary: #070913;
    --bg-secondary: #0d1226;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #7f00ff;
    --accent-magenta: #e100ff;
    --accent-gold: #f59e0b;
    --accent-gold-glow: rgba(245, 158, 11, 0.4);
    --success: #10b981;
    --danger: #ef4444;
    
    --font-main: 'Outfit', 'Noto Sans SC', -apple-system, sans-serif;
    --glass-bg: rgba(13, 18, 38, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden; /* Lock scrollbar for fullpage experience */
    width: 100%;
    height: 100%;
    user-select: none; /* Prevents text selection during swipe */
}

/* --------------------------------------------------
   SPACE PARTICLES & ORBS BACKGROUND
-------------------------------------------------- */
.space-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #05070f 0%, #0d1123 50%, #060914 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.25;
    animation: backgroundShift 120s linear infinite;
}

@keyframes backgroundShift {
    from { background-position: 0 0, 40px 60px, 130px 270px; }
    to { background-position: 550px 550px, 390px 410px, 380px 870px; }
}

.glowing-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(140px);
    opacity: 0.45;
}

.orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: floatOrb 25s ease-in-out infinite alternate;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(79, 172, 254, 0) 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.3) 0%, rgba(225, 0, 255, 0) 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 35s;
}

.orb-3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0) 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 8%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* --------------------------------------------------
   FIXED HEADER & LOGO
-------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 6%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 9, 19, 0.6);
    transition: all 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-cyan);
    position: relative;
}

.logo-pulse::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.logo h1 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(to right, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-main);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue));
    transition: width 0.3s ease;
}

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

.header-action .consult-btn {
    text-decoration: none;
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.15) 100%);
    border: 1px solid rgba(0, 242, 254, 0.35);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.header-action .consult-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.3) 0%, rgba(79, 172, 254, 0.3) 100%);
}

/* --------------------------------------------------
   SIDEBAR DOT NAVIGATION
-------------------------------------------------- */
.sidebar-dots {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 99;
}

.sidebar-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sidebar-dots .dot.active {
    background-color: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
    transform: scale(1.4);
}

.sidebar-dots .dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-dots .dot.active::before {
    border-color: rgba(0, 242, 254, 0.4);
    animation: pulseBorder 1.5s infinite;
}

@keyframes pulseBorder {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.sidebar-dots .dot .tooltip {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: rgba(13, 18, 38, 0.85);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sidebar-dots .dot:hover .tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* --------------------------------------------------
   FULLPAGE CONTAINER & LAYOUT
-------------------------------------------------- */
.fullpage-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
}

.section {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem; /* Allow space for fixed header */
}

/* Horizontal slide wrapper system */
.slider-outer-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-inner-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100vw;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    position: relative;
}

/* --------------------------------------------------
   SLIDE CONTENT & TYPOGRAPHY
-------------------------------------------------- */
.slide-content {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(127, 0, 255, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.title-primary {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
}

.text-gradient {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue) 40%, var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 2rem;
}

/* --------------------------------------------------
   INTERACTIVE DEMOS & UI CARDS
-------------------------------------------------- */
.interactive-demo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Employee Grid */
.employee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 720px;
}

.employee-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.employee-card:hover, .employee-card.active {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.12), inset 0 0 15px rgba(0, 242, 254, 0.05);
}

.icon-ai {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.employee-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

.employee-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Chat Mockup */
.chat-mockup {
    width: 100%;
    max-width: 500px;
    background: rgba(13, 18, 38, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.chat-header {
    background: rgba(7, 9, 19, 0.8);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.chat-header span[class^="dot-"] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background-color: var(--danger); }
.dot-yellow { background-color: var(--accent-gold); }
.dot-green { background-color: var(--success); }

.chat-title {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-left: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.chat-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.chat-msg {
    max-width: 85%;
    padding: 0.65rem 0.95rem;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.chat-msg.system {
    align-self: center;
    background-color: rgba(0, 242, 254, 0.08);
    border: 1px dashed rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
    text-align: center;
    max-width: 100%;
}

.chat-msg.user {
    align-self: flex-end;
    background-color: var(--accent-purple);
    color: var(--text-primary);
    border-bottom-right-radius: 2px;
}

.chat-msg.assistant {
    align-self: flex-start;
    background-color: rgba(255,255,255,0.07);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom-left-radius: 2px;
}

.badge-tag {
    font-size: 0.65rem;
    background-color: rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    margin-left: 0.25rem;
}

/* Monitor Dashboard */
.monitor-dashboard {
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.status-live {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-live .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--success);
    display: inline-block;
    animation: beacon 1.4s infinite;
}

@keyframes beacon {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.monitor-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.6rem 0.8rem;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 6px;
    text-align: left;
}

.table-row.head {
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    border: none;
}

.author-cell i {
    margin-right: 0.35rem;
}

.num-cell {
    color: var(--accent-cyan);
    font-weight: 700;
}

.trend-cell {
    font-weight: 600;
}

.trend-cell.positive {
    color: var(--success);
}

.action-glow-btn {
    width: 100%;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: #030712;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.25);
}

.action-glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.45);
}

/* --------------------------------------------------
   MODULE 2: SERVICES & PRICING
-------------------------------------------------- */
.price-card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.glass-pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.2rem 2rem;
    width: 100%;
    max-width: 580px;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.35);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.08);
}

.glass-pricing-card.gold-border {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(245, 158, 11, 0.03);
}

.glass-pricing-card.gold-border:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.55), 0 0 30px rgba(245, 158, 11, 0.2);
}

.pricing-badge {
    margin-bottom: 1.5rem;
}

.pricing-badge.vip {
    border-color: rgba(127, 0, 255, 0.4);
    color: var(--accent-magenta);
    background: linear-gradient(135deg, rgba(127,0,255,0.1) 0%, rgba(225,0,255,0.1) 100%);
}

.pricing-badge.elite {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
}

.pricing-badge.enterprise {
    border-color: rgba(255,255,255,0.25);
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-bottom: 2rem;
    text-align: left;
}

.card-features.columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.45;
}

.feature-item i {
    color: var(--accent-cyan);
    margin-top: 0.15rem;
    font-size: 1rem;
}

.feature-item i.text-gold {
    color: var(--accent-gold);
}

.feature-item.gift-item {
    grid-column: span 2;
    background: rgba(239, 68, 68, 0.08);
    border: 1px dashed rgba(239, 68, 68, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: #fda4af;
}

.feature-item.gift-item i {
    color: var(--danger);
}

.price-block {
    margin-bottom: 1.8rem;
}

.price-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    font-family: var(--font-main);
}

.price-value span {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 0.15rem;
}

.buy-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none;
    border: none;
    padding: 0.95rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    color: #030712;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.3);
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.55);
}

.consult-glow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    border: 1px solid rgba(0, 242, 254, 0.4);
    padding: 0.95rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.consult-glow-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(79, 172, 254, 0.2) 100%);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
}

.consult-glow-btn.gold-btn {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.12) 100%);
}

.consult-glow-btn.gold-btn:hover {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.25) 100%);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

/* Enterprise Cell Grid */
.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.ent-cell {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 1.1rem;
    border-radius: 12px;
}

.ent-cell-icon {
    font-size: 1.35rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.ent-cell h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.ent-cell p {
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

/* --------------------------------------------------
   MODULE 3: CONTACT
-------------------------------------------------- */
.contact-container {
    width: 100%;
    max-width: 1080px;
    padding: 0 2.5rem;
    display: flex;
    justify-content: center;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2.5rem;
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(16px);
    position: relative;
    text-align: left;
}

.contact-badge {
    margin-bottom: 1.25rem;
    align-self: flex-start;
    display: inline-block;
}

.contact-badge.success {
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--success);
    background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0.18) 100%);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
    margin: 1.25rem 0 1.75rem 0;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(127, 0, 255, 0.1) 100%);
    border: 1px solid rgba(0, 242, 254, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.detail-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* WeChat QR Card */
.qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.qr-wrapper {
    position: relative;
    width: 175px;
    height: 175px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.wechat-qr {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

/* QR Scanner Line Animation */
.qr-scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: scanQr 3.5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes scanQr {
    0% { top: 0%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.qr-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.qr-status i {
    color: var(--success);
}

/* --------------------------------------------------
   SLIDE NAV ARROWS & DOTS
-------------------------------------------------- */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 18, 38, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.slide-arrow:hover {
    color: var(--text-primary);
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.slide-arrow.prev { left: 2.5%; }
.slide-arrow.next { right: 2.5%; }

.slide-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.slide-dots .s-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dots .s-dot.active {
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    width: 20px;
    border-radius: 4px;
}

/* --------------------------------------------------
   SWIPE / NAVIGATION HINTS
-------------------------------------------------- */
.swipe-hint {
    position: absolute;
    bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.swipe-hint i {
    font-size: 0.85rem;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes bounceLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.animate-bounce-right {
    animation: bounceRight 1.5s infinite;
}

.animate-bounce-left {
    animation: bounceLeft 1.5s infinite;
}

/* --------------------------------------------------
   TOAST / DYNAMIC DEMO ALERTS
-------------------------------------------------- */
.toast {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: rgba(16, 185, 129, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 1.05rem;
}

/* Wide Card & Side by Side Flex Layout */
.glass-pricing-card.wide-card {
    max-width: 820px;
    padding: 2.2rem 2.5rem;
}

.ent-flex-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ent-left-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1.3;
    text-align: left;
}

.ent-list-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ent-list-item:hover {
    background: rgba(0, 242, 254, 0.04);
    border-color: rgba(0, 242, 254, 0.18);
    transform: translateX(6px);
}

.ent-item-icon {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 254, 0.2);
    flex-shrink: 0;
}

.ent-item-text h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.ent-item-text p {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.ent-right-graphic {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 220px;
}

/* AI Brain Sphere Graphic */
.ai-brain-sphere {
    position: relative;
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: rotateRing 8s linear infinite;
}

.ring-1 {
    width: 170px;
    height: 170px;
    border-top-color: var(--accent-cyan);
    border-bottom-color: var(--accent-cyan);
    animation-duration: 10s;
}

.ring-2 {
    width: 130px;
    height: 130px;
    border-left-color: var(--accent-purple);
    border-right-color: var(--accent-purple);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ring-3 {
    width: 90px;
    height: 90px;
    border-top-color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    animation-duration: 6s;
}

.brain-core {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    box-shadow: 0 0 25px var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030712;
    font-size: 1.4rem;
    z-index: 2;
    animation: pulseCore 2.5s ease-in-out infinite alternate;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseCore {
    0% { transform: scale(1); box-shadow: 0 0 20px var(--accent-cyan); }
    100% { transform: scale(1.12); box-shadow: 0 0 35px var(--accent-cyan), 0 0 15px var(--accent-purple); }
}

/* ICP Footer styles */
.footer {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

/* --------------------------------------------------
   RESPONSIVE MEDIA QUERIES (MOBILE / TABLET)
-------------------------------------------------- */
@media (max-width: 1024px) {
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .glass-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    /* General Section Padding Adjustments to Vertically Center Nicely */
    .section {
        padding-top: 3.2rem !important;   /* Reduce top gap to match shorter mobile header */
        padding-bottom: 2.2rem !important; /* Increase bottom offset to keep card perfectly balanced */
    }

    /* General Typography Scales */
    .title-primary {
        font-size: 1.85rem;
        margin-bottom: 0.6rem !important;
    }
    
    .subtitle {
        font-size: 0.88rem;
        margin-bottom: 0.95rem !important;
        padding: 0 0.5rem;
    }
    
    /* Header layout for small screens */
    .header {
        padding: 1rem 4%;
    }
    
    .nav-menu {
        display: none; /* Hide top links, depend on sidebar & swipe on mobile */
    }
    
    .header-action .consult-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.78rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    /* Sidebar adjustments for mobile */
    .sidebar-dots {
        right: 1.2rem;
        gap: 1.2rem;
    }
    
    .sidebar-dots .dot .tooltip {
        display: none; /* Hide tooltips on touch devices */
    }
    
    .slide {
        padding: 0 5%;
    }
    
    /* Slide Navigation Arrows - Styled highly prominent on mobile */
    .slide-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
        background: rgba(0, 242, 254, 0.3) !important;
        border: 1.5px solid var(--accent-cyan) !important;
        color: var(--accent-cyan) !important;
        box-shadow: 0 0 12px rgba(0, 242, 254, 0.45);
        opacity: 1 !important; /* Force visibility */
        pointer-events: auto !important;
    }
    
    .slide-arrow.prev { left: 2%; }
    .slide-arrow.next { right: 2%; }
    
    /* Interactive Card Scaling */
    .employee-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 290px;
    }
    
    .employee-card {
        padding: 0.85rem 1rem;
        flex-direction: row;
        gap: 0.85rem;
        align-items: center;
        text-align: left;
    }
    
    .employee-card h4 {
        font-size: 0.92rem;
    }
    
    .employee-card p {
        font-size: 0.75rem;
    }
    
    .icon-ai {
        font-size: 1.35rem;
    }
    
    .chat-mockup {
        max-width: 320px;
    }
    
    .chat-body {
        padding: 0.85rem;
        gap: 0.75rem;
    }
    
    .chat-msg {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .monitor-dashboard {
        max-width: 320px;
        padding: 0.85rem;
    }
    
    .table-row {
        grid-template-columns: 1.8fr 1fr 1fr;
        font-size: 0.72rem;
        padding: 0.5rem;
    }
    
    .action-glow-btn {
        padding: 0.65rem;
        font-size: 0.75rem;
    }
    
    /* Pricing Card Mobile Adjustments */
    .glass-pricing-card {
        padding: 1.5rem 1.25rem;
        max-width: 320px;
    }
    
    .card-features {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .card-features.columns-2 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.78rem;
    }
    
    .feature-item.gift-item {
        grid-column: span 1;
        padding: 0.6rem 0.8rem;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .price-value span {
        font-size: 1.2rem;
    }
    
    .buy-now-btn, .consult-glow-btn {
        padding: 0.75rem;
        font-size: 0.82rem;
    }
    
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .ent-cell {
        padding: 0.85rem;
    }
    
    .ent-cell-icon {
        font-size: 1.15rem;
        margin-bottom: 0.35rem;
    }
    
    .ent-cell h5 {
        font-size: 0.85rem;
    }
    
    .ent-cell p {
        font-size: 0.68rem;
    }
    
    /* Contact Section Mobile Stack */
    .contact-container {
        padding: 0 1.2rem;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: calc(100vh - 6.5rem) !important;
        overflow-y: auto; /* Allow scrolling within the contact cards on short mobile screens */
        padding-right: 0.5rem;
    }
    
    .glass-card {
        padding: 1.5rem 1.25rem;
    }
    
    .detail-item {
        gap: 0.85rem;
    }
    
    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .detail-text h3 {
        font-size: 0.9rem;
    }
    
    .detail-text p {
        font-size: 0.78rem;
    }
    
    .qr-card h2 {
        font-size: 1.5rem;
    }
    
    .qr-desc {
        font-size: 0.78rem;
        margin-bottom: 0.85rem;
    }
    
    .qr-wrapper {
        width: 130px;
        height: 130px;
        padding: 0.35rem;
        margin-bottom: 0.85rem;
    }
    
    .qr-status {
        font-size: 0.68rem;
    }
    
    /* High Visibility Mobile Swipe Hint Pill */
    .swipe-hint {
        bottom: 2.3rem;
        color: var(--accent-cyan) !important;
        background: rgba(0, 242, 254, 0.12) !important;
        border: 1px solid rgba(0, 242, 254, 0.45) !important;
        padding: 0.35rem 0.95rem !important;
        border-radius: 50px !important;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.15) !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px;
    }

    .swipe-hint i {
        color: var(--accent-cyan) !important;
    }
    
    /* High Visibility Dot Indicators */
    .slide-dots {
        bottom: 1.4rem;
    }

    .slide-dots .s-dot {
        width: 10px !important;
        height: 10px !important;
        background-color: rgba(255, 255, 255, 0.45) !important;
    }

    .slide-dots .s-dot.active {
        width: 24px !important;
        background-color: var(--accent-cyan) !important;
        box-shadow: 0 0 10px var(--accent-cyan) !important;
    }

    /* Slide 2-4 Enterprise Mobile Layout Refinements */
    .glass-pricing-card.wide-card {
        padding: 1.25rem 1rem !important;
        max-width: 320px !important;
    }
    
    .ent-flex-layout {
        flex-direction: column !important;
        gap: 0.85rem !important;
        margin-bottom: 1.15rem !important;
    }
    
    .ent-left-features {
        flex: 1 !important;
        gap: 0.6rem !important;
    }
    
    .ent-list-item {
        padding: 0.6rem 0.85rem !important;
        gap: 0.8rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }
    
    .ent-list-item:hover {
        transform: none !important; /* Disable slide animation on hover on mobile */
    }

    .ent-item-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.15rem !important;
    }
    
    .ent-item-text h5 {
        font-size: 0.85rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .ent-item-text p {
        font-size: 0.68rem !important;
    }
    
    .ent-right-graphic {
        display: none !important; /* Hide graphic on mobile to prevent clutter and save major vertical space */
    }
    
    /* Adjust ICP Footer for Mobile */
    .footer {
        bottom: 0.75rem !important;
    }
    .footer a {
        font-size: 0.68rem !important;
    }
}

/* Height specific fixes for very short devices */
@media (max-height: 680px) {
    .section {
        padding-top: 4rem;
    }
    
    .title-primary {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }
    
    .interactive-demo, .price-card-container {
        margin-bottom: 0.5rem;
    }
    
    .glass-pricing-card {
        padding: 1rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .price-block {
        margin-bottom: 0.8rem;
    }
    
    .enterprise-grid {
        margin-bottom: 0.85rem;
        gap: 0.5rem;
    }
    
    .ent-cell {
        padding: 0.5rem 0.75rem;
    }
    
    .ent-cell-icon {
        margin-bottom: 0.15rem;
    }
    
    .swipe-hint {
        display: none; /* Hide hints to save space */
    }
    
    .slide-dots {
        bottom: 0.75rem;
    }
}
