/* ================================================================
   Corporate Design System - Oven Bakeries & Machines
   ================================================================ */

:root {
  --primary: #1e5bff;
  --primary-light: #4d7cff;
  --primary-soft: #eaf1ff;
  --secondary: #00c2ff;
  --tertiary: #7c4dff;
  --accent: #ff6b00;
  --accent-2: #ff2d78;
  --accent-soft: #fff1e6;
  --success: #12b76a;
  --danger: #f04438;
  --warning: #f79009;
  --dark: #0b1530;
  --dark-2: #111e3f;
  --dark-3: #1a2a52;
  --navy: #0a1128;
  --text: #223048;
  --text-muted: #5f6987;
  --gray-50: #f6f8fd;
  --gray-100: #eef1f8;
  --gray-200: #e2e7f0;
  --gray-300: #cfd6e4;
  --border: #e6eaf4;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 2px 10px rgba(30, 91, 255, 0.06);
  --shadow-md: 0 10px 30px rgba(30, 91, 255, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 91, 255, 0.16);
  --shadow-accent: 0 10px 30px rgba(255, 107, 0, 0.22);
  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, 'Helvetica Neue', sans-serif;
  --font-head: 'Segoe UI', system-ui, sans-serif;
  --grad-primary: linear-gradient(135deg, #1e5bff 0%, #00c2ff 100%);
  --grad-deep: linear-gradient(135deg, #0a1f66 0%, #1e5bff 100%);
  --grad-dark: linear-gradient(160deg, #070d24 0%, #0a1d4f 55%, #14306e 100%);
  --grad-accent: linear-gradient(135deg, #ff6b00 0%, #ff2d78 100%);
  --grad-mint: linear-gradient(135deg, #12b76a 0%, #00c2ff 100%);
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  font-size: 15.5px;
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
  color: var(--dark);
}
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-light); }
p { margin-bottom: 1rem; }
img { max-width: 100%; }
::selection { background: var(--primary); color: #fff; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: 10px 18px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 8px; top: 8px; border-radius: var(--radius-sm); }

/* ================= TOP BAR ================= */
.topbar {
  background: var(--navy);
  color: #c5cede;
  font-size: .82rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar a { color: #c5cede; text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--accent); }
.topbar i { color: var(--secondary); }
.topbar .section-divider { margin: 0 .75rem; opacity: .3; }

/* ================= NAVBAR ================= */
.navbar {
  padding: .65rem 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,71,161,.05);
}
.navbar.bg-white { background: rgba(255,255,255,.98) !important; }
.navbar .navbar-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.navbar .navbar-brand .brand-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.05rem;
  margin-right: .5rem;
  box-shadow: 0 3px 10px rgba(13,71,161,.3);
}
.navbar .navbar-brand .text-primary { color: var(--primary) !important; }
.navbar .nav-link {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  padding: .55rem .9rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: .9rem; right: .9rem; bottom: .2rem;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar .nav-link:hover { color: var(--primary); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--primary); }
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: .5rem;
}
.navbar .dropdown-item {
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .8rem;
}
.navbar .dropdown-item:hover { background: var(--primary-soft); color: var(--primary); }

/* ================= MEGA MENU ================= */
.navbar .mega-nav { position: static; }
.navbar .mega-menu {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 8px);
  top: 100%;
  width: min(920px, 94vw);
  max-height: 82vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
}
.navbar .mega-nav:hover .mega-menu,
.navbar .mega-nav.show .mega-menu,
.navbar .mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.navbar .mega-inner { display: flex; flex-direction: column; }
.navbar .mega-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(135deg, var(--gray-50), var(--primary-soft));
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.navbar .mega-head h5 { font-weight: 800; font-size: 1.05rem; margin: .2rem 0; }
.navbar .mega-head p { font-size: .8rem; color: var(--text-muted); margin: 0; }
.navbar .mega-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); background: #fff;
  border: 1px solid rgba(30,91,255,.14);
  border-radius: 50px; padding: .25rem .7rem;
  margin-bottom: .4rem;
}
.navbar .mega-badge i { color: var(--accent); }
.navbar .mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr auto;
  gap: 0;
  padding: 1.1rem 1.4rem 1.4rem;
}
.navbar .mega-col { min-width: 0; }
.navbar .mega-col-label {
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: .7rem;
}
.navbar .mega-list { list-style: none; padding: 0; margin: 0; }
.navbar .mega-list li { margin-bottom: .12rem; }
.navbar .mega-list a {
  display: flex; align-items: center; gap: .55rem;
  padding: .38rem .6rem;
  border-radius: 8px;
  color: var(--text);
  font-size: .9rem; font-weight: 500;
  transition: background .18s, color .18s, transform .18s;
}
.navbar .mega-list a i { font-size: .62rem; color: var(--primary); opacity: .6; transition: transform .18s; }
.navbar .mega-list a:hover { background: var(--primary-soft); color: var(--primary); transform: translateX(3px); }
.navbar .mega-list a:hover i { opacity: 1; transform: translateX(2px); }
.navbar .mega-feature { width: 210px; }
.navbar .mega-feature-card {
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.navbar .mega-feature-icon {
  width: 48px; height: 48px; margin: 0 auto .7rem;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #57e0ff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(87,224,255,.12);
}
.navbar .mega-feature-card h6 { color: #fff; font-weight: 700; margin-bottom: .3rem; }
.navbar .mega-feature-card p { font-size: .78rem; opacity: .85; margin-bottom: .4rem; }

@media (max-width: 1199px) {
  .navbar .mega-menu { width: 95vw; }
  .navbar .mega-grid { grid-template-columns: 1fr 1fr auto; }
  .navbar .mega-feature { display: none; }
}
@media (max-width: 991px) {
  .navbar .mega-nav { position: relative; }
  .navbar .mega-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 1;
    visibility: visible;
    border: 1px solid var(--border);
    margin: .5rem 0;
    box-shadow: none;
    pointer-events: auto;
  }
  .navbar .mega-nav:hover .mega-menu,
  .navbar .mega-nav.show .mega-menu,
  .navbar .mega-menu:hover {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .navbar .mega-grid { grid-template-columns: 1fr; gap: .8rem; }
  .navbar .mega-feature { display: block; width: 100%; }
}

.navbar .nav-cta-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 8px;
  font-size: .88rem;
  white-space: nowrap;
  transition: all .2s ease;
}
.navbar .nav-cta-cart, .navbar .nav-cta-wishlist {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--text);
  background: var(--gray-50);
  border: 1px solid var(--border);
  position: relative;
  font-size: .95rem;
  transition: all .2s;
}
.navbar .nav-cta-cart:hover, .navbar .nav-cta-wishlist:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(13,71,161,.2);
}
.navbar .cart-badge, .navbar .wishlist-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  font-size: .62rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  padding: 0 4px;
  background: linear-gradient(135deg,#ff6b00,#f4511e);
  color: #fff;
  font-weight: 700;
  border: 2px solid #fff;
}

