/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */

/* CSS Variables */
:root {
  --primary-blue: #1a4fff;
  --dark-blue: #0a1628;
  --orange: #ff7f2a;
  --dark-gray: #2f3237;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===================================
   CANVAS LIGHTNING CURSOR TRAIL
   =================================== */
.lightning-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .lightning-canvas {
    display: none;
  }
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #0053c5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 3.5rem;
  align-items: center;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--orange);
}

.nav-item.has-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dropdown Arrow */
.dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* ===================================
   DROPDOWN MENUS
   =================================== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(26, 79, 255, 0.08);
  color: var(--primary-blue);
  padding-left: 1.5rem;
}

/* ===================================
   MOBILE MENU TOGGLE
   =================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-icon {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  border-radius: 2px;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.25s ease;
  left: 0;
  border-radius: 2px;
}

.hamburger-icon::before {
  top: -9px;
}

.hamburger-icon::after {
  top: 9px;
}

.mobile-menu-toggle.active .hamburger-icon {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
  background-color: var(--white);
}

.mobile-menu-toggle.active .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background-color: var(--white);
}

/* ===================================
   DROPDOWN MENU STYLES
   =================================== */

.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(26, 79, 255, 0.08);
  color: var(--primary-blue);
  padding-left: 1.5rem;
}

/* ===================================
   MOBILE MENU STYLES
   =================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--dark-gray);
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo .logo-img {
  height: 36px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-trigger:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--orange);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--orange);
}

.mobile-arrow {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.mobile-nav-trigger.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(0, 0, 0, 0.2);
}

.mobile-submenu.active {
  max-height: 300px;
}

.mobile-submenu a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.mobile-submenu a:hover {
  color: var(--orange);
  padding-left: 2.25rem;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   PRODUCTS HERO SECTION
   =================================== */
.products-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background: #0a1628;
}

.products-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.products-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.8) 100%),
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(26, 79, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 127, 42, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.3) 100%);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 2rem 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.products-hero-title {
  margin-bottom: 24px;
}

.products-hero-title .title-line {
  display: block;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.products-hero-title .title-line-1 {
  font-size: 3.5rem;
  color: var(--white);
}

.products-hero-title .title-line-2 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Hero Product Cards */
.hero-product-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-product-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(26, 79, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(26, 79, 255, 0.2);
}

.hero-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #3d5afe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(26, 79, 255, 0.3);
}

.hero-product-card:nth-child(2) .hero-card-icon {
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  box-shadow: 0 10px 30px rgba(255, 127, 42, 0.3);
}

.hero-product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-product-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ===================================
   ARMA SWEM SECTION
   =================================== */
.arma-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.arma-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.arma-header {
  text-align: center;
  margin-bottom: 60px;
}

.arma-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(26, 79, 255, 0.1) 0%, rgba(26, 79, 255, 0.05) 100%);
  border: 1px solid rgba(26, 79, 255, 0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.arma-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.arma-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.arma-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.arma-description p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ARMA Main Image */
.arma-main-image {
  max-width: 1000px;
  margin: 0 auto 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.arma-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ARMA Features Grid - 2x2 */
.arma-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.arma-feature-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
}

.arma-feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.arma-feature-card:nth-child(1) { transition-delay: 0s; }
.arma-feature-card:nth-child(2) { transition-delay: 0.1s; }
.arma-feature-card:nth-child(3) { transition-delay: 0.2s; }
.arma-feature-card:nth-child(4) { transition-delay: 0.3s; }

.arma-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(26, 79, 255, 0.2);
}

/* ARMA Feature Image */
.arma-feature-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf0 100%);
}

.arma-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.arma-feature-card:hover .arma-feature-image img {
  transform: scale(1.05);
}

/* ARMA Feature Body */
.arma-feature-body {
  padding: 28px;
}

.arma-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 79, 255, 0.1) 0%, rgba(26, 79, 255, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-blue);
}

.arma-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 14px;
}

.arma-feature-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.arma-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arma-feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.arma-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary-blue);
  border-radius: 50%;
}

/* ARMA Highlights */
.arma-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2a4a 100%);
  border-radius: 24px;
  padding: 50px 40px;
}

.arma-highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===================================
   MIKRODEV SECTION
   =================================== */
.mikrodev-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1d24 0%, #252a35 50%, #1a1d24 100%);
  position: relative;
  overflow: hidden;
}

