/* ========================================
   ROOT / VARIABLES
======================================== */
:root {
  --brand: #0a3f51;
  --brand-2: #135b73;
  --brand-3: #edf6fa;
  --ink: #173844;
  --muted: #66808a;
  --line: #d9e7ed;
  --white: #fff;
  --lightblue: #d1e4ec;
  --bg-soft: #f7fbfc;
  --bg-panel: #f8fbfc;
  --border-soft: rgba(10, 63, 81, 0.08);
  --brand-gradient: linear-gradient(135deg, var(--brand), var(--brand-2));
  --surface-gradient: linear-gradient(180deg, #fcfeff 0%, #eef7fb 100%);
  --shadow: 0 14px 40px rgba(10, 63, 81, 0.08);
  --shadow-lg: 0 22px 56px rgba(10, 63, 81, 0.12);
  --transition: 0.25s ease;
  --radius: 20px;
  --radius-sm: 16px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 32px;
}

/* ========================================
   BASE / GLOBAL
======================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
.navbar {
  backdrop-filter: saturate(160%) blur(12px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(10, 63, 81, 0.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 10px 28px rgba(10, 63, 81, 0.08);
}
.navbar-brand img {
  height: 48px;
  width: auto;
}
.nav-link {
  color: var(--ink) !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 0.9rem !important;
}
.nav-link:hover {
  color: var(--brand-2) !important;
}
.nav-link.active {
  color: var(--brand) !important;
}
.navbar .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
}
.navbar .dropdown-item {
  border-radius: 12px;
  color: var(--ink);
  font-weight: 650;
  padding: 0.65rem 0.85rem;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
  background: var(--brand-3);
  color: var(--brand);
}
.currency-switcher select {
  min-width: 78px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.52rem 2rem 0.52rem 0.85rem;
}

/* ========================================
   SHARED BUTTONS
======================================== */
.btn-brand {
  background: var(--brand-gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 24px rgba(10, 63, 81, 0.18);
  transition: all var(--transition);
}
.btn-brand:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.btn-soft {
  background: var(--white);
  color: var(--brand);
  border: 1px solid rgba(10, 63, 81, 0.12);
  transition: all var(--transition);
}
.btn-soft:hover {
  color: var(--brand);
  transform: translateY(-2px);
}
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.hero-gradient-bg {
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(19, 91, 115, 0.12),
      transparent 34%
    ),
    radial-gradient(circle at 82% 18%, rgba(10, 63, 81, 0.08), transparent 30%),
    var(--surface-gradient);
  padding: 60px 0px !important;
}
.btn-gradient {
  background: var(--brand-gradient);
  color: var(--white);
  border: 0;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.btn-gradient:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.soft-panel-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

/* ========================================
   CART ADD FEEDBACK
======================================== */
.ssd-cart-toast-wrap {
  display: grid;
  gap: 12px;
  position: fixed;
  right: 24px;
  top: 96px;
  width: min(360px, calc(100vw - 32px));
  z-index: 2000;
}

.ssd-cart-toast {
  align-items: flex-start;
  animation: ssdToastIn 0.25s ease both;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--brand);
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.ssd-cart-toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.ssd-cart-toast-icon {
  align-items: center;
  background: rgba(25, 135, 84, 0.12);
  border-radius: 50%;
  color: #198754;
  display: inline-flex;
  flex: 0 0 auto;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.ssd-cart-toast-content {
  display: block;
  min-width: 0;
}

.ssd-cart-toast-title,
.ssd-cart-toast-text {
  display: block;
}

.ssd-cart-toast-title {
  font-weight: 800;
  margin: 0 0 2px;
}

.ssd-cart-toast-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

.ssd-cart-toast-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.ssd-cart-toast-actions a,
.ssd-cart-toast-actions button {
  background: transparent;
  border: 0;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  padding: 0;
  text-decoration: none;
}

.ssd-cart-toast-actions a:hover,
.ssd-cart-toast-actions button:hover {
  color: var(--brand-2);
}

.ssd-cart-flyer {
  align-items: center;
  background: var(--brand-gradient);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-left: -17px;
  margin-top: -17px;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  transition:
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.65s ease;
  width: 34px;
  z-index: 2500;
}

.cart-pulse {
  animation: cartPulse 0.5s ease;
}

@keyframes ssdToastIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 575.98px) {
  .ssd-cart-toast-wrap {
    left: 16px;
    right: 16px;
    top: 82px;
    width: auto;
  }
}

.platform-section-soft {
  background:
    radial-gradient(circle at 18% 20%, rgba(19, 91, 115, 0.1), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(10, 63, 81, 0.07), transparent 30%),
    var(--surface-gradient);
}

/* ========================================
   HOMEPAGE - HERO
======================================== */
.hero {
  padding: 7rem 0 4.2rem;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(19, 91, 115, 0.06),
      transparent 22%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(19, 91, 115, 0.07),
      transparent 20%
    ),
    linear-gradient(180deg, #fff 0%, #fbfeff 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.15rem;
  padding-left: 0px;
  border-radius: 999px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero h1,
.hero-title {
  font-size: clamp(2.2rem, 4.6vw, 2.8rem);
  line-height: 1.1;

  font-weight: 800;
  color: var(--brand);
  margin: 1rem 0 0.9rem;
  max-width: 680px;
}

.hero .lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 630px;
  margin-bottom: 0;
}

.hero-wrap {
  position: relative;
}
.hero-slider {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: visible;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  transform: translateY(-50%);
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.04);
}

.hero-slider-arrow-prev {
  left: -30px;
}

.hero-slider-arrow-next {
  right: -30px;
}

.hero-slider-arrow i {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-slide {
  padding: 2rem 2rem 4rem 2rem;
}
.hero-visual {
  position: relative;
  min-height: 490px;
  background: var(--surface-gradient);
  border-radius: 22px;
  border: 1px solid rgba(10, 63, 81, 0.07);
  overflow: hidden;
}
.hero-screen {
  position: absolute;
  left: 48px;
  right: 34px;
  top: 44px;
  bottom: 52px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-slider .carousel-inner {
  min-height: 680px;
  border-radius: inherit;
  overflow: hidden;
}

.hero-slider .carousel-item {
  height: 100%;
}

.hero-slide {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 1rem 2rem 4rem 2rem;
}

.hero-slide .row {
  width: 100%;
  min-height: 100%;
  align-items: center;
}

.hero-product-image {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .hero-slider .carousel-inner,
  .hero-slide {
    min-height: 600px;
  }

  .hero-product-image {
    max-height: 320px;
  }

  .hero-slider-arrow-prev {
    left: -18px;
  }

  .hero-slider-arrow-next {
    right: -18px;
  }
}

@media (max-width: 767.98px) {
  .hero-slider .carousel-inner,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding: 1.25rem 1rem 3.5rem;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-slider-arrow-prev {
    left: -10px;
  }

  .hero-slider-arrow-next {
    right: -10px;
  }

  .hero-slider-arrow i {
    font-size: 1.05rem;
  }

  .hero-slide .row {
    min-height: auto;
  }

  .hero-product-image {
    max-height: 250px;
  }
}

@media (max-width: 575.98px) {
  .hero-slider-arrow {
    display: none;
  }
}
.screen-top {
  display: flex;
  gap: 0.45rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(10, 63, 81, 0.06);
  background: #fbfdfe;
}
.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfd7e0;
  display: block;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  padding: 1rem;
}
.metric-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
}
.metric-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.metric-value {
  font-size: 1.45rem;
  color: var(--brand);
  font-weight: 800;
}
.chart-box {
  margin: 0 1rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  height: 140px;
  padding: 0.8rem;
  background: var(--white);
}
.chart-box-lg {
  height: 210px;
  margin: 0;
}
.chart-box svg {
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1rem;
}
.float-device {
  right: 18px;
  top: 28px;
  width: 150px;
  text-align: center;
}
.float-bottom {
  left: 14px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.float-tag {
  right: 36px;
  bottom: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand);
}
.device-shell {
  width: 76px;
  height: 116px;
  border-radius: 20px;
  border: 1px solid rgba(10, 63, 81, 0.12);
  background: linear-gradient(180deg, #fff, #eef7fa);
  margin: 0 auto 0.8rem;
  position: relative;
}
.controlhub-card {
  left: 4px;
  bottom: 4px;
  display: block;
  width: 150px;
  padding: 10px 0;
  text-align: center;
}
.controlhub-card .real-device {
  padding: 0px;
}
.controlhub-device {
  width: 120px;
  height: 80px;
  padding: 4px;
  margin: 0 auto 0.65rem;
}

.controlhub-device img {
  max-width: 110px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.controlhub-text .fw-bold {
  line-height: 1.2;
}

.controlhub-text .small {
  line-height: 1.35;
}
/* ========================================
   BOOTSTRAP CAROUSEL TUNING
======================================== */
.carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #b8cfd8;
  opacity: 1;
}
.carousel-indicators .active {
  background: var(--brand);
}

/* ========================================
   GLOBAL SECTIONS / TYPOGRAPHY
======================================== */
.section {
  padding: 4.6rem 0;
}
.section-sm {
  padding: 3.2rem 0;
}
.section-separator {
  padding: 0;
}

.section-separator .line {
  height: 28px;
  border: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 63, 81, 0.045) 0%,
    rgba(10, 63, 81, 0.018) 45%,
    rgba(10, 63, 81, 0) 100%
  );
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.06;

  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.9rem;
  max-width: 760px;
}
.section-copy {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 0;
}
.section-soft {
  background: var(--bg-panel);
}
.section-title-center {
  max-width: 680px;
  margin: 0 auto;
}
.section-copy-center {
  max-width: 620px;
  margin: 0 auto;
}
.mxw-100 {
  max-width: 100% !important;
}
.layer-above {
  z-index: 1;
}
#news .section-title,
#customers .section-title,
#use-cases .section-title,
#use-cases .section-copy,
#news .section-copy,
#customers .section-copy {
  max-width: 100%;
}

