/* ======================================================================
   menetalk Homepage SaaS Redesign & Enhancements
   Theme Accents: Deep Purple (#F4DB00) & Vibrant Blue (#FF9E00)
   ====================================================================== */

:root {
    --hme-gradient-primary: linear-gradient(135deg, #F4DB00 0%, #FF9E00 100%);
    --hme-gradient-glow: radial-gradient(circle, rgba(244, 219, 0, 0.15) 0%, rgba(255, 158, 0, 0.05) 50%, transparent 100%);
    --hme-glass-bg: rgba(255, 255, 255, 0.02);
    --hme-glass-border: rgba(255, 255, 255, 0.05);
    --hme-glass-hover: rgba(255, 255, 255, 0.06);
    --hme-shadow-neon: 0 0 30px rgba(244, 219, 0, 0.25);
    --hme-shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* --- Scroll Progress Bar --- */
.hme-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}
.hme-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--hme-gradient-primary);
    box-shadow: 0 0 10px #F4DB00;
}

/* --- Scroll Reveal Custom Utilities --- */
.hme-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hme-reveal.hme-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Glassmorphic Common Card Design --- */
.hme-glass-card {
    background: var(--hme-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hme-glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--hme-shadow-premium);
    position: relative;
    overflow: hidden;
}
.hme-glass-card:hover {
    background: var(--hme-glass-hover);
    border-color: rgba(244, 219, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(244, 219, 0, 0.15);
}

/* --- Section Title Upgrade --- */
.hme-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 30%, #a3a3a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hme-section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ======================================================================
   SECTION 1: AI COMMUNICATION PLATFORM
   ====================================================================== */
.hme-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.hme-platform-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hme-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s;
}
.hme-platform-card:hover::before {
    background: linear-gradient(135deg, #F4DB00, #FF9E00);
}
.hme-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: #FF9E00;
    position: relative;
}
.hme-platform-card:hover .hme-icon-container {
    color: #ffffff;
    background: var(--hme-gradient-primary);
    box-shadow: 0 0 20px rgba(244, 219, 0, 0.4);
    animation: hmeFloat 2s infinite ease-in-out;
}
@keyframes hmeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hme-platform-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.hme-platform-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ======================================================================
/* ======================================================================
   SECTION 2: HOW menetalk WORKS
   ====================================================================== */
.hme-works-section {
    position: relative;
    overflow: hidden;
}
.hme-works-interactive-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.hme-works-steps-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hme-works-step-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.hme-works-step-selector:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(244, 219, 0, 0.15);
    transform: translateX(5px);
}
.hme-works-step-selector.active {
    background: rgba(244, 219, 0, 0.05);
    border-color: rgba(244, 219, 0, 0.3);
    box-shadow: 0 10px 30px rgba(244, 219, 0, 0.05), inset 0 0 15px rgba(244, 219, 0, 0.05);
    transform: translateX(8px);
}
.hme-works-step-selector .step-num {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-accent);
    color: var(--text-muted);
    transition: all 0.3s;
}
.hme-works-step-selector.active .step-num {
    color: #F4DB00;
    text-shadow: 0 0 10px rgba(244, 219, 0, 0.3);
}
.hme-works-step-selector .step-meta {
    flex-grow: 1;
}
.hme-works-step-selector h4 {
    font-size: 18px;
    margin-bottom: 4px;
    transition: all 0.3s;
}
.hme-works-step-selector.active h4 {
    color: #ffffff;
}
.hme-works-step-selector p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.hme-works-step-selector .step-arrow {
    font-size: 16px;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}
.hme-works-step-selector.active .step-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #F4DB00;
}

