/* =====================================================
   NAVON INNOVATIONS — v2.0 DESIGN SYSTEM
   Premium Neo-Brutalism × Modern SaaS
===================================================== */

:root {
  --ink: #0a1a24;
  --paper: #f4f7f9;
  --paper-soft: #ffffff;
  --electric: #3289bb;
  --electric-dark: #1f5f85;
  --electric-light: #6fb8dd;
  --acid: #ffb400;
  --coral: #ff4d4d;
  --violet: #7c5cff;
  --line: 3px;
  --line-thick: 4px;
  --shadow-off: 8px;
  --shadow-off-sm: 5px;
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ---------- BASE ---------- */

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
}

.neo-page h1, .neo-page h2, .neo-page h3, .neo-page h4,
.section-label, .neo-badge, .btn-neo, .btn-neo-primary, .btn-neo-outline {
  font-family: var(--font-display);
}

.container { position: relative; z-index: 2; }

/* ---------- UTILITIES ---------- */

.border-neo { border: var(--line) solid var(--ink); }
.border-neo-thick { border: var(--line-thick) solid var(--ink); }

.shadow-neo {
  box-shadow: var(--shadow-off) var(--shadow-off) 0 var(--ink);
}
.shadow-neo-sm {
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
}

.neo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acid);
  color: var(--ink);
  border: var(--line) solid var(--ink);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

/* ---------- BUTTONS ---------- */

.btn-neo-primary, .btn-neo-outline, .btn-neo-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: var(--line) solid var(--ink);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn-neo-primary {
  background: var(--acid);
  color: var(--ink);
}

.btn-neo-dark {
  background: var(--ink);
  color: #fff;
}

.btn-neo-outline {
  background: transparent;
  color: var(--ink);
}

.btn-neo-primary:hover, .btn-neo-outline:hover, .btn-neo-dark:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
  color: inherit;
}

/* magnetic buttons get a wrapper for JS-driven translate; base transition kept snappy */
.magnetic { will-change: transform; }

/* ---------- CARDS ---------- */

.neo-card {
  background: var(--paper-soft);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neo-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--ink);
}

.neo-card-flat {
  background: var(--paper-soft);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
}

/* ---------- BENTO GRID ---------- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }
.bento-span-4 { grid-column: span 4; }
.bento-span-6 { grid-column: span 6; }

@media (max-width: 992px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2, .bento-span-3, .bento-span-4 { grid-column: span 2; }
}
@media (max-width: 576px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-span-3, .bento-span-4, .bento-span-6 { grid-column: span 1; }
}

/* ---------- TOP BAR + NAVBAR SKIN ---------- */

.top-bar-accent { height: 4px; background: linear-gradient(90deg, var(--electric), var(--acid), var(--electric)); }

.top-bar {
  background: linear-gradient(90deg, var(--ink), var(--electric-dark));
  color: #fff;
  font-size: 13.5px;
  padding: 9px 0;
}
.top-bar a { color: #fff; text-decoration: none; }
.top-bar .top-left { display: flex; align-items: center; gap: 20px; }
.top-bar .top-left span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar i { color: var(--acid); }
.top-bar .contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--acid);
  color: var(--ink) !important;
  padding: 5px 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease;
}
.top-bar .contact-highlight:hover { transform: translateY(-1px); }

.navbar {
  background: var(--paper-soft) !important;
  border-bottom: var(--line) solid var(--ink);
  box-shadow: 0 6px 0 -3px rgba(10,26,36,0.06);
  padding: 12px 0;
  transition: padding 0.2s ease;
}

.navbar-brand img { transition: transform 0.2s ease; }
.navbar-brand:hover img { transform: scale(1.05) rotate(-1deg); }

.navbar .nav-link {
  position: relative;
  font-weight: 700;
  color: var(--ink) !important;
  margin: 0 4px;
  padding: 8px 6px !important;
  font-family: var(--font-display);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 3px;
  background: var(--acid);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover { color: var(--electric) !important; }
.navbar .nav-link:hover::after { transform: scaleX(1); }

.navbar .dropdown-menu {
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  margin-top: 10px;
  padding: 8px;
}

.navbar .dropdown-item {
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.navbar .dropdown-item:hover { background: var(--electric-light); color: var(--ink); border-left-color: var(--electric); }

.navbar .contact-highlight,
.navbar a.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acid);
  color: var(--ink) !important;
  border: var(--line) solid var(--ink);
  border-radius: 999px;
  padding: 10px 24px !important;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.navbar .contact-highlight:hover,
.navbar a.contact-highlight:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* ---------- HERO ---------- */

.neo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  padding: 160px 0 100px;
}