/* ================= MOBILE CTA ================= */
.mobile-cta {
  z-index: 1050;
  padding: .5rem .75rem !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  background: #fff;
}
.mobile-cta .btn { border-radius: 8px; font-size: .8rem; font-weight: 600; padding: .45rem .5rem; }

/* ================= HERO ================= */
.hero {
  background: var(--grad-dark);
  color: #fff;
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
/* animated gradient blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(0,194,255,.22) 0%, transparent 65%);
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -12%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(124,77,255,.20) 0%, transparent 65%);
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite reverse;
}
.hero .blob-accent {
  position: absolute;
  top: 18%; left: 42%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,107,0,.14) 0%, transparent 65%);
  pointer-events: none;
  animation: blobFloat 11s ease-in-out infinite;
}
.hero .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.1rem;
}
.hero h1 .accent-text {
  background: linear-gradient(90deg, #57e0ff, #7c9aff, #ff9e6b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 5s linear infinite;
}
.hero p.lead {
  font-size: 1.15rem;
  opacity: .9;
  max-width: 640px;
  color: #dbe8fb;
}
.hero .col-lg-7 > p {
  font-size: 1.08rem;
  opacity: .92;
  max-width: 620px;
  color: #dbe8fb;
}
.hero .hero-btn {
  padding: .72rem 1.45rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.hero .hero-btn:hover { transform: translateY(-3px); }
.hero .btn-primary { background: var(--grad-primary); border: none; box-shadow: 0 6px 24px rgba(30,91,255,.4); }
.hero .btn-primary:hover { box-shadow: 0 10px 34px rgba(30,91,255,.55); }
.hero .btn-success { background: linear-gradient(135deg,#25d366,#128c7e); border: none; box-shadow: 0 6px 24px rgba(37,211,102,.32); }
.hero .btn-outline-light { border: 2px solid rgba(255,255,255,.35); background: rgba(255,255,255,.05); backdrop-filter: blur(4px); }
.hero .btn-outline-light:hover { background: rgba(255,255,255,.15); }
.hero .hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 1.7rem;
  font-size: .86rem;
  color: #c4d3ec;
}
.hero .hero-trust i { color: #57e0ff; margin-right: .35rem; filter: drop-shadow(0 0 6px rgba(0,194,255,.6)); }
.hero .hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 480px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero .stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  background: linear-gradient(90deg,#57e0ff,#7c9aff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .stat-label { font-size: .78rem; color: #93a7c8; }
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transform: perspective(900px) rotateY(-4deg);
  transition: transform .4s ease;
}
.hero-img-wrap:hover { transform: perspective(900px) rotateY(0deg); }
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,13,36,.45));
  pointer-events: none;
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-img-badge {
  position: absolute;
  bottom: 16px; left: 14px;
  right: 14px;
  background: rgba(9,18,50,.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: .85rem 1rem;
  display: flex; justify-content: space-between;
  gap: .5rem;
  color: #fff;
  font-size: .85rem;
  z-index: 2;
}
.hero-img-badge span { text-align: center; }
.hero-img-badge span strong { color: #fff; display: block; font-size: 1rem; }
.hero-float-chip {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.95);
  color: var(--dark);
  border-radius: 14px;
  padding: .7rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: .5rem;
  animation: floatChip 6s ease-in-out infinite;
}
.hero-float-chip i { color: var(--primary); font-size: 1rem; }
.chip-1 { top: 12%; right: -14px; }
.chip-2 { bottom: 22%; left: -18px; animation-delay: 2s; }
@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.08); }
  66% { transform: translate(-20px,20px) scale(.95); }
}
@keyframes textShine {
  to { background-position: -200% center; }
}

/* ============ HERO SLIDER (Revolution style) ============ */
.hero { padding-bottom: 120px; }
.slider-shell { max-width: 1240px; }
.hero-slider { position: relative; }
.hero-slides {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 1.1s ease, visibility .8s;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.hero-slide::before {
  content: '';
  position: absolute;
  right: -12%; top: 50%;
  transform: translateY(-50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--rw,30,91,255),.28) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-slide .row { position: relative; z-index: 1; min-height: 560px; }

/* Layer entrance animations (Revolution-like staggered layers) */
.hero-layer {
  opacity: 0;
  will-change: transform, opacity;
}
.hero-slide.is-active .hero-layer { animation-timing-function: cubic-bezier(.22,.61,.36,1); }
.is-active .slider-eyebrow { animation: hsFadeIn .6s .25s both; }
.is-active [data-anim="fadeIn"] { animation: hsFadeIn .8s .35s both; }
.is-active [data-anim="slidingUp"] { animation: hsSlidingUp .8s .45s both; }
.is-active [data-anim="fadeInUp"] { animation: hsFadeInUp .8s .6s both; }
.is-active [data-anim="zoomIn"] { animation: hsZoomIn 1s .7s both; }

@keyframes hsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes hsSlidingUp {
  from { opacity: 0; transform: translate(0, 90px); }
  to { opacity: 1; transform: translate(0, 0); }
}
@keyframes hsFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hsZoomIn {
  from { opacity: 0; transform: scale(.65); }
  to { opacity: 1; transform: scale(1); }
}

/* Slider copy layout */
.slider-copy { padding-right: 1rem; }
.slider-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .4px;
  color: #d5edff;
  text-transform: uppercase;
}
.slider-desc {
  font-size: 1.08rem; opacity: .92; max-width: 600px;
  color: #dbe8fb; margin-bottom: 1.2rem;
}
.slider-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.meta-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #e9f3ff;
  font-size: .82rem; font-weight: 600;
  padding: .45rem .7rem; border-radius: 30px;
  backdrop-filter: blur(4px);
}
.meta-chip i { color: #57e0ff; }
.slider-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.1rem; }
.slider-trust { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: .84rem; color: #c4d3ec; }
.slider-trust i { color: #57e0ff; margin-right: .3rem; }

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.hero-arrow:hover {
  background: var(--grad-primary);
  box-shadow: 0 8px 24px rgba(30,91,255,.45);
}
.hero-nav-prev { left: -26px; }
.hero-nav-next { right: -26px; }
.hero-arrow:active { transform: translateY(-50%) scale(.92); }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: -44px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .55rem;
  z-index: 10;
}
.hero-dots .dot {
  width: 10px; height: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.28);
  border: none;
  cursor: pointer;
  transition: width .25s, background .25s;
  padding: 0;
}
.hero-dots .dot.is-active {
  width: 30px;
  background: var(--grad-primary);
}

