/* ═══════════════════════════════════════
   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: 110;
  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: 2rem 2rem 2.5rem;
}
.mobile-menu-logo {
  margin-bottom: 2rem;
}
.mobile-menu-logo .logo-img {
  height: 56px;
}
.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 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
}

/* Video background */
.hero-video-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-poster {
  position: absolute;
  max-width: none;
  top: 50%; left: 50%;
  width: 100vw; height: 56vw;
  transform: translate(-50%, -50%);
  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);
  z-index: 1;
}

/* Header wrapper - full overlay */
.l-header-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
  display: flex;
}
.l-header-container {
  width: 80%;
  max-width: 1300px;
  margin: auto;
  color: #fff;
  position: relative;
  z-index: 99;
}
.l-header-inner {
  width: 650px;
  max-width: 100%;
  position: relative;
  z-index: 15;
}

/* Hero text styles */
.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-desc {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 1.5rem;
}
.hero-highlights {
  list-style: none; padding: 0;
  margin: 0 0 1.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.hero-highlights li {
  display: flex; align-items: center; gap: 10px;
  color: #ffffff; font-size: 0.95rem; font-weight: 600;
}
.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='%23FF6F4C' 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;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 1.75rem;
}
.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;
}

.l-header-img {
  position: absolute;
  right: 7%;
  top: 108px;
  height: 600px;
  z-index: 10;
}
.l-header-person {
  position: absolute;
  right: 1%;
  top: 108px;
  height: 590px;
  z-index: 10;
}

/* Right white panel with SVG decoration */
.header-right {
  position: absolute;
  top: 0;
  right: 0;
  width: fit-content;
  background-color: white;
  height: 100%;
}
.header-right::after {
  content: "";
  background-color: white;
  position: absolute;
  left: -200px;
  top: 0;
  width: 1000px;
  height: 100%;
  z-index: -1;
}
.header-right::before {
  content: "";
  background-image: url("images/bg_header_before.svg");
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 13vw);
  width: 300px;
  z-index: 0;
  background-size: 100% 100%;
}

/* Bottom wave decoration */
.header-left {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20vw;
  width: 100%;
}
.header-left::after {
  content: "";
  background-image: url("images/bg_header_after.svg");
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
}

/* ─── 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--raster {
  background: #f0f2f5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 8px;
}
.feature-icon--raster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.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: var(--gray-50); border: 1px solid var(--gray-100);
  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.08); }
.hiw-card-img-wrap { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100); }
.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: var(--primary);
  background: var(--gray-100); flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s;
}
.hiw-card.hiw-active .hiw-step-num,
.hiw-card:hover .hiw-step-num { color: white; }
.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: var(--primary); }
.hiw-card-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; margin: 0; }
.hiw-arrow { display: flex; align-items: center; flex-shrink: 0; }

/* ─── KIOSK DEMO (optimized_demo.webp 2403×1344) ─── */
.section-demo-kiosk {
  background: #080a0f;
  line-height: 1;
  overflow: hidden;
  position: relative;
  /* Calibrated to 3072×1878 demo.webp — shared by stage, hint, ghost */
  --demo-slot-l: 42.6%;
  --demo-slot-t: 30.5%;
  --demo-slot-w: 15%;
  --demo-slot-h: 43.7%;
}
.demo-kiosk-stage {
  position: relative;
  width: 100%;
  transform-origin: calc(var(--demo-slot-l) + var(--demo-slot-w) / 2) 49.1%;
}
.demo-kiosk-photo {
  display: block;
  width: 100%;
  height: auto;
}
.demo-kiosk-screen-slot {
  position: absolute;
  left: var(--demo-slot-l);
  top: var(--demo-slot-t);
  width: var(--demo-slot-w);
  height: var(--demo-slot-h);
  overflow: hidden;
  border-radius: 6px;
  pointer-events: auto;
}
.demo-kiosk-screen-slot #kioskScreen {
  width: 320px;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  background: #0B1E3D;
  transform-origin: top left;
}