.neo-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.05;
  z-index: 0;
}

.neo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  z-index: 0;
}
.neo-blob-1 {
  width: 420px; height: 420px;
  background: var(--acid);
  top: -120px; right: -100px;
  border: var(--line-thick) solid var(--ink);
}
.neo-blob-2 {
  width: 260px; height: 260px;
  background: var(--electric);
  bottom: -80px; left: -60px;
  border: var(--line-thick) solid var(--ink);
  opacity: 0.9;
}

.neo-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 992px) {
  .neo-hero .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .neo-hero .lead-text { margin-left: auto; margin-right: auto; }
  .neo-stat-strip { justify-content: center; }
  .hero-actions { justify-content: center; }
}

.neo-hero h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
}
@media (max-width: 1200px) and (min-width: 993px) { .neo-hero h1 { font-size: 48px; } }

.neo-hero h1 .hl {
  background: var(--electric);
  color: #fff;
  padding: 0 12px;
  display: inline-block;
  box-shadow: 6px 6px 0 var(--ink);
  border: var(--line) solid var(--ink);
}

.neo-hero .lead-text {
  font-size: 20px;
  font-weight: 500;
  max-width: 620px;
  margin-top: 26px;
  color: #333;
}

.neo-hero .hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.neo-stat-strip {
  display: flex;
  gap: 18px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.neo-stat-strip .stat {
  background: #fff;
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  padding: 14px 22px;
}
.neo-stat-strip .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--electric);
  line-height: 1.1;
}
.neo-stat-strip .stat span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- SECTION HEADERS ---------- */