.card-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 0.45rem;
}

/* ========================================
   SHARED CARDS
======================================== */
.stat-card,
.feature-card,
.product-card,
.platform-card,
.news-card,
.customer-card,
.usecase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  height: 100%;
}

.stat-card {
  padding: 1rem 1.05rem;
}
.stat-card h3 {
  margin: 0 0 0.2rem;
  color: var(--brand);
  font-size: 1.7rem;
  font-weight: 800;
}
.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}
.counter-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--white);
}

.counter-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1rem;
  background: var(--white);
  transition: all var(--transition);
}

.counter-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.counter-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand);
  display: inline-block;
  margin: 0;
}

.counter-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  margin-left: 4px;
}

.counter-box p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.logo-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.logo-chip {
  height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.logo-chip img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
  opacity: 0.88;
}

.feature-card,
.product-card,
.platform-card,
.news-card,
.customer-card {
  padding: 1.25rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.feature-card:hover,
.product-card:hover,
.news-card:hover,
.customer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-3);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.95rem;
  float: left;
  margin-right: 10px;
}
.card-title {
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--brand);
  margin: 0.15rem 0 0.6rem;
}
.card-text {
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

.product-card.featured {
  padding: 1.4rem;
}
.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(10, 63, 81, 0.08);
  margin: 1rem 0 1rem;
  background: #f6fafb;
}
.product-image.product-image-tall {
  height: 380px;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-3);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
}
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.platform-panel {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfeff, #eef8fb);
  padding: 1.2rem;
  height: 100%;
}
.mini-metric {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0.95rem;
  height: 100%;
}
.mini-metric .label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.mini-metric .value {
  font-size: 1.35rem;
  color: var(--brand);
  font-weight: 800;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.check-list li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.check-list i {
  color: var(--brand-2);
  margin-top: 0.15rem;
}

/* ========================================
   HOMEPAGE - USE CASES / CONTENT CARDS
======================================== */
.usecase-card {
  overflow: hidden;
}
.usecase-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
  display: block;
}
.usecase-body {
  padding: 1rem 1rem 1.1rem;
}

