/* Mink Fresha-Style Premium Design System */
:root {
    --primary: #1B4FD1;
    --primary-dark: #123899;
    --primary-light: #eff3fe;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-600: #475569;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 10px 20px -5px rgba(0,0,0,0.04);
    --shadow-soft: 0 20px 40px -15px rgba(0,0,0,0.08);
    --shadow-strong: 0 30px 60px -15px rgba(27, 79, 209, 0.25);
    --shadow-heavy: 0 40px 80px -20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }

/* Global Animations */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatMed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes pulseGentle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes barGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.float-slow { animation: floatSlow 6s ease-in-out infinite; }
.float-med { animation: floatMed 4.5s ease-in-out infinite; }
.pulse-gentle { animation: pulseGentle 3s ease-in-out infinite; }
.pulse-btn { animation: pulseGentle 2s infinite alternate; }

.shadow-hover { transition: var(--transition); }
.shadow-hover:hover { box-shadow: var(--shadow-strong); transform: translateY(-4px); }
.card-hover:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-soft); cursor: pointer; transition: all 0.3s ease; }
.stretch-link:hover i { transform: translateX(6px); }
.stretch-link i { transition: transform 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}
.btn-xl { padding: 18px 40px; font-size: 18px; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--primary-light); color: var(--primary); }
.btn-secondary:hover { background: #e2eafb; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100; padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 44px; height: 33px; }
.logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 32px; letter-spacing: -0.04em; color: var(--dark); margin-top: -6px;}
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--dark); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.custom-lang { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 6px; background: var(--gray-100); border: none; padding: 8px 14px; border-radius: 100px; font-weight: 700; font-size: 14px; color: var(--dark); cursor: pointer; outline: none; font-family: var(--font-body); transition: var(--transition); }
.lang-btn:hover { background: var(--gray-200); }
.lang-caret { font-size: 14px; transition: transform 0.2s; }
.custom-lang.open .lang-caret { transform: rotate(180deg); }
.lang-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); min-width: 130px; overflow: hidden; z-index: 200; }
.custom-lang.open .lang-menu { display: block; animation: floatUp 0.15s ease; }
.lang-option { padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--gray-600); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.15s; }
.lang-option:hover { background: var(--primary-light); color: var(--primary); }
.lang-option.active { color: var(--primary); background: var(--primary-light); }
.login-link { font-weight: 600; color: var(--dark); }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--dark); }

/* Hero */
.hero { position: relative; padding: 180px 0 0; overflow: hidden; }
.hero-bg-shape {
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 1200px; height: 1200px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}
.hero-content h1 { font-size: 80px; max-width: 900px; margin: 0 auto 24px; letter-spacing: -0.03em; }
.hero-content h1 span { color: var(--primary); }
.hero-subtitle { font-size: 20px; max-width: 700px; margin: 0 auto 40px; color: var(--gray-600); }
.hero-cta { display: flex; gap: 16px; margin-bottom: 80px; }
.justify-center { justify-content: center; }