/* Autoplay progress bar */
.hero-progress {
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  transition: opacity .3s;
}
.hero-progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg,#57e0ff,var(--grad-primary));
  transform: scaleX(0);
  transform-origin: left;
}
.hero-slider.is-playing .hero-progress { opacity: 1; }
.hero-slider.is-playing .hero-progress i { animation: hsProgress var(--dwell, 5s) linear forwards; }
@keyframes hsProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ================= STATS BAR ================= */
.stats-bar {
  background: var(--grad-primary);
  color: #fff;
  padding: 1.5rem 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  background-attachment: fixed;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.stats-bar .container { position: relative; z-index: 2; }
.stats-bar .stat-item { text-align: center; padding: .5rem 0; position: relative; }
.stats-bar .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.18);
}
.stats-bar .stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  color: #fff;
}
.stats-bar .stat-desc {
  font-size: .8rem;
  opacity: .9;
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.stats-bar i { font-size: 1.35rem; margin-right: .4rem; filter: drop-shadow(0 2px 8px rgba(255,255,255,.35)); }

/* ================= SECTION TITLE ================= */
.section-pad { position: relative; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.section-title > .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: .9rem;
  border: 1px solid rgba(30,91,255,.1);
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 3px rgba(255,45,120,.15);
}

/* ================= CARDS ================= */
.card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,91,255,.2);
}
.card.shadow-sm { box-shadow: var(--shadow); }
.card-body { padding: 1.5rem; }
.card .card-img-top { transition: transform .5s ease; }
.card:hover .card-img-top { transform: scale(1.05); }

