:root {
  --bg: #050507;
  --bg2: #0c0e14;
  --white: #ffffff;
  --cyan: #00c2ff;
  --purple: #7a5cff;
  --gradient: linear-gradient(135deg, #00c2ff, #7a5cff);
  --gradient-r: linear-gradient(135deg, #7a5cff, #00c2ff);
  --glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.09);
  --shadow: 0 0 60px rgba(0,194,255,.18);
  --shadow-purple: 0 0 60px rgba(122,92,255,.18);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: white;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* SCROLLBAR */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:#050507; }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius:20px; }

/* BG ELEMENTS */
.grid-bg {
  position:fixed; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:60px 60px;
  z-index:-3;
}

.noise {
  position:fixed; inset:0; opacity:.035;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  z-index:-2;
}

.blur {
  position:fixed; width:500px; height:500px;
  border-radius:50%; filter:blur(140px); z-index:-1; opacity:.55;
}
.blur-1 { background:#00c2ff; top:-150px; left:-150px; }
.blur-2 { background:#7a5cff; right:-200px; top:25%; }
.blur-3 { background:#00b4cc; bottom:-200px; left:30%; }

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: #030304;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  transition: opacity .8s ease, visibility .8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  width: 100%;
}

/* LOGO */
.loader-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;

  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: clamp(24px, 6vw, 40px);

  line-height: 1.1;
}

.loader-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}

/* BAR */
.loader-bar {
  width: 100%;
  max-width: 280px;

  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;

  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient);
  animation: load 2.2s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes load {
  to { width: 100%; }
}

/* TEXT */
.loader-text {
  font-size: clamp(.7rem, 2.5vw, .85rem);
  opacity: .5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
  .loader-inner {
    transform: translateY(-10px);
  }

  .loader-bar {
    max-width: 220px;
  }

  .loader-text {
    letter-spacing: 1.5px;
  }
}
/* NAVBAR */
.navbar {
  position:fixed; top:0; left:0; width:100%;
  padding:22px 7%;
  display:flex; justify-content:space-between; align-items:center;
  z-index:999;
  background: rgba(5,5,7,.6);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.navbar.scrolled {
  background: rgba(5,5,7,.85);
  backdrop-filter: blur(20px);
  padding: 16px 7%;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo { font-family:'Syne',sans-serif; font-size:1.7rem; font-weight:800; }
.logo span { background: var(--gradient); -webkit-background-clip:text; color:transparent; }

.nav-links { display:flex; gap:36px; }
.nav-link {
  color: rgba(255,255,255,.75); text-decoration:none;
  font-size:.95rem; font-weight:400; position:relative;
  transition: color .3s;
}
.nav-link::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background: var(--gradient);
  transition: width .35s ease; border-radius:2px;
}
.nav-link:hover { color:white; }
.nav-link:hover::after { width:100%; }

/* BUTTONS */
.nav-btn, .primary-btn, .secondary-btn {
  padding:14px 26px; border-radius:50px; border:none;
  cursor:pointer; font-weight:500; font-family:'DM Sans',sans-serif;
  font-size:.95rem; transition:.35s; display:inline-flex; align-items:center; gap:8px;
}
.nav-btn, .primary-btn {
  background: var(--gradient); color:white;
  box-shadow: 0 4px 30px rgba(0,194,255,.3);
}
.nav-btn:hover, .primary-btn:hover {
  transform:translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,194,255,.45);
}
.secondary-btn {
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12); color:white;
}
.secondary-btn:hover {
  transform:translateY(-3px);
  background: rgba(255,255,255,.09);
}

/* HAMBURGER */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.hamburger span { display:block; width:24px; height:2px; background:white; border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position:fixed; top:0; right:-100%;
  width:300px; height:100vh;
  background: rgba(8,8,12,.97); backdrop-filter:blur(30px);
  z-index:9999; padding:80px 36px 36px;
  transition:.45s cubic-bezier(.4,0,.2,1);
  border-left:1px solid var(--border);
}
.mobile-menu.active { right:0; }
.mobile-close {
  position:absolute; top:24px; right:24px;
  background:none; border:none; color:white; font-size:1.3rem; cursor:pointer; opacity:.6;
}
.mobile-link {
  display:block; margin-bottom:28px;
  color:white; text-decoration:none; font-size:1.2rem; font-weight:500;
  transition:.25s;
}
.mobile-link:hover { color:var(--cyan); }

/* HERO */
.hero {
  min-height:100vh; padding:150px 7% 100px;
  display:flex; justify-content:space-between; align-items:center; gap:60px;
  position:relative;
}
.hero-left { max-width:660px; }

.hero-tag {
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px; border-radius:50px;
  background: rgba(0,194,255,.08); border:1px solid rgba(0,194,255,.2);
  margin-bottom:28px; font-size:.75rem; letter-spacing:1.5px; color:var(--cyan);
  font-weight:500;
}
.tag-dot {
  width:7px; height:7px; border-radius:50%; background:var(--cyan);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.7); }
}