/* Visual Side Styles */
.hme-works-visual-side {
    perspective: 1000px;
}
.hme-works-simulator-window {
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(244, 219, 0, 0.03);
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}
.simulator-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sim-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.sim-dot.red { background: #ff5f56; }
.sim-dot.yellow { background: #ffbd2e; }
.sim-dot.green { background: #27c93f; }
.sim-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-left: 12px;
}
.simulator-body {
    flex-grow: 1;
    padding: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sim-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 32px;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sim-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Individual Simulator Layouts */
/* 1. Phone Call */
.phone-call-sim {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.phone-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #F4DB00;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(244, 219, 0, 0.15);
}
.phone-number {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.phone-status {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.phone-actions {
    display: flex;
    gap: 32px;
}
.phone-actions span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}
.phone-actions .btn-decline {
    background: #ff3b30;
}
.phone-actions .btn-accept {
    background: #4cd964;
    box-shadow: 0 0 20px rgba(76, 217, 100, 0.4);
}
.active-pulse {
    animation: actionPulse 1.5s infinite alternate;
}
@keyframes actionPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(76, 217, 100, 0.4); }
    100% { transform: scale(1.1); box-shadow: 0 0 25px rgba(76, 217, 100, 0.7); }
}

/* 2. AI Answers */
.ai-answer-sim {
    text-align: center;
    width: 100%;
}
.ai-status {
    font-size: 14px;
    color: #F4DB00;
    margin-bottom: 8px;
    font-weight: 600;
}
.ai-call-time {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.sound-wave-active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
    margin-bottom: 28px;
}
.wave-bar {
    width: 4px;
    height: 15px;
    background: linear-gradient(to top, #F4DB00, #FF9E00);
    border-radius: 2px;
    animation: soundWave 1.2s ease-in-out infinite alternate;
}
.wave-bar:nth-child(2) { animation-delay: 0.2s; }
.wave-bar:nth-child(3) { animation-delay: 0.4s; height: 35px; }
.wave-bar:nth-child(4) { animation-delay: 0.1s; }
.wave-bar:nth-child(5) { animation-delay: 0.3s; }
@keyframes soundWave {
    0% { height: 10px; }
    100% { height: 55px; }
}
.ai-transcript {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    max-width: 80%;
    margin: 0 auto;
}

/* 3. Conversation */
.conversation-sim {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.conversation-sim .chat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}
.conversation-sim .chat-bubble i {
    font-size: 16px;
    margin-top: 2px;
}
.conversation-sim .chat-bubble.user {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.conversation-sim .chat-bubble.user i { color: #A3A3A3; }
.conversation-sim .chat-bubble.ai {
    background: rgba(244, 219, 0, 0.04);
    border: 1px solid rgba(244, 219, 0, 0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.conversation-sim .chat-bubble.ai i { color: #F4DB00; }

/* 4. Calendar */
.calendar-sim {
    width: 100%;
}
.cal-header {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
    color: #F4DB00;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.cal-day {
    padding: 14px 10px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.cal-day.slot-booked {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-muted);
    text-decoration: line-through;
}
.cal-day.slot-active {
    background: rgba(244, 219, 0, 0.1);
    border-color: #F4DB00;
    color: #fff;
    box-shadow: 0 0 15px rgba(244, 219, 0, 0.2);
    font-weight: 600;
}
.cal-day.slot-active small {
    color: #F4DB00;
}
.cal-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #4cd964;
    background: rgba(76, 217, 100, 0.05);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(76, 217, 100, 0.15);
}

/* 5. Transfer */
.transfer-sim {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}
.node-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.node-icon i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.node-ai i {
    background: rgba(244, 219, 0, 0.05);
    color: #F4DB00;
    border-color: rgba(244, 219, 0, 0.2);
}
.node-human i {
    background: rgba(255, 158, 0, 0.05);
    color: #FF9E00;
    border-color: rgba(255, 158, 0, 0.2);
}
.node-icon span {
    font-size: 13px;
    font-weight: 500;
}
.transfer-arrow-flow {
    flex-grow: 1;
    max-width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transfer-arrow-flow i {
    position: absolute;
    color: #F4DB00;
    font-size: 14px;
    animation: flowPhone 2s infinite linear;
}
@keyframes flowPhone {
    0% { left: 0%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}
.transfer-status {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* 6. CRM */
.crm-sim {
    width: 100%;
}
.crm-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}
.crm-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(244, 219, 0, 0.1);
    color: #F4DB00;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(244, 219, 0, 0.2);
}
.crm-info {
    margin-bottom: 14px;
}
.crm-info strong {
    display: block;
    font-size: 16px;
}
.crm-info span {
    font-size: 12px;
    color: var(--text-muted);
}
.crm-details {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.crm-status-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4cd964;
}

@media(max-width: 992px) {
    .hme-works-interactive-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hme-works-visual-side {
        order: -1; /* visual on top for mobile/tablet */
    }
    .hme-works-simulator-window {
        height: 340px;
    }
    .hme-works-step-selector {
        padding: 16px 20px;
    }
}

/* ======================================================================
   SECTION 8: WHY TRADITIONAL RECEPTIONISTS FALL SHORT (Split comparison)
   ====================================================================== */
.hme-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.hme-comp-card {
    border-radius: 24px;
    padding: 48px 40px;
}
.hme-comp-card.traditional {
    background: rgba(255, 0, 0, 0.01);
    border: 1px solid rgba(255, 0, 0, 0.05);
}
.hme-comp-card.menetalk-ai {
    background: rgba(244, 219, 0, 0.02);
    border: 1px solid rgba(244, 219, 0, 0.15);
    box-shadow: 0 0 40px rgba(244, 219, 0, 0.1);
}
.hme-comp-card.menetalk-ai::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--hme-gradient-primary);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.hme-comp-card h3 {
    font-size: 26px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hme-comp-card.traditional h3 i {
    color: #ff3333;
}
.hme-comp-card.menetalk-ai h3 i {
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}
.hme-comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hme-comp-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}
.hme-comp-card.traditional li i {
    color: rgba(255, 51, 51, 0.4);
}
.hme-comp-card.menetalk-ai li {
    color: #ffffff;
}
.hme-comp-card.menetalk-ai li i {
    color: #00ff66;
}

/* ======================================================================
   SECTION 9: CUSTOMER JOURNEY ANIMATION
   ====================================================================== */
.hme-journey-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    padding: 30px 10px;
    scrollbar-width: none;
}
.hme-journey-container::-webkit-scrollbar {
    display: none;
}
.hme-journey-node {
    background: var(--hme-glass-bg);
    border: 1px solid var(--hme-glass-border);
    border-radius: 16px;
    padding: 24px 30px;
    text-align: center;
    min-width: 150px;
    flex-shrink: 0;
    transition: all 0.5s;
    box-shadow: var(--hme-shadow-premium);
}
.hme-journey-node i {
    font-size: 28px;
    margin-bottom: 12px;
    color: #FF9E00;
    transition: all 0.5s;
}
.hme-journey-node span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.hme-journey-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    animation: hmePulseArrow 1.5s infinite alternate;
}
@keyframes hmePulseArrow {
    0% { transform: translateX(0); opacity: 0.3; }
    100% { transform: translateX(8px); opacity: 1; color: #F4DB00; }
}
.hme-journey-node:hover {
    border-color: #F4DB00;
    background: rgba(244, 219, 0, 0.05);
    transform: translateY(-5px);
}
.hme-journey-node:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* ======================================================================
   SECTION 10: INTERACTIVE PRODUCT SHOWCASE
   ====================================================================== */
.hme-showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hme-showcase-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s;
}
.hme-showcase-tab-btn:hover, .hme-showcase-tab-btn.active {
    color: #ffffff;
    background: var(--hme-gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(244, 219, 0, 0.35);
}
.hme-showcase-content-pane {
    display: none;
    animation: hmeFadeIn 0.6s ease forwards;
}
.hme-showcase-content-pane.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
@keyframes hmeFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
.hme-showcase-graphic {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--hme-shadow-premium);
    position: relative;
}
.hme-showcase-graphic img {
    width: 100%;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.hme-showcase-mockup {
    min-height: 280px;
    background: linear-gradient(145deg, #0d0d1e, #030307);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(244, 219, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hme-showcase-mockup::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 158, 0, 0.15);
    filter: blur(70px);
    top: -50px;
    left: -50px;
}
.hme-showcase-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}
.hme-showcase-text p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.hme-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hme-showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}
.hme-showcase-list li i {
    color: #FF9E00;
}

@media(max-width: 991px) {
    .hme-showcase-content-pane.active {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ======================================================================
   SECTION 11: FEATURE HIGHLIGHTS BENTO GRID
   ====================================================================== */
.hme-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}
.hme-bento-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hme-bento-card.col-6 {
    grid-column: span 6;
}
.hme-bento-card.col-8 {
    grid-column: span 8;
}
.hme-bento-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.hme-bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.hme-bento-glow-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.1) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}
.hme-bento-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(244, 219, 0, 0.15);
    border: 1px solid rgba(244, 219, 0, 0.3);
    color: #ffffff;
    margin-top: auto;
}

@media(max-width: 991px) {
    .hme-bento-card, .hme-bento-card.col-6, .hme-bento-card.col-8 {
        grid-column: span 6;
    }
}
@media(max-width: 768px) {
    .hme-bento-card, .hme-bento-card.col-6, .hme-bento-card.col-8 {
        grid-column: span 12;
    }
}

/* ======================================================================
   SECTION 3: INTERACTIVE AI VOICE DEMO
   ====================================================================== */
.hme-voice-demo-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}
.hme-voice-left {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 400px;
    justify-content: center;
}
.hme-voice-sound-bars {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 120px;
    margin-bottom: 40px;
}
.hme-sound-bar {
    width: 6px;
    height: 15px;
    background: var(--hme-gradient-primary);
    border-radius: 10px;
    transition: height 0.15s ease;
}
.hme-voice-left.playing .hme-sound-bar {
    animation: hmeJumpBar 1.2s infinite ease-in-out alternate;
}
.hme-voice-left.playing .hme-sound-bar:nth-child(2n) { animation-delay: 0.15s; }
.hme-voice-left.playing .hme-sound-bar:nth-child(3n) { animation-delay: 0.3s; }
.hme-voice-left.playing .hme-sound-bar:nth-child(4n) { animation-delay: 0.45s; }
.hme-voice-left.playing .hme-sound-bar:nth-child(5n) { animation-delay: 0.6s; }

@keyframes hmeJumpBar {
    0% { height: 15px; }
    100% { height: 110px; }
}

.hme-voice-chat {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}
.hme-chat-bubble {
    max-width: 80%;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hme-chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}
.hme-chat-bubble.customer {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.hme-chat-bubble.ai {
    background: rgba(244, 219, 0, 0.15);
    border: 1px solid rgba(244, 219, 0, 0.3);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #ffffff;
}

@media(max-width: 991px) {
    .hme-voice-demo-container {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================
   SECTION 6: AI VOICE AGENT FEATURES (Comparison/Feature Grid)
   ====================================================================== */
.hme-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.hme-feat-item {
    background: var(--hme-glass-bg);
    border: 1px solid var(--hme-glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.4s;
}
.hme-feat-item i {
    font-size: 20px;
    color: #FF9E00;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 158, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
}
.hme-feat-item:hover {
    border-color: rgba(255, 158, 0, 0.3);
    background: rgba(255, 158, 0, 0.02);
    transform: translateY(-4px);
}
.hme-feat-item:hover i {
    background: var(--hme-gradient-primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 158, 0, 0.3);
}
.hme-feat-item span {
    font-size: 15px;
    font-weight: 600;
}

/* ======================================================================
   SECTION 7: CONVERSATION INTELLIGENCE (SaaS Mockup Dashboard)
   ====================================================================== */
.hme-dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    background: #05050a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hme-shadow-premium);
}
.hme-dash-sidebar {
    background: rgba(255, 255, 255, 0.01);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
}
.hme-dash-brand {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hme-dash-brand i { color: #F4DB00; }
.hme-dash-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hme-dash-menu li {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}
.hme-dash-menu li.active, .hme-dash-menu li:hover {
    color: #ffffff;
    background: rgba(244, 219, 0, 0.1);
}
.hme-dash-main {
    padding: 30px;
}
.hme-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.hme-dash-header h4 { font-size: 20px; }
.hme-dash-status {
    font-size: 12px;
    background: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 255, 102, 0.2);
}
.hme-dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.hme-dash-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;
}
.hme-dash-stat-card span {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 6px;
}
.hme-dash-stat-card h5 {
    font-size: 22px;
    font-weight: 700;
}
.hme-dash-chart-area {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media(max-width: 768px) {
    .hme-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .hme-dash-sidebar {
        display: none;
    }
    .hme-dash-cards {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================
   SECTION 5: INDUSTRIES WE SERVE (Slider)
   ====================================================================== */
.hme-slider-wrapper {
    position: relative;
    width: 100%;
}
.hme-slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 0;
}
.hme-slider-container::-webkit-scrollbar {
    display: none;
}
.hme-slider-card {
    min-width: 280px;
    width: 280px;
    flex-shrink: 0;
    padding: 32px 24px;
    text-align: center;
}
.hme-slider-card i {
    font-size: 40px;
    color: #F4DB00;
    margin-bottom: 20px;
    display: block;
}
.hme-slider-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.hme-slider-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.hme-slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.hme-slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.hme-slider-arrow:hover {
    background: var(--hme-gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(244, 219, 0, 0.4);
}

/* ======================================================================
   SECTION 12: POWERFUL INTEGRATIONS
   ====================================================================== */
.hme-integrations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.hme-integration-logo-card {
    background: var(--hme-glass-bg);
    border: 1px solid var(--hme-glass-border);
    border-radius: 16px;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--hme-shadow-premium);
    animation: hmeFloatLogo 4s infinite ease-in-out alternate;
}
.hme-integration-logo-card:nth-child(2n) { animation-delay: 0.5s; animation-duration: 5s; }
.hme-integration-logo-card:nth-child(3n) { animation-delay: 1s; animation-duration: 4.5s; }
.hme-integration-logo-card:nth-child(4n) { animation-delay: 1.5s; animation-duration: 5.5s; }

@keyframes hmeFloatLogo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.hme-integration-logo-card i {
    font-size: 32px;
    color: #FF9E00;
}
.hme-integration-logo-card span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ======================================================================
   SECTION 13: TESTIMONIALS UPGRADE
   ====================================================================== */
.hme-testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 16px;
}
.hme-testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 10px;
    flex-grow: 1;
}
.hme-testimonials-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}
.hme-testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 32px;
}
.hme-testimonials-arrow {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}
.hme-testimonials-arrow:hover {
    background: rgba(244, 219, 0, 0.1);
    border-color: #F4DB00;
    color: #F4DB00;
    box-shadow: 0 0 15px rgba(244, 219, 0, 0.2);
}
.hme-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.hme-testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hme-testimonial-dot.active {
    background: #F4DB00;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(244, 219, 0, 0.4);
}
.hme-test-stars {
    color: #ffb700;
    font-size: 14px;
    margin-bottom: 16px;
}
.hme-testimonial-card p {
    font-size: 15px;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}
.hme-test-user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hme-test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F4DB00;
}
.hme-test-info h5 {
    font-size: 15px;
    font-weight: 600;
}
.hme-test-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

@media (min-width: 992px) {
    .hme-testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
    .hme-testimonials-slider {
        scroll-snap-type: none;
    }
    .hme-testimonials-arrow {
        display: none; /* Hide arrows on desktop since all fit */
    }
    .hme-testimonial-dots {
        display: none; /* Hide dots on desktop */
    }
}

/* ======================================================================
   SECTION 14: SCROLL-LINKED ANIMATED NUMBERS
   ====================================================================== */
.hme-animated-counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}
.hme-counter-card h3 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    background: var(--hme-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.hme-counter-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ======================================================================
   SECTION 15: FAQ ACCORDION
   ====================================================================== */
.hme-faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hme-faq-item {
    background: var(--hme-glass-bg);
    border: 1px solid var(--hme-glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s;
}
.hme-faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.hme-faq-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.hme-faq-icon {
    font-size: 14px;
    color: #FF9E00;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hme-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hme-faq-body-inner {
    padding: 0 24px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.hme-faq-item.active {
    border-color: rgba(244, 219, 0, 0.25);
    background: rgba(244, 219, 0, 0.02);
}
.hme-faq-item.active .hme-faq-icon {
    transform: rotate(180deg);
}

/* ======================================================================
   SECTION 16: HIGH ENERGY CTA CLOSING & FOOTER FIXES
   ====================================================================== */
.hme-cta-banner {
    background: linear-gradient(135deg, rgba(12, 12, 28, 0.95) 0%, rgba(5, 5, 10, 0.98) 100%);
    border: 1px solid rgba(244, 219, 0, 0.25);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(244, 219, 0, 0.15);
}
.hme-cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.2) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    pointer-events: none;
}
.hme-cta-banner::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 158, 0, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}
.hme-cta-banner h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    font-weight: 800;
}
.hme-cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hme-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======================================================================
   STICKY FLOATING ELEMENTS
   ====================================================================== */