/* Hint text — lives in the section, not inside the scaling stage */
.demo-kiosk-hint {
  position: absolute;
  top: 18%;
  left: calc(var(--demo-slot-l) + var(--demo-slot-w) / 2);
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(0.82rem, 1.05vw, 1.05rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 0.55rem 1.35rem;
  background: rgba(8, 10, 15, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 30;
}

/* Ghost hand animation */
.ghost-hand {
  position: absolute;
  left: calc(var(--demo-slot-l) + var(--demo-slot-w) / 2);
  top: calc(var(--demo-slot-t) + var(--demo-slot-h) * 0.56);
  /* base size — will be counter-scaled at responsive breakpoints */
  --gh-size: 2rem;
  font-size: var(--gh-size);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.5s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  transform-origin: center bottom;
  transform: translateX(-50%) translateY(-50%);
}
.ghost-hand.ghost-visible {
  opacity: 0.7;
  animation: ghost-tap 1.5s ease-in-out infinite;
}
@keyframes ghost-tap {
  0%   { transform: translateX(-50%) translateY(-50%) scale(1) rotate(-5deg); }
  35%  { transform: translateX(-50%) translateY(calc(-50% + 8px)) scale(0.84) rotate(-5deg); }
  55%  { transform: translateX(-50%) translateY(calc(-50% + 6px)) scale(0.88) rotate(-5deg); }
  100% { transform: translateX(-50%) translateY(-50%) scale(1) rotate(-5deg); }
}

/* Base step classes (used outside overlay too) */
.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; }
.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; }