.neo-section { padding: 110px 0; }
.neo-section.tight { padding: 80px 0; }
.neo-section.alt { background: var(--ink); color: #fff; }

.neo-section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.neo-section-head h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 18px 0;
}
.neo-section-head p { font-size: 17px; color: #444; }
.neo-section.alt .neo-section-head p { color: #ccc; }
.neo-section-head .hl { color: var(--electric); }
.neo-section.alt .neo-section-head .hl { color: var(--acid); }

/* ---------- MARQUEE / LOGO SLIDER ---------- */

.logo-slider { overflow: hidden; border-top: var(--line) solid var(--ink); border-bottom: var(--line) solid var(--ink); padding: 24px 0; }
.logo-track { display: flex; align-items: center; gap: 70px; animation: neo-marquee 28s linear infinite; width: max-content; }
.logo-track img { height: 40px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: 0.3s; }
.logo-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes neo-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SERVICE / PRODUCT CARDS ---------- */

.neo-service-card {
  background: var(--paper-soft);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.neo-service-card:hover { transform: translate(-4px,-4px); box-shadow: 12px 12px 0 var(--electric); }
.neo-service-card .thumb {
  border-bottom: var(--line) solid var(--ink);
  overflow: hidden;
  height: 200px;
  background: linear-gradient(160deg, #eaf4fb, #fdf3e0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.neo-service-card .thumb img { width: 100%; height: 100%; object-fit: contain; }
.neo-service-card.showcase .thumb { height: 260px; }
.neo-service-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.neo-service-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.neo-service-card p { font-size: 14px; color: #444; flex: 1; }
.neo-service-card a { font-weight: 700; color: var(--electric); text-decoration: none; margin-top: 12px; }
.neo-service-card a:hover { text-decoration: underline; }

/* ---------- STAT / IMPACT CARDS ---------- */

.neo-impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.neo-impact-card {
  background: var(--paper-soft);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  padding: 34px 24px;
  text-align: center;
}
.neo-impact-card .icon { font-size: 34px; margin-bottom: 10px; }
.neo-impact-card h3 { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--electric); }
.neo-impact-card p { font-weight: 600; color: #333; margin: 0; }
@media (max-width: 768px) { .neo-impact-grid { grid-template-columns: repeat(2,1fr); } }

/* ---------- FINAL CTA ---------- */

.neo-cta {
  background: linear-gradient(135deg, var(--electric) 0%, var(--electric-dark) 100%);
  color: #fff;
  border-radius: var(--radius);
  border: var(--line-thick) solid var(--ink);
  box-shadow: 14px 14px 0 var(--acid);
  padding: 90px 60px;
  text-align: center;
  position: relative;
}
.neo-cta h2 { font-size: 44px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.neo-cta h2 .hl { color: var(--acid); }
.neo-cta p { color: #ccc; max-width: 640px; margin: 0 auto 30px; font-size: 17px; }
.neo-cta .hero-actions { justify-content: center; }
@media (max-width: 768px) { .neo-cta { padding: 60px 24px; } .neo-cta h2 { font-size: 32px; } }

/* ---------- FOOTER SKIN ---------- */

.main-footer {
  background: var(--ink);
  color: #ddd;
  border-top: var(--line-thick) solid var(--ink);
  padding-top: 80px;
}
.main-footer h5 { color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: 18px; }
.main-footer ul { list-style: none; padding: 0; }
.main-footer ul li { margin-bottom: 10px; }
.main-footer a { color: #bbb; text-decoration: none; }
.main-footer a:hover { color: var(--acid); }
.main-footer .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: var(--line) solid #fff; border-radius: 50%;
  margin-right: 10px; color: #fff;
}
.main-footer .social-icons a:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.footer-bottom { border-top: 1px solid #333; margin-top: 50px; padding: 22px 0; color: #999; font-size: 13px; }

/* ---------- EXHIBIT / ENGAGEMENT SHOWCASE CARDS ---------- */

.neo-exhibit-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.neo-exhibit-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--electric);
}
.neo-exhibit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.neo-exhibit-card:hover img { transform: scale(1.08); }
.neo-exhibit-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,26,36,0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}
.neo-exhibit-card .overlay h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  line-height: 1.2;
}
.neo-exhibit-card .overlay p {
  font-size: 13px;
  color: #ddd;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}
.neo-exhibit-card:hover .overlay p {
  max-height: 90px;
  opacity: 1;
  margin-top: 8px;
}
.neo-exhibit-card .overlay .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--acid);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- BRUTALIST SLIDER (AI Experiences / Gallery) ---------- */

.neo-slider-wrap { position: relative; padding: 0 8px; }
.neo-slider-wrap .swiper { overflow: visible; padding: 10px 4px 30px; }
.neo-slider-wrap .swiper-slide { height: auto; }
.neo-slider-wrap .gallery-item { height: 100%; }

.neo-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.neo-slider-arrow {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: var(--line) solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.neo-slider-arrow:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.neo-slider-arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

.neo-slider-wrap .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: #fff;
  border: 2px solid var(--ink);
  opacity: 1;
}
.neo-slider-wrap .swiper-pagination-bullet-active { background: var(--acid); }

/* ---------- FEATURE CHIP WITH ICON ---------- */

.neo-chip-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.neo-chip-icon i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 18px;
}
.neo-chip-icon span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
}

/* ---------- AI EXPERIENCE CARD (simple white, Pinterest-style) ---------- */

.neo-ai-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-off-sm) var(--shadow-off-sm) 0 var(--ink);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.neo-ai-card:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0 var(--electric); }
.neo-ai-card .thumb { overflow: hidden; height: 190px; flex-shrink: 0; }
.neo-ai-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.neo-ai-card:hover .thumb img { transform: scale(1.06); }
.neo-ai-card .body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.neo-ai-card .body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.neo-ai-card .body p {
  font-size: 13px;
  color: #555;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.neo-ai-card .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
}

/* ---------- WORK SHOWCASE (dark cinematic cards) ---------- */

.neo-section.work-dark {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.work-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
}
.work-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--acid); display: inline-block; }
.work-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin: 16px 0 0;
}
.work-headline em { color: var(--acid); font-style: italic; }
.work-sub { color: #aab4bd; font-size: 16px; margin-top: 16px; max-width: 560px; }

.neo-work-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  height: 100%;
  border: 2px solid rgba(255,255,255,0.14);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.neo-work-card:hover { transform: translateY(-6px); border-color: var(--acid); }
.neo-work-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.6s ease; }
.neo-work-card:hover img { transform: scale(1.1); }
.neo-work-card .counter {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: #fff;
  background: rgba(10,26,36,0.55);
  backdrop-filter: blur(2px);
  padding: 5px 10px;
  border-radius: 7px;
}
.neo-work-card .counter b { color: var(--acid); }
.neo-work-card .work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,26,36,0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.neo-work-card .work-overlay h4 {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 4px;
  font-family: var(--font-display);
}
.neo-work-card .work-overlay .sub {
  color: #b8c0c8;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.work-dark .neo-slider-wrap .neo-slider-arrow { background: #12242f; border-color: rgba(255,255,255,0.25); color: #fff; box-shadow: 4px 4px 0 rgba(255,255,255,0.15); }
.work-dark .neo-slider-arrow:hover { box-shadow: 6px 6px 0 var(--acid); }

/* ---------- GALLERY GRID ---------- */

.gallery-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gallery-item:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0 var(--ink); }
.gallery-item .ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.gallery-item .ig-header .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--acid));
  flex-shrink: 0;
}
.gallery-item .ig-header span {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
}
.gallery-item .ig-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.gallery-item .ig-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover .ig-photo img { transform: scale(1.05); }
.gallery-item .ig-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  font-size: 15px;
  color: var(--ink);
  flex-shrink: 0;
}
.gallery-item .ig-footer i { transition: color 0.2s ease, transform 0.2s ease; }
.gallery-item .ig-footer i:hover { color: var(--coral); transform: scale(1.15); }

