/* ==========================================================================
   ULIC Tek - Custom CSS Stylesheet (Redesigned)
   Design Language: Premium High-Tech Dark Mode, Glassmorphism, and Tech-Lines
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --bg-primary: #05070B;
  --bg-secondary: #0A0D14;
  --bg-card: rgba(13, 17, 26, 0.65);
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  
  --brand-red: #DE2C30;
  --brand-red-glow: rgba(222, 44, 48, 0.35);
  --brand-red-hover: #F84E51;
  --brand-red-dark: #7F1D1D;
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(222, 44, 48, 0.18);
  --glass-bg: rgba(7, 9, 15, 0.75);
  --glass-border: rgba(255, 255, 255, 0.04);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-subtitle-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-top: 15px;
  text-transform: uppercase;
}

.section-divider {
  width: 50px;
  height: 4px;
  background-color: var(--brand-red);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--brand-red-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-primary {
  background-color: var(--brand-red);
  color: #FFFFFF;
  border: 1px solid var(--brand-red);
  box-shadow: 0 4px 14px var(--brand-red-glow);
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  border-color: var(--brand-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222, 44, 48, 0.5);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header & Navigation */
#nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-red);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--brand-red-glow);
}

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

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

/* Language Switcher */
.lang-switch-btn {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.lang-switch-btn:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red-glow);
  transform: scale(1.05);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Glowing Background Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background-color: var(--brand-red);
  top: -10%;
  right: -5%;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background-color: #2563EB;
  bottom: 5%;
  left: -10%;
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

/* Tech Network Line Overlay */
.network-lines-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(222, 44, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 44, 48, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(222, 44, 48, 0.08);
  border: 1px solid rgba(222, 44, 48, 0.15);
  color: var(--brand-red);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 20%, #E2E8F0 60%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.monogram-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.floating-monogram {
  width: 100%;
  height: auto;
  animation: floatMonogram 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(222, 44, 48, 0.18));
}

/* Mouse Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}

.mouse-scroll {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 14px;
  position: relative;
  transition: var(--transition-smooth);
}

.mouse-scroll:hover {
  border-color: var(--text-secondary);
}

.mouse-scroll::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background-color: var(--brand-red);
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: mouseWheel 2s ease-in-out infinite;
  box-shadow: 0 0 4px var(--brand-red);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px 15px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition-bounce);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-red);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Team core visualizer */
.team-visualizer {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.team-visualizer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  color: var(--text-primary);
}