/* ─── CALL MODAL OVERLAY ─── */
.ks-call-modal {
  position: absolute;
  inset: 0;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  background: white;
  border-radius: 16px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 10;
  max-height: calc(100% - 32px);
  overflow: hidden;
}
.ks-call-modal-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(32,178,170,0.4);
  background: rgba(32,178,170,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.ks-call-modal-name  { font-size: 0.95rem; font-weight: 800; color: #111; margin: 0 0 2px; text-align: center; }
.ks-call-modal-role  { font-size: 0.65rem; color: #555; margin: 0; text-align: center; }
.ks-call-modal-company { font-size: 0.6rem; color: #888; margin: 0 0 10px; text-align: center; }
.ks-call-modal-status { font-size: 0.72rem; font-weight: 600; color: #20b2aa; margin: 0 0 2px; text-align: center; }
.ks-call-modal-timer  { font-size: 1.3rem; font-weight: 800; color: #111; margin: 0 0 10px; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.ks-call-modal-instruction { font-size: 0.65rem; color: #444; text-align: center; line-height: 1.5; margin: 0 0 12px; }
.ks-call-progress { width: 100%; margin-bottom: 12px; background: rgba(0,0,0,0.08); }
.ks-call-progress .ks-progress-bar { background: linear-gradient(90deg, #20b2aa, #4ade80); }
.ks-end-call-btn {
  width: 100%;
  background: #E8622A;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.ks-end-call-btn:hover { background: #d05520; }

/* ─── KIOSK SHARED SCREEN BASE ─── */
.ks-idle-screen,
.ks-inner-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #0B1E3D;
  background-image: url('images/charlie_bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: 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.8rem; 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; justify-content: flex-end; padding: 24px 18px 0; flex-shrink: 0; }
.ks-speech-bubble { width: 100%; text-align: center; padding: 8px 18px 0; font-size: 0.72rem; font-weight: 700; color: white; line-height: 1.25; margin: 0; flex-shrink: 0; }
.ks-avatar-circle { width: 92px; height: 92px; 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: 28px 18px 6px; min-height: 116px; }
.ks-greeting-text { color: white; font-size: 1.18rem; font-weight: 800; line-height: 1.2; margin: 0; letter-spacing: -0.01em; max-width: 260px; }
.ks-action-btns { padding: 6px 18px 0; display: flex; flex-direction: column; gap: 10px; justify-content: flex-start; }
.ks-orange-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #E8622A; color: white; font-size: 0.8rem; 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: 0.92rem; flex-shrink: 0; margin-left: 8px; }
.ks-app-footer { text-align: right; padding: 10px 14px 8px; font-size: 0.5rem; color: rgba(255,255,255,0.32); margin-top: auto; flex-shrink: 0; }
.ks-footer-sq { color: #E8622A; }
.ks-idle-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.ks-idle-banner-img {
  display: block;
  width: 100%;
  height: auto;
}
/* ─── 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: 80px 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); flex-shrink: 0; }
.plan-icon svg { width: 18px; height: 18px; }
.plan-icon-sm { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.plan-icon-sm svg { width: 14px; height: 14px; }
.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; }

/* ─── ADD-ONS SECTION ─── */
.addons-badge { display: inline-block; background: rgba(255,107,71,0.1); color: var(--accent); font-size: 0.8rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em; }
.addons-step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.25rem; scroll-margin-top: 100px; }
.addons-step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.addons-step-title { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 0; }
.addons-step-sub { font-size: 1rem; color: var(--gray-400); margin: 0 0 1.75rem; padding-left: 50px; margin-top: -0.5rem; }

.addons-plan-box { background: white; border: 1px solid var(--gray-200); border-radius: 20px; padding: 1.75rem; margin-bottom: 2.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.addons-plan-btn { background: white; border: 2px solid var(--gray-200); border-radius: 14px; padding: 1.25rem; text-align: left; cursor: pointer; transition: all 0.2s; width: 100%; }
.addons-plan-btn:hover { border-color: var(--gray-300); }
.addons-plan-btn.active { border-color: var(--accent); background: rgba(255,107,71,0.05); }
.addons-plan-btn-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.addons-plan-btn.active .addons-plan-btn-name { color: var(--accent); }
.addons-plan-btn-price { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.addons-plan-btn.active .addons-plan-btn-price { color: var(--accent); }
.addons-plan-feature { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--gray-500); }
.addons-plan-feature svg { color: var(--gray-400); flex-shrink: 0; }
.addons-plan-btn.active .addons-plan-feature svg { color: var(--accent); }

.addon-card { background: white; border: 2px solid var(--gray-200); border-radius: 16px; display: flex; flex-direction: column; transition: border-color 0.2s, box-shadow 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; }
.addon-card.selected { border-color: var(--accent); }
.addon-card.selected-blue { border-color: #0891b2; }
.addon-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.addon-card-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; font-weight: 700; color: white; padding: 4px 14px; border-radius: 999px; white-space: nowrap; z-index: 1; }
.addon-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.875rem; background: var(--gray-100); color: var(--gray-500); transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.addon-card.selected .addon-card-icon { background: var(--accent); color: white; }
.addon-card.selected-blue .addon-card-icon { background: #0891b2; color: white; }
.addon-card-name { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.addon-card-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.5; margin-bottom: 0.875rem; }
.addon-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.875rem; }
.addon-tag-monthly { background: #ecfdf5; color: #065f46; font-size: 0.8rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.addon-tag-setup { background: #eff6ff; color: #1d4ed8; font-size: 0.8rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.addon-tag-onetime { background: #eff6ff; color: #1d4ed8; font-size: 0.8rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.addon-card-valueprop { font-size: 0.875rem; color: var(--gray-400); font-style: italic; flex: 1; margin-bottom: 1.25rem; }
.addon-card-toggle-btn { width: 100%; padding: 0.75rem; border-radius: 10px; border: none; cursor: pointer; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s; background: var(--gray-100); color: var(--gray-600); }
.addon-card-toggle-btn.selected { background: var(--accent); color: white; }
.addon-card-toggle-btn.selected-blue { background: #0891b2; color: white; }

.addon-card-expand-strip { width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; border-top: 1px solid var(--gray-100); background: #fafafa; border: none; cursor: pointer; transition: background 0.2s; border-radius: 0 0 14px 14px; }
.addon-card-expand-strip:hover { background: var(--gray-100); }
.addon-card-expand-label { font-size: 0.8rem; color: #727375; transition: color 0.2s; }
.addon-card-expand-strip:hover .addon-card-expand-label { color: var(--gray-400); }
.addon-card-expand-chevron { font-size: 0.8rem; color: #d1d5db; transition: color 0.2s, transform 0.2s; display: inline-block; }
.addon-card-expand-strip:hover .addon-card-expand-chevron { color: var(--gray-400); }
.addon-card-expand-chevron.open { transform: rotate(180deg); }
.addon-card-detail { padding: 0.75rem 1.25rem 1.25rem; background: var(--gray-50); border-top: 1px solid var(--gray-100); font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; display: none; border-radius: 0 0 14px 14px; }
.addon-card-detail.open { display: block; }

/* Disabled add-on (not available for selected plan) */
.addon-card.addon-disabled {
  pointer-events: none;
  position: relative;
}
.addon-card.addon-disabled > * {
  opacity: 0.4;
}
/* light frosted overlay */
.addon-card.addon-disabled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(249, 250, 251, 0.70);
  border-radius: 16px;
  z-index: 1;
}
/* prominent centered badge */
.addon-card.addon-disabled::after {
  content: attr(data-disabled-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 78%;
  text-align: center;
  white-space: normal;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  color: white;
  background: var(--primary);
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(17, 31, 62, 0.35);
  pointer-events: auto;
  cursor: not-allowed;
}

.addons-summary { background: var(--primary); border-radius: 20px; padding: 2rem; color: white; }
.addons-summary-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.addons-summary-title { font-size: 1.1rem; font-weight: 700; color: white; margin: 0; }
.addons-summary-count { background: var(--accent); color: white; font-size: 0.85rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.addons-summary-lines { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 10px; }
.addons-summary-line { display: flex; justify-content: space-between; align-items: flex-start; }
.addons-summary-line-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.addons-summary-line-price { font-size: 0.9rem; font-weight: 600; color: white; }
.addons-summary-line-sub { font-size: 0.8rem; color: #c4b5fd; }
.addons-summary-addon-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); padding-right: 8px; }
.addons-summary-addon-price { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.addons-summary-addon-setup { font-size: 0.8rem; color: #c4b5fd; }
.addons-summary-empty { font-size: 0.8rem; color: rgba(255,255,255,0.25); font-style: italic; text-align: center; padding: 8px 0; }
.addons-summary-separator { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }
.addons-summary-totals { background: rgba(255,255,255,0.1); border-radius: 14px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: flex-end; }
.addons-summary-total-monthly-label { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.addons-summary-total-monthly-value { font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
.addons-summary-total-monthly-unit { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.45); }
.addons-summary-total-excl { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 6px; }
.addons-summary-total-setup-label { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; text-align: right; }
.addons-summary-total-setup-value { font-size: 1.25rem; font-weight: 700; color: #c4b5fd; line-height: 1; text-align: right; }
.addons-summary-cta-primary { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--accent); color: white; border: none; cursor: pointer; padding: 0.875rem; border-radius: 12px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: background 0.2s; font-family: inherit; }
.addons-summary-cta-primary:hover { background: #e04a00; color: white; }
.addons-summary-cta-secondary { display: flex; align-items: center; justify-content: center; width: 100%; background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); cursor: pointer; padding: 0.625rem; border-radius: 12px; font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.addons-summary-cta-secondary:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.addons-summary-footnote { font-size: 0.85rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 1.25rem; line-height: 1.5; }

/* ─── 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%;
  height: clamp(200px, 26vw, 270px);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}
.testimonial-card:hover .testimonial-photo { transform: scale(1.03); }
.testimonial-body { padding: 1.25rem 1.35rem; 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: 0 2rem 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: white; color: var(--primary); padding: 4rem 1rem 2rem; border-top: 1px solid var(--gray-100); }
.footer-tagline { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.footer-social { width: 32px; height: 32px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-500); transition: all 0.2s; }
.footer-social:hover { background: var(--gray-200); color: var(--primary); }
.footer-heading { font-size: 0.875rem; font-weight: 700; color: var(--primary); 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: var(--gray-500); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-link-text:hover { color: var(--primary); }
.footer-copy { font-size: 0.8rem; color: var(--gray-400); }

/* ─── PAGE HERO (subpages) ─── */
.page-hero {
  background: var(--primary);
  padding: 8.5rem 1rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .section-subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
  max-width: 520px;
}

/* ─── 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-icon--raster {
  background: #f0f2f5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 6px;
}
.usp-icon--raster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.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;
}

/* ─── ADD-ONS TEASER STRIP ─── */
.addons-teaser {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}
.addons-teaser:hover,
.addons-teaser:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(255,107,71,0.12);
  transform: translateY(-2px);
}
.addons-teaser-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.addons-teaser-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.addons-teaser-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
}
.addons-teaser-headline {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
}
.addons-teaser-caret {
  flex-shrink: 0;
  color: var(--gray-400);
  display: flex;
  align-items: center;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.addons-teaser-chevron {
  animation: bounce-down 1.6s ease-in-out infinite;
}
.addons-teaser:hover .addons-teaser-caret,
.addons-teaser:focus-visible .addons-teaser-caret {
  color: var(--accent);
}

/* ─── PRICING SELECTION CARD (contact page — left column) ─── */
.pscard {
  background: var(--primary);
  border-radius: 14px;
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 28px rgba(17,31,62,0.18);
  margin-bottom: 1.25rem;
}
.pscard-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  font-weight: 600;
}
.pscard-header-title { flex: 1; color: rgba(255,255,255,0.85); }
.pscard-badge {
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.pscard-body { padding: 0.875rem 1rem 1rem; }
.pscard-plan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.pscard-plan-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pscard-plan-info { flex: 1; min-width: 0; }
.pscard-plan-name { font-size: 0.9rem; font-weight: 700; color: white; }
.pscard-plan-billing { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 1px; }
.pscard-plan-price { font-size: 1rem; font-weight: 800; color: white; flex-shrink: 0; white-space: nowrap; }
.pscard-plan-price span { font-size: 0.72rem; font-weight: 400; color: rgba(255,255,255,0.45); }
.pscard-addons {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pscard-addon-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pscard-addon-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.85;
}
.pscard-addon-name { flex: 1; font-size: 0.74rem; color: rgba(255,255,255,0.65); }
.pscard-addon-prices { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.pscard-addon-price { font-size: 0.74rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.pscard-addon-setup { font-size: 0.67rem; color: #93c5fd; }
.pscard-totals {
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  padding: 0.7rem 0.875rem;
  margin-top: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pscard-total-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.pscard-total-price { font-size: 1.4rem; font-weight: 800; color: white; line-height: 1; }
.pscard-total-price span { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.45); }
.pscard-total-excl { font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-top: 3px; }
.pscard-total-onetime { text-align: right; }
.pscard-total-onetime-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.pscard-total-onetime-value { font-size: 0.95rem; font-weight: 700; color: #93c5fd; line-height: 1; }

/* ─── 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); }

/* (kiosk-girl styles moved to .l-header-person above) */

/* ─── ABOUT CHARLIE CARDS ─── */
.about-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.about-card:hover {
  background: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.about-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
}
.about-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.about-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ─── INTUITIVE SECTION ─── */
.intuitive-section {
  position: relative;
  overflow: hidden;
  background: white;
}
/* Dark navy angled shape — right side.
   The rotation trick from the original requires the element to bleed above the
   section, but overflow:hidden clips it to a flat line. Instead we encode the
   same diagonal geometry directly into the clip-path polygon:
     top-left  → (10%, 8%)  — angled: right side is higher than left
     top-right → (100%, 0%) — reaches the very top-right corner
     bot-right → (100%,100%)
     bot-left  → (0%,  90%) — matches the original's 88% bottom cut
   The left & top edges both angle upward toward the right, reproducing the
   rotate(-5deg) effect without needing overflow:visible. */
.intuitive-section::after {
  content: "";
  position: absolute;
  /* Match original reference block span/alignment */
  width: 58%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--primary);
  /* Top rises to the right, bottom stays horizontal, left edge leans '\' */
  clip-path: polygon(0% 10%, 100% 0%, 100% 100%, 8% 100%);
  z-index: 0;
}
.intuitive-inner {
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  /* Less top padding so the section top sits closer to the shape's top edge */
  padding: 2.75rem 2rem;
  position: relative;
  z-index: 1;
  gap: 3rem;
}
.intuitive-img-wrap {
  flex: 0 0 52%;
}
.intuitive-img {
  width: 100%;
  display: block;
  border-radius: 1px;
}
.intuitive-content {
  flex: 1;
  color: white;
}
.intuitive-content .section-title {
  color: white;
}
.intuitive-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─── RESPONSIVE: kiosk zoom ─── */
@media (max-width: 1600px) {
  .demo-kiosk-stage { transform: scale(1.35); }
  /* counter-scale hand so it stays ~2rem visually: 2/1.35 ≈ 1.48rem */
  .ghost-hand { --gh-size: 1.48rem; }
}
@media (max-width: 1200px) {
  .demo-kiosk-stage { transform: scale(1.8); }
  /* 2/1.8 ≈ 1.11rem */
  .ghost-hand { --gh-size: 1.11rem; }
}
@media (max-width: 768px) {
  .section-demo-kiosk {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
  }
  .demo-kiosk-stage { transform: scale(3); flex-shrink: 0; }
  /* 2/3 ≈ 0.67rem */
  .ghost-hand { --gh-size: 0.67rem; }
  /* hint: sits above the kiosk image on mobile */
  .demo-kiosk-hint {
    top: 3%;
    bottom: auto;
    left: 50%;
    font-size: clamp(0.8rem, 2.8vw, 0.95rem);
    padding: 0.5rem 1.15rem;
  }
}
@media (max-width: 480px) {
  .demo-kiosk-stage { transform: scale(4.5); }
  .section-demo-kiosk { height: 85vh; }
  /* 2/4.5 ≈ 0.44rem */
  .ghost-hand { --gh-size: 0.44rem; }
  .demo-kiosk-hint {
    top: 2%;
    bottom: auto;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    padding: 0.45rem 1rem;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .l-header-img { right: 0%; height: 470px; top: 50%; transform: translateY(calc(-50% + 80px)); }
  .l-header-person { display: none; }
}
@media (max-width: 980px) {
  .hero-section { height: 80vh; }
  .l-header-wrapper { height: 80vh; }
  .l-header-inner { width: 60%; }
  .hero-title { font-size: 6vw; }
  .plan-card.popular { transform: scale(1); }
}
@media (max-width: 860px) {
  .intuitive-inner {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 0;
  }
  .intuitive-section::after { display: none; }
  .intuitive-img-wrap { width: 100%; flex: none; padding-bottom: 2rem; }
  .intuitive-content {
    width: 100%;
    flex: none;
    background: var(--primary);
    padding: 2.5rem 1.75rem;
    border-radius: 0 0 16px 16px;
    margin-top: -12px;
  }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.4rem, 8vw, 3rem); }
  .page-hero { padding: 8rem 1rem 2rem; }
  .hiw-flow { flex-direction: column; align-items: center; }
  .hiw-card { max-width: 100%; }
  .hiw-arrow { transform: rotate(90deg); justify-content: center; }
}
@media (max-width: 740px) {
  .hero-section { height: 80vh; }
  .l-header-wrapper { height: 80vh; padding-top: 5rem; }
  .l-header-container { width: 90%; }
  .l-header-inner { width: 85%; }
  .l-header-img { display: none; }
  .header-right::before { right: -185px; }
  .header-right::after { left: 0; }
}