/* ================= MACHINE CARD ================= */
.machine-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.machine-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(30,91,255,.14); }
.machine-card .card-img-wrap {
  position: relative;
  overflow: hidden;
}
.machine-card .card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(7,13,36,.18));
  pointer-events: none;
}
.machine-card .card-img-wrap img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform .6s ease;
}
.machine-card:hover .card-img-wrap img { transform: scale(1.08); }
.machine-card .cat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .32rem .75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}
.machine-card .card-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; gap: .4rem;
}
.machine-card .icon-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: none;
  color: var(--text);
  cursor: pointer;
  font-size: .88rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
  transition: all .22s;
}
.machine-card .icon-btn:hover { background: var(--grad-primary); color: #fff; transform: scale(1.12) rotate(-6deg); }
.machine-card .card-body { padding: 1.3rem 1.4rem 1.5rem; }
.machine-card .machine-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-block;
  background: var(--primary-soft);
  padding: .2rem .7rem;
  border-radius: 8px;
}
.machine-card .btn-view {
  border-radius: 10px;
  padding: .5rem 1rem;
  font-weight: 600;
  font-size: .86rem;
}

/* ================= BADGES / PILLS ================= */
.badge-cat {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
  font-size: .76rem;
  border-radius: 50px;
  padding: .35em .75em;
  border: 1px solid rgba(30,91,255,.12);
}
.pill-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gray-50);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
}