.mikrodev-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(255, 127, 42, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(26, 79, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.mikrodev-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.mikrodev-header {
  text-align: center;
  margin-bottom: 60px;
}

.mikrodev-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.15) 0%, rgba(255, 127, 42, 0.05) 100%);
  border: 1px solid rgba(255, 127, 42, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.mikrodev-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.mikrodev-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mikrodev-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.mikrodev-intro p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Mikrodev Slider */
.mikrodev-slider-wrapper {
  position: relative;
  margin-bottom: 80px;
  padding: 0 60px;
}

.mikrodev-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mikrodev-slider::-webkit-scrollbar {
  display: none;
}

.mikrodev-slide {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
background: linear-gradient(165deg, rgb(4, 104, 255) 0%, rgba(3, 94, 230, 0.944) 100%);
border: 1px solid rgb(0, 68, 170);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.mikrodev-slide:hover {
 background: linear-gradient(165deg, rgb(20, 120, 255) 0%, rgb(0, 80, 210) 100%);
  border-color: rgba(255, 127, 42, 0.45);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 127, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.slide-image {
  height: 220px;
  background: white;
  overflow: hidden;
  position: relative;
}

.slide-image::after {
  display: none;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.05);
}

.mikrodev-slide:hover .slide-image img {
  transform: scale(1.08);
  filter: brightness(0.95) contrast(1.08);
}

.slide-content {
  padding: 30px;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 15, 28, 0.4) 0%, rgba(8, 12, 22, 0.6) 100%);
}

.slide-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 127, 42, 0.3) 50%, transparent 100%);
}

.slide-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.3px;
}

.slide-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.slide-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slide-features li {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.2) 0%, rgba(255, 127, 42, 0.12) 100%);
  border: 1px solid rgba(255, 127, 42, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(255, 127, 42, 0.15);
  transition: all 0.3s ease;
}

.slide-features li:hover {
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.32) 0%, rgba(255, 127, 42, 0.2) 100%);
  border-color: rgba(255, 127, 42, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 42, 0.25);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(20, 28, 45, 0.9) 0%, rgba(15, 22, 38, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  border-color: var(--orange);
  box-shadow: 0 6px 25px rgba(255, 127, 42, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.15);
}

.slider-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.25);
  box-shadow: 0 0 15px rgba(255, 127, 42, 0.45);
}

/* Mikrodev Features */
.mikrodev-features {
  background: linear-gradient(165deg, rgba(15, 20, 35, 0.88) 0%, rgba(10, 15, 28, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.mikrodev-features-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mikrodev-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mikrodev-feature {
  text-align: center;
}

.mikrodev-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.22) 0%, rgba(255, 127, 42, 0.1) 100%);
  border: 1px solid rgba(255, 127, 42, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
  box-shadow: 0 4px 15px rgba(255, 127, 42, 0.12);
}

.mikrodev-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.mikrodev-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===================================
   CTA SECTION
   =================================== */
.products-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1d24 0%, #252a35 50%, #1a1d24 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(26, 79, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(255, 127, 42, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* CTA Slogan */
.cta-slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.slogan-word {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slogan-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 127, 42, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 127, 42, 0.4);
  background: linear-gradient(135deg, #e65c00 0%, #cc5200 100%);
}

/* CTA Light Theme */
.products-cta-light {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
}

.products-cta-light::before {
  background: 
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(26, 79, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(255, 127, 42, 0.04) 0%, transparent 50%);
}

.products-cta-light .cta-title {
  color: var(--dark-blue);
}

.products-cta-light .cta-desc {
  color: var(--text-light);
}

/* ===================================
   PRODUCT PREVIEW SECTIONS
   =================================== */
.product-preview-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.product-preview-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(26, 79, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.product-preview-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
}

.preview-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.preview-grid-reverse {
  direction: rtl;
}

.preview-grid-reverse > * {
  direction: ltr;
}

.preview-content {
  max-width: 560px;
}

.preview-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(26, 79, 255, 0.1) 0%, rgba(26, 79, 255, 0.05) 100%);
  border: 1px solid rgba(26, 79, 255, 0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.preview-badge-industrial {
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.1) 0%, rgba(255, 127, 42, 0.05) 100%);
  border-color: rgba(255, 127, 42, 0.2);
  color: var(--orange);
}

.preview-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.preview-subtitle {
  font-size: 1.15rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.preview-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.preview-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 35px;
}

.preview-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.preview-highlight svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.preview-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0044aa 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(26, 79, 255, 0.25);
}

.preview-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 79, 255, 0.35);
}

.preview-cta-btn svg {
  transition: transform 0.3s ease;
}

.preview-cta-btn:hover svg {
  transform: translateX(4px);
}

.preview-cta-industrial {
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  box-shadow: 0 10px 30px rgba(255, 127, 42, 0.25);
}

.preview-cta-industrial:hover {
  box-shadow: 0 15px 40px rgba(255, 127, 42, 0.35);
}