/* ========================================
   HOMEPAGE - CTA
======================================== */
.cta-panel {
  background: linear-gradient(135deg, var(--brand) 0%, #11566d 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 63, 81, 0.18);
}
.cta-panel::before,
.cta-panel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta-panel::before {
  width: 250px;
  height: 250px;
  top: -70px;
  right: -60px;
}
.cta-panel::after {
  width: 170px;
  height: 170px;
  bottom: -75px;
  left: -35px;
}

/* ========================================
   HOMEPAGE - NEWS / CUSTOMERS
======================================== */
.news-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: block;
}
.news-meta {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.customer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1.1rem;
}
.customer-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  opacity: 0.9;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #072f3d;
  color: #d3e4ea;
  padding-top: 4.2rem;
}
.footer-logo {
  max-width: 140px;
  filter: brightness(0) invert(1) saturate(0) opacity(0.95);
}
.footer-copy {
  max-width: 360px;
  line-height: 1.8;
}
.footer a {
  color: #d3e4ea;
}
.footer a:hover {
  color: #fff;
}
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.7rem;
  padding: 1.2rem 0;
  color: #afc8d1;
  font-size: 0.92rem;
}

/* ========================================
   MEDIA QUERIES - TABLET
======================================== */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 7.3rem;
  }
  .hero-visual {
    min-height: 430px;
  }
  .hero-screen {
    left: 24px;
    right: 24px;
    top: 24px;
    bottom: 24px;
  }
  .float-device {
    width: 135px;
    right: 10px;
    top: 14px;
  }
  .float-bottom {
    left: 12px;
    bottom: 12px;
  }
  .float-tag {
    display: none;
  }
}

