* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   POS HERO - CLASE ESPECÍFICA PARA POS.PHP
   ========================================= */
.hero-pos {
    width: 100%;
    min-height: 100vh;
    background: #090b12;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-pos-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hero-pos-left {
    flex: 1;
}

.hero-pos-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin: 0;
}

.hero-pos-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #2b2d35;
    color: #8ea2ff;
    font-size: 14px;
    margin-bottom: 30px;
}

.hero-pos h1 {
    font-size: 68px;
    color: white;
    line-height: 1.05;
    font-weight: 800;
}

.hero-pos h1 span {
    color: #ff7b22;
}

.hero-pos p {
    margin-top: 30px;
    color: #8d919c;
    line-height: 1.8;
    max-width: 620px;
}

.hero-pos-divider {
    width: 100%;
    height: 1px;
    background: #22252e;
    margin: 40px 0;
}

.hero-pos-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-pos-features div {
    color: #b9bec9;
    font-size: 15px;
}

/* ===== TARJETA FLOTANTE ===== */
.dashboard-card {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    padding: 20px 24px;
    border-radius: 18px;
    background: #11131b;
    border: 1px solid #242733;
    box-shadow: 0 0 40px rgba(95, 73, 255, 0.25);
    z-index: 5;
}

.dashboard-card .card-label {
    display: block;
    color: #8d919c;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.dashboard-card .card-amount {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.dashboard-card .card-trend {
    color: #4caf50;
    font-size: 13px;
    font-weight: 600;
}

.dashboard-card .trend-up {
    color: #4caf50;
    margin-right: 4px;
}

/* ===== TELÉFONO ===== */
.phone {
    width: 340px;
    height: 660px;
    background: #ffffff !important;
    border-radius: 45px;
    border: 3px solid #cbd5e1;
    padding: 15px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 80px rgba(66, 71, 255, 0.25);
}

.phone-top {
    width: 150px;
    height: 28px;
    background: #e5e7eb;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 12px;
}