.hme-sticky-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.hme-sticky-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.hme-sticky-btn.demo {
    background: var(--hme-gradient-primary);
}
.hme-sticky-btn.whatsapp {
    background: #25d366;
}
.hme-sticky-btn.call {
    background: #FF9E00;
}
.hme-sticky-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 219, 0, 0.3);
}

.hme-sticky-widgets {
    bottom: 100px;
}

/* Card Stagger Reveals & Entry Animations */
.hme-reveal.hme-active .hme-platform-card {
    opacity: 1;
    transform: translateY(0);
}
.hme-reveal .hme-platform-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-platform-card:nth-child(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(2) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(3) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(4) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(5) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(6) { transition-delay: 0.55s; }

/* Bento Grid Card Animation */
.hme-reveal.hme-active .hme-bento-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hme-reveal .hme-bento-card {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-bento-card:nth-child(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(2) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(3) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(4) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(5) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(6) { transition-delay: 0.55s; }

/* Customer Journey Node Animation */
.hme-reveal.hme-active .hme-journey-node {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hme-reveal .hme-journey-node {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hme-reveal.hme-active .hme-journey-arrow {
    opacity: 0.5;
    transform: scale(1);
}
.hme-reveal .hme-journey-arrow {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Staggering the Nodes and Arrows together */
.hme-reveal.hme-active .hme-journey-node:nth-of-type(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(1) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(2) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(2) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(3) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(3) { transition-delay: 0.55s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(4) { transition-delay: 0.65s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(4) { transition-delay: 0.75s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(5) { transition-delay: 0.85s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(5) { transition-delay: 0.95s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(6) { transition-delay: 1.05s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(6) { transition-delay: 1.15s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(7) { transition-delay: 1.25s; }

/* Testimonials Stagger Reveals */
.hme-reveal.hme-active .hme-testimonial-card {
    opacity: 1;
    transform: translateY(0);
}
.hme-reveal .hme-testimonial-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.hme-reveal.hme-active .hme-testimonial-card:nth-child(2) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-testimonial-card:nth-child(3) { transition-delay: 0.4s; }

/* Homepage Global Solid Black Background & Particle Visibility Fixes */
body {
    background: transparent !important;
}

/* Hide neon blobs to keep background pure black */
.neon-blobs {
    display: none !important;
}

/* Adjust particle canvas stack level so it stays directly above the black body but behind content */
#particle-canvas {
    background-color: #000000 !important;
    position: fixed !important;
    top: 0 !important;
}

/* ======================================================================
   SECTION 16: HIGH ENERGY CTA CLOSING & FOOTER FIXES
   ====================================================================== */
.hme-cta-banner {
    background: linear-gradient(135deg, rgba(12, 12, 28, 0.95) 0%, rgba(5, 5, 10, 0.98) 100%);
    border: 1px solid rgba(244, 219, 0, 0.25);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(244, 219, 0, 0.15);
}
.hme-cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.2) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    pointer-events: none;
}
.hme-cta-banner::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 158, 0, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}
.hme-cta-banner h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    font-weight: 800;
}
.hme-cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hme-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ======================================================================
   STICKY FLOATING ELEMENTS
   ====================================================================== */
.hme-sticky-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.hme-sticky-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.hme-sticky-btn.demo {
    background: var(--hme-gradient-primary);
}
.hme-sticky-btn.whatsapp {
    background: #25d366;
}
.hme-sticky-btn.call {
    background: #FF9E00;
}
.hme-sticky-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 30px rgba(244, 219, 0, 0.3);
}

.hme-sticky-widgets {
    bottom: 100px;
}

/* Card Stagger Reveals & Entry Animations */
.hme-reveal.hme-active .hme-platform-card {
    opacity: 1;
    transform: translateY(0);
}
.hme-reveal .hme-platform-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-platform-card:nth-child(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(2) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(3) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(4) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(5) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-platform-card:nth-child(6) { transition-delay: 0.55s; }

/* Bento Grid Card Animation */
.hme-reveal.hme-active .hme-bento-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hme-reveal .hme-bento-card {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-bento-card:nth-child(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(2) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(3) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(4) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(5) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-bento-card:nth-child(6) { transition-delay: 0.55s; }

/* Customer Journey Node Animation */
.hme-reveal.hme-active .hme-journey-node {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.hme-reveal .hme-journey-node {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hme-reveal.hme-active .hme-journey-arrow {
    opacity: 0.5;
    transform: scale(1);
}
.hme-reveal .hme-journey-arrow {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Staggering the Nodes and Arrows together */
.hme-reveal.hme-active .hme-journey-node:nth-of-type(1) { transition-delay: 0.05s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(1) { transition-delay: 0.15s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(2) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(2) { transition-delay: 0.35s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(3) { transition-delay: 0.45s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(3) { transition-delay: 0.55s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(4) { transition-delay: 0.65s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(4) { transition-delay: 0.75s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(5) { transition-delay: 0.85s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(5) { transition-delay: 0.95s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(6) { transition-delay: 1.05s; }
.hme-reveal.hme-active .hme-journey-arrow:nth-of-type(6) { transition-delay: 1.15s; }
.hme-reveal.hme-active .hme-journey-node:nth-of-type(7) { transition-delay: 1.25s; }

/* Testimonials Stagger Reveals */
.hme-reveal.hme-active .hme-testimonial-card {
    opacity: 1;
    transform: translateY(0);
}
.hme-reveal .hme-testimonial-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.hme-reveal.hme-active .hme-testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.hme-reveal.hme-active .hme-testimonial-card:nth-child(2) { transition-delay: 0.25s; }
.hme-reveal.hme-active .hme-testimonial-card:nth-child(3) { transition-delay: 0.4s; }

/* Homepage Global Solid Black Background & Particle Visibility Fixes */
body {
    background: transparent !important;
}

/* Hide neon blobs to keep background pure black */
.neon-blobs {
    display: none !important;
}

/* Adjust particle canvas stack level so it stays directly above the black body but behind content */
#particle-canvas {
    background-color: #000000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -5 !important;
    pointer-events: none !important;
}

/* ======================================================================
   Mobile Responsiveness for SIM Pages
   ====================================================================== */
@media (max-width: 768px) {
    /* Scale down the big SIM card animation container on mobile */
    .sim-graphic-box-transparent {
        transform: scale(0.65);
        transform-origin: center center;
        margin-top: -30px;
        margin-bottom: -30px;
    }
    
    .sim-graphic-box {
        transform: scale(0.7);
        transform-origin: center center;
        margin-top: -20px;
        margin-bottom: -20px;
    }

    /* Ensure the grid 2 layout behaves well on mobile */
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: left !important;
    }
    
    .grid-2 > div {
        text-align: left !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Fix inline text-aligns */
    [style*="text-align: left"] {
        text-align: left !important;
    }

    /* Fix feature list layouts in grid-2 (the boxes with icons) */
    .grid-2 > div > div[style*="display: flex"] {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        width: 100% !important;
    }
    
    .grid-2 > div > div[style*="display: flex"] > div {
        text-align: left !important;
    }

    /* Adjust text alignments for left-aligned text on desktop */
    .hero-left, .hero-content {
        text-align: left !important;
        align-items: flex-start !important;
    }
    
    .hero-left p, .hero-content p {
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left !important;
    }
    
    .hero-actions, .hero-buttons {
        justify-content: flex-start !important;
        flex-wrap: wrap;
        width: 100%;
    }
    
    /* Make section padding more compact on mobile */
    .section-padding {
        padding: 60px 20px !important;
    }
    
    /* Make featured package UI card responsive */
    .hme-glass-card {
        max-width: 100% !important;
        margin: 0 auto;
        padding: 30px 20px !important;
        text-align: left !important;
    }
    
    /* Enhance the overall typography for mobile */
    h1, .hero h1 {
        font-size: 32px !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }
    
    h2, .hme-section-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }
    
    p {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .sim-graphic-box-transparent {
        transform: scale(0.55);
        margin-top: -50px;
        margin-bottom: -50px;
    }
    
    .sim-graphic-box {
        transform: scale(0.6);
        margin-top: -40px;
        margin-bottom: -40px;
    }

    h1, .hero h1 {
        font-size: 28px !important;
    }
    
    h2, .hme-section-title {
        font-size: 24px !important;
    }
}