/* ========================================
   MEDIA QUERIES - MOBILE
======================================== */
@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 42px;
  }
  .hero {
    padding-top: 7rem;
    padding-bottom: 3.4rem;
  }
  .hero h1,
  .hero-title {
    font-size: 2.45rem;
  }
  .hero-slide {
    padding: 1rem;
  }
  .hero-visual {
    min-height: 360px;
  }
  .metric-grid {
    gap: 0.7rem;
    padding: 0.8rem;
  }
  .metric-value {
    font-size: 1.15rem;
  }
  .chart-box {
    height: 116px;
    margin: 0 0.8rem 0.8rem;
  }
  .float-bottom {
    display: none;
  }
  .float-device {
    width: 120px;
    padding: 0.8rem;
  }
  .cta-panel {
    padding: 1.8rem;
  }
  .usecase-card img,
  .news-card img,
  .product-image {
    height: 180px;
  }
  .eyebrow {
    font-size: 0.84rem;
    padding: 0.72rem 0.95rem;
  }
}

/* ========================================
   HOMEPAGE - ACHIEVEMENTS
======================================== */
#achievements.section-sm {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.achievement-title {
  max-width: 720px;
}

.achievement-copy {
  max-width: 700px;
}

.achievement-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.achievement-card-lg {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.achievement-card-sm {
  padding: 1.4rem 1.25rem;
}

.achievement-logo {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.achievement-logo-lg {
  width: 180px;
  flex: 0 0 180px;
}

.achievement-logo-sm {
  max-height: 66px;
  margin: 0 auto;
}

.achievement-text {
  flex: 1;
}

.achievement-stat-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.15rem 1rem;
  text-align: left;
}

.achievement-stat-card h3 {
  margin: 0 0 0.2rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}

.achievement-stat-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

/* ========================================
   MEDIA QUERIES - ACHIEVEMENTS
======================================== */
@media (max-width: 991.98px) {
  .achievement-card-lg {
    flex-direction: column;
    text-align: center;
  }

  .achievement-logo-lg {
    width: 220px;
    flex: none;
    margin: 0 auto;
  }
}

/* ========================================
   HOMEPAGE - PARTNERS / SUPPORTING IMAGES
======================================== */
.team-image-wrap,
.solution-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.team-image,
.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.real-device {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px;
}

.real-device img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.partner-grid .logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: #f8fbfc;
  border-radius: 14px;
  padding: 15px;
  transition: all var(--transition);
}