/* Preview Visual */
.preview-visual {
  position: relative;
}

.preview-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.preview-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.preview-image-wrapper:hover img {
  transform: scale(1.03);
}

.preview-image-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(26, 79, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.preview-glow-industrial {
  background: radial-gradient(circle, rgba(255, 127, 42, 0.12) 0%, transparent 70%);
}

/* ===================================
   ARMA DETAIL PAGE HERO
   =================================== */
.arma-detail-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, #0a1628 0%, #0d2040 50%, #091525 100%);
  overflow: hidden;
}

.arma-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.arma-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(26, 79, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 127, 42, 0.06) 0%, transparent 40%);
}

.arma-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 79, 255, 0.08) 0%, transparent 60%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.arma-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.arma-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.arma-hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(26, 79, 255, 0.15) 0%, rgba(26, 79, 255, 0.05) 100%);
  border: 1px solid rgba(26, 79, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5b9aff;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.arma-hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.arma-hero-subtitle {
  font-size: 1.4rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 24px;
}

.arma-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ARMA Dashboard Section */
.arma-dashboard-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #091525 0%, #f8fafc 100%);
}

.arma-dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.arma-dashboard-section .arma-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.arma-dashboard-section .arma-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.arma-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, rgba(9, 21, 37, 0.3) 100%);
  pointer-events: none;
}

/* ARMA Features Section */
.arma-features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.arma-features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.arma-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.arma-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.arma-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
}

/* ARMA Highlights Section */
.arma-highlights-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2a4a 100%);
}

.arma-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   MIKRODEV DETAIL PAGE HERO
   =================================== */
.mikrodev-detail-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
  overflow: hidden;
}

.mikrodev-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mikrodev-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(26, 79, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 127, 42, 0.03) 0%, transparent 40%);
}

.mikrodev-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.mikrodev-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mikrodev-hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.12) 0%, rgba(255, 127, 42, 0.04) 100%);
  border: 1px solid rgba(255, 127, 42, 0.25);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.mikrodev-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.mikrodev-hero-subtitle {
  font-size: 1.4rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 24px;
}

.mikrodev-hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Mikrodev Products Section */
.mikrodev-products-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mikrodev-products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mikrodev-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mikrodev-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.mikrodev-section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
}

/* Mikrodev Features Section - Light Theme */
.mikrodev-features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
border: 2px solid;
    border-image: radial-gradient(circle, #0044aa, transparent) 1;
}

.mikrodev-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mikrodev-features-section .mikrodev-features-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 50px;
}

.mikrodev-features-section .mikrodev-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mikrodev-features-section .mikrodev-feature {
  background: var(--white);
  padding: 35px 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.mikrodev-features-section .mikrodev-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 79, 255, 0.15);
}

.mikrodev-features-section .mikrodev-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 127, 42, 0.1) 0%, rgba(255, 127, 42, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}

