/* ═══════════════════════════════════════
   CHARLIE — Custom CSS
   Vanilla, no build step needed
   ═══════════════════════════════════════ */

:root {
  --primary: #111F3E;
  --primary-dark: #0d172b;
  --primary-light: #1E3564;
  --accent: #FF6B47;
  --accent-light: #ff8c74;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--gray-700);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.text-accent { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SECTION BASES ─── */
.section-white { background: white; padding: 6rem 1rem; }
.section-gray  { background: var(--gray-50); padding: 6rem 1rem; }
.section-dark  { background: var(--primary); padding: 6rem 1rem; position: relative; overflow: hidden; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.section-title.text-white { color: white; }
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* ─── BADGES ─── */
.badge-orange {
  display: inline-block;
  background: rgba(255,107,71,0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}
.badge-orange-dark {
  display: inline-block;
  background: rgba(255,107,71,0.15);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

/* ─── NAVBAR ─── */
.navbar {
  background: transparent !important;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 100;
}
.navbar.scrolled {
  background: rgba(17,31,62,0.95) !important;
}
.navbar.scrolled {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.logo-img { height: 86px; width: auto; display: block; transition: height 0.3s; }
.navbar.scrolled .logo-img { height: 48px; }
.nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, font-size 0.3s, border-color 0.2s;
}
.navbar.scrolled .nav-link { font-size: 1rem; }
.nav-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.9);
}
.btn-primary-sm {
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s, font-size 0.3s;
}
.navbar.scrolled .btn-primary-sm { font-size: 0.875rem; }
.btn-primary-sm:hover {
  background: #e55a38;
  box-shadow: 0 8px 24px rgba(255,107,71,0.35);
  transform: translateY(-1px);
  color: white;
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 1rem; font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, font-size 0.3s, box-shadow 0.2s, transform 0.2s;
}
.navbar.scrolled .lang-btn { font-size: 0.8rem; }
.lang-btn:hover {
  background: rgba(255,255,255,0.24);
  color: white;
  box-shadow: 0 8px 24px rgba(15,23,42,0.4);
  transform: translateY(-1px);
}
.flag {
  display: inline-block;
  width: 22px;
  height: 14px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.1);
}
.flag-nl {
  background: linear-gradient(to bottom, #ae1c28 0 33%, #ffffff 33% 66%, #21468b 66% 100%);
}
.flag-en {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cg stroke='%23fff' stroke-width='6'%3E%3Cpath d='M0 0L60 30M60 0L0 30'/%3E%3Cpath d='M30 0V30M0 15H60'/%3E%3C/g%3E%3Cg stroke='%23C8102E' stroke-width='4'%3E%3Cpath d='M0 0L60 30M60 0L0 30'/%3E%3C/g%3E%3Cg stroke='%23C8102E' stroke-width='6'%3E%3Cpath d='M30 0V30M0 15H60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.flag-de {
  background: linear-gradient(to bottom, #000000 0 33%, #dd0000 33% 66%, #ffce00 66% 100%);
}
.lang-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: none;
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 0.75rem 1rem;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover { background: rgba(255,255,255,0.1); color: white; }
.lang-option.active { background: rgba(255,107,71,0.2); color: white; font-weight: 600; }

/* Hamburger + mobile menu */
.hamburger { background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; position: relative; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--primary-dark);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 100px 2rem 2.5rem;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.mobile-nav-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link::after {
  content: "→";
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: white;
  padding-left: 4px;
}
.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-link.active { color: var(--accent-light); }
.mobile-nav-link.active::after { color: var(--accent-light); }
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2.5rem;
}
.mobile-lang-row {
  display: flex;
  gap: 0.75rem;
}
.mobile-lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-lang-btn .flag { width: 22px; height: 14px; }
.mobile-lang-btn:hover { background: rgba(255,255,255,0.14); color: white; }
.mobile-lang-btn.active {
  background: rgba(255,107,71,0.18);
  border-color: rgba(255,107,71,0.4);
  color: white;
}
.btn-primary-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255,107,71,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary-full:hover {
  background: #e55a38;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255,107,71,0.4);
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-video-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-poster {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  pointer-events: none; border: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(17, 31, 62, 0.7);
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-blob-right { width: 600px; height: 600px; background: rgba(255,107,71,0.05); top: 100px; right: -100px; }
.hero-blob-left  { width: 400px; height: 400px; background: rgba(255,255,255,0.04); bottom: 0; left: -100px; }

.hero-content {
  position: relative;
  padding: 6rem 1rem 4rem;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,71,0.15);
  border: 1px solid rgba(255,107,71,0.3);
  color: var(--accent-light);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 999px;
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 1.5rem;
}
.hero-title-line {
  display: block;
}
.hero-title-accent {
  color: var(--accent);
}
.hero-title .gradient-text { display: block; }
.hero-desc { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.7; max-width: 520px; margin-bottom: 1.75rem; }
.hero-highlights { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.hero-highlights li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.hero-highlights li::before {
  content: "";
  display: inline-block; width: 20px; height: 20px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8622A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 11 12 14 22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") center/contain no-repeat;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white; text-decoration: none;
  font-weight: 600; padding: 1rem 1.75rem; border-radius: 12px;
  transition: all 0.2s;
}
.btn-hero-primary:hover { background: #e55a38; box-shadow: 0 20px 40px rgba(255,107,71,0.3); transform: translateY(-2px); color: white; }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
  text-decoration: none; font-weight: 500; padding: 1rem 1.75rem; border-radius: 12px;
  transition: all 0.2s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.4); color: white; }

.hero-trust { display: flex; align-items: center; gap: 1.25rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-avatars { display: flex; }
.hero-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  object-fit: cover;
  margin-right: -10px;
  background: white;
}
.hero-stars { color: #facc15; font-size: 0.85rem; letter-spacing: 2px; }
.hero-trust-text { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }
.hero-trust-text strong { color: rgba(255,255,255,0.8); }

/* Kiosk hero */
.kiosk-wrapper { position: relative; display: inline-block; }
.kiosk-wrapper .kiosk-glow {
  position: absolute; inset: 0;
  background: rgba(255,107,71,0.2); filter: blur(60px); border-radius: 50%;
  transform: scale(0.75) translateY(60px);
}
.kiosk-img { position: relative; width: 280px; max-width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); }
.kiosk-card {
  position: absolute;
  background: white; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 10px;
}
.kiosk-card-left { left: -80px; top: 80px; width: 210px; }
.kiosk-card-right { right: -50px; bottom: 100px; width: 170px; flex-direction: column; align-items: flex-start; }
.kiosk-card-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bg-success-light { background: #dcfce7; }
.kiosk-card-label { font-size: 0.7rem; color: #9ca3af; margin: 0; }
.kiosk-card-name  { font-size: 0.85rem; font-weight: 700; color: #1f2937; margin: 0; }
.company-tag { font-size: 0.7rem; background: #f1f5f9; color: #475569; padding: 2px 8px; border-radius: 999px; }
.avatar-badge {
  position: absolute; right: -20px; top: 20px;
  width: 60px; height: 60px; border-radius: 50%;
  border: 4px solid white; box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  overflow: hidden;
}
.avatar-badge img { width: 100%; height: 100%; object-fit: cover; }

.hero-divider { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.15); }

/* ─── LOGO BAR ─── */
.logobar-section { background: white; padding: 3rem 1rem; border-bottom: 1px solid var(--gray-100); }
.logobar-title { text-align: center; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-400); margin-bottom: 2rem; }
.logobar-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 2.5rem; }
.logo-item { font-size: 1rem; font-weight: 700; color: #d1d5db; cursor: default; -webkit-user-select: none; user-select: none; transition: color 0.2s; letter-spacing: -0.01em; }
.logo-item:hover { color: #9ca3af; }

/* ─── FEATURES ─── */
.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 1.5rem;
  transition: all 0.3s;
  cursor: default;
}
.feature-card:hover {
  background: white;
  border-color: var(--gray-100);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.feature-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ─── HOW IT WORKS ─── */
.hiw-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.hiw-blob-right { width: 400px; height: 400px; background: rgba(255,107,71,0.05); top: 0; right: -100px; }
.hiw-blob-left  { width: 260px; height: 260px; background: rgba(255,255,255,0.04); bottom: 0; left: -60px; }

.hiw-flow { display: flex; align-items: stretch; justify-content: center; gap: 1.5rem; }
.hiw-card {
  flex: 1; max-width: 340px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hiw-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.hiw-card-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: rgba(255,255,255,0.03); }
.hiw-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hiw-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.hiw-step-num {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s;
}
.hiw-card.hiw-active .hiw-step-num,
.hiw-card:hover .hiw-step-num {
  background: var(--accent);
  box-shadow: 0 6px 14px rgba(255,107,71,0.35);
}
.hiw-card-title { font-size: 1rem; font-weight: 700; color: white; }
.hiw-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }
.hiw-arrow { display: flex; align-items: center; flex-shrink: 0; }

/* ─── KIOSK DEMO ─── */
.kiosk-frame-wrapper { display: flex; flex-direction: column; align-items: center; position: relative; }
.kiosk-frame {
  background: linear-gradient(180deg, #1c2a40, #0d1a2e);
  border-radius: 24px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  width: 300px;
}
.kiosk-bezel {
  background: black;
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(30,53,100,0.5);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 0 0 1px rgba(30,53,100,0.2);
}
.kiosk-screen { height: 520px; border-radius: 12px; overflow: hidden; background: #0B1E3D; }
.kiosk-bottom-panel {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; margin-top: 10px;
}
.kiosk-led { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.kiosk-led-green { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.8); }
.kiosk-brand-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.2); }
.kiosk-pole { width: 36px; height: 60px; background: linear-gradient(180deg, #2a2a3e, #18182a); }
.kiosk-base { width: 160px; height: 14px; background: linear-gradient(180deg, #222235, #14141f); border-radius: 8px; }
.kiosk-glow-bottom { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 30px; background: rgba(30,53,100,0.3); filter: blur(20px); border-radius: 50%; pointer-events: none; }

.kiosk-instructions { max-width: 360px; }
.demo-step { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.demo-step-num { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: white; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.demo-step-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.demo-step-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0; }
.demo-tip { background: rgba(17,31,62,0.07); border: 1px solid rgba(17,31,62,0.2); border-radius: 16px; padding: 1rem; display: flex; gap: 0.75rem; align-items: flex-start; margin-top: 1.5rem; }
.demo-tip-text { font-size: 0.875rem; color: var(--primary); font-weight: 500; margin: 0; line-height: 1.5; }

/* ─── KIOSK SCREEN (interactive) ─── */
#kioskScreen { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.ks-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 8px 16px; background: rgba(0,0,0,0.3); font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.ks-logobar { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: -0.01em; background: rgba(30,53,100,0.4); }
.ks-logo-icon { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, var(--primary-light), #3a6bc4); display: flex; align-items: center; justify-content: center; }
.ks-accent { color: #FF6B47; }
.ks-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding: 16px; }
/* Idle screen company mini-grid */
.ks-company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.ks-company-mini { border-radius: 10px; padding: 8px; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 6px; }
.ks-company-mini-name { font-size: 0.65rem; font-weight: 700; color: var(--primary-light); }
.ks-company-mini-floor { font-size: 0.6rem; color: #6b7280; }
/* Start button — blue like kiosk primary */
.ks-btn-start { width: 100%; background: var(--primary-light); color: white; font-size: 0.875rem; font-weight: 700; padding: 12px; border-radius: 16px; border: none; cursor: pointer; box-shadow: 0 6px 16px rgba(30,53,100,0.45); transition: background 0.2s, transform 0.1s; }
.ks-btn-start:hover { background: var(--primary); }
.ks-btn-start:active { transform: scale(0.97); }
/* Company cards — white cards like real kiosk */
.ks-company-btn { width: 100%; display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 12px; border: none; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.1); cursor: pointer; text-align: left; margin-bottom: 8px; transition: transform 0.2s, box-shadow 0.2s; }
.ks-company-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
.ks-company-emoji { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; background: var(--gray-50); }
.ks-company-name { font-size: 0.8rem; font-weight: 700; color: var(--primary-light); }
.ks-company-floor { font-size: 0.7rem; color: #6b7280; }
.ks-chevron { margin-left: auto; color: var(--primary-light); font-size: 0.7rem; }
.ks-back { display: flex; align-items: center; gap: 4px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.7rem; cursor: pointer; margin-bottom: 10px; padding: 0; }
.ks-back:hover { color: white; }
.ks-search { display: flex; align-items: center; gap: 6px; background: white; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 6px 10px; margin-bottom: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.ks-search input { background: none; border: none; outline: none; color: var(--primary-light); font-size: 0.75rem; flex: 1; }
.ks-search input::placeholder { color: #9ca3af; }
/* Employee cards — white cards like real kiosk */
.ks-emp-btn { width: 100%; display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 10px; border: none; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.08); cursor: pointer; text-align: left; margin-bottom: 6px; transition: transform 0.2s, box-shadow 0.2s; }
.ks-emp-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(0,0,0,0.12); }
.ks-emp-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: white; flex-shrink: 0; }
.ks-emp-name { font-size: 0.75rem; font-weight: 700; color: var(--primary-light); }
.ks-emp-role { font-size: 0.65rem; color: #6b7280; }
.ks-progress { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.ks-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary-light), #4ade80); border-radius: 2px; transition: width 0.1s; }
.ks-cancel-btn { width: 100%; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; background: rgba(239,68,68,0.2); border: 1px solid rgba(239,68,68,0.3); color: #f87171; font-size: 0.75rem; font-weight: 600; padding: 8px; border-radius: 10px; cursor: pointer; }
.ks-cancel-btn:hover { background: rgba(239,68,68,0.3); }
.ks-ping { position: absolute; width: 80px; height: 80px; border-radius: 50%; opacity: 0.2; animation: ping 1.5s ease-out infinite; }
.ks-pulse { position: absolute; width: 68px; height: 68px; border-radius: 50%; opacity: 0.3; animation: pulse 1.5s ease-in-out infinite; }
@keyframes ping  { 0% { transform: scale(1); opacity: 0.2; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.ks-success-icon { position: relative; width: 60px; height: 60px; border-radius: 50%; border: 2px solid #4ade80; background: rgba(74,222,128,0.2); display: flex; align-items: center; justify-content: center; color: #4ade80; font-size: 1.5rem; }

/* ─── KIOSK SHARED SCREEN BASE ─── */
.ks-idle-screen,
.ks-inner-screen { position: relative; display: flex; flex-direction: column; height: 100%; background: #0B1E3D; overflow: hidden; -webkit-user-select: none; user-select: none; }
.ks-deco-tl { position: absolute; top: 0; left: 0; width: 90px; height: 90px; background: #E8622A; clip-path: polygon(0 0, 100% 0, 0 100%); opacity: 0.9; pointer-events: none; }
.ks-deco-tr { position: absolute; top: 0; right: 0; width: 70px; height: 70px; background: #1a3666; clip-path: polygon(100% 0, 0 0, 100% 100%); pointer-events: none; }
/* ─── IDLE: flags ─── */
.ks-flags { position: absolute; top: 10px; right: 10px; display: flex; gap: 3px; z-index: 5; }
.ks-flag-btn { background: none; border: none; cursor: pointer; font-size: 0.9rem; padding: 2px; opacity: 0.55; transition: opacity 0.2s, transform 0.1s; line-height: 1; border-radius: 3px; }
.ks-flag-btn:hover { opacity: 0.85; }
.ks-flag-btn.ks-flag-active { opacity: 1; transform: scale(1.12); }
/* ─── IDLE: avatar row ─── */
.ks-avatar-row { display: flex; align-items: flex-end; padding: 36px 18px 0; gap: 12px; flex-shrink: 0; }
.ks-speech-bubble { background: white; border-radius: 12px 12px 12px 0; padding: 8px 12px; font-size: 0.68rem; font-weight: 700; color: #0B1E3D; box-shadow: 0 2px 10px rgba(0,0,0,0.25); line-height: 1.35; align-self: flex-end; margin-bottom: 12px; max-width: 95px; }
.ks-avatar-circle { width: 110px; height: 110px; border-radius: 50%; background: white;  flex-shrink: 0; margin-left: auto; }
.ks-avatar-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* ─── IDLE: greeting + button ─── */
.ks-greeting { padding: 14px 20px 6px; }
.ks-greeting-text { color: white; font-size: 1.3rem; font-weight: 900; line-height: 1.25; margin: 0; }
.ks-greeting-q { display: block; }
.ks-action-btns { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: center; }
.ks-orange-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #E8622A; color: white; font-size: 0.95rem; font-weight: 700; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s, transform 0.1s; text-align: left; }
.ks-orange-btn:hover { background: #d05520; }
.ks-orange-btn:active { transform: scale(0.98); }
.ks-btn-arrow { font-size: 1.2rem; flex-shrink: 0; margin-left: 8px; }
.ks-app-footer { text-align: right; padding: 8px 14px 10px; font-size: 0.6rem; color: rgba(255,255,255,0.25); margin-top: auto; flex-shrink: 0; }
.ks-footer-sq { color: #E8622A; }
/* ─── INNER SCREENS: back button (orange square) ─── */
.ks-back-square { position: absolute; top: 12px; left: 12px; z-index: 10; width: 36px; height: 36px; border-radius: 8px; background: #E8622A; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; line-height: 1; transition: background 0.2s, transform 0.1s; }
.ks-back-square:hover { background: #d05520; }
.ks-back-square:active { transform: scale(0.95); }
/* ─── COMPANIES SCREEN: grid ─── */
.ks-inner-body { flex: 1; overflow-y: auto; padding: 60px 14px 14px; display: flex; flex-direction: column; }
.ks-company-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ks-company-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px 8px; border: none; border-radius: 8px; cursor: pointer; text-align: center; transition: transform 0.15s, box-shadow 0.15s; min-height: 80px; }
.ks-company-card:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.3); }
.ks-company-card:active { transform: scale(0.97); }
.ks-company-card-name { font-size: 0.8rem; font-weight: 800; color: white; line-height: 1.2; }
.ks-company-card-floor { font-size: 0.6rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
/* ─── EMPLOYEES SCREEN: modal overlay ─── */
.ks-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 20; }
.ks-modal { position: absolute; top: 54px; left: 12px; right: 12px; z-index: 30; background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.ks-modal-header { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #e5e7eb; }
.ks-modal-company-tile { width: 44px; height: 34px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.ks-modal-company-name { font-size: 0.85rem; font-weight: 800; color: #0B1E3D; }
.ks-modal-instruction { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #f8f9fa; border-bottom: 1px solid #e5e7eb; }
.ks-modal-avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #e5e7eb; }
.ks-modal-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ks-modal-instruction-text { font-size: 0.7rem; color: #6b7280; line-height: 1.4; }
.ks-modal-employees { padding: 0; }
.ks-modal-emp-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #f0f0f0; }
.ks-modal-emp-row:last-child { border-bottom: none; }
.ks-modal-emp-name { font-size: 0.8rem; font-weight: 600; color: #1f2937; }
.ks-call-btn { background: #E8622A; color: white; border: none; border-radius: 8px; padding: 7px 16px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: background 0.15s, transform 0.1s; }
.ks-call-btn:hover { background: #d05520; }
.ks-call-btn:active { transform: scale(0.96); }
.ks-modal-footer { padding: 10px 14px; border-top: 1px solid #e5e7eb; display: flex; justify-content: center; }
.ks-modal-back-sq { width: 36px; height: 36px; border-radius: 8px; background: #E8622A; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; transition: background 0.2s, transform 0.1s; }
.ks-modal-back-sq:hover { background: #d05520; }
.ks-modal-back-sq:active { transform: scale(0.95); }

/* ─── PRICING ─── */
.pricing-toggle { display: inline-flex; background: white; border: 1px solid var(--gray-200); border-radius: 14px; padding: 4px; }
.toggle-btn { background: none; border: none; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--gray-500); border-radius: 10px; cursor: pointer; transition: all 0.2s; }
.toggle-btn.active { background: var(--primary); color: white; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.save-badge { display: inline-block; background: #dcfce7; color: #15803d; font-size: 0.7rem; font-weight: 700; padding: 2px 6px; border-radius: 999px; margin-left: 6px; }

.plan-card { background: white; border: 1px solid var(--gray-200); border-radius: 20px; padding: 2rem; transition: all 0.3s; }
.plan-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.plan-card.popular { background: var(--primary); border-color: transparent; box-shadow: 0 20px 40px rgba(17,31,62,0.3); transform: scale(1.04); }
.plan-card.popular:hover { transform: scale(1.04) translateY(-2px); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; color: white; white-space: nowrap; }
.plan-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.plan-icon svg { width: 18px; height: 18px; }
.plan-price { font-size: 3rem; font-weight: 800; line-height: 1; }
.plan-highlights { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.plan-highlights li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; }
.check-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.btn-plan { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 0.875rem; border-radius: 12px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-plan-dark { background: var(--primary); color: white; }
.btn-plan-dark:hover { background: var(--primary-dark); color: white; }
.btn-plan-orange { background: var(--accent); color: white; box-shadow: 0 6px 16px rgba(255,107,71,0.35); }
.btn-plan-orange:hover { background: #e55a38; color: white; }

.comparison-table-wrapper { background: white; border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.comparison-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--gray-100); }
.comparison-title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 0; }
#comparisonTable th, #comparisonTable td { padding: 10px 16px; }
#comparisonTable th { background: var(--gray-50); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); font-weight: 600; }
#comparisonTable td { font-size: 0.875rem; color: var(--gray-700); }
#comparisonTable tr:nth-child(even) td { background: rgba(249,250,251,0.5); }
.check-green { color: var(--accent); font-weight: bold; font-size: 1rem; }
.cross-gray { color: #d1d5db; font-weight: bold; font-size: 1rem; }

/* ─── TESTIMONIALS ─── */
.stat-card { background: var(--gray-50); border-radius: 16px; text-align: center; padding: 1.5rem; }
.stat-value { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--gray-500); margin-top: 4px; }

.testimonial-card {
  background: white; border: 1px solid var(--gray-100); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: all 0.3s; cursor: default;
}
.testimonial-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.testimonial-photo-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.testimonial-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.testimonial-card:hover .testimonial-photo { transform: scale(1.04); }
.testimonial-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.testimonial-stars { color: #facc15; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.875rem; color: var(--gray-700); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.testimonial-divider { border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.testimonial-author { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.testimonial-role { font-size: 0.75rem; color: var(--gray-400); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border-radius: 16px; border: 1px solid var(--gray-200); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-item.open { border-color: rgba(17,31,62,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; }
.faq-question { font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.faq-chevron { font-size: 1rem; color: var(--gray-400); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* ─── CONTACT ─── */
.contact-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.contact-blob-left  { width: 400px; height: 400px; background: rgba(255,107,71,0.05); top: 0; left: -100px; }
.contact-blob-right { width: 260px; height: 260px; background: rgba(255,255,255,0.04); bottom: 0; right: -60px; }

.contact-team-box { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
.contact-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.contact-benefit { display: flex; align-items: flex-start; gap: 8px; }
.contact-benefit-icon { color: var(--accent); flex-shrink: 0; font-size: 0.875rem; margin-top: 2px; }
.contact-benefit-label { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.contact-benefit-detail { font-size: 0.75rem; color: var(--gray-500); }

.contact-form-box { background: white; border-radius: 20px; padding: 2rem; }
.contact-success { background: white; border-radius: 20px; padding: 3rem 2rem; text-align: center; }
.contact-success .success-icon { width: 60px; height: 60px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #16a34a; margin: 0 auto 1rem; }
.contact-form-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; }
.form-label-custom { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input {
  width: 100%; border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 0.6rem 0.875rem; font-size: 0.875rem; color: var(--gray-700);
  outline: none; transition: border-color 0.2s; background: white;
  font-family: inherit;
}
.form-input:focus { border-color: var(--primary); }
.btn-form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: white; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; padding: 0.875rem; border-radius: 12px;
  transition: all 0.2s; font-family: inherit;
}
.btn-form-submit:hover { background: #e55a38; box-shadow: 0 8px 20px rgba(255,107,71,0.3); }

/* ─── FOOTER ─── */
.footer { background: var(--primary-dark); color: white; padding: 4rem 1rem 2rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-social { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.footer-social:hover { background: rgba(255,255,255,0.2); color: white; }
.footer-heading { font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links li { display: block; }
.footer-link-text, .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-link-text:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  background: var(--primary);
  padding: 10rem 1rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* ─── NAV ACTIVE STATE ─── */
.nav-link.active { color: white; font-weight: 600; }
.mobile-nav-link.active { color: var(--accent); font-weight: 600; }

/* ─── USP CARDS ─── */
.usp-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.usp-card:hover {
  background: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.usp-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.usp-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.usp-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ─── FEATURE CATEGORY HEADERS ─── */
.feature-cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* ─── HARDWARE PRICING BLOCK ─── */
.hardware-option {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}
.hardware-option-alt {
  background: var(--gray-50);
}
.hardware-option-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* ─── CONTACT INFO CARD ─── */
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.75rem 0;
}
.contact-info-item:not(:last-child) {
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.contact-info-value { font-size: 0.875rem; color: var(--gray-700); text-decoration: none; display: block; }
a.contact-info-value:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .kiosk-card-left, .kiosk-card-right, .avatar-badge { display: none; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-content { padding: 5rem 1rem 3rem; }
  .plan-card.popular { transform: scale(1); }
  .page-hero { padding: 8rem 1rem 3rem; }
  .hiw-flow { flex-direction: column; align-items: center; }
  .hiw-card { max-width: 100%; }
  .hiw-arrow { transform: rotate(90deg); justify-content: center; }
}
