
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
  --hero-padding: 140px 0 60px;
  --section-gap: 60px;
  --primary: #0066FF;
  --primary-rgb: 0, 102, 255;
  --primary-dark: #0052CC;
  --primary-glow: rgba(var(--primary-rgb), 0.15);
  --accent: #00D4FF;
  --accent-rgb: 0, 212, 255;
  --accent-glow: rgba(var(--accent-rgb), 0.12);
  --dark-bg: #0A0E1A;
  --dark-surface: #0F1525;
  --dark-card: #131929;
  --dark-card-hover: #1A2235;
  --dark-border: rgba(255, 255, 255, 0.08);
  --text-primary: #F0F4FF;
  --text-secondary: #8B9DC3;
  --text-muted: #5A6A8A;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
  --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="light"] {
  --primary: #F26522;
  --primary-rgb: 242, 101, 34;
  --primary-dark: #D9561B;
  --primary-glow: rgba(var(--primary-rgb), 0.15);
  --accent: #FF8C00;
  --accent-rgb: 255, 140, 0;
  --accent-glow: rgba(var(--accent-rgb), 0.12);
  --dark-bg: #FFFFFF;
  --dark-surface: #F8F9FA;
  --dark-card: #FFFFFF;
  --dark-card-hover: #F0F2F5;
  --dark-border: rgba(0, 0, 0, 0.08);
  --text-primary: #0A192F;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --gradient-dark: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  height: auto;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.display-1,
.display-2,
.display-3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 4px 12px;
  background: var(--primary-glow);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
  letter-spacing: 0.01em;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.5);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-custom {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline-custom:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
  color: var(--primary);
  transform: translateY(-2px);
  text-decoration: none;
}
#mainNav {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(10, 14, 26, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
[data-theme="light"] #mainNav {
  background: rgba(255, 255, 255, 0.85);
}
[data-theme="light"] #mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.theme-toggle-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}
.theme-toggle-btn:hover {
  background: var(--primary-glow);
  color: var(--primary);
  border-color: var(--primary);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo-placeholder {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.nav-logo {
  height: 50px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
}
[data-theme="light"] .nav-logo {
  filter: none;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
  display: none; 
}
.brand-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--primary-glow);
}
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}
.navbar-toggler {
  border: 1px solid var(--dark-border);
  padding: 6px 10px;
  border-radius: 8px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240,244,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
[data-theme="light"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--hero-padding);
  background: var(--dark-bg);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--primary-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  max-width: 100%;
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-subheading {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--dark-border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-visual-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image-placeholder {
  width: 100%;
  max-width: 420px;
  position: relative;
}
.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
}
.product-image-placeholder .placeholder-icon {
  font-size: 3rem;
  color: var(--text-muted);
  position: relative;
}
.product-image-placeholder .placeholder-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
}
.placeholder-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--primary);
  border-style: solid;
  opacity: 0.5;
}
.placeholder-corner.tl {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}
.placeholder-corner.tr {
  top: 12px;
  right: 12px;
  border-width: 2px 2px 0 0;
}
.placeholder-corner.bl {
  bottom: 12px;
  left: 12px;
  border-width: 0 0 2px 2px;
}
.placeholder-corner.br {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}
.hero-float-badge {
  position: absolute;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}