.mikrodev-features-section .mikrodev-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.mikrodev-features-section .mikrodev-feature p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media screen and (max-width: 1200px) {
  .arma-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mikrodev-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-grid {
    gap: 50px;
  }

  .mikrodev-features-section .mikrodev-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .products-hero-title .title-line-1,
  .products-hero-title .title-line-2 {
    font-size: 2.8rem;
  }
  
  .arma-title,
  .mikrodev-title {
    font-size: 2.5rem;
  }
  
  .arma-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .mikrodev-slide {
    flex: 0 0 calc(100% - 30px);
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .preview-grid-reverse {
    direction: ltr;
  }

  .preview-content {
    max-width: 100%;
    text-align: center;
  }

  .preview-highlights {
    align-items: center;
  }

  .preview-title {
    font-size: 2.2rem;
  }

  .arma-hero-title {
    font-size: 3rem;
  }

  .mikrodev-hero-title {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .products-hero-content {
    padding: 100px 1.5rem 60px;
  }
  
  .products-hero-title .title-line-1,
  .products-hero-title .title-line-2 {
    font-size: 2.2rem;
  }
  
  .products-hero-desc {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .hero-product-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-product-card {
    padding: 30px 24px;
  }
  
  .arma-section,
  .mikrodev-section,
  .products-cta {
    padding: 70px 0;
  }
  
  .arma-title,
  .mikrodev-title {
    font-size: 2rem;
  }
  
  .arma-features-grid {
    grid-template-columns: 1fr;
  }
  
  .arma-feature-image {
    height: 180px;
  }
  
  .arma-highlights {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
  }
  
  .cta-slogan {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .slogan-word {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  
  .mikrodev-slider-wrapper {
    padding: 0 20px;
  }
  
  .slider-btn {
    display: none;
  }
  
  .mikrodev-features {
    padding: 40px 24px;
  }
  
  .mikrodev-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-title {
    font-size: 2rem;
  }

  .product-preview-section {
    padding: 70px 0;
  }

  .preview-title {
    font-size: 1.8rem;
  }

  .preview-subtitle {
    font-size: 1rem;
  }

  .preview-cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .arma-detail-hero,
  .mikrodev-detail-hero {
    min-height: auto;
    padding: 120px 1.5rem 60px;
  }

  .arma-hero-title {
    font-size: 2.5rem;
  }

  .mikrodev-hero-title {
    font-size: 2.2rem;
  }

  .arma-hero-subtitle,
  .mikrodev-hero-subtitle {
    font-size: 1.15rem;
  }

  .arma-features-section,
  .mikrodev-products-section,
  .mikrodev-features-section {
    padding: 70px 0;
  }

  .arma-section-title,
  .mikrodev-section-title {
    font-size: 2rem;
  }

  .mikrodev-features-section .mikrodev-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 480px) {
  .products-hero-title .title-line-1,
  .products-hero-title .title-line-2 {
    font-size: 1.8rem;
  }
  
  .arma-title,
  .mikrodev-title {
    font-size: 1.6rem;
  }
  
  .arma-feature-image {
    height: 150px;
  }
  
  .arma-feature-body {
    padding: 20px;
  }
  
  .arma-highlights {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 25px;
  }
  
  .highlight-number {
    font-size: 2rem;
  }
  
  .slide-content {
    padding: 24px;
  }

  .preview-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .preview-title {
    font-size: 1.5rem;
  }

  .preview-description {
    font-size: 0.95rem;
  }

  .preview-highlight {
    font-size: 0.88rem;
  }

  .arma-hero-title {
    font-size: 2rem;
  }

  .mikrodev-hero-title {
    font-size: 1.8rem;
  }

  .arma-hero-desc,
  .mikrodev-hero-desc {
    font-size: 1rem;
  }

  .arma-section-title,
  .mikrodev-section-title,
  .mikrodev-features-section .mikrodev-features-title {
    font-size: 1.6rem;
  }

  .mikrodev-features-section .mikrodev-features-grid {
    grid-template-columns: 1fr;
  }

  .mikrodev-features-section .mikrodev-feature {
    padding: 28px 22px;
  }
  
  .cta-slogan {
    gap: 10px;
  }
  
  .slogan-word {
    font-size: 1rem;
  }
  
  .slogan-dot {
    width: 6px;
    height: 6px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 14px 32px;
  }
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media screen and (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .logo-img {
    height: 50px;
    min-width: 120px;
  }

  /* Hide desktop menu on mobile */
  .nav-menu {
    display: none;
  }

  /* Dropdown menus hidden on mobile */
  .dropdown-menu {
    display: none;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .page-content h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .logo-img {
    height: 45px;
    min-width: 110px;
  }

  .nav-menu {
    width: 100%;
  }

  .page-content h1 {
    font-size: 1.75rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }
}

/* ===================================
   WHAT WE ACTUALLY DO SECTION
   =================================== */
.portfolio-services {
  padding: 80px 0;
  background: #f8f9fc;
}

.portfolio-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.portfolio-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.portfolio-section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
}

.portfolio-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateX(0);
}

.portfolio-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 79, 255, 0.1);
  border-color: rgba(26, 79, 255, 0.15);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(26, 79, 255, 0.1) 0%, rgba(255, 127, 42, 0.08) 100%);
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

/* What We Do Responsive */
@media screen and (max-width: 1024px) {
  .portfolio-section-container {
    padding: 0 40px;
  }

  .portfolio-services-grid {
    gap: 24px;
  }

  .portfolio-service-card {
    padding: 32px 28px;
  }
}

@media screen and (max-width: 768px) {
  .portfolio-services {
    padding: 60px 0;
  }

  .portfolio-section-container {
    padding: 0 24px;
  }

  .portfolio-section-header {
    margin-bottom: 36px;
  }

  .portfolio-section-title {
    font-size: 2rem;
  }

  .portfolio-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-service-card {
    padding: 28px 24px;
  }
}

@media screen and (max-width: 480px) {
  .portfolio-services {
    padding: 50px 0;
  }

  .portfolio-section-title {
    font-size: 1.7rem;
  }

  .portfolio-section-subtitle {
    font-size: 1rem;
  }

  .portfolio-service-card {
    padding: 24px 20px;
  }

  .service-card-title {
    font-size: 1.1rem;
  }

  .service-card-desc {
    font-size: 0.9rem;
  }
}