/* 🌟 HERO DASHBOARD MOCKUP 🌟 */
.hero-dashboard-wrapper {
    margin: 0 auto;
    max-width: 1050px;
    padding: 0 20px;
}
.hero-dashboard {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--gray-200);
    border-bottom: none;
    overflow: hidden;
    position: relative;
}
/* macOS Window Controls */
.mac-controls {
    height: 40px;
    background: #f8fafc;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
}
.mac-controls span {
    width: 12px; height: 12px; border-radius: 50%;
}
.mac-controls span:nth-child(1) { background: #ff5f56; border: 1px solid #e0443e; }
.mac-controls span:nth-child(2) { background: #ffbd2e; border: 1px solid #dea123; }
.mac-controls span:nth-child(3) { background: #27c93f; border: 1px solid #1aab29; }

.hd-body { display: flex; height: 480px; }
.hd-sidebar {
    width: 200px;
    background: #f8fafc;
    border-right: 1px solid var(--gray-200);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
}
.hd-logo { margin-bottom: 32px; padding-left: 8px; }
.hd-menu { display: flex; flex-direction: column; gap: 4px; }
.hd-item {
    display: flex; gap: 10px; align-items: center; padding: 10px 12px;
    border-radius: var(--radius-sm); font-weight: 500; color: var(--gray-600); font-size: 13px;
    transition: all 0.2s; cursor: pointer;
}
.hd-item:hover { background: var(--gray-100); color: var(--dark); }
.hd-item.active { background: var(--primary-light); color: var(--primary); font-weight: 600;}
.hd-item i { font-size: 18px; }

.hd-main { flex: 1; padding: 24px 32px; background: var(--white); display: flex; flex-direction: column; text-align: left; }
.hd-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.hd-title { font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing:-0.5px; }
.hd-profile { display: flex; align-items: center; gap: 16px; }
.hd-profile i { font-size: 20px; color: var(--gray-600); cursor: pointer; }
.hd-avatar { width: 36px; height: 36px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;}

.hd-stats { display: flex; gap: 16px; margin-bottom: 32px; }
.hd-stat-card {
    flex: 1; padding: 16px; border: 1px solid var(--gray-100); border-radius: var(--radius-md);
    background: var(--white); box-shadow: var(--shadow-sm);
}
.stat-label { display: block; font-size: 11px; color: var(--gray-600); margin-bottom: 6px; font-weight: 600; text-transform:uppercase; letter-spacing:0.5px;}
.stat-value { font-size: 24px; font-weight: 700; color: var(--dark); line-height: 1; }

.hd-content-area { display: flex; gap: 40px; flex: 1; }
/* Chart Layout */
.hd-chart {
    flex: 2; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px; background: #f8fafc; border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
}
.chart-bars {
    display: flex; align-items: flex-end; gap: 16px; flex: 1; margin-bottom: 12px;
}
.chart-bar {
    flex: 1; height: 100%; display: flex; align-items: flex-end;
}
.bar-fill {
    width: 100%; border-radius: 6px; background: var(--gray-300);
    transform-origin: bottom; animation: barGrow 1s ease-out forwards;
}
.bar-fill.active { background: var(--primary); }
.chart-labels {
    display: flex; justify-content: space-between; padding: 0 4px; border-top: 1px solid var(--gray-200); padding-top: 12px;
}
.chart-labels span { flex: 1; text-align: center; font-size: 12px; font-weight: 600; color: var(--gray-600); }

/* Upcoming Layout */
.hd-upcoming { flex: 1.5; display: flex; flex-direction: column; gap: 10px; }
.hd-upcoming h4 { margin-bottom: 10px; font-size: 14px; color: var(--dark); font-weight: 700; }
.upcoming-item {
    display: flex; align-items: center; gap: 12px; padding: 12px;
    border: 1px solid var(--gray-100); border-radius: var(--radius-md); background: white;
    box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.ui-color { width: 4px; height: 36px; border-radius: 4px; flex-shrink: 0; }
.ui-info { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding-bottom: 2px;}
.ui-info h4 { font-size: 13px; margin: 0; color: var(--dark); font-weight: 600; line-height: 1.2; }
.ui-info span { font-size: 11px; color: var(--gray-600); font-weight: 500;}
.ui-status {
    font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}

/* Logos */
.logos-section { padding: 60px 0; background: var(--white); border-top: 1px solid var(--gray-100); }
.logos-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-600); margin-bottom: 32px; }
.logos-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; opacity: 0.45; }
.logos-grid span { font-family: var(--font-heading); font-size: 24px; font-weight: 800; }

/* Staggered Features */
.staggered-features { padding: 120px 0; }
.feature-row { display: flex; align-items: center; gap: 100px; margin-bottom: 160px; }
.feature-row.reverse { flex-direction: row-reverse; }

.feature-tag {
    display: inline-block; padding: 8px 16px;
    background: var(--primary-light); color: var(--primary);
    font-weight: 700; font-size: 13px; letter-spacing: 1px;
    border-radius: 100px; margin-bottom: 24px;
}
.feature-text { flex: 1; }
.feature-text h2 { font-size: 48px; margin-bottom: 24px; line-height: 1.1; }
.feature-text p { font-size: 18px; margin-bottom: 32px; color: var(--gray-600); line-height: 1.7; }

.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; font-size: 18px; font-weight: 500; color: var(--dark); }
.check-list i { color: var(--primary); font-size: 24px; background: var(--primary-light); padding: 4px; border-radius: 50%; }

.btn-text { font-size: 18px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 8px; }

.feature-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }
.ui-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--gray-200);
    padding: 32px;
    width: 100%;
}