h1 { font-family:'Syne',sans-serif; font-size:5.4rem; line-height:1.02; margin-bottom:28px; font-weight:800; }
.gradient-text { background: var(--gradient); -webkit-background-clip:text; color:transparent; }

.hero p { color:rgba(255,255,255,.65); font-size:1.15rem; line-height:1.8; margin-bottom:40px; }

.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:52px; }

.hero-stats { display:flex; align-items:center; gap:24px; }
.mini-stat h3 { font-family:'Syne',sans-serif; font-size:2.2rem; font-weight:700; color:var(--cyan); line-height:1; margin-bottom:4px; }
.mini-stat span { font-size:.85rem; opacity:.6; }
.mini-divider { width:1px; height:40px; background: var(--border); }

/* KIOSK */
.hero-right { position:relative; }
.kiosk-wrapper { position:relative; }
.kiosk-glow {
  position:absolute; inset:-40px;
  background: radial-gradient(ellipse, rgba(0,194,255,.15), rgba(122,92,255,.1), transparent 70%);
  pointer-events:none;
}

.kiosk {
  width:360px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1); border-radius:36px; padding:18px;
  backdrop-filter:blur(20px); position:relative; animation:float 6s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

.kiosk-screen {
  background: linear-gradient(145deg, rgba(0,194,255,.12), rgba(122,92,255,.12));
  border:1px solid rgba(255,255,255,.07); border-radius:24px; padding:16px; margin-bottom:14px;
}
.screen-header {
  display:flex; align-items:center; gap:6px; margin-bottom:16px;
}
.screen-dot { width:8px; height:8px; border-radius:50%; }
.screen-dot.red { background:#ff5f57; }
.screen-dot.amber { background:#febc2e; }
.screen-dot.green { background:#28c840; }
.screen-title { font-size:.65rem; color:rgba(255,255,255,.4); margin-left:auto; }

.screen-welcome { text-align:center; padding:12px 0 16px; }
.screen-icon { font-size:2rem; margin-bottom:10px; }
.screen-card-text { font-size:.8rem; font-weight:600; margin-bottom:4px; }
.screen-card-sub { font-size:.65rem; color:rgba(255,255,255,.45); }

.pin-row { display:flex; justify-content:center; gap:10px; margin:12px 0; }
.pin-dot { width:12px; height:12px; border-radius:50%; border:2px solid rgba(255,255,255,.3); }
.pin-dot.active { background:var(--cyan); border-color:var(--cyan); }

.screen-numpad {
  display:grid; grid-template-columns:repeat(3,1fr); gap:6px;
}
.num-key {
  height:34px; border-radius:10px; background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:.8rem; font-weight:500; cursor:pointer; transition:.2s;
}
.num-key:hover { background:rgba(0,194,255,.2); }
.num-key.ghost { background:transparent; }

.locker-system { padding:6px 2px 4px; }
.locker-label { font-size:.65rem; color:rgba(255,255,255,.3); letter-spacing:1px; text-transform:uppercase; margin-bottom:10px; }
.lockers-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.locker {
  height:60px; border-radius:14px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  font-size:.6rem; color:rgba(255,255,255,.4); transition:.3s;
}
.locker.open { border-color:rgba(0,194,255,.4); color:var(--cyan); background:rgba(0,194,255,.08); }
.locker.occupied { border-color:rgba(122,92,255,.3); color:var(--purple); }

/* FLOATING BADGES */
.badge {
  position:absolute; display:flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:50px;
  background:rgba(12,12,20,.9); border:1px solid var(--border);
  backdrop-filter:blur(10px); font-size:.8rem; font-weight:500;
  white-space:nowrap; box-shadow:0 8px 30px rgba(0,0,0,.4);
}
.badge-top { top:-20px; left:-70px; animation: badge-float-a 4s ease-in-out infinite; }
.badge-bottom { bottom:60px; right:-70px; animation: badge-float-b 4s ease-in-out infinite 2s; }
@keyframes badge-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badge-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* SCROLL INDICATOR */
.scroll-indicator { position:absolute; bottom:40px; left:50%; transform:translateX(-50%); }
.scroll-indicator span {
  display:block; width:28px; height:48px;
  border:2px solid rgba(255,255,255,.25); border-radius:50px; position:relative;
}
.scroll-indicator span::before {
  content:''; position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; background:rgba(255,255,255,.6); border-radius:4px;
  animation:scroll-anim 2s infinite;
}
@keyframes scroll-anim { 100%{ transform:translate(-50%,18px); opacity:0; } }

/* TRUST STRIP */
.trust-section { padding:0; }
.trust-strip {
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:28px 7%; display:flex; align-items:center; gap:40px;
  flex-wrap:wrap;
}
.trust-label { font-size:.8rem; color:rgba(255,255,255,.35); white-space:nowrap; }
.trust-logos { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.trust-logo { font-size:.9rem; font-weight:500; color:rgba(255,255,255,.35); transition:.3s; }
.trust-logo:hover { color:white; }
.trust-sep { color:rgba(255,255,255,.15); }

/* STATS */
.stats-section { padding:100px 7%; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.glass-card {
  padding:40px 36px; border-radius:28px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(20px); transition:.4s;
}
.glass-card:hover { transform:translateY(-6px); border-color:rgba(0,194,255,.25); }

.stat-icon { margin-bottom:20px; color:var(--cyan); }
.counter { font-family:'Syne',sans-serif; font-size:3.2rem; font-weight:700; color:var(--cyan); margin-bottom:10px; }
.glass-card p { color:rgba(255,255,255,.55); font-size:.9rem; margin-bottom:20px; }
.stat-bar { height:3px; background:rgba(255,255,255,.08); border-radius:3px; overflow:hidden; }
.stat-bar-fill { height:100%; background: var(--gradient); border-radius:3px; width:0; transition:width 1.5s ease; }

/* SECTIONS SHARED */
section { padding:110px 7%; }

.section-header { text-align:center; margin-bottom:70px; }
.section-tag {
  display:inline-block; color:var(--cyan); letter-spacing:2px;
  font-size:.75rem; font-weight:500; text-transform:uppercase;
  background:rgba(0,194,255,.08); border:1px solid rgba(0,194,255,.2);
  padding:6px 14px; border-radius:50px; margin-bottom:20px;
}
.section-header h2 {
  font-family:'Syne',sans-serif; font-size:3.2rem; font-weight:700; line-height:1.15;
  margin-bottom:16px;
}
.section-sub { color:rgba(255,255,255,.5); font-size:1rem; line-height:1.7; max-width:480px; margin:0 auto; }

/* PROBLEM */
.problem-section { background:rgba(0,0,0,.2); }
.problem-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.problem-card {
  padding:40px; border-radius:28px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  transition:.4s; position:relative; overflow:hidden;
}
.problem-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background: var(--gradient); opacity:0; transition:.4s;
}
.problem-card:hover::before { opacity:1; }
.problem-card:hover { transform:translateY(-8px); box-shadow: var(--shadow); }

.problem-icon-wrap {
  width:52px; height:52px; border-radius:16px;
  background:rgba(0,194,255,.1); border:1px solid rgba(0,194,255,.2);
  display:flex; align-items:center; justify-content:center; margin-bottom:24px;
}
.problem-icon-wrap i { width:24px; height:24px; color:var(--cyan); }
.problem-card h3 { font-family:'Syne',sans-serif; font-size:1.3rem; font-weight:600; margin-bottom:12px; }
.problem-card p { color:rgba(255,255,255,.55); line-height:1.7; font-size:.95rem; margin-bottom:20px; }
.problem-stat {
  display:inline-block; padding:6px 14px; border-radius:50px;
  background:rgba(255,100,100,.1); border:1px solid rgba(255,100,100,.2);
  color:#ff8a8a; font-size:.78rem; font-weight:500;
}

/* TIMELINE */
.timeline { position:relative; }
.timeline-track {
  position:absolute; left:56px; top:0; bottom:0; width:2px;
  background: rgba(255,255,255,.07);
}
.timeline-progress {
  width:100%; background: var(--gradient); height:0%; transition:height 1s ease;
}
.timeline-steps { display:flex; flex-direction:column; gap:40px; padding-left:0; }
.timeline-step { display:flex; align-items:flex-start; gap:28px; }
.step-circle {
  width:112px; min-width:112px; height:112px; border-radius:50%;
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  position:relative; box-shadow: var(--shadow); flex-shrink:0;
  transition:.4s;
}
.step-circle:hover, .step-circle.active { border-color:var(--cyan); background:rgba(0,194,255,.1); }
.step-num { font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:700; }
.step-pulse {
  position:absolute; inset:-8px; border-radius:50%;
  border:1px solid rgba(0,194,255,.3); animation:pulse-ring 3s infinite;
}
@keyframes pulse-ring { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.3);opacity:0} }
.step-content { padding-top:30px; }
.step-content h3 { font-family:'Syne',sans-serif; font-size:1.4rem; font-weight:600; margin-bottom:10px; }
.step-content p { color:rgba(255,255,255,.55); line-height:1.7; font-size:.95rem; max-width:560px; }

/* FEATURES */
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.feature-card {
  padding:40px; border-radius:28px; min-height:220px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07);
  transition:.4s; position:relative; overflow:hidden;
}
.feature-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background: var(--gradient); transform:scaleX(0); transition:.4s; transform-origin:left;
}
.feature-card:hover::after { transform:scaleX(1); }
.feature-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-purple); }
.feature-large { grid-column:span 1; background: rgba(0,194,255,.05); border-color:rgba(0,194,255,.15); }
.feature-large.right { background:rgba(122,92,255,.05); border-color:rgba(122,92,255,.15); }
.feature-icon-wrap {
  width:52px; height:52px; border-radius:16px;
  background:rgba(122,92,255,.1); border:1px solid rgba(122,92,255,.2);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.feature-icon-wrap i { width:24px; height:24px; color:var(--purple); }
.feature-card h3 { font-family:'Syne',sans-serif; font-size:1.2rem; font-weight:600; margin-bottom:10px; }
.feature-card p { color:rgba(255,255,255,.55); font-size:.9rem; line-height:1.7; }
.feature-tag {
  position:absolute; top:20px; right:20px;
  padding:4px 12px; border-radius:50px; font-size:.7rem; font-weight:600;
  background: var(--gradient); color:white;
}

/* DASHBOARD */
.dashboard {
  display:flex; border-radius:28px; overflow:hidden;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08);
  min-height:600px;
}
.dashboard-sidebar {
  width:230px; padding:30px 24px;
  background:rgba(255,255,255,.025); border-right:1px solid rgba(255,255,255,.06);
  display:flex; flex-direction:column; gap:0;
}
.dashboard-logo {
  width:44px; height:44px; border-radius:14px; background: var(--gradient);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; margin-bottom:32px;
}
.sidebar-nav { list-style:none; flex:1; }
.sidebar-item {
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:12px; cursor:pointer;
  color:rgba(255,255,255,.45); font-size:.88rem; margin-bottom:4px; transition:.25s;
}
.sidebar-item:hover { color:white; background:rgba(255,255,255,.06); }
.sidebar-item.active { color:white; background:rgba(0,194,255,.1); border:1px solid rgba(0,194,255,.2); }
.sidebar-status {
  display:flex; align-items:center; gap:8px;
  font-size:.75rem; color:rgba(255,255,255,.35); padding:10px 12px;
}
.status-dot { width:7px; height:7px; border-radius:50%; background:#28c840; animation:pulse-dot 2s infinite; }

.dashboard-main { flex:1; padding:30px; overflow:hidden; }
.dash-topbar {
  display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:24px;
}
.dash-title { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:600; }
.dash-sub { font-size:.8rem; color:rgba(255,255,255,.35); margin-top:2px; }
.dash-actions { display:flex; gap:8px; }
.dash-btn {
  padding:8px 14px; border-radius:10px; border:1px solid var(--border);
  background:rgba(255,255,255,.04); color:rgba(255,255,255,.7);
  cursor:pointer; font-size:.8rem; display:flex; align-items:center; gap:6px;
  font-family:'DM Sans',sans-serif; transition:.25s;
}
.dash-btn:hover { background:rgba(255,255,255,.08); color:white; }
.dash-btn.primary { background: var(--gradient); color:white; border:none; }

.dashboard-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:20px; }
.dash-card {
  padding:20px; border-radius:18px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.07);
  display:flex; align-items:center; gap:14px;
}
.dash-card-icon {
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.dash-card-icon.green { background:rgba(40,200,64,.15); color:#28c840; }
.dash-card-icon.blue { background:rgba(0,194,255,.15); color:var(--cyan); }
.dash-card-icon.purple { background:rgba(122,92,255,.15); color:var(--purple); }
.dash-card-val { font-family:'Syne',sans-serif; font-size:1.8rem; font-weight:700; line-height:1; }
.dash-card-label { font-size:.75rem; color:rgba(255,255,255,.4); margin-top:3px; }
.dash-trend { margin-left:auto; font-size:.75rem; padding:4px 8px; border-radius:8px; font-weight:600; }
.dash-trend.up { background:rgba(40,200,64,.12); color:#28c840; }
.dash-trend.neutral { color:rgba(255,255,255,.3); }

.dashboard-chart {
  border-radius:18px; padding:20px; margin-bottom:20px;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
}
.chart-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:20px; font-size:.85rem; font-weight:500;
}
.chart-legend { display:flex; align-items:center; font-size:.78rem; color:rgba(255,255,255,.5); }
.legend-dot { display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:5px; }
.legend-dot.cyan { background:var(--cyan); }
.legend-dot.purple { background:var(--purple); }
.chart-bars { display:flex; align-items:flex-end; gap:8px; height:140px; }
.chart-bar-wrap {
  flex:1; display:flex; flex-direction:column; align-items:center; gap:4px; height:100%;
  justify-content:flex-end;
}
.chart-bar {
  width:100%; border-radius:6px 6px 0 0;
  background: linear-gradient(to top, var(--cyan), rgba(0,194,255,.4));
  transition: height 1s ease;
}
.chart-bar.purple { background: linear-gradient(to top, var(--purple), rgba(122,92,255,.4)); }
.chart-bar-wrap span { font-size:.65rem; color:rgba(255,255,255,.3); }

.dashboard-table { border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.06); }
.table-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 20px; background:rgba(255,255,255,.04);
  font-size:.85rem; font-weight:500; border-bottom:1px solid rgba(255,255,255,.06);
}
.table-btn { background:none; border:none; color:var(--cyan); cursor:pointer; font-size:.8rem; }
.table-row-header {
  display:grid; grid-template-columns:2fr 0.8fr 0.8fr 0.8fr 1fr;
  padding:10px 20px; font-size:.72rem; color:rgba(255,255,255,.3);
  background:rgba(255,255,255,.02); letter-spacing:.5px;
}
.table-row {
  display:grid; grid-template-columns:2fr 0.8fr 0.8fr 0.8fr 1fr;
  padding:14px 20px; font-size:.82rem; align-items:center;
  border-top:1px solid rgba(255,255,255,.05); transition:.25s;
}
.table-row:hover { background:rgba(255,255,255,.03); }
.guest-name { display:flex; align-items:center; gap:10px; }
.guest-av {
  width:28px; height:28px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:.65rem; font-weight:700; flex-shrink:0;
}
.status-badge {
  display:inline-block; padding:4px 10px; border-radius:6px; font-size:.72rem; font-weight:600;
}
.status-badge.success { background:rgba(40,200,64,.12); color:#28c840; }
.status-badge.warning { background:rgba(255,190,46,.12); color:#febc2e; }

/* TESTIMONIALS */
.testimonial-wrapper { position:relative; }
.testimonial-slider {
  display:flex; gap:24px; overflow:hidden; scroll-behavior:smooth;
  padding-bottom:4px;
}
.testimonial-card {
  min-width:calc(33.333% - 16px); padding:36px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);
  border-radius:28px; flex-shrink:0; transition:.4s;
}
.testimonial-card p,
.testimonial-card h4,
.testimonial-card span {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.testimonial-card:hover { border-color:rgba(0,194,255,.2); transform:translateY(-4px); }
.stars { color:var(--cyan); font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-card p { color:rgba(255,255,255,.7); line-height:1.75; font-style:italic; margin-bottom:24px; font-size:.95rem; }
.testimonial-footer { display:flex; gap:14px; }
.testimonial-footer {
  align-items: flex-start;
  flex-wrap: wrap;
}
.testimonial-av {
  width:42px; height:42px; border-radius:12px; background: var(--gradient);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.85rem; flex-shrink:0;
}
.testimonial-footer h4 { font-size:.9rem; font-weight:600; margin-bottom:2px; }
.testimonial-footer span { font-size:.78rem; color:rgba(255,255,255,.4); }

.slider-controls {
  display:flex; align-items:center; justify-content:center; gap:20px; margin-top:36px;
}
.slider-btn {
  width:44px; height:44px; border-radius:50%; border:1px solid var(--border);
  background:rgba(255,255,255,.05); color:white; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:.3s;
}
.slider-btn:hover { border-color:var(--cyan); background:rgba(0,194,255,.1); }
.slider-dots { display:flex; gap:8px; }
.slider-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,.2); cursor:pointer; transition:.3s;
}
.slider-dot.active { background:var(--cyan); width:24px; border-radius:4px; }

/* CTA */
.cta-section { background:rgba(0,0,0,.3); }
.cta-wrapper {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
}
.cta-left .section-tag { text-align:left; }
.cta-left h2 { font-family:'Syne',sans-serif; font-size:3.4rem; font-weight:700; line-height:1.15; margin:20px 0 16px; }
.cta-left p { color:rgba(255,255,255,.6); line-height:1.8; margin-bottom:32px; }
.cta-benefits { list-style:none; display:flex; flex-direction:column; gap:12px; }
.cta-benefits li {
  display:flex; align-items:center; gap:10px;
  font-size:.95rem; color:rgba(255,255,255,.75);
}

.contact-form {
  padding:36px; background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08); border-radius:28px;
}
.input-group { margin-bottom:18px; }
.input-group label { display:block; font-size:.8rem; margin-bottom:8px; color:rgba(255,255,255,.5); }
.contact-form input, .contact-form textarea {
  width:100%; padding:14px 18px;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08);
  border-radius:14px; color:white; outline:none; font-family:'DM Sans',sans-serif;
  font-size:.9rem; transition:.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color:rgba(0,194,255,.4); background:rgba(0,194,255,.05);
}
.contact-form input.error { border-color:rgba(255,80,80,.5); }
.contact-form textarea { min-height:120px; resize:none; }
.field-error { display:block; font-size:.75rem; color:#ff8a8a; margin-top:5px; min-height:16px; }
.form-success {
  display:none; flex-direction:column; align-items:center; justify-content:center;
  padding:30px; text-align:center; gap:12px;
}
.form-success p { color:rgba(255,255,255,.7); }
.form-success.show { display:flex; }

/* FOOTER */
/* FOOTER */
.footer { padding: 60px 7%; }
.footer-line {
  width: 100%; height: 1px; margin-bottom: 36px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
}
.footer-content {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.3); }