/* ================= STAT CARD ================= */
.stat-card {
  border-radius: var(--radius);
  text-align: center;
  padding: 1.9rem 1.2rem;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .28s, box-shadow .28s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card:hover::before { opacity: 1; }
.stat-card .stat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
  font-size: 1.35rem;
  transition: transform .3s;
}
.stat-card:hover .stat-icon { transform: scale(1.1) rotate(-6deg); }
.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.stat-card .stat-label {
  font-size: .86rem;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* ================= TICKET BOXES (industries/categories) ================= */
.ticket-card {
  position: relative;
  padding: 2.2rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .28s ease;
  text-decoration: none;
  display: block;
  height: 100%;
  overflow: hidden;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.ticket-card:hover::before { transform: scaleX(1); }
.ticket-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.ticket-card .ticket-icon {
  width: 62px; height: 62px;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: all .3s;
  box-shadow: 0 6px 16px rgba(30,91,255,.12);
}
.ticket-card:hover .ticket-icon { background: var(--grad-primary); color: #fff; transform: scale(1.08) rotate(-6deg); }
.ticket-card.cat-ticket .ticket-icon {
  background: var(--cat-grad, var(--grad-primary));
  color: #fff;
}
.ticket-card.cat-ticket:hover .ticket-icon {
  background: var(--cat-grad, var(--grad-primary));
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 10px 22px rgba(30,91,255,.28);
}
.ticket-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.ticket-card p { font-size: .86rem; color: var(--text-muted); margin-bottom: .6rem; }
.ticket-card .ticket-link {
  font-size: .84rem;
  color: var(--primary);
  font-weight: 600;
}
.ticket-card .ticket-link i { transition: transform .25s; }
.ticket-card:hover .ticket-link i { transform: translateX(4px); }

/* ================= TESTIMONIAL ================= */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  height: 100%;
  transition: box-shadow .28s, transform .28s;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--primary);
  opacity: .1;
  position: absolute;
  top: 16px; right: 20px;
}
.testimonial-card .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(30,91,255,.3);
}
.testimonial-card .stars { color: #ffb300; font-size: .86rem; }

/* ================= STEP / PROCESS ================= */
.process-step {
  text-align: center;
  padding: 2rem 1.3rem;
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .28s, box-shadow .28s;
  overflow: hidden;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  width: 68px; height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .28s, color .28s, transform .28s;
  box-shadow: 0 8px 18px rgba(30,91,255,.14);
}
.process-step:hover .step-num { background: var(--grad-primary); color: #fff; transform: scale(1.1); }
.process-step h3 { font-size: 1.08rem; font-weight: 700; }
.process-step p { font-size: .88rem; color: var(--text-muted); margin-bottom: 0; }
.process-connector::after {
  content: '';
  position: absolute;
  top: 35px; right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-soft), var(--border));
  z-index: -1;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L6 4L2.5 8' fill='none' stroke='%2390a0b4' stroke-width='1.5'/%3E%3C/svg%3E");
}
.breadcrumb-item a { color: var(--primary); font-weight: 500; }
.breadcrumb-item.active { color: var(--text-muted); }
.page-header {
  background: linear-gradient(135deg, var(--gray-50) 0%, #eef3fa 100%);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.page-header h1 { font-size: 1.9rem; font-weight: 800; }
.page-header p { color: var(--text-muted); font-size: 1rem; max-width: 720px; }

/* ================= CATEGORY PAGE ================= */
.category-hero {
  background: var(--grad-dark);
  color: #fff;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.category-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,194,255,.2) 0%, transparent 65%);
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.category-hero .container { position: relative; z-index: 2; }
.ch-breadcrumb { --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M2.5 0L6 4L2.5 8' fill='none' stroke='%238fa3c0' stroke-width='1.5'/%3E%3C/svg%3E"); }
.ch-breadcrumb .breadcrumb-item a { color: #9fb4d6; }
.ch-breadcrumb .breadcrumb-item a:hover { color: #57e0ff; }
.ch-breadcrumb .breadcrumb-item.active { color: #57e0ff; }
.category-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1rem;
}
.category-hero h1 .accent-text {
  background: linear-gradient(90deg, #57e0ff, #7c9aff, #ff9e6b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 5s linear infinite;
}
.category-hero p {
  font-size: 1.05rem;
  color: #dbe8fb;
  max-width: 680px;
  opacity: .92;
}
.ch-chips {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: 1.5rem;
  font-size: .86rem;
  color: #c4d3ec;
}
.ch-chips span { display: inline-flex; align-items: center; gap: .4rem; }
.ch-chips i { color: #57e0ff; filter: drop-shadow(0 0 6px rgba(0,194,255,.6)); }
.category-hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  transform: perspective(900px) rotateY(-5deg);
  transition: transform .4s ease;
}
.category-hero-img:hover { transform: perspective(900px) rotateY(0); }
.category-hero-img img { width: 100%; display: block; }
.category-hero-icon {
  width: 150px; height: 150px;
  margin: 0 auto;
  border-radius: 28px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem;
  box-shadow: 0 20px 50px rgba(30,91,255,.4);
  animation: floatChip 6s ease-in-out infinite;
}
.ch-content { padding: 4.5rem 0; }
.ch-related .ticket-card { height: 100%; }

/* ================= RICH CONTENT ================= */
.rich-content h2 { font-size: 1.45rem; font-weight: 800; margin-top: 2rem; margin-bottom: .8rem; color: var(--dark); }
.rich-content h3 { font-size: 1.18rem; font-weight: 700; margin-top: 1.6rem; margin-bottom: .6rem; color: var(--dark); }
.rich-content p { margin-bottom: 1.1rem; color: var(--text); }
.rich-content ul, .rich-content ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.rich-content li { margin-bottom: .45rem; }
.rich-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.2rem 0; box-shadow: var(--shadow); }
.rich-content strong { color: var(--dark); }

/* ================= COMPARE TABLE ================= */
.compare-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table th, .compare-table td {
  white-space: nowrap;
  font-size: .88rem;
  padding: .7rem .85rem;
}
.compare-table th:first-child, .compare-table td:first-child {
  position: sticky; left: 0;
  background: var(--gray-50);
  z-index: 2;
  font-weight: 600;
}
.compare-table thead th { background: var(--primary-soft); color: var(--primary); border-bottom: 2px solid rgba(13,71,161,.15); }

/* ================= FILTER / STICKY ================= */
.filter-sidebar { position: sticky; top: 85px; }
.sticky-cta { position: sticky; top: 85px; }
.sticky-top { z-index: 100; }

/* ================= SEARCH RESULTS ================= */
.search-results-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 340px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
}
.search-results-dropdown.active { display: block; }
.search-results-dropdown .list-group-item {
  border: none;
  border-bottom: 1px solid var(--gray-100);
  padding: .7rem 1.1rem;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}
.search-results-dropdown .list-group-item:hover { background: var(--primary-soft); color: var(--primary); }

/* ================= FAQ ================= */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  box-shadow: none;
  padding: 1rem 1.2rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-soft);
}
.faq-accordion .accordion-button::after { filter: none; }

/* ================= FORMS ================= */
.form-control, .form-select {
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  padding: .6rem .9rem;
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,91,255,.14);
}
.form-label { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ================= BUTTONS ================= */
.btn {
  border-radius: 10px;
  font-weight: 600;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-primary);
  border: none;
  box-shadow: 0 6px 18px rgba(30,91,255,.28);
}
.btn-primary:hover { background: linear-gradient(135deg,#174fe0,#00b0e8); box-shadow: 0 8px 24px rgba(30,91,255,.4); }
.btn-outline-primary { border: 1.6px solid var(--primary); color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-success {
  background: linear-gradient(135deg,#25d366,#128c7e);
  border: none;
  box-shadow: 0 6px 18px rgba(37,211,102,.28);
}
.btn-outline-dark { border: 1.6px solid var(--dark); }
.btn-accent {
  background: var(--grad-accent);
  border: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,107,0,.32);
}
.btn-accent:hover { color: #fff; box-shadow: 0 8px 24px rgba(255,45,120,.4); }
.btn-pill { border-radius: 50px; }

/* ================= FOOTER ================= */
.footer {
  background: var(--grad-dark);
  color: #9fb0c8;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
}
.footer .footer-top {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer h6::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: #9fb0c8;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer .footer-contact p { font-size: .9rem; margin-bottom: .6rem; }
.footer .footer-contact i { color: var(--secondary); width: 20px; }
.footer .footer-cta {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.footer .footer-bottom {
  padding: 1.4rem 0;
  font-size: .87rem;
  color: #8094ae;
}
.footer .footer-bottom a { color: #b8c6dc; text-decoration: none; }
.footer .footer-bottom a:hover { color: var(--accent); }
.footer .social-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: #b8c6dc;
  border: 1px solid rgba(255,255,255,.1);
  transition: all .2s;
}
.footer .social-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ================= BACK TO TOP ================= */
.back-to-top {
  position: fixed;
  bottom: 95px; right: 22px;
  z-index: 1050;
  display: flex; flex-direction: column; gap: .5rem;
  align-items: flex-end;
}
.back-to-top .btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}
/* ----- floating call + whatsapp cluster ----- */
.float-actions {
  display: flex; flex-direction: column; gap: .6rem;
  align-items: flex-end;
}
.float-actions a {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-actions a:hover { transform: translateY(-3px) scale(1.04); }
.float-actions a:hover .float-label { opacity: 1; visibility: visible; transform: translateX(0); }
.back-to-top .btn-ws {
  background: linear-gradient(135deg,#25d366,#128c7e);
  border: none;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
  animation: pulse 2.5s infinite;
}
.back-to-top .btn-call {
  background: linear-gradient(135deg,#0d6efd,#0a58ca);
  border: none;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(13,110,253,.4);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* ----- hover tooltip labels ------ */
.float-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(6px, -50%);
  white-space: nowrap;
  background: #1a1f36;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  pointer-events: none;
}
.float-label::after {
  content: "";
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1f36;
}

/* ================= CART / WISHLIST ================= */
.cart-badge, .wishlist-badge { font-size: .65rem; }
.qty-btn {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid var(--gray-300);
  background: var(--gray-50);
  border-radius: 6px;
  font-weight: 600;
  transition: all .2s;
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.order-summary {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.order-summary .item-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9rem;
}
.order-summary .item-row:last-child { border-bottom: none; }
.order-summary .total-row {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 1.15rem;
  padding-top: .8rem;
  border-top: 2px solid var(--primary);
  margin-top: .5rem;
  color: var(--dark);
}
.cart-empty, .wishlist-empty { text-align: center; padding: 5rem 1rem; }
.cart-empty i, .wishlist-empty i { font-size: 4.5rem; color: var(--gray-200); margin-bottom: 1rem; }
.wishlist-toggle:hover i, .compare-toggle:hover i { color: var(--primary) !important; }

/* ================= SPEC TABLE ================= */
.spec-table th { width: 40%; background: var(--gray-50); font-weight: 600; }
.spec-table td, .spec-table th {
  padding: .65rem .75rem;
  border-color: var(--border);
  font-size: .9rem;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .65s cubic-bezier(.22,.61,.36,1) both; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ================= SHINE (blueprint button/card) ================= */
.shine { position: relative; overflow: hidden; }
.shine::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-25deg);
  animation: shineMove 3.2s ease-in-out infinite;
}
@keyframes shineMove {
  0%, 30% { left: -75%; }
  70%, 100% { left: 150%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,.5));
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ================= SEO SCORE ================= */
.seo-score-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  overflow: hidden;
}
.seo-score-bar .bar {
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease;
}
.seo-score-bar .bar.good { background: var(--success); }
.seo-score-bar .bar.warn { background: #f57c00; }
.seo-score-bar .bar.bad { background: var(--danger); }

/* ================= FORM VALIDATION ================= */
.was-validated .form-control:valid,
.form-control.is-valid { border-color: var(--success); background-image: none; }
.was-validated .form-control:invalid,
.form-control.is-invalid { border-color: var(--danger); }

/* ================= SECTION SPACING ================= */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.bg-soft { background: var(--gray-50); }
.divider-light { border-color: var(--border); }

/* ================= CTA BANNER ================= */
.cta-banner {
  background: var(--grad-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30,91,255,.25);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%; right: -12%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,.25) 0%, transparent 70%);
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%; left: -12%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,.25) 0%, transparent 70%);
  pointer-events: none;
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.cta-banner h2 { color: #fff; font-size: 1.9rem; font-weight: 800; position: relative; z-index: 2; }
.cta-banner p { opacity: .92; max-width: 620px; margin: 0 auto 1.6rem; position: relative; z-index: 2; }
.cta-banner .cta-icon {
  font-size: 2.6rem; color: #fff; margin-bottom: .6rem;
  display: inline-block; animation: floaty 3s ease-in-out infinite;
  position: relative; z-index: 2;
  filter: drop-shadow(0 6px 18px rgba(0,194,255,.5));
}
.cta-banner .cta-btn { padding: .8rem 2rem; font-weight: 600; border-radius: 12px; position: relative; z-index: 2; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ============ LEAD POPUP ============ */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
.lead-popup.is-open { opacity: 1; visibility: visible; }
.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,13,33,.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.lead-popup-card {
  position: relative;
  width: min(430px, calc(100vw - 40px));
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  transform: translateY(24px) scale(.96);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  border: 1px solid rgba(255,255,255,.2);
}
.lead-popup.is-open .lead-popup-card { transform: translateY(0) scale(1); }
.lead-popup-art {
  height: 170px;
  background: linear-gradient(135deg, #1e5bff, #7c4dff 55%, #ff2d78);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.lead-popup-art::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 65%);
  top: -70px; right: -60px;
}
.lead-popup-art::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,.35), transparent 65%);
  bottom: -70px; left: -50px;
}
.lead-popup-art i { filter: drop-shadow(0 10px 24px rgba(0,0,0,.3)); animation: popWa 2.2s ease-in-out infinite; }
@keyframes popWa { 0%,100%{transform:rotate(0)} 10%{transform:rotate(-12deg)} 20%{transform:rotate(10deg)} 30%{transform:rotate(-8deg)} 40%{transform:rotate(6deg)} 50%{transform:rotate(0)} }
.lead-popup-body { padding: 1.6rem 1.7rem 1.8rem; text-align: center; }
.lead-popup-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--primary);
  background: rgba(30,91,255,.08);
  padding: .3rem .8rem; border-radius: 30px;
  margin-bottom: .9rem;
}
.lead-popup-body h3 { font-size: 1.45rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; line-height: 1.2; }
.lead-popup-body p { color: #66758c; font-size: .94rem; margin-bottom: 1.3rem; }
.lead-popup-phone {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #dbe3f1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: .85rem;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.lead-popup-phone:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,91,255,.12); }
.lead-popup-prefix {
  display: flex; align-items: center;
  background: #f1f5fc;
  color: #33415b;
  font-weight: 700;
  padding: 0 .9rem;
  border-right: 1.5px solid #dbe3f1;
}
.lead-popup-input {
  flex: 1;
  border: none;
  outline: none;
  padding: .95rem .9rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 0;
}
.lead-popup-input::placeholder { color: #a8b4c9; font-weight: 500; }
.lead-popup-btn {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: .95rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1e5bff, #7c4dff);
  box-shadow: 0 10px 26px rgba(30,91,255,.35);
  transition: transform .2s, box-shadow .2s;
}
.lead-popup-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30,91,255,.45); }
.lead-popup-btn:disabled { opacity: .7; cursor: not-allowed; }
.lead-popup-note { margin-top: .9rem; font-size: .74rem; color: #93a2b6; }

/* ============ INDUSTRIES PAGE ============ */
.ind-hero-icon {
  width: 190px; height: 190px;
  font-size: 4.6rem;
  background: var(--grad-deep);
  animation: floaty 4s ease-in-out infinite;
}

/* Donut chart */
.donut-chart {
  --seg1:45; --seg2:22; --seg3:14; --seg4:12; --seg5:7;
  width: 190px; height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    #1e5bff 0 calc(var(--seg1)*1%),
    #00c2ff calc(var(--seg1)*1%) calc((var(--seg1)+var(--seg2))*1%),
    #7c4dff calc((var(--seg1)+var(--seg2))*1%) calc((var(--seg1)+var(--seg2)+var(--seg3))*1%),
    #12b76a calc((var(--seg1)+var(--seg2)+var(--seg3))*1%) calc((var(--seg1)+var(--seg2)+var(--seg3)+var(--seg4))*1%),
    #ff2d78 calc((var(--seg1)+var(--seg2)+var(--seg3)+var(--seg4))*1%) 100%
  );
  box-shadow: 0 20px 50px rgba(30,91,255,.25);
}
.donut-chart::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: #fff;
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.donut-center strong {
  font-size: 2.4rem; font-weight: 800; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.donut-center span { font-size: .78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.chart-legend { margin: 0; }
.chart-legend li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .86rem; color: var(--text-muted);
  padding: .45rem 0; border-bottom: 1px dashed var(--border);
}
.chart-legend li:last-child { border-bottom: none; }
.chart-legend li strong { margin-left: auto; color: var(--dark); }
.legend-dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }

/* Bar chart */
.bar-chart-card { border-radius: 18px; }
.bar-chart { display: flex; flex-direction: column; gap: .9rem; }
.bar-row { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: .7rem; }
.bar-label {
  font-size: .8rem; font-weight: 600; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bar-track {
  height: 20px;
  background: #eef2fb;
  border-radius: 30px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 30px;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: .55rem;
  transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}
.bar-fill span { font-size: .68rem; font-weight: 700; color: #fff; }
.bar-chart-card.is-inview .bar-fill { width: var(--w) !important; }

/* Industry tickets */
.ind-ticket .ticket-icon { font-size: 1.5rem; }
.ind-ticket-top { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .35rem; }
.ind-ticket-top h3 { margin-bottom: 0; }
.ind-count {
  font-size: .68rem; font-weight: 700; color: var(--primary);
  background: rgba(30,91,255,.08);
  padding: .25rem .6rem; border-radius: 30px;
  white-space: nowrap;
}

/* ================= ABOUT PAGE ================= */
.about-list { list-style: none; padding-left: 0; margin: 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .8rem 0; border-bottom: 1px dashed var(--border);
  font-size: .95rem; color: var(--text);
}
.about-list li:last-child { border-bottom: 0; }
.about-list li i {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 12px; background: rgba(30,91,255,.08);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.about-list li strong { display: block; color: var(--dark); }
.about-list a { color: var(--primary); font-weight: 600; }
.about-list a:hover { color: var(--dark); }

/* ================= LOCATION PAGES ================= */
.hover-shadow { transition: transform .25s ease, box-shadow .25s ease; }
.hover-shadow:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.city-card { border-radius: 14px; transition: transform .25s ease, box-shadow .25s ease; }
.city-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.city-card .city-icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 11px; background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.city-card:hover .city-icon { transform: scale(1.1) rotate(-6deg); transition: transform .25s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1199px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-nav-prev { left: -14px; }
  .hero-nav-next { right: -14px; }
  .hero-arrow { width: 46px; height: 46px; }
}

@media (max-width: 991px) {
  main { padding-bottom: 68px; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 1.9rem; }
  .hero p.lead { font-size: 1.02rem; }
  .navbar .navbar-collapse {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: .75rem;
    box-shadow: var(--shadow-md);
  }
  .navbar .nav-link::after { display: none; }
  .mobile-cta { display: flex !important; }
  .filter-sidebar { position: static; }
  .sticky-cta { position: static; }
  .stats-bar .stat-value { font-size: 1.5rem; }
  .section-title { font-size: 1.6rem; }
  .category-hero h1 { font-size: 1.9rem; }
  .hero-slides, .hero-slide .row { min-height: auto; }
  .hero { padding-bottom: 84px; }
  .hero-slide { position: relative; }
  .hero-slide:not(.is-active) { display: none; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 1.6rem; }
  .hero { padding: 40px 0; }
  .topbar .container { flex-direction: column; text-align: center; gap: 3px; }
  .section-title { font-size: 1.35rem; }
  .stats-bar .stat-desc { font-size: .68rem; }
  .page-header { padding: 1.5rem 0; }
  .page-header h1 { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .hero-img-wrap { transform: none; }
  .hero .hero-stats { gap: 1rem; }
  .hero-float-chip { font-size: .7rem; padding: .55rem .7rem; }
  .chip-1 { top: 8%; right: -8px; }
  .chip-2 { bottom: 16%; left: -10px; }
  .category-hero { padding: 32px 0 40px; }
  .category-hero h1 { font-size: 1.6rem; }
  .category-hero-icon { width: 110px; height: 110px; font-size: 2.6rem; }
  .slider-copy { text-align: center; }
  .slider-meta, .slider-cta, .slider-trust { justify-content: center; }
  .hero-arrow { display: none; }
  .hero-nav-prev, .hero-nav-next { top: auto; bottom: 8px; }
}

@media (max-width: 575px) {
  .hero { padding: 34px 0; }
  .hero h1 { font-size: 1.4rem; }
  .stat-card { padding: 1rem .75rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 3.2rem 0; }
  .back-to-top { right: 14px; bottom: 84px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1220px; }
}

/* ================================================================
   PRINT
   ================================================================ */
@media print {
  .topbar, .navbar, .mobile-cta, .back-to-top, footer, .cta-bar {
    display: none !important;
  }
  main { padding-bottom: 0 !important; }
  .card { box-shadow: none; border: 1px solid #ddd; }
  .hero { background: #333 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