.screen {
    width: 100%;
    height: 590px;
    background: #ffffff !important;
    border-radius: 28px;
    overflow: hidden;
    padding: 18px 16px 16px !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ===== HEADER DASHBOARD ===== */
.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.db-title {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.db-live {
    color: #4caf50;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.db-time {
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
}

/* ===== STATS ===== */
.db-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.db-stat {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
}

.db-stat .stat-label {
    display: block;
    color: #6b7280;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.db-stat .stat-value {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

/* ===== GRÁFICO ===== */
.db-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
    padding: 6px 0;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #5b5fff, #7c83ff);
    border-radius: 4px 4px 0 0;
    min-height: 12px;
    transition: 0.3s;
}

.chart-bar:hover {
    opacity: 0.7;
    transform: scaleY(1.05);
    transform-origin: bottom;
}

/* ===== PEDIDOS ===== */
.db-orders {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    flex: 1;
}

.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.orders-header span:first-child {
    color: #111827;
    font-size: 13px;
    font-weight: 700;
}

.orders-view {
    color: #5b5fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.order-item {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.order-item:last-child {
    border-bottom: none;
}

.order-user {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #111827;
    font-size: 13px;
    font-weight: 600;
}

.user-product {
    color: #6b7280;
    font-size: 10px;
}

.order-price {
    color: #111827;
    font-size: 13px;
    font-weight: 700;
}

.order-status {
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-align: center;
    width: fit-content;
}

.status-done {
    background: #dcfce7;
    color: #16a34a;
}

.status-sent {
    background: #dbeafe;
    color: #2563eb;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

/* =========================================
   RESPONSIVE - POS HERO
   ========================================= */

/* Tablets y pantallas medianas */
@media (max-width: 1100px) {
    .hero-pos-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-pos h1 {
        font-size: 48px;
    }

    .hero-pos p {
        margin: 20px auto 0;
        max-width: 100%;
        font-size: 16px;
    }

    .hero-pos-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-pos-features div {
        font-size: 14px;
    }

    .hero-pos-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-pos-divider {
        margin: 30px auto;
        max-width: 500px;
    }

    .hero-pos-right {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    /* Tarjeta flotante - se coloca ENCIMA del teléfono */
    .dashboard-card {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        padding: 16px 20px;
        z-index: 1;
    }

    .dashboard-card .card-amount {
        font-size: 20px;
    }

    .phone {
        margin-top: 0;
        width: 320px;
        height: 600px;
    }

    .screen {
        height: 530px;
    }
}

/* Móviles grandes */
@media (max-width: 768px) {
    .hero-pos {
        padding: 90px 0 50px;
        min-height: 100vh;
    }

    .hero-pos-container {
        gap: 30px;
        padding: 0 16px;
    }

    .hero-pos h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-pos p {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 15px;
    }

    .hero-pos-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-pos-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }

    .hero-pos-features div {
        font-size: 13px;
    }

    .hero-pos-divider {
        margin: 25px auto;
    }

    .dashboard-card {
        max-width: 280px;
        padding: 14px 18px;
        margin: 0 auto 15px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .dashboard-card .card-label {
        font-size: 10px;
    }

    .dashboard-card .card-amount {
        font-size: 18px;
    }

    .dashboard-card .card-trend {
        font-size: 11px;
    }

    .phone {
        width: 290px;
        height: 560px;
        margin: 0 auto;
    }

    .screen {
        height: 490px;
        padding: 14px 12px 12px;
        gap: 10px;
    }

    .db-title {
        font-size: 14px;
    }

    .db-time {
        font-size: 11px;
    }

    .db-stats {
        gap: 6px;
    }

    .db-stat {
        padding: 10px 8px;
    }
    

    .db-stat .stat-value {
        font-size: 14px;
    }

    .db-stat .stat-label {
        font-size: 8px;
    }

    .db-chart {
        height: 70px;
        padding: 4px 0;
    }

    .db-orders {
        padding: 12px 12px;
    }

    .orders-header span:first-child {
        font-size: 12px;
    }

    .orders-view {
        font-size: 10px;
    }

    .order-item {
        grid-template-columns: 1.2fr 0.7fr 0.8fr;
        padding: 6px 0;
        gap: 4px;
    }

    .user-name {
        font-size: 12px;
    }

    .user-product {
        font-size: 9px;
    }

    .order-price {
        font-size: 12px;
    }

    .order-status {
        font-size: 8px;
        padding: 3px 8px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero-pos {
        padding: 80px 0 40px;
    }

    .hero-pos-container {
        gap: 20px;
        padding: 0 12px;
    }

    .hero-pos h1 {
        font-size: 24px;
        line-height: 1.25;
    }

    .hero-pos p {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 12px;
    }

    .hero-pos-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-pos-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-pos-features div {
        font-size: 12px;
    }

    .hero-pos-divider {
        margin: 15px auto;
    }

    .dashboard-card {
        max-width: 100%;
        padding: 12px 16px;
        margin: 0 0 12px 0;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        border-radius: 14px;
    }

    .dashboard-card .card-label {
        font-size: 9px;
    }

    .dashboard-card .card-amount {
        font-size: 16px;
    }

    .dashboard-card .card-trend {
        font-size: 10px;
    }

    .phone {
        width: 100%;
        max-width: 280px;
        height: 520px;
        border-radius: 35px;
        padding: 12px;
        margin: 0 auto;
    }

    .phone-top {
        width: 120px;
        height: 22px;
        margin-bottom: 8px;
    }

    .screen {
        height: 460px;
        border-radius: 22px;
        padding: 12px 10px 10px;
        gap: 8px;
    }

    .db-header {
        padding-bottom: 8px;
    }

    .db-title {
        font-size: 13px;
    }

    .db-live {
        font-size: 10px;
    }

    .live-dot {
        width: 6px;
        height: 6px;
    }

    .db-time {
        font-size: 10px;
    }

    .db-stats {
        gap: 4px;
    }

    .db-stat {
        padding: 8px 4px;
        border-radius: 10px;
    }

    .db-stat .stat-value {
        font-size: 13px;
    }

    .db-stat .stat-label {
        font-size: 7px;
    }

    .db-chart {
        height: 70px;
        padding: 3px 0;
        gap: 3px;
    }

    .chart-bar {
        border-radius: 3px 3px 0 0;
        min-height: 8px;
    }

    .db-orders {
        padding: 10px 10px;
        border-radius: 12px;
    }

    .orders-header {
        margin-bottom: 8px;
    }

    .orders-header span:first-child {
        font-size: 11px;
    }

    .orders-view {
        font-size: 9px;
    }

    .orders-list {
        gap: 4px;
    }

    .order-item {
        grid-template-columns: 1fr 0.5fr 0.6fr;
        padding: 5px 0;
        gap: 3px;
    }

    .user-name {
        font-size: 11px;
    }

    .user-product {
        font-size: 8px;
    }

    .order-price {
        font-size: 11px;
    }

    .order-status {
        font-size: 7px;
        padding: 2px 6px;
        border-radius: 15px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 380px) {
    .hero-pos {
        padding: 70px 0 30px;
    }

    .hero-pos h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-pos p {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero-pos-features div {
        font-size: 11px;
    }

    .phone {
        max-width: 250px;
        height: 480px;
        border-radius: 30px;
        padding: 10px;
    }

    .screen {
        height: 430px;
        border-radius: 20px;
        padding: 10px 8px 8px;
        gap: 6px;
    }

    .db-title {
        font-size: 12px;
    }

    .db-stat .stat-value {
        font-size: 12px;
    }

    .db-chart {
        height: 70px;
        padding: 4px 0;
    }

    .order-item {
        grid-template-columns: 1fr 0.4fr 0.5fr;
    }

    .user-name {
        font-size: 10px;
    }

    .order-price {
        font-size: 10px;
    }
}

/* =========================================
   SECCIÓN HERRAMIENTAS
   ========================================= */
.tools {
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
}

.tools-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.tools-header {
    text-align: center;
    margin-bottom: 70px;
}

.tools-header h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #121212;
}

.tools-header h2 span {
    display: block;
}

.tools-header p {
    margin: 22px auto 0;
    max-width: 650px;
    color: #5d6572;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.tool-card {
    background: #090d16;
    border-radius: 18px;
    padding: 28px;
    transition: 0.35s ease;
    border: 1px solid transparent;
    cursor: pointer;
    min-height: 235px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: #2f3550;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.tool-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 123, 34, 0.6), rgba(84, 89, 255, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.35s;
}

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

.tool-card:hover h3 {
    color: #ff8c3a;
}

.tool-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #1b2345, #121831);
    transition: 0.35s;
    box-shadow: inset 0 0 15px rgba(126, 102, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.25);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #7d8dff;
}

.tool-card h3 {
    color: #ff7b22;
    font-size: 1.35rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.tool-card p {
    color: #9ca5b4;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Herramientas Responsive */
@media (max-width: 1200px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tools {
        padding: 80px 0;
    }
    .tools-header {
        margin-bottom: 50px;
    }
    .tools-header h2 {
        font-size: 2.2rem;
    }
    .tools-header h2 span {
        display: inline;
    }
    .tools-header p {
        font-size: 1rem;
    }
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .tool-card {
        min-height: auto;
        padding: 24px;
    }
    .tool-card h3 {
        font-size: 18px;
    }
    .tool-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tools {
        padding: 50px 0;
    }
    .tools-header h2 {
        font-size: 1.8rem;
    }
    .tools-header p {
        font-size: 0.95rem;
    }
    .tool-card {
        padding: 18px;
        border-radius: 14px;
    }
    .tool-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .tool-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* =========================================
   SECCIÓN COMPARACIÓN
   ========================================= */
.comparison {
    width: 100%;
    padding: 120px 0;
    background: #090D16;
    overflow: hidden;
}

.comparison-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.comparison-left {
    flex: 1;
}

.comparison-card {
    background: linear-gradient(145deg, #12141d, #0d1018);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.comparison-icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #5d4dff, #4438f5);
}

.comparison-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.comparison-header h3 {
    color: #ffffff;
    font-size: 1.55rem;
    margin-bottom: 6px;
}

.comparison-header span {
    color: #7c85ff;
    font-size: 0.92rem;
}

.comparison-description {
    margin-bottom: 35px;
}

.comparison-description p {
    color: #9CA5B4;
    line-height: 1.9;
    font-size: 0.98rem;
}

.comparison-description strong {
    color: #ffffff;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    background: #0A0C12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: 0.35s;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: #5d4dff;
}

.feature-number {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4638F5;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
}

.feature-item h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-item p {
    color: #8b94a5;
    font-size: 0.9rem;
    line-height: 1.7;
}

.comparison-right {
    flex: 1;
}

.comparison-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #8b95ff;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.comparison-right h2 {
    color: white;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 40px;
    font-weight: 800;
}

.comparison-boxes {
    display: flex;
    gap: 20px;
}

.compare-box {
    flex: 1;
    padding: 28px;
    border-radius: 18px;
    transition: 0.35s;
}

.compare-box:hover {
    transform: translateY(-8px);
}

.compare-box h3 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
}

.compare-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-box li {
    margin-bottom: 14px;
    color: #A5AFBE;
    font-size: 0.95rem;
}

.before {
    background: rgba(160, 38, 38, 0.12);
    border: 1px solid rgba(255, 70, 70, 0.18);
}

.before h3 {
    color: #ff6666;
}

.before li::before {
    content: "✕";
    color: #ff5252;
    margin-right: 10px;
}

.after {
    background: rgba(12, 110, 78, 0.14);
    border: 1px solid rgba(36, 205, 138, 0.15);
}

.after h3 {
    color: #35E6A1;
}

.after li::before {
    content: "✓";
    color: #35E6A1;
    margin-right: 10px;
}

/* Comparación Responsive */
@media (max-width: 1100px) {
    .comparison-container {
        flex-direction: column;
    }
    .comparison-right {
        width: 100%;
    }
    .comparison-left {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 80px 0;
    }
    .comparison-right h2 {
        font-size: 2.2rem;
    }
    .comparison-boxes {
        flex-direction: column;
    }
    .comparison-card {
        padding: 25px;
    }
    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .comparison-header {
        flex-direction: column;
        text-align: center;
    }
    .comparison-header h3 {
        font-size: 1.3rem;
    }
    .comparison-right h2 {
        font-size: 1.8rem;
    }
    .comparison-description p {
        font-size: 0.92rem;
    }
    .feature-item {
        flex-direction: column;
    }
    .feature-number {
        margin-bottom: 5px;
    }
}

/* =========================================
   POS MULTI-SESSION
   ========================================= */
.multi-session {
    width: 100%;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.multi-session::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -150px;
    background: radial-gradient(rgba(91, 95, 255, 0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.multi-session::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -120px;
    bottom: -120px;
    background: radial-gradient(rgba(96, 165, 250, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.multi-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

.multi-left {
    flex: 1;
    animation: fadeLeft 0.8s ease;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.multi-right {
    flex: 1;
    position: relative;
}

.multi-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #EEF2FF;
    border: 1px solid #D6DFFF;
    color: #4F46E5;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 35px;
}

.multi-badge svg {
    width: 10px;
    height: 10px;
    fill: #4F46E5;
}

.multi-left h2 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
}

.multi-left h2 span {
    color: #5B5FFF;
}

.multi-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #6B7280;
    margin-bottom: 50px;
}

.multi-description strong {
    color: #111827;
}

.multi-benefits {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: 0.35s;
    position: relative;
    padding: 10px;
    border-radius: 18px;
}

.benefit:hover {
    transform: translateX(10px);
}

.benefit::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(91, 95, 255, 0.08), transparent);
    opacity: 0;
    transition: 0.35s;
}

.benefit:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2F4FF;
    transition: 0.35s;
}

.benefit:hover .benefit-icon {
    background: #5B5FFF;
    transform: scale(1.08);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: #5B5FFF;
    transition: 0.35s;
}

.benefit:hover .benefit-icon svg {
    fill: #ffffff;
}

.benefit h3 {
    font-size: 1.35rem;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 700;
}

.benefit p {
    color: #6B7280;
    line-height: 1.8;
    font-size: 1rem;
}

/* Dashboard */
.dashboard {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    border: 1px solid #E5E7EB;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12), 0 8px 25px rgba(15, 23, 42, 0.08);
    z-index: 10;
    animation: floatDashboard 5s ease-in-out infinite;
}

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

.dashboard:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.18), 0 15px 35px rgba(91, 95, 255, 0.15);
}

.dashboard-sidebar {
    width: 85px;
    background: #0F172A;
    padding: 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5B5FFF, #7C83FF);
    margin-bottom: 45px;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.sidebar-menu span {
    height: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.dashboard-content {
    flex: 1;
    padding: 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h3 {
    font-size: 1.45rem;
    color: #111827;
    font-weight: 700;
}

.dashboard-header span {
    padding: 8px 14px;
    border-radius: 30px;
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.85rem;
    font-weight: 600;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 18px;
    transition: 0.35s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(91, 95, 255, 0.15);
}

.stat-card small {
    display: block;
    color: #6B7280;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.stat-card strong {
    font-size: 1.45rem;
    color: #111827;
}

.orders-table {
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.table-title {
    padding: 18px 22px;
    font-weight: 700;
    color: #111827;
    background: #F8FAFC;
    border-bottom: 1px solid #E5E7EB;
}

.table-row {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 1fr 0.8fr;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #F1F5F9;
    transition: 0.3s;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: #F8FAFC;
}

.table-row span {
    font-size: 0.9rem;
    color: #374151;
}

.status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
}

.status.open {
    background: #DCFCE7;
    color: #16A34A;
}

/* Sync */
.sync-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 40px;
    background: #EEF2FF;
    color: #4F46E5;
    font-weight: 600;
    margin-bottom: 25px;
}

.sync-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.sync-node {
    position: absolute;
    left: 50%;
    bottom: 235px;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B5FFF, #6F7CFF);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    z-index: 20;
    box-shadow: 0 0 0 12px rgba(91, 95, 255, 0.10), 0 0 45px rgba(91, 95, 255, 0.45);
    animation: syncPulse 2.5s infinite;
}

@keyframes syncPulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.08); }
    100% { transform: translateX(-50%) scale(1); }
}

.sync-line {
    position: absolute;
    left: 50%;
    bottom: 270px;
    transform: translateX(-50%);
    width: 3px;
    height: 95px;
    background: linear-gradient(to bottom, #5B5FFF, transparent);
}

/* Devices */
.devices {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    animation: fadeUp 0.9s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.device {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.35s;
    position: relative;
}

.device:hover {
    transform: translateY(-12px);
}

.device::before {
    content: "";
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 55px;
    background: linear-gradient(to bottom, #5B5FFF, transparent);
}

.device-label {
    margin-top: 18px;
    padding: 10px 18px;
    background: #EEF2FF;
    border-radius: 30px;
    color: #4F46E5;
    font-size: 0.85rem;
    font-weight: 600;
}

.multi-session .phone {
    width: 180px;
    height: 365px;
    background: #0F172A;
    border-radius: 36px;
    padding: 10px;
    position: relative;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
    transition: 0.4s;
}

.multi-session .device:hover .phone {
    transform: rotate(-2deg);
}

.multi-session .phone::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 40px;
    background: radial-gradient(rgba(91, 95, 255, 0.18), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: 0.35s;
}

.device:hover .phone::after {
    opacity: 1;
}

.multi-session .phone-notch {
    width: 70px;
    height: 16px;
    border-radius: 20px;
    background: #000000;
    margin: 0 auto 12px;
}

.multi-session .phone-screen {
    background: #ffffff;
    width: 100%;
    height: 315px;
    border-radius: 28px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.phone-screen h4 {
    text-align: center;
    color: #111827;
    margin-bottom: 5px;
}

.phone-screen span {
    text-align: center;
    color: #6B7280;
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.phone-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.phone-products div {
    height: 42px;
    border-radius: 12px;
    background: #EEF2FF;
    position: relative;
    overflow: hidden;
}

.phone-products div::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    100% { left: 120%; }
}

.phone-screen button {
    margin-top: 18px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: #5B5FFF;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.phone-screen button:hover {
    background: #464CFF;
}

.benefit,
.dashboard,
.device {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Multi-Session Responsive */
@media (max-width: 1300px) {
    .multi-container {
        gap: 60px;
    }
    .multi-left h2 {
        font-size: 3.2rem;
    }
    .multi-session .phone {
        width: 165px;
        height: 340px;
    }
    .multi-session .phone-screen {
        height: 290px;
    }
}

@media (max-width: 1100px) {
    .multi-container {
        flex-direction: column;
    }
    .multi-left,
    .multi-right {
        width: 100%;
    }
    .multi-left {
        text-align: center;
    }
    .multi-benefits {
        margin-top: 50px;
    }
    .benefit {
        text-align: left;
    }
    .dashboard {
        margin-top: 40px;
    }
    .devices {
        justify-content: center;
        flex-wrap: wrap;
    }
    .sync-node {
        display: none;
    }
    .sync-line {
        display: none;
    }
    .device::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .dashboard {
        flex-direction: column;
    }
    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
    }
    .sidebar-logo {
        margin: 0;
    }
    .sidebar-menu {
        flex-direction: row;
        width: auto;
    }
    .sidebar-menu span {
        width: 25px;
        height: 8px;
    }
    .dashboard-content {
        padding: 22px;
    }
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .table-row span {
        display: block;
    }
}

@media (max-width: 768px) {
    .multi-session {
        padding: 90px 0;
    }
    .multi-left h2 {
        font-size: 2.3rem;
    }
    .multi-description {
        font-size: 1rem;
    }
    .multi-badge {
        font-size: 0.8rem;
    }
    .benefit {
        gap: 18px;
    }
    .benefit-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    .benefit h3 {
        font-size: 1.1rem;
    }
    .benefit p {
        font-size: 0.95rem;
    }
    .dashboard {
        border-radius: 20px;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .dashboard-header h3 {
        font-size: 1.2rem;
    }
    .multi-session .phone {
        width: 155px;
        height: 315px;
    }
    .multi-session .phone-screen {
        height: 265px;
    }
    .devices {
        gap: 30px;
    }
    .device-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 580px) {
    .multi-container {
        width: 94%;
    }
    .multi-left h2 {
        font-size: 1.9rem;
    }
    .multi-description {
        line-height: 1.8;
    }
    .benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .benefit-icon {
        margin-bottom: 8px;
    }
    .dashboard {
        border-radius: 18px;
    }
    .dashboard-content {
        padding: 18px;
    }
    .dashboard-header {
        text-align: center;
        align-items: center;
    }
    .dashboard-stats {
        gap: 12px;
    }
    .stat-card {
        padding: 15px;
    }
    .table-title {
        text-align: center;
    }
    .devices {
        flex-direction: column;
        align-items: center;
    }
    .multi-session .phone {
        width: 180px;
        height: 360px;
    }
    .multi-session .phone-screen {
        height: 310px;
    }
    .multi-session .device {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .multi-left h2 {
        font-size: 1.7rem;
    }
    .multi-badge {
        width: 100%;
        justify-content: center;
    }
    .dashboard-header span {
        width: 100%;
        text-align: center;
    }
    .multi-session .phone {
        width: 165px;
        height: 340px;
    }
    .multi-session .phone-screen {
        height: 290px;
    }
}