/* ─── RESET & FONTS ─────────────────── */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
html, body { overflow-x: hidden; width: 100%; }
:root {
  --bg: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.06);
  --border-glow: rgba(99, 102, 241, 0.15);
  --indigo: #6366f1;
  --indigo-dk: #4f46e5;
  --indigo-lt: #eef2ff;
  --indigo-glow: rgba(99, 102, 241, 0.1);
  --violet: #8b5cf6;
  --blue: #3b82f6;
  --emerald: #10b981;
  --red: #ef4444;
  --amber: #f59e0b;
  --t1: #0f172a; /* Slate 900 */
  --t2: #475569; /* Slate 600 */
  --t3: #64748b; /* Slate 500 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.1);
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--t2);
  overflow-x: hidden;
  line-height: 1.65;
  padding-bottom: 0;
}
h1, h2, h3, h4, .logo {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ─── UTILS ──────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gt { background: linear-gradient(135deg, var(--indigo-dk) 20%, var(--violet) 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--indigo); text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-size: clamp(28px, 4.5vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 16px; color: var(--t1); }
.sec-sub { font-size: 16px; color: var(--t3); line-height: 1.7; max-width: 580px; margin: 0 auto; }
.sec-hdr { text-align: center; margin-bottom: 40px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Hide desktop / mobile utility classes */
.mobile-only { display: none; }
.hide-desktop { display: none; }
.hide-mobile { display: block; }

@media (max-width: 900px) {
  .mobile-only { display: flex; }
  .hide-desktop { display: flex; }
  .hide-mobile { display: none; }
}

/* ─── NAVBAR ─────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); animation: navIn .4s ease both; }
@keyframes navIn { from { transform: translateY(-100%) } to { transform: none } }
.nav-in { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 19px; font-weight: 800; letter-spacing: -.5px; display: flex; align-items: center; gap: 8px; color: var(--t1); }
.logo-bolt { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--indigo), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; box-shadow: 0 4px 10px rgba(99,102,241,.25); }
.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a, .nav-links .dropbtn { font-size: 14px; font-weight: 600; color: var(--t2); padding: 8px 16px; border-radius: 8px; transition: all .2s; display: inline-block; cursor: pointer; }
.nav-links a:hover, .nav-links .dropbtn:hover, .dropdown:hover .dropbtn { color: var(--t1); background: var(--bg-surface); }
.nav-links li.active > a, .nav-links li.active .dropbtn { color: var(--indigo-dk) !important; background: var(--indigo-lt) !important; }

/* Navbar Dropdowns */
.nav-links li.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 0;
  z-index: 1100;
  margin-top: 8px;
}
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.dropdown-content a {
  color: var(--t2) !important;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.2s;
  text-align: left;
  background: transparent !important;
}
.dropdown-content a:hover {
  background-color: var(--bg-surface) !important;
  color: var(--indigo-dk) !important;
}
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDown 0.2s ease-out;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-btns { display: flex; align-items: center; gap: 12px; }
.btn-ghost { padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--t2); border-radius: 8px; transition: all .2s; }
.btn-ghost:hover { color: var(--t1); background: var(--bg-surface); }
.btn-pri { padding: 10px 22px; font-size: 14px; font-weight: 700; background: var(--indigo); color: #fff; border-radius: 10px; box-shadow: 0 4px 14px rgba(99,102,241,.2); transition: all .2s; }
.btn-pri:hover { background: var(--indigo-dk); box-shadow: 0 6px 20px rgba(99,102,241,.35); transform: translateY(-1px); }

/* Hamburger Menu button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger-menu span {
  width: 22px;
  height: 2px;
  background: var(--t1);
  border-radius: 4px;
  transition: all 0.3s;
}
@media(max-width:900px){
  .nav-links { display: none; }
  .nav-btns { display: flex; gap: 8px; margin-right: 8px; }
  .nav-btns .btn-pri { display: none; }
  .nav-btns .btn-ghost { padding: 6px 14px; font-size: 13.5px; border: 1.5px solid var(--border); border-radius: 8px; background: #fff; }
  .hamburger-menu { display: flex; }
}

/* Fullscreen Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-overlay.open {
  transform: translateX(0);
}
.mobile-nav-header {
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  font-size: 24px;
  cursor: pointer;
  color: var(--t2);
  padding: 8px;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
}
.mobile-nav-links a {
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

/* ─── HERO ───────────────────────────── */
.hero { padding: 130px 24px 40px; position: relative; background: var(--bg); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; max-width: 1140px; margin: -50px auto 0; }
.hero-content { text-align: left; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 100px;
  padding: 5px 16px 5px 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo-dk);
  margin-bottom: 28px;
  animation: fadeUp .5s .1s ease both;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.hero-badge:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-1px);
}
.badge-tag {
  background: var(--indigo);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}