/* 🌟 CALENDAR UI 🌟 */
.calendar-ui { background: white; padding: 24px; border-radius: var(--radius-lg); }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cal-header span { font-size: 20px; font-weight: 800; color: var(--dark); }
.cal-nav { display: flex; align-items: center; gap: 16px; color: var(--gray-600); font-size: 16px; background: #f8fafc; padding: 8px 16px; border-radius: var(--radius-sm); border: 1px solid var(--gray-200);}
.cal-grid { display: flex; gap: 16px; position: relative; height: 320px; background: #f8fafc; border-radius: var(--radius-md); padding: 16px; border: 1px solid var(--gray-100);}
.cal-time-col { display: flex; flex-direction: column; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--gray-300); padding-top: 48px; padding-bottom: 12px;}
.cal-room-col { flex: 1; position: relative; background: white; border-radius: var(--radius-sm); border: 1px solid var(--gray-100); }
.col-head { padding: 16px; text-align: center; font-weight: 700; font-size: 14px; color: var(--dark); border-bottom: 1px solid var(--gray-100); }
.cal-event {
    position: absolute; left: 8px; right: 8px; border-radius: var(--radius-sm);
    padding: 12px; font-size: 13px; font-weight: 600; color: white; line-height: 1.4;
    box-shadow: var(--shadow-sm); z-index: 10;
}
.cal-event.blue { background: var(--primary); border-left: 4px solid var(--primary-dark); }
.cal-event.green { background: #10b981; border-left: 4px solid #059669; }
.cal-event.orange { background: #f59e0b; border-left: 4px solid #d97706; }

/* 🌟 MOBILE NOTCH UI 🌟 */
.mobile-frame {
    width: 320px; height: 620px; background: white;
    border-radius: 48px; border: 14px solid var(--dark);
    position: relative; overflow: hidden; box-shadow: var(--shadow-heavy);
}
.notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 140px; height: 32px; background: var(--dark);
    border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; z-index: 20;
}
.mob-header {
    background: var(--primary); height: 160px; color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 24px; padding-top: 20px;
}
.mob-body {
    background: #f8fafc; height: calc(100% - 100px);
    border-top-left-radius: 24px; border-top-right-radius: 24px;
    margin-top: -30px; padding: 32px 24px; position: relative; z-index: 10;
}
.mob-title { font-weight: 800; font-size: 20px; margin-bottom: 24px; color: var(--dark); }
.mob-service {
    display: flex; justify-content: space-between; align-items: center;
    background: white; border: 2px solid transparent; padding: 20px 16px;
    border-radius: var(--radius-md); margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.mob-service .price { font-weight: 800; color: var(--primary); font-size: 16px; }
.mob-btn {
    width: 100%; padding: 18px; background: var(--dark); color: white;
    border: none; border-radius: 100px; font-weight: 700; font-size: 16px;
    margin-top: 24px; cursor: pointer; box-shadow: var(--shadow-soft);
}
.floating-badge {
    position: absolute; left: -60px; top: 200px;
    background: white; padding: 20px 24px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy); display: flex; align-items: center; gap: 16px;
    border: 1px solid var(--gray-200); z-index: 30; width: 260px;
}
.icon-circle { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; }
.bg-green { background: #10b981; }

/* 🌟 LOCKER UI 🌟 */
.locker-ui { padding: 40px; }
.locker-header { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 20px; margin-bottom: 32px; color: var(--dark); border-bottom: 2px solid var(--gray-100); padding-bottom: 24px; }
.locker-stats { display: flex; align-items: center; font-size: 14px; font-weight: 600; color: var(--gray-600); }
.dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dot.green { background: #10b981; }
.dot.grey { background: var(--gray-300); }
.locker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.locker {
    aspect-ratio: 1; padding: 20px; border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: #f8fafc;
}
.l-num { font-size: 32px; font-weight: 900; color: var(--gray-900); }
.l-status { font-size: 12px; font-weight: 700; text-transform: uppercase; margin-top: 8px; color: var(--gray-600); letter-spacing: 0.5px;}
.l-time { font-size: 13px; font-weight: 600; margin-top: 4px; color: var(--gray-600); }
.locker.active { border-color: #10b981; background: #ecfdf5; }
.locker.active .l-num { color: #047857; }
.locker.active .l-status { color: #10b981; }
.locker.active .l-time { color: #047857; }
.locker.warning { border-color: #ef4444; background: #fef2f2; }
.locker.warning .l-num { color: #b91c1c; }
.locker.warning .l-status { color: #ef4444; }

/* 🌟 CRM UI 🌟 */
.crm-ui { padding: 0; overflow: hidden; border-radius: var(--radius-lg); background: #f8fafc; }
.crm-top-pattern { height: 140px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); position: relative; }
.crm-body { padding: 0 40px 40px; position: relative; }
.crm-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: -50px; margin-bottom: 40px; }
.avatar {
    width: 100px; height: 100px; background: var(--white); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800;
    border-radius: 50%; border: 4px solid var(--white); box-shadow: var(--shadow-soft); margin-bottom: 16px;
}
.crm-info h3 { font-size: 28px; margin-bottom: 12px; }
.vip-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
    background: #fffbeb; color: #d97706; font-size: 13px; font-weight: 700;
    border-radius: 100px; border: 1px solid #fde68a;
}
.crm-stats { display: flex; flex-direction: column; gap: 16px; }
.c-stat {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: var(--white); border-radius: var(--radius-md);
    font-size: 16px; font-weight: 500; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.c-stat strong { font-size: 18px; font-weight: 800; color: var(--dark); }

/* 🌟 WALLET / LOYALTY UI 🌟 */
.wallet-card {
    width: 320px; height: 500px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px; color: white; padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 30px 60px -10px rgba(0,0,0,0.4);
    position: relative; overflow: hidden;
}
.wallet-card::before {
    content:''; position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; background: var(--primary);
    filter: blur(80px); opacity: 0.5; z-index: 0;
}
.wallet-header, .wallet-body, .wallet-footer { position: relative; z-index: 10; }
.wallet-header { display: flex; justify-content: space-between; align-items: flex-start; }
.wallet-logo { font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 8px; font-family: var(--font-heading);}
.wallet-points { text-align: right; }
.pts-val { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.pts-lbl { font-size: 11px; font-weight: 700; color: #94a3b8; letter-spacing: 1px; }
.wallet-footer { background: white; border-radius: 12px; padding: 24px; text-align: center; margin-top: auto;}
.qr-code-placeholder { display: inline-flex;  }
.qr-code-placeholder i { font-size: 120px; color: var(--dark); line-height: 1; }

/* 🌟 PAYMENTS UI 🌟 */
.payment-icons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.payment-ui { padding: 32px; text-align: center; }
.pay-app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.p-app { border: 1px solid var(--gray-200); padding: 16px 12px; border-radius: var(--radius-md); font-weight: 600; font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--dark); }
.p-app i { font-size: 32px; }
.qr-box { width: 140px; height: 140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; background: #f8fafc; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* 🌟 NOTIFICATIONS UI 🌟 */
.notif-ui { padding: 0; background: #f8fafc; overflow: hidden; height: 380px; display: flex; flex-direction: column; }
.notif-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.pulse-dot { width: 12px; height: 12px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 4px rgba(16,185,129,0.2); animation: pulseGentle 1.5s infinite alternate; }
.notif-body { padding: 32px 24px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.chat-bubble { display: flex; gap: 16px; padding: 16px; border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); align-items: center; position: relative; border: 1px solid var(--gray-100); }
.chat-bubble i { font-size: 28px; }
.chat-bubble.wa i { color: #25D366; }
.chat-bubble.sms i { color: #3b82f6; }
.chat-bubble.email i { color: #f59e0b; }
.chat-content { display: flex; flex-direction: column; }
.chat-content strong { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.chat-content span { font-size: 13px; color: var(--gray-600); margin-top: 4px; line-height: 1.4; }
.chat-bubble.wa { border-left: 4px solid #25D366; margin-left: 20px; }
.chat-bubble.sms { border-left: 4px solid #3b82f6; margin-right: 20px; }
.chat-bubble.email { border-left: 4px solid #f59e0b; margin-left: 40px; }
.chat-time, .check-sent { position: absolute; right: 16px; font-size: 11px; font-weight: 600; color: var(--gray-300); }
.check-sent i { font-size: 20px; color: #10b981; }

/* 🌟 ANALYTICS UI 🌟 */
.analytics-ui { padding: 32px; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.any-header { margin-bottom: 32px; }
.any-title { font-size: 14px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.any-value-row { display: flex; align-items: center; gap: 16px; }
.any-val { font-size: 36px; font-weight: 800; color: var(--dark); line-height: 1; }
.any-badge { display: inline-flex; align-items: center; background: #ecfdf5; color: #10b981; padding: 4px 10px; border-radius: 100px; font-size: 13px; font-weight: 700; border: 1px solid #a7f3d0;}
.analytics-chart { display: flex; align-items: flex-end; gap: 12px; height: 180px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-100); margin-bottom: 24px;}
.any-bar-col { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 12px; }
.any-fill { width: 100%; background: var(--gray-200); border-radius: 6px; transform-origin: bottom; animation: barGrow 1.2s ease forwards; }
.any-fill.primary { background: var(--primary); box-shadow: 0 10px 20px rgba(27,79,209,0.3); }
.any-lbl { font-size: 12px; font-weight: 600; color: var(--gray-300); }
.any-footer { display: flex; gap: 16px; }
.any-stat-mini { flex: 1; display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f8fafc; border-radius: var(--radius-sm); border: 1px solid var(--gray-100); font-size: 14px; font-weight: 500; color: var(--gray-600); }
.any-stat-mini i { font-size: 20px; }
.any-stat-mini strong { color: var(--dark); font-weight: 700; }

/* 🌟 INTEGRATIONS GRID 🌟 */
.integrations-section { padding: 80px 0 120px; background: #f8fafc; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); margin-bottom: 80px;}
.integ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.integ-card { background: white; padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); display:flex; flex-direction:column; align-items:center; text-align:center;}
.mt-4 { margin-top: 24px; }

/* 🌟 PRICING SECTION 🌟 */
.pricing-section { padding: 60px 0 140px; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; align-items: stretch; }
.pricing-card {
    background: #f8fafc; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 40px 32px;
    display: flex; flex-direction: column; position: relative;
    box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.pricing-card.popular {
    background: var(--white); border: 2px solid var(--primary);
    box-shadow: var(--shadow-strong); transform: translateY(-16px);
}
.popular-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 6px 16px;
    border-radius: 100px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap;
}
.pricing-card.enterprise { background: var(--dark); color: white; border-color: var(--dark); }
.pricing-card h3 { font-size: 28px; margin-bottom: 8px; color: var(--dark); }
.pricing-card.enterprise h3, .pricing-card.enterprise .p-users { color: white; }
.p-users { font-size: 15px; font-weight: 600; color: var(--gray-600); margin-bottom: 24px; }
.p-price { font-size: 20px; font-weight: 700; color: var(--gray-600); margin: 24px 0; display:flex; align-items:baseline; justify-content:center; gap:8px; line-height:1;}
.p-price span { font-size: 48px; color: var(--dark); line-height: 0.9; letter-spacing:-1px;}
.pricing-card.enterprise .p-price span, .pricing-card.enterprise .p-price { color: white; }
.p-billing { font-size: 13px; color: var(--gray-600); margin-top: -16px; }
.p-features { margin-top: 24px; flex: 1; }
.p-features li { justify-content: flex-start; }
.pricing-card.enterprise .p-features li { color: white; }
.pricing-card.enterprise .check-list i { background: rgba(255,255,255,0.1); color: var(--primary-light); }

/* Pricing Dots */
.pricing-dots {
    display: none; justify-content: center; gap: 8px; margin-top: 16px;
}
.pricing-dots .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300);
    transition: all 0.3s; cursor: pointer;
}
.pricing-dots .dot.active {
    background: var(--primary); width: 24px; border-radius: 4px;
}

/* Super CTA */
.super-cta { background: var(--primary-light); padding: 140px 0; border-radius: var(--radius-xl); margin: 0 40px 100px; border: 2px solid white; box-shadow: var(--shadow-soft);}
.super-cta h2 { font-size: 64px; margin-bottom: 24px; letter-spacing: -1px;}
.super-cta p { font-size: 20px; color: var(--primary-dark); font-weight: 500;}
.cta-mini { margin-top: 24px; font-size: 14px !important; opacity: 0.8;}

/* Footer */
.footer { border-top: 1px solid var(--gray-200); padding: 80px 0 40px; background: var(--dark); color: white;}
.footer-grid { display: flex; justify-content: space-between; }
.footer-brand p { margin-top: 20px; color: var(--gray-300); font-size: 15px;}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { color: var(--gray-300); font-size: 20px; transition: var(--transition); }
.footer-social a:hover { color: white; }
.footer-links { display: flex; gap: 80px; }
.link-col h4 { margin-bottom: 24px; font-size: 18px; color: white;}
.link-col a { display: block; margin-bottom: 16px; color: var(--gray-300); font-weight: 500;}
.link-col a:hover { color: white; transform: translateX(4px);}

/* ========== MOBILE ALTERNATIVE MOCKUPS ========== */
.mob-alt { display: none; }
.desktop-visual { display: flex; }

.ma-card {
    background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm); overflow: hidden; width: 100%;
}
.ma-row {
    display: flex; align-items: center; gap: 14px; padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.ma-row:last-child { border-bottom: none; }
.ma-row div { display: flex; flex-direction: column; }
.ma-row strong { font-size: 15px; color: var(--dark); }
.ma-row span { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.ma-row.ma-active { background: var(--primary-light); }

.ma-notif {
    display: flex; align-items: center; gap: 10px; padding: 14px 16px;
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); margin-top: 12px; width: 100%;
}
.ma-notif i { font-size: 22px; }
.ma-notif strong { font-size: 14px; color: var(--dark); }
.ma-notif span { font-size: 12px; color: var(--gray-600); }

.ma-msg {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    background: var(--white); border-radius: 10px; border: 1px solid var(--gray-100);
}
.ma-msg i { font-size: 24px; flex-shrink: 0; }
.ma-msg div { display: flex; flex-direction: column; flex: 1; }
.ma-msg strong { font-size: 13px; color: var(--dark); }
.ma-msg span { font-size: 12px; color: var(--gray-600); }

.ma-stats {
    display: flex; gap: 8px; justify-content: center;
}
.ma-stats > div {
    flex: 1; text-align: center; padding: 12px 8px;
    background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
}
.ma-stats strong { display: block; font-size: 20px; color: var(--dark); line-height: 1.2; }
.ma-stats span { font-size: 11px; color: var(--gray-600); font-weight: 500; }

.ma-icon-btn {
    width: 56px; height: 56px; border-radius: 16px; border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center; background: var(--white);
}

.ma-dark {
    background: linear-gradient(135deg, #0f172a, #1e293b); color: white;
    border-color: #1e293b; padding: 20px; border-radius: var(--radius-md);
}

.ma-locker-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.ma-lock {
    aspect-ratio: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; border-radius: 12px; border: 2px solid var(--gray-200);
    background: #f8fafc; font-size: 20px; font-weight: 800; color: var(--gray-600);
}
.ma-lock span { font-size: 10px; font-weight: 600; margin-top: 2px; }
.ma-lock.active { border-color: #10b981; background: #ecfdf5; color: #047857; }
.ma-lock.warn { border-color: #ef4444; background: #fef2f2; color: #b91c1c; }

.ma-mini-bars {
    display: flex; align-items: flex-end; gap: 6px; height: 80px;
    border-bottom: 1px solid var(--gray-100); padding-bottom: 8px;
}
.ma-mini-bars > div {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: flex-end; height: 100%;
}
.ma-bar {
    width: 100%; background: var(--gray-200); border-radius: 4px; min-height: 4px;
}
.ma-bar-active { background: var(--primary); box-shadow: 0 4px 12px rgba(27,79,209,0.3); }
.ma-mini-bars > div > span { font-size: 10px; font-weight: 600; color: var(--gray-300); margin-top: 6px; }

.ma-stat-pill {
    flex: 1; display: flex; align-items: center; gap: 6px; padding: 10px 12px;
    background: #f8fafc; border-radius: var(--radius-sm); border: 1px solid var(--gray-100);
    font-size: 13px; color: var(--gray-600);
}
.ma-stat-pill strong { color: var(--dark); }

/* ========== MOBILE MENU DRAWER ========== */
.mobile-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 998; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-drawer {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
    background: var(--white); z-index: 999; padding: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }

.drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--gray-100);
}
.drawer-close {
    background: none; border: none; font-size: 28px; cursor: pointer;
    color: var(--dark); padding: 4px;
}
.drawer-nav { display: flex; flex-direction: column; padding: 16px 0; flex: 1; }
.drawer-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 24px; font-size: 17px; font-weight: 600; color: var(--dark);
    transition: background 0.2s;
}
.drawer-nav a:hover, .drawer-nav a:active { background: var(--primary-light); color: var(--primary); }
.drawer-nav a i { font-size: 22px; color: var(--gray-600); }

.drawer-langs {
    display: flex; gap: 8px; padding: 0 24px 16px;
}
.drawer-lang {
    flex: 1; text-align: center; padding: 10px 0; border-radius: 100px;
    font-size: 14px; font-weight: 700; color: var(--gray-600); cursor: pointer;
    background: var(--gray-100); transition: all 0.2s;
}
.drawer-lang.active { background: var(--primary); color: white; }
.drawer-footer {
    padding: 20px 24px; border-top: 1px solid var(--gray-100);
    display: flex; flex-direction: column; gap: 12px;
}
.drawer-footer .btn { width: 100%; justify-content: center; }

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .feature-row, .feature-row.reverse { flex-direction: column; gap: 48px; margin-bottom: 80px; text-align: center; }
    .check-list li { justify-content: center; }
    .btn-text { justify-content: center; }
    .hero-dashboard { flex-direction: column; height: auto; }
    .hd-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--gray-200); flex-direction: row; overflow-x: auto; padding: 16px; }
    .hd-logo { margin-bottom: 0; margin-right: 40px; align-self: center; }
    .hd-menu { flex-direction: row; }
    .hd-item { white-space: nowrap; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .integ-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 56px; }
    .feature-text h2 { font-size: 36px; }
    .staggered-features { padding: 80px 0; }
    .logos-grid { gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Navbar */
    .nav-links, .login-link { display: none; }
    .nav-actions .btn { display: none; }
    .nav-actions .custom-lang { display: none; }
    .nav-actions { gap: 12px; }
    .menu-toggle { display: block; }
    .navbar { padding: 14px 0; }
    .navbar.scrolled { padding: 10px 0; }

    /* Hero */
    .hero { padding: 100px 0 0; }
    .hero-content h1 { font-size: 34px; letter-spacing: -0.02em; margin-bottom: 16px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 24px; line-height: 1.5; }
    .hero-cta { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; }
    .hero-cta .btn-xl { padding: 16px 32px; font-size: 16px; width: 100%; }
    .hero-cta .btn-secondary { background: transparent; border: 2px solid var(--gray-200); }
    .hero-dashboard-wrapper { padding: 0; margin-top: 0; }

    /* Dashboard mockup */
    .hd-body { height: auto; min-height: 320px; }
    .hd-sidebar { display: none; }
    .hd-main { padding: 16px; }
    .hd-topbar { margin-bottom: 16px; }
    .hd-title { font-size: 16px; }
    .hd-stats { flex-direction: row; gap: 8px; margin-bottom: 16px; }
    .hd-stat-card { padding: 12px; }
    .stat-label { font-size: 10px; }
    .stat-value { font-size: 18px; }
    .hd-content-area { flex-direction: column; gap: 16px; }
    .hd-chart { display: none; }

    /* Features */
    .staggered-features { padding: 48px 0; }
    .feature-row, .feature-row.reverse { gap: 24px; margin-bottom: 56px; }
    .feature-text h2 { font-size: 26px; margin-bottom: 14px; }
    .feature-text p { font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
    .feature-tag { font-size: 11px; padding: 6px 14px; margin-bottom: 14px; }
    .check-list li { font-size: 14px; gap: 10px; margin-bottom: 12px; }
    .check-list i { font-size: 18px; padding: 3px; }
    .btn-text { font-size: 15px; }

    /* Show mobile alts, hide desktop visuals */
    .desktop-visual { display: none !important; }
    .mob-alt { display: block !important; width: 100%; }

    /* Mobile frame */
    .mobile-frame { width: 240px; height: 480px; border-width: 8px; border-radius: 36px; }
    .mob-header { height: 110px; font-size: 18px; }
    .mob-body { padding: 20px 14px; }
    .mob-title { font-size: 16px; margin-bottom: 14px; }
    .mob-service { padding: 14px 12px; margin-bottom: 10px; }
    .mob-service .price { font-size: 14px; }
    .mob-btn { padding: 14px; font-size: 14px; margin-top: 16px; }
    .floating-badge { position: relative !important; left: 0 !important; top: 0 !important; margin: 16px auto 0; width: auto; max-width: 260px; padding: 14px 16px; gap: 12px; }
    .floating-badge .icon-circle { width: 40px; height: 40px; font-size: 20px; }
    .notch { width: 110px; height: 26px; }

    /* Calendar */
    .calendar-ui { padding: 14px; }
    .cal-header { margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
    .cal-header span { font-size: 15px; }
    .cal-nav { padding: 6px 12px; font-size: 13px; }
    .cal-grid { height: 220px; gap: 6px; padding: 10px; }
    .cal-time-col { font-size: 11px; padding-top: 40px; }
    .cal-room-col { min-width: 0; }
    .col-head { padding: 10px 4px; font-size: 12px; }
    .cal-event { padding: 6px; font-size: 10px; line-height: 1.3; left: 4px; right: 4px; overflow: hidden; }

    /* Notifications */
    .notif-ui { height: auto; }
    .chat-bubble { padding: 12px; gap: 12px; }
    .chat-bubble.wa { margin-left: 0; }
    .chat-bubble.sms { margin-right: 0; }
    .chat-bubble.email { margin-left: 0; }
    .chat-content strong { font-size: 13px; }
    .chat-content span { font-size: 12px; }

    /* CRM */
    .crm-top-pattern { height: 100px; }
    .crm-body { padding: 0 16px 20px; }
    .crm-header { margin-top: -36px; margin-bottom: 20px; }
    .avatar { width: 64px; height: 64px; font-size: 22px; border-width: 3px; margin-bottom: 12px; }
    .crm-info h3 { font-size: 20px; margin-bottom: 8px; }
    .c-stat { padding: 14px 16px; font-size: 14px; }
    .c-stat strong { font-size: 16px; }

    /* Wallet */
    .wallet-card { width: 260px; height: 400px; padding: 20px; }
    .wallet-header { flex-direction: column; gap: 12px; }
    .wallet-logo { font-size: 18px; }
    .wallet-points { text-align: left; }
    .pts-val { font-size: 32px; }
    .wallet-footer { padding: 16px; }
    .qr-code-placeholder i { font-size: 80px; }

    /* Payments */
    .payment-ui { padding: 20px; }
    .pay-app-grid { gap: 8px; }
    .p-app { padding: 14px 8px; font-size: 13px; }
    .p-app i { font-size: 28px; }
    .qr-box { width: 100px; height: 100px; }
    .qr-box i { font-size: 70px !important; }
    .payment-icons { justify-content: center; }
    .payment-icons img { height: 22px !important; }

    /* Lockers */
    .locker-ui { padding: 20px; }
    .locker-header { font-size: 16px; flex-direction: column; gap: 8px; align-items: flex-start; padding-bottom: 16px; margin-bottom: 20px; }
    .locker-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .locker { padding: 12px; }
    .l-num { font-size: 22px; }
    .l-status { font-size: 10px; margin-top: 4px; }
    .l-time { font-size: 11px; }

    /* Analytics */
    .analytics-ui { padding: 20px; }
    .any-val { font-size: 24px; }
    .any-badge { font-size: 12px; padding: 3px 8px; }
    .analytics-chart { height: 120px; gap: 6px; padding-bottom: 16px; margin-bottom: 16px; }
    .any-footer { flex-direction: column; gap: 8px; }
    .any-stat-mini { padding: 10px 12px; font-size: 13px; }

    /* Integrations */
    .integrations-section { padding: 40px 0 48px; margin-bottom: 0; }
    .integrations-section h2 { font-size: 26px !important; margin-bottom: 16px !important; }
    .integrations-section p { font-size: 14px !important; margin-bottom: 28px !important; }
    .integ-grid { grid-template-columns: 1fr; gap: 12px; }
    .integ-card { padding: 20px; flex-direction: row; text-align: left; gap: 16px; }
    .integ-card i { font-size: 32px !important; }
    .integ-card h4 { margin-top: 0 !important; font-size: 15px !important; }
    .integ-card p { margin-top: 2px !important; font-size: 13px !important; }

    /* Pricing - Swipe Carousel */
    .pricing-section h2 { font-size: 26px !important; letter-spacing: -0.5px !important; }
    .pricing-section > .container > p { font-size: 14px !important; }
    .pricing-grid {
        display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; gap: 16px; margin-top: 24px;
        padding: 20px 0 8px; scrollbar-width: none;
    }
    .pricing-grid::-webkit-scrollbar { display: none; }
    .pricing-card {
        min-width: 280px; max-width: 280px; scroll-snap-align: center;
        flex-shrink: 0; padding: 28px 24px;
    }
    .pricing-card.popular { transform: none; border-width: 2px; }
    .pricing-card h3 { font-size: 22px; }
    .p-price span { font-size: 40px; }
    .popular-badge { top: -14px; font-size: 12px; }
    .pricing-dots { display: flex !important; }

    /* Pricing */
    .pricing-section { padding: 40px 0 48px; }

    /* CTA */
    .super-cta { margin: 0 16px 40px; padding: 48px 20px; border-radius: var(--radius-lg); }
    .super-cta h2 { font-size: 26px; margin-bottom: 16px; }
    .super-cta p { font-size: 15px; }
    .super-cta .btn-xl { padding: 14px 28px; font-size: 15px; }
    .cta-mini { font-size: 13px !important; margin-top: 16px; }

    /* Footer */
    .footer { padding: 40px 0 28px; }
    .footer-grid { flex-direction: column; gap: 32px; }
    .footer-links { flex-direction: column; gap: 24px; }
    .link-col h4 { margin-bottom: 12px; font-size: 15px; }
    .link-col a { margin-bottom: 10px; font-size: 13px; }
    .footer-brand p { font-size: 13px; margin-top: 14px; }

    /* Logos */
    .logos-section { padding: 32px 0; }
    .logos-grid { gap: 16px 24px; display: grid !important; grid-template-columns: 1fr 1fr; justify-items: center; }
    .logos-grid span { font-size: 14px; }

    /* UI card global */
    .ui-card { padding: 20px; }

    /* Disable floating animations on mobile for performance */
    .float-slow, .float-med { animation: none; }
    .pulse-gentle { animation: none; }
}

/* Small phones */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 28px; }
    .hero-subtitle { font-size: 14px; }
    .mobile-frame { width: 220px; height: 440px; }
    .mob-header { height: 90px; font-size: 16px; }
    .mob-body { padding: 16px 12px; }
    .wallet-card { width: 240px; height: 380px; padding: 16px; }
    .pricing-card { padding: 24px 20px; }
    .p-price span { font-size: 36px; }
    .super-cta h2 { font-size: 24px; }
    .locker-grid { grid-template-columns: repeat(2, 1fr); }
    .cal-grid { height: 200px; }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    text-decoration: none;
}
@media (max-width: 768px) {
    .whatsapp-widget { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .whatsapp-widget svg { width: 24px; height: 24px; }
}
