/* Design System & Custom Tokens */
:root {
  /* Colors */
  --bg-color: #0b0a09;
  --bg-gradient-start: #0f0e0d;
  --bg-gradient-end: #070605;
  
  --card-bg: rgba(22, 20, 18, 0.65);
  --card-bg-hover: rgba(30, 27, 24, 0.85);
  --card-border: rgba(255, 255, 255, 0.05);
  
  --primary-color: #38b5e6;        /* Logo Cyan */
  --primary-glow: rgba(56, 181, 230, 0.25);
  
  --secondary-color: #b5f560;      /* Logo Lime Green */
  --secondary-glow: rgba(181, 245, 96, 0.25);
  
  --accent-color: #f39c12;         /* Kampala Sun Gold */
  --accent-glow: rgba(243, 156, 18, 0.25);
  
  --text-color: #f5f6fa;
  --text-muted: #a4b0be;
  --text-dark: #2f3542;
  
  /* Typography */
  --font-display: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --container-max-width: 1200px;
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
  --border-radius-sm: 4px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
}

/* African-Tech Grid Grid & Particle Effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  pointer-events: none;
}

/* Glow Elements */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}
.bg-glow-1 {
  top: -10%;
  left: 10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}
.bg-glow-2 {
  bottom: 10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
}
.bg-glow-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-color);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: var(--card-bg-hover);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #000000;
}
.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 0 20px var(--secondary-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Gradient Text */
.text-gradient-cyan {
  background: linear-gradient(135deg, #ffffff 30%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header & Sticky Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(11, 10, 9, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  height: 70px;
  background: rgba(7, 6, 5, 0.9);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: var(--transition-normal);
}

.site-header.scrolled .logo-img {
  height: 44px;
}

.primary-navigation {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  opacity: 0.8;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  opacity: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-nav {
  padding: 0.6rem 1.5rem;
}

/* Mobile Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  transition: var(--transition-fast);
}

.hamburger::before { top: -8px; left: 0; }
.hamburger::after { bottom: -8px; left: 0; }

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(243, 156, 18, 0.12);
  color: var(--accent-color);
  border: 1px solid rgba(243, 156, 18, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge i {
  animation: bounce 2s infinite;
}

.hero-title {
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 140px;
}

.stat-divider {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
  position: relative;
  width: 100%;
}

.image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.glow-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 181, 230, 0.15) 0%, transparent 60%);
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 1rem;
}

.section-underline {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.about-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  background: rgba(56, 181, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-color);
  border: 1px solid rgba(56, 181, 230, 0.2);
}

.about-card:nth-child(2) .about-icon-wrapper {
  background: rgba(243, 156, 18, 0.1);
  color: var(--accent-color);
  border-color: rgba(243, 156, 18, 0.2);
}

.about-card:nth-child(3) .about-icon-wrapper {
  background: rgba(181, 245, 96, 0.1);
  color: var(--secondary-color);
  border-color: rgba(181, 245, 96, 0.2);
}

/* Products Section */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--primary-color);
}

.tab-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #000000;
  box-shadow: 0 0 25px var(--primary-glow);
}

.product-display {
  padding: 4rem;
}

.product-content {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.product-content.active {
  display: grid;
  animation: fadeIn 0.6s ease-in-out;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-badge {
  background: rgba(181, 245, 96, 0.12);
  color: var(--secondary-color);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(181, 245, 96, 0.2);
}

#vic4biz .product-badge {
  background: rgba(56, 181, 230, 0.12);
  color: var(--primary-color);
  border-color: rgba(56, 181, 230, 0.2);
}

.product-slogan {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #ffffff;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0 1.5rem 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.product-features li i {
  color: var(--secondary-color);
}

#vic4biz .product-features li i {
  color: var(--primary-color);
}

.product-actions {
  margin-top: 0.5rem;
}

/* Mockup UI Widget Simulation */
.product-visual {
  position: relative;
  width: 100%;
}

.mockup-ui {
  background: #11100f;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  height: 280px;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  background: #1a1816;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-header .dot.red { background: #ff7675; }
.mockup-header .dot.yellow { background: #ffeaa7; }
.mockup-header .dot.green { background: #55efc4; }

.mockup-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 1rem;
  font-weight: 500;
}

.mockup-body {
  flex-grow: 1;
  display: flex;
}

.mockup-sidebar {
  width: 50px;
  background: #151312;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-main {
  flex-grow: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mockup-widgets {
  display: flex;
  gap: 1rem;
}

.widget {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.85rem;
  border-radius: var(--border-radius-md);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.widget span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.widget.glow-cyan span { color: var(--primary-color); }
.widget.glow-green span { color: var(--secondary-color); }

.mockup-chart {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-chart .bar {
  flex: 1;
  background: rgba(56, 181, 230, 0.15);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid rgba(56, 181, 230, 0.3);
  transition: height var(--transition-normal);
}

.mockup-chart .bar:nth-child(even) {
  background: rgba(181, 245, 96, 0.15);
  border-color: rgba(181, 245, 96, 0.3);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.badge-done {
  background: rgba(181, 245, 96, 0.12);
  color: var(--secondary-color);
  border: 1px solid rgba(181, 245, 96, 0.2);
}

.badge-pending {
  background: rgba(243, 156, 18, 0.12);
  color: var(--accent-color);
  border: 1px solid rgba(243, 156, 18, 0.2);
}

.mockup-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  font-size: 0.8rem;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
}

.table-row.header {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: #ffffff;
}

.mockup-calendar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cal-day {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.65rem;
  border-radius: var(--border-radius-md);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.cal-day.selected {
  background: rgba(243, 156, 18, 0.08);
  border-color: var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(56, 181, 230, 0.1) 0%, rgba(181, 245, 96, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  border: 1px solid rgba(56, 181, 230, 0.2);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #000000;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: scale(1.05);
}

.service-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact & Map Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-item i {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.info-item:hover i {
  color: #000000;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.info-text h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.info-text p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.info-text a {
  color: var(--text-color);
}
.info-text a:hover {
  color: var(--primary-color);
}

.map-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) grayscale(40%) contrast(90%);
  display: block;
}

.map-overlay-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

/* Map styling details */

/* Footer */
.site-footer {
  background-color: #060505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.9rem;
  max-width: 320px;
}

.kampala-clock {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-color);
  background: rgba(243, 156, 18, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(243, 156, 18, 0.15);
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links h4, .footer-social h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  transition: var(--transition-normal);
}

.social-icons a:hover {
  background: #0077b5; /* LinkedIn Color */
  border-color: #0077b5;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
  transform: translateY(-3px);
}

.footer-domain {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-domain a {
  color: var(--primary-color);
  font-weight: 600;
}
.footer-domain a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-badge {
    margin: 0 auto;
  }
  
  .hero-lead {
    margin: 0 auto 1rem auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-card:nth-child(3) {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .product-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-visual {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  /* Mobile Menu navigation system */
  .mobile-nav-toggle {
    display: block;
  }
  
  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - var(--header-height));
    background: rgba(11, 10, 9, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .primary-navigation.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-card:nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .product-display {
    padding: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-logo {
    align-self: center;
  }
  
  .footer-desc {
    max-width: 100%;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .product-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  .tab-btn {
    width: 100%;
    justify-content: center;
  }
}