.badge-text {
  color: var(--t1);
  font-weight: 600;
  font-size: 11.5px;
}

.hero-h1 { font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; letter-spacing: -2.5px; line-height: 1.1; color: var(--t1); margin-bottom: 20px; animation: fadeUp .6s .25s ease both; }
.hero-sub { font-size: 18px; color: var(--t2); line-height: 1.65; margin-bottom: 36px; animation: fadeUp .6s .4s ease both; }
.hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; animation: fadeUp .6s .45s ease both; }
.hf-item { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--t1); font-weight: 500; }
.hf-item svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--indigo); }
@media (max-width: 900px) {
  .hero-features { align-items: flex-start; text-align: left; margin: 0 auto 36px; width: fit-content; max-width: 100%; }
  .hf-item { font-size: 14.5px; align-items: flex-start; line-height: 1.4; }
  .hf-item svg { width: 20px; height: 20px; margin-top: 1px; }
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; animation: fadeUp .6s .55s ease both; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; font-size: 15px; font-weight: 700; background: var(--indigo); color: #fff; border-radius: 12px; box-shadow: 0 4px 16px rgba(99,102,241,.25); transition: all .25s; }
.btn-hero:hover { background: var(--indigo-dk); box-shadow: 0 8px 24px rgba(99,102,241,.35); transform: translateY(-2px); }
.btn-hero-out { display: inline-flex; align-items: center; gap: 8px; padding: 16px 24px; font-size: 15px; font-weight: 700; background: #fff; border: 1.5px solid var(--border); color: var(--t2); border-radius: 12px; transition: all .2s; }
.btn-hero-out:hover { border-color: var(--indigo); color: var(--indigo-dk); background: var(--indigo-lt); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; font-size: 13.5px; color: var(--t3); flex-wrap: wrap; animation: fadeUp .6s .7s ease both; }
.avs { display: flex; }
.av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--blue)); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; margin-left: -8px; }
.av:first-child { margin-left: 0; }
.stars { color: var(--amber); font-size: 14px; }

.hero-image-wrap { display: flex; justify-content: center; align-items: center; position: relative; animation: fadeUp .8s .65s ease both; }
.hero-image-wrap img { width: 100%; max-width: 440px; height: auto; object-fit: contain; }

.hero-badges { justify-content: flex-start; margin-top: 24px; }
@media(max-width:900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; margin: 0 auto; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-image-wrap { margin-top: 24px; }
  .hero-badges { justify-content: center; }
}

/* ─── LOGO BAR ───────────────────────── */
.logo-bar { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; overflow: hidden; position: relative; z-index: 5; }
.lb-track { display: flex; align-items: center; gap: 48px; animation: lbScroll 24s linear infinite; width: max-content; }
@keyframes lbScroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.lb-item { font-size: 12px; font-weight: 700; color: var(--t3); white-space: nowrap; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; }
.lb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--indigo); opacity: 0.6; }

/* ─── VIDEO SECTION ──────────────────── */
.video-sec { padding: 60px 24px; background: #fff; }
.video-wrap { max-width: 860px; margin: 0 auto; }
.video-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--indigo-lt), #f1f5f9); border: 2px dashed rgba(99, 102, 241, 0.25); border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; cursor: pointer; transition: all .3s; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.video-placeholder:hover { border-color: var(--indigo); transform: scale(1.005); background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), #e2e8f0); }
.vp-circle { width: 72px; height: 72px; background: var(--indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(99,102,241,.12); animation: pulseRing 2.2s ease-in-out infinite; }
@keyframes pulseRing { 0%,100%{box-shadow:0 0 0 8px rgba(99,102,241,.1)} 50%{box-shadow:0 0 0 18px rgba(99,102,241,.05)} }
.vp-play { color: #fff; font-size: 24px; margin-left: 5px; }
.vp-label { font-size: 16px; font-weight: 700; color: var(--t1); }
.vp-sub { font-size: 13px; color: var(--t3); }

/* ─── TARGET CUSTOMER SECTORS (NEW) ───── */
.target-sec {
  padding: 60px 24px;
  background: var(--bg);
  overflow: hidden;
}
.target-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: targetScroll 45s linear infinite;
  padding: 10px 0;
}
.target-grid:hover {
  animation-play-state: paused;
}
@keyframes targetScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.target-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 340px;
  min-height: 460px;
  flex-shrink: 0;
}
.target-card-image {
  flex-shrink: 0;
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.target-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.target-card:hover .target-card-image img {
  transform: scale(1.03);
}
.target-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: var(--shadow-md);
}
.target-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: var(--bg-surface);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.target-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.target-card-desc {
  font-size: 13.5px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.target-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}