.footer-email a {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.45); font-size: .85rem;
  text-decoration: none; transition: color .3s;
}
.footer-email a:hover { color: var(--cyan); }

.footer-links { display: flex; gap: 14px; align-items: center; }
.footer-links a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.4); transition: .3s; text-decoration: none;
}
.footer-links a:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(0,188,212,.07); }
/* REVEAL */
.reveal { opacity:0; transform:translateY(60px); transition:opacity .8s ease, transform .8s ease; }
.reveal.active { opacity:1; transform:translateY(0); }

/* CURSOR */
.cursor-glow {
  width:350px; height:350px;
  background: radial-gradient(circle, rgba(0,194,255,.12), transparent 70%);
  position:fixed; pointer-events:none;
  transform:translate(-50%,-50%); z-index:0; transition:transform 0s;
}
.cursor-dot {
  width:6px; height:6px; border-radius:50%; background:var(--cyan);
  position:fixed; pointer-events:none; transform:translate(-50%,-50%); z-index:99998;
  transition:transform .1s, width .3s, height .3s;
}

/* SCROLL PROGRESS */
.scroll-progress {
  position:fixed; top:0; left:0; height:2px;
  background: var(--gradient); width:0%; z-index:99999;
}

/* RESPONSIVE */
@media(max-width:1100px){
  h1 { font-size:4rem; }
  .hero { flex-direction:column; padding-top:130px; gap:60px; }
  .hero-left { max-width:100%; }
  .kiosk { width:320px; }
  .badge { display:none; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .cta-wrapper { grid-template-columns:1fr; }
  .cta-left{text-align:center;}
}

@media(max-width:768px){
  h1 { font-size:3rem; }
  .section-header h2 { font-size:2.3rem; }
  .cta-left h2 { font-size:2.5rem; }
  .stats-grid, .problem-grid, .features-grid, .dashboard-cards { grid-template-columns:1fr; }
  .timeline-step { flex-direction:column; }
  .timeline-track { display:none; }
  .testimonial-card { min-width:280px; }
  .nav-links, .nav-btn { display:none; }
  .hamburger { display:flex; }
  .kiosk { width:100%; max-width:360px; margin:0 auto; }
  .dashboard { flex-direction:column; }
  .dashboard-sidebar { width:100%; flex-direction:row; align-items:center; padding:16px 20px; flex-wrap:wrap; gap:10px; }
  .dashboard-logo { margin-bottom:0; }
  .sidebar-nav { display:flex; gap:4px; flex-wrap:wrap; }
  .sidebar-status { display:none; }
  .footer-content { flex-direction:column; text-align:center; }
  .trust-strip { flex-direction:column; align-items:flex-start; gap:16px; }
  .hero-stats { flex-wrap:wrap; gap:16px; }
  .mini-divider { display:none; }
}
@media(max-width:500px){
    h1{
        font-size:2.7rem;
    }
}