.team-bar-container {
  display: flex;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.team-bar-segment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.team-bar-segment:hover {
  opacity: 0.9;
  filter: brightness(1.1);
}

.team-bar-segment.dev { background-color: var(--brand-red); }
.team-bar-segment.pm { background-color: #2563EB; }
.team-bar-segment.qa { background-color: #10B981; }
.team-bar-segment.gui { background-color: #F59E0B; }

.team-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.legend-item .dot.dev { background-color: var(--brand-red); }
.legend-item .dot.pm { background-color: #2563EB; }
.legend-item .dot.qa { background-color: #10B981; }
.legend-item .dot.gui { background-color: #F59E0B; }

/* Capabilities Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.expertise-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 16px;
  transition: var(--transition-bounce);
  backdrop-filter: blur(8px);
}

.expertise-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(222, 44, 48, 0.05);
}

.card-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(222, 44, 48, 0.08);
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(222, 44, 48, 0.15);
  color: var(--brand-red);
}

.card-icon {
  width: 28px;
  height: 28px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.4;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Validation Section (Partners Category Grid) */
.cyan-text-highlight {
  background: linear-gradient(135deg, #38BDF8 30%, #0EA5E9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.partners-category-container {
  background-color: rgba(10, 14, 23, 0.45);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  backdrop-filter: blur(8px);
}

.partners-category-container .section-subtitle-text {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.partners-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-category-card {
  background-color: rgba(6, 8, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: var(--transition-bounce);
}

.partner-category-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.category-icon-wrapper {
  color: #38BDF8;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(56, 189, 248, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.12);
}

.category-svg-icon {
  width: 24px;
  height: 24px;
}

.category-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-category-card .category-header {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #64748B;
  margin-bottom: 0;
}

.partner-category-card .partner-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.partner-category-card .partner-item-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.dot-separator {
  color: #38BDF8;
  font-size: 1.2rem;
  font-weight: 900;
}

/* Metrics Section Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.metric-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.metric-card.glow-red {
  border-color: rgba(222, 44, 48, 0.12);
}

.metric-card.glow-red:hover {
  border-color: var(--brand-red);
  box-shadow: 0 10px 30px rgba(222, 44, 48, 0.08);
}

.metric-card.glow-blue {
  border-color: rgba(37, 99, 235, 0.12);
}

.metric-card.glow-blue:hover {
  border-color: #2563EB;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.metric-visual {
  margin-bottom: 20px;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  letter-spacing: -1px;
  line-height: 1;
}

.metric-svg-icon {
  width: 48px;
  height: 48px;
  color: #2563EB;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
}

.icons-row {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  align-items: center;
  flex-wrap: wrap;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: var(--transition-bounce);
}

.icon-box:hover {
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1);
}

.icon-box.ib-cyan { background-color: #0EA5E9; }
.icon-box.ib-blue { background-color: #3B82F6; }
.icon-box.ib-green { background-color: #10B981; }
.icon-box.ib-pink { background-color: #EC4899; }
.icon-box.ib-purple { background-color: #8B5CF6; }

.metric-icon {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
}

.metric-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.metric-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact & Info Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
}

.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 45px 40px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-subtitle-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  background-color: rgba(222, 44, 48, 0.01);
  box-shadow: 0 0 10px rgba(222, 44, 48, 0.15);
}

/* Corporate Info Card */
.corporate-details-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 45px 40px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.corporate-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.detail-item {
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.detail-item:last-of-type {
  border-bottom: none;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.badge-status {
  display: inline-block;
  color: #10B981;
  font-weight: 700;
}

/* Footer styling */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo-image {
  height: 35px;
  width: auto;
  opacity: 0.7;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
}

/* Animations */
@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

@keyframes floatMonogram {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes mouseWheel {
  0% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0; }
  100% { top: 8px; opacity: 1; }
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title.fade-in-up { animation-delay: 0.2s; }
.hero-subtitle.fade-in-up { animation-delay: 0.4s; }
.hero-actions.fade-in-up { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Responsive Media Queries (Mobile First Layout Adjustments)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .partners-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile menu drawer */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 10px 0;
  }
  
  /* Menu Hamburger Animations when Open */
  .mobile-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero section adjustments */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }
  
  .hero-subtitle {
    margin: 0 auto 30px auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .monogram-wrapper {
    max-width: 220px;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  /* Other sections */
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .expertise-grid, .partners-category-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    order: -1;
  }
  
  .partners-grid {
    gap: 30px 40px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

/* ==========================================================================
   Products Section (Multiro Cutter)
   ========================================================================== */
.products-section {
  background-color: var(--bg-secondary);
}
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.product-visual {
  display: flex;
  justify-content: center;
}
.product-window {
  width: 100%;
  max-width: 420px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: var(--transition-bounce);
}
.product-window:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
}
.product-window-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
}
.pw-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--text-muted);
}
.pw-dot:first-child {
  background-color: var(--brand-red);
}
.product-window-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 64px 20px;
  background: radial-gradient(circle at 50% 38%, rgba(222, 44, 48, 0.10), transparent 70%);
}
.product-bigicon {
  width: 78px;
  height: 78px;
  color: var(--brand-red);
}
.product-version {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.product-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  text-transform: uppercase;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0 8px;
  color: var(--text-primary);
}
.product-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}
.product-features {
  list-style: none;
  margin-bottom: 26px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.product-features svg {
  width: 18px;
  height: 18px;
  color: var(--brand-red);
  flex-shrink: 0;
}
.product-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.platform-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-visual {
    order: -1;
  }
}

/* ==========================================================================
   Contact Form Status Message (Formspree)
   ========================================================================== */
.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  min-height: 1.2em;
}
.form-status.sending { color: var(--text-secondary); }
.form-status.success { color: #22C55E; }
.form-status.error   { color: #EF4444; }

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: calc(100% - 40px);
  max-width: 760px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.cookie-consent[hidden] { display: none; }
.cookie-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-actions .btn { padding: 9px 20px; font-size: 0.85rem; }
@media (max-width: 600px) {
  .cookie-consent { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}