.target-card-list li {
  font-size: 12px;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.target-card-list li::before {
  content: '•';
  color: var(--indigo);
  font-weight: 800;
}

/* ─── INTERACTIVE SCREEN SHOWCASE ────── */
.demo-sec { padding: 60px 24px; background: var(--bg-surface); position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tour-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }

.tour-nav { display: flex; flex-direction: column; gap: 10px; max-height: 520px; overflow-y: auto; padding-right: 8px; }
.tour-nav::-webkit-scrollbar { width: 6px; }
.tour-nav::-webkit-scrollbar-track { background: transparent; }
.tour-nav::-webkit-scrollbar-thumb { background-color: rgba(99, 102, 241, 0.2); border-radius: 10px; }
.tour-nav::-webkit-scrollbar-thumb:hover { background-color: rgba(99, 102, 241, 0.4); }

.tour-btn { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: 12px; background: transparent; border: 1.5px solid transparent; text-align: left; transition: all .2s; width: 100%; }
.tour-btn:hover { background: rgba(0,0,0,0.02); }
.tour-btn.active { background: #fff; border-color: var(--border); box-shadow: var(--shadow-sm); }

.tour-btn-icon { font-size: 20px; padding: 6px; border-radius: 8px; background: var(--bg-surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.tour-btn.active .tour-btn-icon { background: var(--indigo-lt); color: var(--indigo-dk); }
.tour-btn-title { display: block; font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 3px; }
.tour-btn-desc { display: block; font-size: 12.5px; color: var(--t3); line-height: 1.45; }

.tour-display { display: flex; justify-content: center; align-items: center; position: relative; height: 520px; }
.tour-screenshot-container { position: relative; max-width: 320px; width: 100%; display: flex; justify-content: center; align-items: center; }
.tour-screenshot-container img { width: 100%; height: auto; object-fit: contain; border-radius: 20px; user-select: none; transition: opacity 0.25s; }

/* Pulse Hotspots */
.hotspot { position: absolute; width: 24px; height: 24px; transform: translate(-50%, -50%); cursor: pointer; z-index: 20; }
.hotspot-inner { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; background: var(--indigo); border-radius: 50%; box-shadow: 0 0 6px var(--indigo); border: 1.5px solid #fff; }
.hotspot-pulse { position: absolute; width: 100%; height: 100%; background: rgba(99, 102, 241, 0.15); border-radius: 50%; animation: hotspotPulse 2.4s infinite cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes hotspotPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Tooltip Popover styling */
.tooltip-popover { position: absolute; background: #0f172a; color: #fff; padding: 14px 16px; border-radius: 14px; width: 220px; font-size: 12.5px; line-height: 1.6; box-shadow: var(--shadow-lg); opacity: 0; transform: scale(0.9) translateY(10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; z-index: 30; }
.tooltip-popover.active { opacity: 1; transform: scale(1) translateY(0); }
.tooltip-title { font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13.5px; margin-bottom: 6px; color: #a5b4fc; }

@media(max-width:900px) {
  .tour-layout { grid-template-columns: 1fr; }
  .tour-display { order: -1; margin-bottom: 24px; height: auto; }
}

/* ─── LIVE APP SIMULATOR ────────────────── */
.sim-sec { padding: 60px 24px; background: #ffffff; border-bottom: 1px solid var(--border); }
.sim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1100px; margin: 0 auto; }
.sim-info { text-align: left; }
.sim-desc-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.sim-desc-item { display: flex; gap: 14px; align-items: flex-start; }
.sim-desc-num { width: 26px; height: 26px; border-radius: 8px; background: var(--indigo-lt); color: var(--indigo-dk); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 1; }
.sim-desc-title { font-weight: 700; color: var(--t1); font-size: 14.5px; display: block; margin-bottom: 3px; }
.sim-desc-text { font-size: 13.5px; color: var(--t3); line-height: 1.5; }

.sim-phone-display { display: flex; justify-content: center; align-items: center; position: relative; }
.sim-phone { width: 310px; height: 600px; border-radius: 40px; border: 11px solid #1e293b; background: #fff; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.06); display: flex; flex-direction: column; overflow: hidden; position: relative; z-index: 5; }
.sim-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #1e293b; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; z-index: 50; }
.sim-header { height: 68px; padding: 24px 16px 8px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: #fff; flex-shrink: 0; }
.sim-header-l { display: flex; flex-direction: column; }
.sim-header-name { font-size: 15px; font-weight: 800; color: var(--t1); letter-spacing: -0.3px; }
.sim-header-badge { display: flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; color: var(--emerald); background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); border-radius: 100px; padding: 2px 8px; }
.sim-header-blinky { width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); animation: blink 2s infinite; }

.sim-screen { flex: 1; overflow-y: auto; background: var(--bg-surface); position: relative; display: flex; flex-direction: column; }
.sim-tabbar { height: 56px; border-top: 1px solid var(--border); display: flex; background: #fff; flex-shrink: 0; }
.sim-tab-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: var(--t3); cursor: pointer; transition: color 0.2s; gap: 2px; }
.sim-tab-item.active { color: var(--indigo); }
.sim-tab-item-icon { font-size: 18px; line-height: 1; }

.sim-title { font-size: 19px; font-weight: 800; color: var(--t1); letter-spacing: -0.5px; padding: 12px 14px 4px; }
.sim-subtitle { font-size: 12px; color: var(--t3); padding: 0 14px 10px; }
.sim-pills { display: flex; gap: 6px; padding: 4px 14px 12px; overflow-x: auto; width: 100%; }
.sim-pill { padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; background: #fff; border: 1px solid var(--border); color: var(--t2); cursor: pointer; white-space: nowrap; }
.sim-pill.active { background: var(--t1); color: #fff; border-color: var(--t1); }
.sim-searchbar { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; margin: 0 14px 12px; }
.sim-searchbar input { border: none; outline: none; background: none; font-size: 12px; flex: 1; color: var(--t1); }

.sim-section-header { font-size: 10px; font-weight: 700; color: var(--t3); letter-spacing: 0.8px; padding: 4px 14px; text-transform: uppercase; }
.sim-category-card { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; margin: 0 14px 8px; cursor: pointer; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.sim-category-card:hover { border-color: var(--indigo-glow); transform: translateY(-1px); }
.sim-card-l { display: flex; align-items: center; gap: 10px; }
.sim-card-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: var(--bg-surface); }
.sim-card-name { font-size: 13px; font-weight: 700; color: var(--t1); }
.sim-card-sub { font-size: 10.5px; color: var(--t3); margin-top: 1px; }
.sim-card-r { display: flex; align-items: center; gap: 6px; }
.sim-card-count { font-size: 12px; font-weight: 700; color: var(--t1); }
.sim-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 100px; text-transform: uppercase; }
.sim-badge-green { background: rgba(16,185,129,0.08); color: var(--emerald); border: 1px solid rgba(16,185,129,0.15); }
.sim-badge-amber { background: rgba(245,158,11,0.08); color: var(--amber); border: 1px solid rgba(245,158,11,0.15); }
.sim-badge-red { background: rgba(239,68,68,0.08); color: var(--red); border: 1px solid rgba(239,68,68,0.15); }

.sim-back-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px 12px; border-bottom: 1px solid var(--border); background: #fff; }
.sim-back-btn { font-size: 12px; font-weight: 700; color: var(--indigo-dk); display: flex; align-items: center; gap: 4px; }
.sim-back-title { font-size: 13.5px; font-weight: 800; color: var(--t1); }

.sim-product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px; margin: 12px 14px 0; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.sim-prod-top { display: flex; align-items: flex-start; justify-content: space-between; }
.sim-prod-image { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; background: var(--bg-surface); padding: 4px; flex-shrink: 0; }
.sim-prod-info { flex: 1; padding-left: 10px; }
.sim-prod-name { font-size: 12.5px; font-weight: 700; color: var(--t1); line-height: 1.35; }
.sim-prod-stock { font-size: 12px; font-weight: 800; color: var(--t1); margin-top: 4px; }
.sim-prod-boxes { font-size: 10.5px; color: var(--t3); margin-top: 1px; }
.sim-prod-actions { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.sim-action-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; background: var(--bg-surface); cursor: pointer; color: var(--t2); }
.sim-action-btn:hover { border-color: var(--indigo); color: var(--indigo); }

.sim-prod-stepper { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px dashed var(--border); }
.sim-segment-control { display: flex; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 8px; padding: 2px; gap: 2px; }
.sim-seg-item { padding: 4px 8px; font-size: 10px; font-weight: 700; color: var(--t3); border-radius: 6px; cursor: pointer; }
.sim-seg-item.active { background: #fff; color: var(--indigo); box-shadow: var(--shadow-sm); }
.sim-stepper-box { display: flex; align-items: center; gap: 8px; }
.sim-step-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: var(--t1); cursor: pointer; }
.sim-step-btn:hover { border-color: var(--indigo); color: var(--indigo); }
.sim-step-num { font-size: 12px; font-weight: 800; color: var(--t1); min-width: 20px; text-align: center; }

.sim-modal-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.4); backdrop-filter: blur(2px); z-index: 60; display: flex; align-items: flex-end; justify-content: center; }
.sim-modal-body { width: 100%; background: #fff; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 18px; box-shadow: 0 -8px 24px rgba(0,0,0,0.1); display: flex; flex-direction: column; gap: 12px; animation: slideUp .25s ease both; }
@keyframes slideUp { from { transform: translateY(100%) } to { transform: none } }
.sim-modal-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.sim-modal-title { font-size: 13.5px; font-weight: 800; color: var(--t1); display: flex; align-items: center; gap: 6px; }
.sim-modal-close { font-size: 14px; font-weight: 700; color: var(--t3); cursor: pointer; }

.sim-toast { position: absolute; top: 80px; left: 50%; transform: translateX(-50%); background: #10b981; color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 11px; font-weight: 700; z-index: 80; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 6px; animation: popToast 0.3s ease both; }
@keyframes popToast { from { opacity: 0; transform: translate(-50%, -10px) } to { opacity: 1; transform: translate(-50%, 0) } }

@media(max-width:900px) {
  .sim-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .sim-info { display: flex; flex-direction: column; align-items: center; }
  .sim-desc-list { text-align: left; }
}

/* ─── APP STORE FEATURES GRID ────────── */
.features-sec { padding: 60px 24px; background: var(--bg-surface); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1140px; margin: 0 auto; }

.app-store-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; display: flex; flex-direction: column; overflow: hidden; transition: all .3s ease; box-shadow: var(--shadow-sm); position: relative; height: 100%; }
.app-store-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,0.2); box-shadow: var(--shadow-lg); }
.asc-wide { grid-column: span 2; }
.asc-info { padding: 28px 28px 24px; background: #ffffff; z-index: 5; position: relative; }
.asc-tag { font-size: 11px; font-weight: 700; color: var(--indigo-dk); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.asc-title { font-size: 20px; font-weight: 800; color: var(--t1); margin-bottom: 8px; letter-spacing: -0.5px; }
.asc-desc { font-size: 13.5px; color: var(--t2); line-height: 1.55; }
.asc-image-wrap { flex: 1; display: flex; justify-content: center; align-items: center; background: #ffffff; overflow: hidden; position: relative; }
.asc-image-wrap img { max-width: 100%; height: 320px; object-fit: contain; border-radius: 14px; transition: transform 0.4s ease; }
.app-store-card:hover .asc-image-wrap img { transform: scale(1.02); }

.card-text-bottom { justify-content: flex-start; }
.card-text-bottom .asc-image-wrap { order: 1; padding-top: 24px; align-items: flex-start; }
.card-text-bottom .asc-info { order: 2; padding: 18px 28px 32px; border-top: 1px solid rgba(0,0,0,0.02); }

.card-text-top { justify-content: flex-end; }
.card-text-top .asc-info { order: 1; padding: 32px 28px 18px; border-bottom: 1px solid rgba(0,0,0,0.02); }
.card-text-top .asc-image-wrap { order: 2; padding-bottom: 24px; align-items: flex-end; }

@media(max-width:900px) {
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .asc-wide { grid-column: span 1; }
  .app-store-card { height: 100%; }
}

/* ─── HOW IT WORKS ─────────────────────── */
.hiw { padding: 60px 24px; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; box-shadow: var(--shadow-sm); transition: all .3s; }
.step:hover { box-shadow: var(--shadow-md); border-color: rgba(99,102,241,0.2); transform: translateY(-3px); }
.step-n { position: absolute; top: 16px; right: 24px; font-size: 52px; font-weight: 800; color: rgba(99,102,241,0.06); letter-spacing: -2px; line-height: 1; }
.step-ico {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--indigo-lt);
  color: var(--indigo-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-t { font-size: 17px; font-weight: 800; color: var(--t1); margin-bottom: 8px; letter-spacing: -.3px; }
.step-b { font-size: 13.5px; color: var(--t2); line-height: 1.65; }
@media(max-width:768px){.steps{grid-template-columns:1fr}}

/* ─── PRICING ──────────────────────────── */
.pricing-sec { padding: 60px 24px; background: #fff; }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; align-items: center; }
.pc { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 36px 28px; position: relative; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all .3s; }
.pc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pc.feat { border-color: var(--indigo); box-shadow: 0 10px 30px rgba(99,102,241,0.08), var(--shadow-lg); transform: scale(1.02); background: #fff; }
.pc.feat:hover { transform: scale(1.02) translateY(-4px); }
.pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--indigo-dk); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 10px rgba(99,102,241,0.15); }
.ptype { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.pt-free { background: var(--bg-surface); color: var(--t2); border: 1px solid var(--border); }
.pt-pro { background: var(--indigo-lt); color: var(--indigo-dk); border: 1px solid rgba(99,102,241,0.2); }
.pt-adv { background: #faf5ff; color: #7c3aed; border: 1px solid rgba(124,58,237,0.15); }
.pn { font-size: 18px; font-weight: 800; color: var(--t1); margin-bottom: 4px; }
.ptag { font-size: 13px; color: var(--t3); margin-bottom: 20px; }
.pnum { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; color: var(--t1); line-height: 1; margin-bottom: 4px; }
.pper { font-size: 12.5px; color: var(--t3); margin-bottom: 24px; }
.pfeats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.pfeats li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--t2); }
.ck { color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.ck-i { color: var(--indigo); font-weight: 700; flex-shrink: 0; }
.pbtn { display: block; text-align: center; padding: 12px; border-radius: 10px; font-size: 13.5px; font-weight: 700; transition: all .2s; }
.pbtn-pri { background: var(--indigo); color: #fff; box-shadow: 0 4px 10px rgba(99,102,241,.2); }
.pbtn-pri:hover { background: var(--indigo-dk); box-shadow: 0 6px 16px rgba(99,102,241,.3); transform: translateY(-1px); }
.pbtn-out { background: var(--bg-surface); border: 1.5px solid var(--border); color: var(--t2); }
.pbtn-out:hover { border-color: var(--indigo); color: var(--indigo-dk); background: var(--indigo-lt); }
.pbtn-vio { background: #faf5ff; border: 1.5px solid rgba(124,58,237,0.3); color: #7c3aed; }
.pbtn-vio:hover { background: #f3e8ff; }
.pnote { font-size: 11px; color: var(--t3); text-align: center; margin-top: 8px; }
@media(max-width:900px){
  .pgrid { grid-template-columns: 1fr; max-width: 400px; gap: 24px; }
  .pc.feat { transform: none; }
  .pc.feat:hover { transform: translateY(-4px); }
}

/* ─── TESTIMONIALS ───────────────────── */
.testi-sec { padding: 60px 24px; overflow: hidden; background: var(--bg-surface); border-top: 1px solid var(--border); }
.mq { display: flex; gap: 20px; animation: lbScroll 38s linear infinite; width: max-content; padding: 8px 0; }
.mq:hover { animation-play-state: paused; }
.tc { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 24px; min-width: 300px; max-width: 300px; flex-shrink: 0; box-shadow: var(--shadow-sm); transition: all .3s; }
.tc:hover { box-shadow: var(--shadow-md); border-color: rgba(99,102,241,0.15); transform: translateY(-2px); }
.tc-stars { color: var(--amber); font-size: 12px; margin-bottom: 10px; letter-spacing: 1px; }
.tc-q { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 14px; }
.tc-n { font-size: 12.5px; font-weight: 700; color: var(--t1); }
.tc-r { font-size: 11.5px; color: var(--t3); margin-top: 2px; }

/* ─── FINAL CTA ──────────────────────── */
.final { padding: 60px 24px; text-align: center; background: linear-gradient(135deg, var(--indigo-dk), #312e81); position: relative; overflow: hidden; }
.final::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.final .sec-title { color: #fff; max-width: 640px; margin: 0 auto 16px; position: relative; z-index: 1; }
.final .sec-sub { color: rgba(255,255,255,0.8); position: relative; z-index: 1; margin-bottom: 36px; }
.final-btns { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; font-size: 15px; font-weight: 700; background: #fff; color: var(--indigo-dk); border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-white-out { display: inline-flex; align-items: center; gap: 8px; padding: 15px 24px; font-size: 15px; font-weight: 700; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.3); color: #fff; border-radius: 12px; transition: all .2s; }
.btn-white-out:hover { background: rgba(255,255,255,.2); }
.trust-row { display: flex; align-items: center; gap: 20px; justify-content: center; margin-top: 28px; font-size: 12px; color: rgba(255,255,255,.6); flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FOOTER ─────────────────────────── */
.footer { background: #0b0f19; padding: 80px 24px 32px; border-top: 1px solid var(--border); color: #94a3b8; }
.fgrid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; max-width: 1140px; margin: 0 auto 48px; }
@media(max-width:768px){.fgrid{grid-template-columns:1fr 1fr; gap:28px}}
@media(max-width:480px){.fgrid{grid-template-columns:1fr}}
.flogo { font-size: 18px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.fbolt { width: 30px; height: 30px; border-radius: 8px; background: var(--indigo); display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; }
.fdesc { font-size: 13px; color: #64748b; line-height: 1.65; margin-bottom: 10px; }
.fch { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,.3); text-transform: uppercase; margin-bottom: 16px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.flinks a { font-size: 13px; color: #94a3b8; transition: color .2s; }
.flinks a:hover { color: #fff; }
.fbot { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #64748b; }
.fbot a { color: #64748b; transition: color .2s; }
.fbot a:hover { color: #fff; }

/* ─── MOBILE LAYOUT OPTIMIZATIONS (HORIZONTAL SWIPES) ─── */
@media (max-width: 900px) {
  /* Tour Layout Mobile Optimization */
  .tour-layout { grid-template-columns: 1fr; gap: 20px; }
  .tour-display { order: 2; margin-bottom: 0; height: auto; }
  .tour-nav {
    order: 1;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 8px 24px 16px;
    margin: 0 -24px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .tour-nav::-webkit-scrollbar {
    display: none;
  }
  .tour-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    align-items: center;
    gap: 8px;
    scroll-snap-align: start;
  }
  .tour-btn.active {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
    box-shadow: 0 4px 10px rgba(99,102,241,0.2);
  }
  .tour-btn.active .tour-btn-title {
    color: #fff;
  }
  .tour-btn.active .tour-btn-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
  }
  .tour-btn-icon {
    font-size: 14px;
    padding: 4px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.04);
  }
  .tour-btn-desc {
    display: none;
  }
  .tour-btn-title {
    margin-bottom: 0;
    font-size: 13px;
  }

  /* Targeted customer bases Mobile swipe */
  /* Targeted customer bases Mobile swipe removed in favor of global marquee */
  .target-card {
    width: 300px;
  }

  /* Features Grid Mobile Swipe Carousel */
  .features-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 10px 24px 24px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .features-grid::-webkit-scrollbar {
    display: none;
  }
  .asc-wide {
    grid-column: auto;
  }
  .app-store-card {
    flex: 0 0 82%;
    max-width: 320px;
    height: auto; min-height: 480px;
    scroll-snap-align: start;
  }

  /* Pricing layout relies on grid-template-columns: 1fr from 900px media query */
  /* Premium Glassmorphic swipe card design */
  .app-store-card, .pc, .target-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.85)) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  }
  
  /* Glow behind hero and simulator */
  .hero-image-wrap::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.08) 60%, transparent 100%);
    filter: blur(35px);
    z-index: -1;
    animation: floatGlow 8s infinite alternate ease-in-out;
  }
  .sim-phone-display::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.05) 60%, transparent 100%);
    filter: blur(40px);
    z-index: -1;
  }
}

@media (max-width: 768px) {
  /* How it Works Swipe Carousel */
  .steps {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 10px 24px 20px;
    margin: 0 -24px;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar {
    display: none;
  }
  .step {
    flex: 0 0 80%;
    max-width: 300px;
    scroll-snap-align: start;
  }
}

@media (max-width: 400px) {
  .sim-phone {
    transform: scale(0.9);
    transform-origin: top center;
    margin-bottom: -60px;
  }
}

/* ─── FLOATING DOCKS & INDICATORS ────── */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-dot.active {
  background: var(--indigo);
  transform: scale(1.3);
  width: 16px;
  border-radius: 100px;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -20px) scale(1.1); }
}

/* Mobile Floating Bottom Dock Navigation Removed */

/* Page specific styles */
.features-hero, .industries-hero, .pricing-hero, .contact-hero {
  padding: 90px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #fff 100%);
}
.features-hero h1, .industries-hero h1, .pricing-hero h1, .contact-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.features-hero p, .industries-hero p, .pricing-hero p, .contact-hero p {
  font-size: 17px;
  color: var(--t2);
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Page Styles */
.pricing-matrix-sec {
  padding: 50px 24px;
  background: #ffffff;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.matrix-table th, .matrix-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.matrix-table th {
  font-weight: 800;
  color: var(--t1);
}
.matrix-table tr:hover td {
  background: var(--bg-surface);
}
.matrix-table td:not(:first-child) {
  text-align: center;
}

/* ─── FAQ SECTION ──────────────────────── */
.faq-sec { padding: 60px 24px; background: #fff; border-top: 1px solid var(--border); }
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.faq-btn { width: 100%; text-align: left; padding: 24px; display: flex; align-items: flex-start; justify-content: space-between; font-size: 16px; font-weight: 600; color: var(--t1); background: transparent; cursor: pointer; border: none; }
.faq-btn span { flex: 1; line-height: 1.4; }
.faq-icon { width: 20px; height: 20px; transition: transform 0.3s ease; color: var(--t3); flex-shrink: 0; margin-left: 16px; margin-top: 2px; }
.faq-item.active { border-color: rgba(99,102,241,0.3); box-shadow: 0 4px 14px rgba(15,23,42,0.03); background: #fff; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--indigo); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-content p { padding: 0 24px 24px; color: var(--t2); font-size: 15px; line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .faq-sec { padding: 40px 16px; }
  .faq-btn { padding: 16px 20px; font-size: 15px; }
  .faq-content p { padding: 0 20px 20px; font-size: 14px; }
  .faq-icon { width: 18px; height: 18px; margin-left: 12px; margin-top: 0; }
}


/* Contact Demo styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  max-width: 1040px;
  margin: 40px auto;
  align-items: flex-start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  background: var(--bg-surface);
  color: var(--t1);
  outline: none;
}
.contact-input:focus {
  border-color: var(--indigo);
  background: #fff;
}

/* Scheduler Mockup */
.scheduler-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scheduler-header {
  font-weight: 800;
  color: var(--t1);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.scheduler-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}
.sched-day-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
}
.sched-date-cell {
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.sched-date-cell.active {
  background: var(--indigo);
  color: #fff;
}
.sched-date-cell.disabled {
  color: var(--t3);
  opacity: 0.3;
  pointer-events: none;
}
.sched-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.sched-slot {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.sched-slot:hover {
  background: var(--indigo-lt);
  border-color: var(--indigo);
  color: var(--indigo-dk);
}

@media(max-width:900px){
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Custom logo and SVG icon styles */
.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.flogo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.btn-svg {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}
.btn-white .btn-svg, .btn-pri .btn-svg, .btn-hero .btn-svg {
  margin-top: -2px;
}
.sim-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2px;
}
.cat-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2px;
}
.tour-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2px;
}





/* Moved from index.html inline style */
/* Motion animations for the download section */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(99,102,241,0.5); }
  50% { text-shadow: 0 0 40px rgba(99,102,241,0.9); }
}
.sec-title .gt.animated-glow {
  animation: pulseGlow 3s ease-in-out infinite;
  display: inline-block;
}
.download-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 8px 20px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: floatBadge 6s ease-in-out infinite;
}
.store-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 10px 30px -10px rgba(255,255,255,0.3);
}
.store-btn svg {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  fill: currentColor;
}
.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.store-text .small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 2px;
}
.store-text .big {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
}

/* Ensure hero badges keep their unique layout properties */
.hero-badges { justify-content: flex-start !important; margin-top: 24px !important; }
@media(max-width:900px) {
  .hero-badges { justify-content: center !important; }
}

/* Force landing page deploy trigger */
