:root {
  --primary: #2563eb;
  --gradient-start: #3b82f6;
  --gradient-end: #60a5fa;
  --cta-green: #22c55e;
  --cta-orange: #f97316;
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --light: #f8fafc;
  --card: #ffffff;
  --border: #dbeafe;
  --radius: 12px;
  --shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.65), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(147, 197, 253, 0.22), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 38%);
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  line-height: 1.25;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #0f172a, #1e3a8a);
  color: #e2e8f0;
  font-size: 0.88rem;
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-wrap span,
.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-links a {
  color: #dbeafe;
}

.section {
  padding: 72px 0;
}

.bg-light {
  background: var(--light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  border-color: #dbeafe;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  color: #334155;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: #eff6ff;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.25rem;
}

.hero {
  padding-top: 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 30px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 14px;
}

.subhead {
  font-size: 1.1rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 16px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e3a8a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-points i {
  color: #2563eb;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.28);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.28);
}

.btn-orange {
  background: var(--cta-orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.24);
}

.btn-outline {
  border: 1px solid #bfdbfe;
  background: #fff;
  color: #1d4ed8;
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.93rem;
  color: #334155;
}

.trust-row i {
  color: var(--primary);
  margin-right: 5px;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  padding: 24px 12px 24px 22px;
  perspective: 1400px;
}

.dash-card {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floaty 4s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dash-top {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #eff6ff;
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #93c5fd;
}

.dash-body {
  padding: 18px;
}

.main-ui-card {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.hero-slider-card {
  min-height: 540px;
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.18),
    0 12px 24px rgba(37, 99, 235, 0.14);
}

.hero-slider-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 40%);
  opacity: var(--shine-opacity, 0.45);
  pointer-events: none;
  z-index: 3;
}

.hero-panel:hover .main-ui-card {
  box-shadow:
    0 44px 72px rgba(15, 23, 42, 0.22),
    0 20px 36px rgba(37, 99, 235, 0.22);
}

.hero-slider-body {
  display: grid;
  gap: 14px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-heading small {
  display: grid;
  place-items: center;
  color: #64748b;
  margin-bottom: 6px;
  font-weight: 600;
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ecfdf5;
  color: #15803d;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-chip i {
  font-size: 0.55rem;
}

.software-layout {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.hero-slide-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
  min-height: 250px;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  object-fit: contain;
}

.hero-slide-summary {
  display: grid;
  gap: 10px;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.slide-dots button.active {
  width: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.slide-insights strong {
  text-align: right;
}

.software-sidebar {
  background: linear-gradient(180deg, #0f172a, #1e3a8a);
  border-radius: 14px;
  padding: 12px 10px;
  display: grid;
  gap: 10px;
}

.side-item {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.side-item.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.software-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill.blue {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.pill.light {
  color: #1d4ed8;
  background: #dbeafe;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.soft-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 14px;
}

.soft-card h4 {
  margin: 0 0 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
}

.soft-card p {
  margin: 0;
  font-size: 0.9rem;
}

.bill-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
}

.bill-row,
.bill-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.bill-row {
  border-bottom: 1px dashed #cbd5e1;
  font-size: 0.92rem;
}

.bill-total {
  padding-top: 12px;
  color: #0f172a;
  font-weight: 800;
  font-size: 1rem;
}

.floating-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  padding: 12px 14px;
  z-index: 3;
  transform: translateZ(34px);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.hero-panel:hover .mini-one {
  transform: translate3d(-6px, -8px, 48px);
}

.hero-panel:hover .mini-two {
  transform: translate3d(6px, -8px, 48px);
}

.floating-mini-card i {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
}

.floating-mini-card img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  flex: 0 0 auto;
  border: 1px solid #dbeafe;
  background: #f8fbff;
}

.floating-mini-card strong,
.floating-mini-card span {
  display: grid;
  place-items: center;
}

.floating-mini-card strong {
  font-size: 0.94rem;
}

.floating-mini-card span {
  color: #64748b;
  font-size: 0.83rem;
}

.mini-one {
  left: -6px;
  bottom: 44px;
}

.mini-two {
  right: -10px;
  top: 52px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.stats-band {
  padding-top: 18px;
  padding-bottom: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stats-grid article {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
}

.stats-grid strong,
.stats-grid span {
  display: grid;
  place-items: center;
}

.stats-grid strong {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  color: #1d4ed8;
  margin-bottom: 4px;
}

.stats-grid span {
  color: #475569;
  font-size: 0.94rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.industries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.industry-card,
.feature-card,
.testimonial,
.product-block,
.mini-card,
.about-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.industry-card:hover,
.feature-card:hover,
.testimonial:hover,
.product-block:hover,
.mini-card:hover,
.about-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.16);
}

.info-card i,
.industry-card i,
.feature-card i {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.card-thumb {
  width: 100%;
  height: 146px;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.card-thumb.large {
  height: 164px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: grid;
  place-items: center;
}

.info-card .card-thumb {
  height: 168px;
  background: linear-gradient(180deg, #f4f8ff, #ecf3ff);
}

.info-card .card-thumb img {
  object-fit: contain;
  object-position: center center;
  display: block;
}

.industry-thumb {
  width: 100%;
  height: 320px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #eaf3ff);
  border: 1px solid #dbeafe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.industry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 20px;
}

.industry-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 1.04rem;
  line-height: 1.7;
}

.jewellery-highlight {
  border-color: #fde68a;
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.16);
  background: linear-gradient(180deg, #ffffff, #fffdf7);
}

.jewellery-highlight .industry-thumb {
  width: 100%;
  height: 320px;
  border-radius: 20px;
}

.jewellery-highlight .industry-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -28px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-hero {
  padding-top: 42px;
  background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.product-stack {
  display: grid;
  gap: 20px;
}

.product-block ul {
  margin: 10px 0 14px;
  padding-left: 18px;
}

.product-upgraded {
  padding: 24px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.product-showcase-copy {
  display: grid;
  gap: 14px;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-showcase-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0;
}

.product-showcase-summary {
  font-size: 1.08rem;
  color: #334155;
}

.product-problem-note {
  margin-bottom: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #eff6ff);
  border: 1px solid #dbeafe;
}

.product-point-grid {
  display: grid;
  gap: 14px;
}

.product-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
  font-weight: 700;
  color: #1e293b;
}

.point-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.product-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.product-showcase-visual {
  position: relative;
  min-height: 100%;
  padding: 26px 0;
}

.product-image-frame {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.68) 35%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(147, 197, 253, 0.26), transparent 28%),
    linear-gradient(135deg, #f8fbff, #eef5ff 48%, #e8f0ff);
  border-radius: 34px;
  padding: 20px;
  border: 1px solid #dbeafe;
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.16);
  overflow: hidden;
}

.product-image-frame::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22), transparent 68%);
  pointer-events: none;
}

.product-image-frame .card-thumb {
  height: 340px;
  margin-bottom: 0;
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.product-badge {
  position: absolute;
  z-index: 2;
  max-width: 240px;
  padding: 14px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 20px 34px rgba(37, 99, 235, 0.16);
  font-weight: 700;
  color: #1e3a8a;
}

.product-badge.top {
  top: 0;
  right: -8px;
}

.product-badge.bottom {
  left: -8px;
  bottom: 0;
}

.product-subtitle {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #1d4ed8;
}

.product-detail-wrap {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #dbeafe;
}

.product-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.product-usecase {
  margin-bottom: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.92rem;
}

.product-feature-list {
  columns: 2;
  column-gap: 28px;
}

.jewellery-product {
  border-color: #fde68a;
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.14);
  background: linear-gradient(180deg, #ffffff, #fffdf8);
}

.jewellery-photo {
  height: 340px;
}

.jewellery-photo img {
  object-position: center 40%;
}

.product-block li {
  margin-bottom: 7px;
  break-inside: avoid;
}

.problem strong,
.solution strong {
  color: #0b3ab8;
}

.software-thumb {
  background:
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.18), transparent 35%),
    linear-gradient(180deg, #f8fbff, #edf5ff);
  padding: 16px;
}

.software-thumb img {
  object-fit: contain;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-link i {
  color: var(--primary);
  margin-right: 8px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.form-msg {
  display: none;
  margin-top: 2px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.form-msg.show {
  display: block;
}

.form-msg.success {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #166534;
}

.form-msg.error {
  border: 1px solid #fdba74;
  background: #fff7ed;
  color: #9a3412;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #bfdbfe;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #dbeafe;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  position: absolute;
  inset: 0;
  display: block;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.video-card:hover .video-link img {
  transform: scale(1.04);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(191, 219, 254, 0.55);
  backdrop-filter: blur(3px);
}

.video-card h3 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1rem;
}

.location-card {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.location-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.location-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.location-notes {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 8px 12px;
  background: #eff6ff;
  color: #1e3a8a;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
  color: #fff;
}

.cta-band p {
  color: #e2e8f0;
}

.cta-inline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 42px;
}

.site-footer .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.site-footer a:not(.logo) {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #93c5fd;
}

.footer-address {
  margin-top: 6px;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.5;
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 16px;
  color: #334155;
  font-weight: 600;
}

.address-line i {
  color: #2563eb;
  margin-top: 4px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1e293b;
  display: inline-grid;
  place-items: center;
}

.copyright {
  text-align: center;
  margin: 26px 0 0;
  border-top: 1px solid #334155;
  padding: 14px;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  border-radius: 999px;
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.float-btn.wa {
  background: #25d366;
}

.float-btn.call {
  background: #1e40af;
}

.demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  place-items: center;
  z-index: 70;
  padding: 20px;
}

.demo-modal.show {
  display: grid;
}

.demo-content {
  background: #fff;
  border-radius: 12px;
  width: min(420px, 100%);
  padding: 20px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: #e2e8f0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .main-ui-card,
  .floating-mini-card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid.industries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-inline {
    grid-template-columns: 1fr;
    display: grid;
  }
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .card-grid.six,
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mini-one,
  .mini-two {
    position: static;
    margin-top: 14px;
  }
  .hero-panel {
    padding: 10px 0 0;
    perspective: none;
  }
  .main-ui-card {
    transform: none !important;
  }
  .floating-mini-card {
    transform: none !important;
  }
}

@media (max-width: 680px) {
  .topbar-wrap,
  .topbar-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar-wrap {
    padding: 10px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: grid;
  place-items: center;
  }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: #fff;
    border-bottom: 1px solid #dbeafe;
    display: none;
    flex-direction: column;
    padding: 12px;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .card-grid.six,
  .card-grid.three,
  .card-grid.five,
  .card-grid.industries,
  .video-gallery-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 58px 0;
  }
  .location-card {
    padding: 16px;
  }
  .location-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-wrap iframe {
    height: 300px;
  }
  .product-upgraded {
    padding: 18px;
  }
  .product-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-image-frame .card-thumb {
    height: 220px;
  }
  .product-badge {
    position: static;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .product-feature-list {
    columns: 1;
  }
  .software-layout,
  .software-grid {
    grid-template-columns: 1fr;
  }
  .hero-slider-card {
    min-height: auto;
  }
  .software-sidebar {
    grid-template-columns: repeat(4, 1fr);
  }
  .side-item {
    width: 100%;
  }
  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}