.partner-grid .logo-chip img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.8;
}

.partner-grid .logo-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.partner-grid .logo-chip:hover img {
  opacity: 1;
}
.partner-grid .logo-chip:last-child {
  grid-column: 2 / 3;
}
@media (max-width: 991px) {
  .partner-grid .logo-chip:last-child {
    grid-column: auto;
  }
}
.bg-brand {
  background: var(--bg-panel) !important;
}
.sales-distributor-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.sales-distributor-grid .logo-chip {
  width: 100%;
  min-width: 0;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
}

.sales-distributor-grid .logo-chip img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .sales-distributor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 575px) {
  .sales-distributor-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ========================================
   HOW IT WORKS
======================================== */

.how-it-works-section {
  background: var(--bg-panel);
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-soft);
}

.how-step span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.how-step strong {
  display: block;
  color: var(--brand);
  margin-bottom: 0.2rem;
}

.how-step p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.how-diagram-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.how-diagram-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.quote-request-modal .modal-content {
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.quote-request-modal .modal-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 1.5rem 1rem;
}

.quote-modal-kicker {
  color: var(--brand-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.quote-request-modal .modal-title {
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.quote-request-modal .modal-body {
  padding: 1.3rem 1.5rem;
}

.quote-request-modal .modal-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.35rem;
}

.quote-request-modal .form-label {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-request-modal .form-control {
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--brand);
  min-height: 46px;
}

.quote-request-modal textarea.form-control {
  min-height: 120px;
}

.quote-request-modal .form-control:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 0.2rem rgba(21, 154, 184, 0.16);
}

.quote-subject-preview {
  border: 1px solid rgba(21, 154, 184, 0.18);
  border-radius: 16px;
  background: var(--brand-3);
  color: var(--brand);
  font-weight: 800;
  line-height: 1.45;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.quote-close {
  border-radius: 50%;
  background-color: var(--brand-3);
  opacity: 1;
  padding: 0.8rem;
}

.quote-close:focus {
  box-shadow: 0 0 0 0.2rem rgba(21, 154, 184, 0.18);
}

.cart-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

.cart-count-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-2);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
}

.quote-status-alert {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 1080;
  width: min(calc(100% - 2rem), 620px);
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--brand);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
  font-weight: 850;
}

.quote-status-alert.is-success {
  border-color: rgba(25, 185, 154, 0.35);
}

.quote-status-alert.is-error {
  border-color: rgba(185, 21, 62, 0.28);
}
.rht-card {
  min-height: 260px;
  padding: 1.25rem 1.4rem;
}

.rht-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rht-card-header .icon-wrap {
  margin-bottom: 0;
  flex: 0 0 50px;
}

.rht-card-header .card-title {
  margin: 0;
}

.rht-card-body {
  display: grid;
  grid-template-columns: minmax(220px, 42%) 1fr;
  align-items: center;
  gap: 2rem;
}

.rht-image-wrap {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rht-image-wrap img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
}

.rht-card .card-text {
  max-width: 420px;
  font-size: 0.98rem;
}
@media (max-width: 767.98px) {
  .rht-card-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rht-image-wrap {
    justify-content: flex-start;
  }

  .rht-image-wrap img {
    max-width: 240px;
  }
}
.wha {
  width: auto;
  max-height: fit-content;
  border-radius: 20px;
}
.msn5 {
  margin-left: -5px;
}