/* ---------- TESTIMONIAL ---------- */

.testimonial-card-modern.neo-card {
  padding: 32px;
  background: #fff;
}
.testimonial-card-modern .testimonial-user {
  display: flex; align-items: center; gap: 14px; margin-top: 20px;
}
.testimonial-card-modern .testimonial-user img {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover;
  border: var(--line) solid var(--ink);
}
.testimonial-card-modern h5 { margin: 0; font-weight: 700; }
.testimonial-card-modern span { font-size: 13px; color: #666; }

/* ---------- PRELOADER ---------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader::before,
#preloader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: 0;
}
#preloader::before { width: 420px; height: 420px; background: var(--electric); top: -140px; left: -120px; }
#preloader::after { width: 380px; height: 380px; background: var(--acid); bottom: -140px; right: -120px; }
.preloader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: var(--line-thick) solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 var(--acid);
  padding: 36px 50px 40px;
  width: 100%;
  max-width: 360px;
}
.preloader-kiosk {
  position: relative;
  width: 150px;
  height: 140px;
  margin-bottom: 50px;
}
.preloader-kiosk-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center;
}
.preloader-logo { width: 160px; max-width: 100%; margin-bottom: 8px; animation: preloader-pulse 1.1s ease-in-out infinite; }
.preloader-tag {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--electric);
}
.preloader-bar {
  width: 100%;
  max-width: 220px;
  height: 8px;
  background: #e2e8ec;
  border: 2px solid var(--ink);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar i { display: block; height: 100%; width: 0%; background: var(--acid); animation: preloader-load 1.3s ease forwards; }
@keyframes preloader-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes preloader-load { from { width: 0%; } to { width: 100%; } }
@media (max-width: 576px) {
  .preloader-inner { padding: 28px 24px 30px; max-width: 300px; }
  .preloader-kiosk { width: 120px; height: 110px; }
  .preloader-kiosk-inner { transform: translate(-50%, -50%) scale(0.4); }
  .preloader-logo { width: 130px; }
}

/* ---------- CUSTOM CURSOR ---------- */

@media (hover: hover) and (pointer: fine) {
  body.neo-page, body.neo-page a, body.neo-page button { cursor: none; }
}
#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#cursor-dot { width: 8px; height: 8px; background: var(--ink); }
#cursor-ring {
  width: 34px;
  height: 34px;
  border: 2px solid var(--electric);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
#cursor-ring.cursor-hover {
  width: 56px;
  height: 56px;
  background: rgba(255, 180, 0, 0.18);
  border-color: var(--acid);
}
@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ---------- COMING SOON ---------- */

.neo-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 180px 0 120px;
  text-align: center;
}
.neo-soon h1 { font-size: 52px; font-weight: 700; letter-spacing: -1px; }
.neo-soon p { font-size: 18px; color: #444; max-width: 560px; margin: 20px auto 36px; }

/* ---------- COMPARISON (OLD WAY VS NAVON WAY) ---------- */

.neo-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.neo-compare-col {
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 34px;
}
.neo-compare-col.old {
  background: #fff;
  opacity: 0.85;
}
.neo-compare-col.new {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-off) var(--shadow-off) 0 var(--electric);
}
.neo-compare-col h3 { font-weight: 700; font-size: 22px; margin-bottom: 22px; }
.neo-compare-col ul { list-style: none; padding: 0; margin: 0; }
.neo-compare-col li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.1); font-weight: 500; }
.neo-compare-col.new li { border-bottom: 1px solid rgba(255,255,255,0.15); }
.neo-compare-col li:last-child { border-bottom: none; }
.neo-compare-col .mark { flex-shrink: 0; font-weight: 900; }
.neo-compare-col.old .mark { color: var(--coral); }
.neo-compare-col.new .mark { color: var(--acid); }
@media (max-width: 768px) { .neo-compare { grid-template-columns: 1fr; } }