.hero-float-badge:nth-child(2) {
  animation-delay: 1s;
}
.hero-float-badge:nth-child(3) {
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-badge-1 {
  top: -2%;
  left: -5%;
}
.float-badge-2 {
  bottom: 18%;
  right: -5%;
}
.float-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.float-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.float-sublabel {
  font-size: 0.65rem;
  color: var(--text-muted);
}
section {
  padding: 100px 0;
}
.section-center {
  text-align: center;
  margin-bottom: var(--section-gap, 60px);
}
.section-center .section-subtitle {
  margin: 0 auto;
}
#about {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--accent-rgb), 0.03) 100%);
}
.about-image-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-glow);
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.about-image-wrap:hover .about-img {
  transform: scale(1.03);
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.mission-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2rem;
}
.mission-stat {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.mission-stat:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--dark-card-hover);
}
.mission-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.mission-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
#dimbox {
  background: var(--dark-bg);
}
.dimbox-hero-image {
  width: 100%;
  max-width: 480px;
  position: relative;
  margin: 0 auto 50px;
}
.dimbox-machine-img {
  width: 100%;
  height: auto;
  display: block;
}
.dimbox-label-overlay {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
.dimbox-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -8px;
  margin-bottom: 16px;
}
.dimbox-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.dimbox-info-card:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 0 24px rgba(var(--primary-rgb), 0.08);
}
.dimbox-info-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.dimbox-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.dimbox-info-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.dimbox-app-list,
.dimbox-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dimbox-app-list li,
.dimbox-why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.dimbox-app-list li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.dimbox-why-list li i {
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.model-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.model-card-img {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 10px;
}
.model-card:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
}
.model-card-featured {
  border-color: rgba(var(--primary-rgb), 0.55);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.04) 100%);
  box-shadow: 0 0 32px rgba(var(--primary-rgb), 0.15);
}
.model-card-featured:hover {
  box-shadow: 0 16px 48px rgba(var(--primary-rgb), 0.22);
}
.model-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}
.model-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 16px;
}
.model-price {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.model-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--dark-border);
  border-radius: 20px;
}
.dimbox-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 18px 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.dimbox-phone {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.dimbox-phone:hover {
  color: #00D4FF;
  text-shadow: 0 0 12px rgba(var(--accent-rgb), 0.4);
}
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--dark-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(var(--primary-rgb), 0.1);
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-glow);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: var(--primary);
  color: white;
  border-color: transparent;
}
.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
#why-choose {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.benefit-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}
.benefit-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--dark-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--primary-glow);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon-wrap {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}
.benefit-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
#industries {
  background: var(--dark-bg);
}
.industry-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.industry-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(var(--primary-rgb), 0.08);
}
.industry-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.industry-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--accent-rgb), 0.03) 100%);
}
.industry-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--dark-border);
}
.industry-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dark-card));
  pointer-events: none;
}
.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.industry-card:hover .industry-img {
  transform: scale(1.05);
}
.industry-icon-large {
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  opacity: 0.7;
}
.industry-img-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  position: relative;
}
.industry-body {
  padding: 28px;
}
.industry-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.industry-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.industry-tag {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 14px;
  letter-spacing: 0.03em;
}
#innovation {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.tech-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.tech-item:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--dark-card-hover);
}
.tech-item-icon {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}
.tech-item-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.innovation-visual {
  position: relative;
}
.innovation-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.innovation-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.07) 0%, rgba(var(--accent-rgb), 0.04) 100%);
}
.innovation-image-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-glow);
}
.innovation-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.innovation-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.innovation-image-wrap:hover .innovation-img {
  transform: scale(1.03);
}
#cta-section {
  background: var(--dark-bg);
  padding: 100px 0;
}
.cta-box {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(var(--accent-rgb), 0.06) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 100%;
  height: 300px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
#footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-placeholder {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
}
[data-theme="light"] .footer-logo-img {
  filter: none;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.1;
  display: none; 
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover {
  border-color: var(--primary);
  background: var(--primary-glow);
  color: var(--primary);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-contact-item i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.gradient-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.gradient-divider.center {
  margin: 16px auto 24px;
}
@media (max-width: 991.98px) {
  :root {
    --hero-padding: 110px 0 50px;
    --section-gap: 50px;
  }
  section {
    padding: 70px 0;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-placeholder {
    max-width: 100%;
  }
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    gap: 24px;
  }
  .navbar-brand .brand-name {
    font-size: 1rem;
  }
  .model-card {
    padding: 24px 18px;
  }
  .model-card-img {
    width: 160px !important;
    height: 160px !important;
  }
  .innovation-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --hero-padding: 90px 0 40px;
    --section-gap: 40px;
  }
  section {
    padding: 50px 0;
  }
  .hero-headline {
    font-size: 2rem;
  }
  .hero-subheading {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta-group .btn-primary-custom,
  .hero-cta-group .btn-outline-custom {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 1.5rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .hero-stat-num {
    font-size: 1.6rem;
  }
  .float-badge-1,
  .float-badge-2 {
    display: none;
  }
  .hero-float-badge {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .mission-stat-grid {
    grid-template-columns: 1fr;
  }
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
  .model-card {
    padding: 20px 16px;
  }
  .model-card-img {
    width: 140px !important;
    height: 140px !important;
  }
  .model-name {
    font-size: 1rem;
  }
  .dimbox-contact-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px;
  }
  .section-subtitle {
    font-size: 0.95rem;
  }
  .navbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .nav-logo {
    width: 36px;
    height: auto;
  }
  .footer-logo-img {
    height: 48px;
  }
  .partners-slider-track {
    gap: 5px;
  }
}
@media (max-width: 575.98px) {
  :root {
    --hero-padding: 80px 0 30px;
    --section-gap: 30px;
  }
  section {
    padding: 40px 0;
  }
  .hero-headline {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .hero-visual-area {
    margin-top: 20px;
  }
  .hero-product-img {
    max-width: 280px;
    margin: 0 auto;
  }
  .model-card-img {
    width: 120px !important;
    height: 120px !important;
  }
  .cta-box {
    padding: 30px 16px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.comparison-table-wrapper {
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  border: 1px solid var(--dark-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  margin-top: 0;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: var(--dark-surface);
  text-align: center;
  margin-bottom: 0;
  color: var(--text-primary);
  table-layout: fixed;
}
.comparison-table th {
  padding: clamp(6px, 1.5vw, 14px) clamp(4px, 1vw, 10px);
  font-weight: 700;
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  border: 1px solid rgba(255,255,255,0.1);
  vertical-align: middle;
  text-align: center;
  word-break: break-word;
}
.comparison-table th img {
  width: clamp(32px, 6vw, 70px);
  height: clamp(32px, 6vw, 70px);
  object-fit: contain;
  display: block;
  margin: 0 auto clamp(4px, 0.8vw, 8px);
  background: #fff;
  border-radius: 6px;
  padding: clamp(3px, 0.5vw, 6px);
}
.comparison-table td {
  padding: clamp(5px, 1.2vw, 11px) clamp(4px, 1vw, 10px);
  font-size: clamp(0.6rem, 1.3vw, 0.82rem);
  border: 1px solid var(--dark-border);
  vertical-align: middle;
  background: rgba(255,255,255,0.02);
  color: var(--text-primary);
}
.comparison-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.04);
}
[data-theme="light"] .comparison-table td {
  background: #ffffff;
}
[data-theme="light"] .comparison-table tr:nth-child(even) td {
  background: #f8f9fa;
}
.comparison-table .feature-col,
.comparison-table .feature-name {
  background: #0d1e34 !important;
  color: #fff !important;
  text-align: left;
  font-size: clamp(0.58rem, 1.2vw, 0.8rem);
  font-weight: 600;
  padding: clamp(5px, 1.2vw, 11px) clamp(6px, 1.5vw, 14px);
  border-color: rgba(255,255,255,0.1) !important;
  white-space: normal;
  word-break: break-word;
  min-width: clamp(70px, 18vw, 130px);
  width: clamp(70px, 20vw, 140px);
}
.comparison-table th.col-sd     { background: #e86524; color: #fff; border-color: #e86524; }
.comparison-table th.col-sd-pro { background: #f2a926; color: #fff; border-color: #f2a926; }
.comparison-table th.col-xl     { background: #6db145; color: #fff; border-color: #6db145; }
.comparison-table th.col-xl-pro { background: #3fa19b; color: #fff; border-color: #3fa19b; }
.icon-check        { color: #6db145; font-size: clamp(0.75rem, 1.5vw, 1.05rem); }
.icon-cross        { color: #e86524; font-size: clamp(0.75rem, 1.5vw, 1.05rem); }
.icon-check-orange { color: #f2a926; font-size: clamp(0.75rem, 1.5vw, 1.05rem); }
.icon-star-grey    { color: #888; }
.icon-star-gold    { color: #f2a926; }
.icon-star-teal    { color: #3fa19b; }
.comparison-table .text-wrap {
  font-size: clamp(0.55rem, 1.1vw, 0.75rem);
  line-height: 1.35;
  color: inherit;
  margin: 0 auto;
}
.row-tier td:not(.feature-name) {
  font-weight: 700;
  font-size: clamp(0.55rem, 1.1vw, 0.75rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: clamp(5px, 1vw, 10px) clamp(3px, 0.8vw, 8px);
}
.row-tier .td-sd  { background: #e86524 !important; color: #fff !important; }
.row-tier .td-sdp { background: #f2a926 !important; color: #fff !important; }
.row-tier .td-xl  { background: #6db145 !important; color: #fff !important; }
.row-tier .td-xlp { background: #3fa19b !important; color: #fff !important; }
.row-enquire-cell {
  padding: clamp(6px, 1.5vw, 14px) clamp(4px, 1vw, 8px);
  vertical-align: middle;
  text-align: center;
}
.enquire-btn {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.55rem, 1.5vw, 0.82rem);
  padding: clamp(5px, 1.2vw, 10px) clamp(4px, 1vw, 8px);
  border-radius: clamp(5px, 1vw, 8px);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .comparison-table-wrapper {
    border-radius: 8px;
  }
  .comparison-table th span[style] {
    font-size: 0.6rem !important;
  }
}
@media (max-width: 380px) {
  .comparison-table {
    min-width: 320px;
  }
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.06);
  background-color: #20ba5a;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 15px rgba(37, 211, 102, 0.4);
}
.whatsapp-float i {
  line-height: 1;
}
.whatsapp-float::before,
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: wa-pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}
.whatsapp-float::after {
  animation-delay: 1.5s;
}
@keyframes wa-pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}
.partners-slider-section {
  background: var(--dark-bg);
  padding: 60px 0 50px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.partners-section-title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 2px;
  margin-bottom: 0;
}
.partners-slider-section::before,
.partners-slider-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: none !important;
}
.partners-slider-section::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg) 0%, transparent 100%);
}
.partners-slider-section::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg) 0%, transparent 100%);
}
.dynamic-tracks-container {
  display: flex;
  flex-direction: column;
  gap: 25px; 
  width: 100%;
}
.partners-slider-track {
  display: flex;
  flex-wrap: nowrap !important;
  align-self: flex-start !important;
  width: max-content;
  gap: 10px;
  animation: scroll-partners-left 35s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.partners-slider-track:hover {
}
.partners-row-2 {
  animation: scroll-partners-left 32s linear infinite;
}
.partners-row-3 {
  animation: scroll-partners-left 28s linear infinite;
}
.partner-slide {
  width: 140px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  gap: 8px;
}
.partner-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.partner-slide img {
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) !important;
  opacity: 0.85;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.partner-slide:hover img {
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.25)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5)) !important;
  opacity: 1;
  transform: scale(1.1);
}
.partner-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
}
.partner-slide:hover .partner-name {
  color: var(--primary);
}
[data-theme="light"] .partners-slider-section {
  background: #E8F2FF;
  border-top: 1px solid rgba(0, 102, 255, 0.08);
  border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}
[data-theme="light"] .partners-slider-section::before {
  background: linear-gradient(to right, #E8F2FF 0%, transparent 100%);
}
[data-theme="light"] .partners-slider-section::after {
  background: linear-gradient(to left, #E8F2FF 0%, transparent 100%);
}
[data-theme="light"] .partners-section-title {
  color: #0A192F;
}
[data-theme="light"] .partner-slide img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08)) !important;
  opacity: 0.85;
  transform: scale(1);
}
[data-theme="light"] .partner-slide:hover img {
  filter: drop-shadow(0 8px 16px rgba(0, 102, 255, 0.12)) !important;
  opacity: 1;
  transform: scale(1.1);
}
[data-theme="light"] .partner-name {
  color: #0A192F;
}
[data-theme="light"] .partner-slide:hover .partner-name {
  color: var(--primary);
}
@keyframes scroll-partners-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 12)); }
}
@keyframes scroll-partners-right {
  0% { transform: translateX(calc(-100% / 12)); }
  100% { transform: translateX(0); }
}
@media (max-width: 767.98px) {
  .dynamic-tracks-container {
    gap: 20px; 
  }
  .partner-slide {
    width: 120px;
    height: 90px;
    padding: 0;
  }
  .partner-slide img {
    max-height: 70px;
  }
  .partners-slider-track {
    width: max-content;
  }
  @keyframes scroll-partners-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 12)); }
  }
  @keyframes scroll-partners-right {
    0% { transform: translateX(calc(-100% / 12)); }
    100% { transform: translateX(0); }
  }
}
.industries-partners-slider::before,
.industries-partners-slider::after {
  display: none !important;
}
.home-partners-slider {
  padding: 60px 0;
  background: linear-gradient(135deg, #0B1628 0%, #0A1220 100%);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-partners-slider::before,
.home-partners-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: none !important;
}
.home-partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #0B1628 0%, transparent 100%);
}
.home-partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #0A1220 0%, transparent 100%);
}
[data-theme="light"] .home-partners-slider {
  background: #E8F2FF;
  border-top: 1px solid rgba(0, 102, 255, 0.08);
  border-bottom: 1px solid rgba(0, 102, 255, 0.08);
}
[data-theme="light"] .home-partners-slider::before {
  background: linear-gradient(to right, #E8F2FF 0%, transparent 100%);
}
[data-theme="light"] .home-partners-slider::after {
  background: linear-gradient(to left, #E8F2FF 0%, transparent 100%);
}
.partners-home-row {
  display: flex;
  flex-wrap: nowrap !important;
  align-self: flex-start !important;
  width: max-content;
  animation: scroll-home-partners 90s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.partners-home-row:hover {
  animation-play-state: paused;
}
@keyframes scroll-home-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 12));
  }
}
.testimonials-section {
  padding: 30px 0 100px;
  background: var(--dark-bg);
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}
.testimonial-card:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.12);
}
.testimonial-quote {
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  font-style: italic;
  font-weight: 400;
}
.testimonial-quote::before {
  content: '“';
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(var(--primary-rgb), 0.12);
  position: absolute;
  top: -36px;
  left: -12px;
  line-height: 1;
}
.testimonial-stars {
  color: #FFB300;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--dark-border);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--accent-rgb), 0.15) 100%);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(var(--primary-rgb), 0.25);
  font-family: var(--font-display);
  text-transform: uppercase;
}
.testimonial-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.testimonial-info p {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.testimonial-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}
[data-theme="light"] .navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}
.btn-orange-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%);
  color: #FFFFFF !important;
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
  text-decoration: none;
}
.btn-orange-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.55), 0 0 15px rgba(255, 61, 0, 0.35);
  background: linear-gradient(135deg, #FF8008 0%, #FFC837 100%); 
}
.shape-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.shape-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 14px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition);
  min-width: 80px;
  letter-spacing: 0.01em;
}
.shape-card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape-card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--text-muted);
  transition: var(--transition);
}
.shape-card:hover {
  border-color: rgba(var(--primary-rgb), 0.4);
  background: var(--dark-card-hover);
  color: var(--primary);
}
.shape-card:hover .shape-card-icon svg {
  color: var(--primary);
  filter: drop-shadow(0 0 6px rgba(var(--primary-rgb), 0.4));
}
.shape-card.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.shape-card.active .shape-card-icon svg {
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb), 0.5));
}
.shape-detail-area { min-height: 420px; }
.shape-detail {
  display: none;
  animation: fadeSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.shape-detail.active {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shape-detail-left {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.shape-detail-left:hover { border-color: rgba(var(--primary-rgb), 0.25); }
.shape-big-visual {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.04);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.shape-big-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.18));
}
.shape-name-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.shape-about {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}
.shape-detail-right {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.shape-detail-right:hover { border-color: rgba(var(--primary-rgb), 0.25); }
.checks-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.checks-title i { font-size: 1rem; }
.check-list {
  display: flex;
  flex-direction: column;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-border);
  transition: var(--transition);
}
.check-item:last-child { border-bottom: none; padding-bottom: 0; }
.check-item:first-child { padding-top: 0; }
.check-item:hover .check-body { transform: translateX(4px); }
.check-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.accent-check .check-num.accent-num {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  font-size: 1rem;
}
.check-body { flex: 1; transition: transform 0.2s ease; }
.check-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.accent-check .check-name { color: var(--accent); }
.check-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.dm-stats-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
}
.dm-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 28px;
}
.dm-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.dm-stat-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.dm-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .shape-detail.active { grid-template-columns: 1fr; }
  .shape-big-visual { max-width: 180px; }
}
@media (max-width: 600px) {
  .shape-card { min-width: 64px; padding: 12px 10px 9px; font-size: 0.72rem; }
  .shape-card-icon { width: 32px; height: 32px; }
  .dm-stats-bar { flex-direction: column; padding: 20px; gap: 16px; }
  .dm-stat { padding: 0; }
  .dm-stat-divider { width: 60%; height: 1px; }
  .shape-detail-left, .shape-detail-right { padding: 20px 16px; }
}
.type-badge {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: #00D4FF;
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1250px) {
  .navbar-nav .nav-link {
    font-size: 0.85rem !important;
    padding: 8px 6px !important;
  }
  .navbar-nav {
    gap: 0 !important;
  }
}
.partner-slide img[alt="Ram Krishna"] { filter: brightness(0.15) drop-shadow(0 4px 8px rgba(0,0,0,0.08)) !important; }
[data-theme="light"] .partner-slide img[alt="Ram Krishna"] { filter: brightness(0.15) drop-shadow(0 4px 8px rgba(0,0,0,0.08)) !important; }