/* ---------- ICON FEATURE ROWS ---------- */

.icon-feature-list { list-style: none; padding: 0; margin: 0; }
.icon-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-weight: 600;
  font-size: 15px;
}
.icon-feature-list li i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--electric-light);
  border: 2px solid var(--ink);
  border-radius: 9px;
  color: var(--ink);
  font-size: 15px;
}
@media (min-width: 992px) {
  .icon-feature-grid { columns: 2; column-gap: 24px; }
  .icon-feature-grid li { break-inside: avoid; }
  .icon-feature-grid.cols-3 { columns: 3; column-gap: 16px; }
}
.icon-feature-list.compact li {
  padding: 6px 0;
  font-size: 13.5px;
  gap: 8px;
}
.icon-feature-list.compact li i {
  width: 26px;
  height: 26px;
  font-size: 12px;
  border-radius: 7px;
}

/* ---------- PILL TAGS ---------- */

.neo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--electric-light);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  margin: 0 8px 10px 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.neo-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--acid);
}

/* ---------- FAQ ACCORDION ---------- */

.neo-faq { max-width: 820px; margin: 0 auto; }
.neo-faq-item {
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}
.neo-faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  font-size: 16px;
}
.neo-faq-item .faq-q .plus { font-size: 22px; transition: transform 0.25s ease; }
.neo-faq-item .faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.neo-faq-item .faq-a { padding: 0 26px 22px; color: #444; font-size: 15px; line-height: 1.6; }

/* ---------- KIOSK HERO STAGE ---------- */

.kiosk-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  perspective: 1400px;
  z-index: 2;
}

.kiosk-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(50,137,187,0.35), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

.kiosk-body {
  position: relative;
  background: linear-gradient(160deg, #ffffff, #e8f1f6);
  border: var(--line-thick) solid var(--ink);
  border-radius: 34px;
  box-shadow: 14px 14px 0 var(--ink);
  padding: 22px;
  transform-style: preserve-3d;
  animation: kiosk-sway 7s ease-in-out infinite;
}

@keyframes kiosk-sway {
  0%, 100% { transform: rotateY(-7deg) rotateX(2deg) translateZ(0); }
  50% { transform: rotateY(7deg) rotateX(-1deg) translateZ(0); }
}

.kiosk-screen {
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 20px;
  height: 340px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 4px #17303e;
}

.kiosk-screen-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 20px;
  text-align: center;
}
.kiosk-screen-state.active { opacity: 1; }
.kiosk-screen-state h5 { color: #fff; }
.kiosk-screen-state .kiosk-icon {
  font-size: 32px;
  color: #fff;
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  background: var(--electric);
  border-radius: 50%;
  border: 3px solid var(--electric-light);
}
.kiosk-screen-state h5 { font-family: var(--font-display); font-size: 17px; margin: 0; font-weight: 700; }
.kiosk-screen-state .kiosk-bar { width: 70%; height: 6px; border-radius: 4px; background: #1f3b4a; overflow: hidden; }
.kiosk-screen-state .kiosk-bar i { display: block; height: 100%; background: var(--acid); width: 0%; animation: kiosk-load 2.4s ease-in-out infinite; }
@keyframes kiosk-load { 0% { width: 0%; } 70% { width: 100%; } 100% { width: 100%; } }

.kiosk-camera { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); margin: 14px auto 0; }
.kiosk-stand { width: 26px; height: 46px; background: var(--ink); margin: 0 auto; }
.kiosk-base { width: 130px; height: 16px; background: var(--ink); border-radius: 50%; margin: 0 auto; opacity: 0.85; }

.floating-card {
  position: absolute;
  background: #fff;
  border: var(--line) solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
  z-index: 3;
}
.fc-1 { top: 4%; left: -14%; animation-delay: 0s; }
.fc-2 { top: 20%; right: -18%; animation-delay: 0.6s; }
.fc-3 { top: 52%; left: -20%; animation-delay: 1.2s; }
.fc-4 { bottom: 14%; right: -16%; animation-delay: 1.8s; }
.fc-5 { bottom: -4%; left: 6%; animation-delay: 2.4s; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 992px) {
  .floating-card { display: none; }
  .kiosk-stage { max-width: 320px; }
  .kiosk-screen { height: 260px; }
}

/* ---------- RESPONSIVE HERO ---------- */

@media (max-width: 768px) {
  .neo-hero h1 { font-size: 42px; }
  .neo-hero { padding: 140px 0 70px; }
  .neo-blob-1, .neo-blob-2 { display: none; }
}
