@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #eaf3fa;
  --bg-alt: #e2eff8;
  --bg-sky: #dcebf7;
  --bg-sky-light: #d4e6f5;
  --card-bg: #ffffff;
  
  --neu-bg: #eaf3fa;
  --neu-shadow-dark: #cbdce9;
  --neu-shadow-light: #ffffff;
  --neu-inset-dark: #cbdce9;
  --neu-inset-light: #ffffff;
  
  --primary: #0284c7;
  --primary-hover: #0369a1;
  --primary-light: #38bdf8;
  --sky-accent: #0ea5e9;
  
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-muted: #64748b;
  --text-sky: #0284c7;
  
  --border-light: rgba(2, 132, 199, 0.12);
  --border-sky: rgba(56, 189, 248, 0.35);
  --border-sky-strong: rgba(2, 132, 199, 0.5);
  
  --glass-bg: rgba(234, 243, 250, 0.92);
  --glass-border: rgba(2, 132, 199, 0.15);
  
  --shadow-sm: 5px 5px 12px var(--neu-shadow-dark), -5px -5px 12px var(--neu-shadow-light);
  --shadow-md: 10px 10px 24px var(--neu-shadow-dark), -10px -10px 24px var(--neu-shadow-light);
  --shadow-lg: 16px 16px 36px var(--neu-shadow-dark), -16px -16px 36px var(--neu-shadow-light);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.35);
  
  --grad-sky: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  --grad-sky-text: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
  --grad-hero-bg: radial-gradient(ellipse at 50% -10%, #d8e8f6 0%, #eaf3fa 60%, #eaf3fa 100%);
  --grad-card: linear-gradient(145deg, #eff7fc 0%, #e3eff8 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

[data-theme="dark"] {
  --bg-main: #0b1329;
  --bg-alt: #111c38;
  --bg-sky: #162447;
  --bg-sky-light: #1f325c;
  --card-bg: #111c38;
  
  --neu-bg: #0b1329;
  --neu-shadow-dark: #050a17;
  --neu-shadow-light: #132042;
  --neu-inset-dark: #050a17;
  --neu-inset-light: #132042;
  
  --primary: #38bdf8;
  --primary-hover: #7dd3fc;
  --primary-light: #0ea5e9;
  --sky-accent: #38bdf8;
  
  --text-dark: #f8fafc;
  --text-medium: #cbd5e1;
  --text-muted: #94a3b8;
  --text-sky: #38bdf8;
  
  --border-light: rgba(56, 189, 248, 0.18);
  --border-sky: rgba(56, 189, 248, 0.35);
  --border-sky-strong: rgba(56, 189, 248, 0.6);
  
  --glass-bg: rgba(11, 19, 41, 0.92);
  --glass-border: rgba(56, 189, 248, 0.2);
  
  --shadow-sm: 4px 4px 14px var(--neu-shadow-dark), -4px -4px 14px var(--neu-shadow-light);
  --shadow-md: 8px 8px 24px var(--neu-shadow-dark), -8px -8px 24px var(--neu-shadow-light);
  --shadow-lg: 14px 14px 36px var(--neu-shadow-dark), -14px -14px 36px var(--neu-shadow-light);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.4);
  
  --grad-sky: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  --grad-sky-text: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 100%);
  --grad-hero-bg: radial-gradient(ellipse at 50% -10%, #15274d 0%, #0b1329 70%, #0b1329 100%);
  --grad-card: linear-gradient(145deg, #111c38 0%, #162447 100%);
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neu-bg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  outline: none;
}
.theme-toggle-btn:hover {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.theme-icon {
  font-size: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 1;
}
.moon-icon {
  display: block;
}
.sun-icon {
  display: none;
}
[data-theme="dark"] .moon-icon {
  display: none;
}
[data-theme="dark"] .sun-icon {
  display: block;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-medium);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-sky);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
}

.sky-gradient-text {
  background: var(--grad-sky-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ===== TOP NOTICE BAR ===== */
.top-notice-bar {
  background: var(--grad-sky);
  color: #ffffff;
  padding: 8px 3%;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 1002;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.2);
  flex-wrap: wrap;
  text-align: center;
}

.top-notice-bar a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.top-notice-bar a:hover {
  background: #ffffff;
  color: var(--primary);
}

.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(15, 23, 42, 0.85);
  color: #38bdf8;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
}

/* ===== NAVBAR (FIXED STICKY POSITIONING & VISIBILITY) ===== */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

nav.scrolled {
  box-shadow: var(--shadow-md);
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-sky);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  letter-spacing: -0.5px;
  transition: transform 0.25s ease;
}

.logo-emblem-svg {
  width: 38px;
  height: 35px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 3px 8px rgba(2, 132, 199, 0.35));
}

.nav-logo:hover .logo-emblem-svg {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 5px 15px rgba(56, 189, 248, 0.6));
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary);
}

/* MENU SIZES & VISIBILITY FIX */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 6px 10px;
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 7px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

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

.nav-link svg {
  width: 10px;
  height: 10px;
  transition: transform 0.25s ease;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg-main);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1002;
  box-shadow: var(--shadow-lg);
}

.dropdown-wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
}

.dropdown-mega {
  min-width: 740px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  left: -80px;
}

.nav-item:first-child .dropdown-mega {
  left: 0;
}

@media (max-width: 1200px) {
  .dropdown-mega {
    min-width: 640px;
    left: -120px;
  }
  .nav-item:first-child .dropdown-mega {
    left: -20px;
  }
}


.nav-item:hover .dropdown,
.nav-item.active .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item:hover .nav-link svg,
.nav-item.active .nav-link svg,
.nav-item.open .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  padding: 4px 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-medium);
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: var(--primary);
  background: var(--bg-sky);
  transform: translateX(4px);
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--primary);
}

.nav-cta {
  padding: 8px 16px;
  background: var(--grad-sky);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE NAV MENU DRAWER */
.mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  background: var(--bg-main) !important;
  z-index: 999999 !important;
  padding: 24px 20px 50px !important;
  display: none;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

@media (max-width: 1024px) {
  .mobile-menu {
    display: flex !important;
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  transform: translateX(0) !important;
}

.mobile-menu-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--border-light) !important;
  margin-bottom: 16px !important;
}

.mobile-menu-close {
  background: var(--bg-sky) !important;
  border: 1px solid var(--border-sky) !important;
  color: var(--text-dark) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: var(--shadow-sm) !important;
}

.mobile-menu-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.mobile-nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 16px !important;
  font-size: 15.5px !important;
  font-weight: 800 !important;
  color: var(--text-dark) !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  background: var(--card-bg) !important;
  border: 1px solid var(--border-light) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  list-style: none !important;
  box-shadow: var(--shadow-sm) !important;
}

.mobile-nav-link span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: var(--text-dark) !important;
  font-weight: 800 !important;
}

.mobile-nav-link:hover {
  background: var(--bg-sky) !important;
  color: var(--primary) !important;
  border-color: var(--border-sky) !important;
}

[data-theme="dark"] .mobile-nav-link {
  background: #111c38 !important;
  color: #f8fafc !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
}

[data-theme="dark"] .mobile-nav-link span {
  color: #f8fafc !important;
}

.mobile-arrow {
  font-size: 13px !important;
  font-weight: 800 !important;
  transition: transform 0.25s ease !important;
  color: var(--primary) !important;
}

.mobile-dropdown-details {
  border-radius: 12px !important;
  margin-bottom: 2px !important;
}

.mobile-dropdown-details summary::-webkit-details-marker {
  display: none !important;
}

.mobile-dropdown-details[open] .mobile-arrow {
  transform: rotate(180deg) !important;
}

.mobile-sublinks {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 12px 14px !important;
  background: var(--bg-alt) !important;
  border-radius: 12px !important;
  margin: 6px 0 12px !important;
  border: 1px solid var(--border-light) !important;
}

.mobile-sublinks a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  background: var(--card-bg) !important;
  border: 1px solid var(--border-light) !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
  line-height: 1.4 !important;
}

.mobile-sublinks a:hover, .mobile-sublinks a:focus {
  background: var(--bg-sky) !important;
  color: var(--primary) !important;
  border-color: var(--border-sky) !important;
  transform: translateX(4px) !important;
}

[data-theme="dark"] .mobile-sublinks {
  background: #0e1a2b !important;
  border-color: rgba(56, 189, 248, 0.15) !important;
}

[data-theme="dark"] .mobile-sublinks a {
  background: #162447 !important;
  color: #f8fafc !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
}

.mobile-nav-cta {
  margin-top: 24px !important;
  padding: 16px !important;
  text-align: center !important;
  background: var(--grad-sky) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4) !important;
  display: block !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 12px 26px;
  background: var(--grad-sky);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 6px 6px 18px var(--neu-shadow-dark), -6px -6px 18px var(--neu-shadow-light), 0 4px 14px rgba(2, 132, 199, 0.35);
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 24px var(--neu-shadow-dark), -8px -8px 24px var(--neu-shadow-light), 0 6px 20px rgba(2, 132, 199, 0.45);
  color: #ffffff;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  padding: 12px 26px;
  background: var(--neu-bg);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border-sky);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 6px 6px 16px var(--neu-shadow-dark), -6px -6px 16px var(--neu-shadow-light);
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-secondary:hover {
  background: var(--neu-bg);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 8px 8px 20px var(--neu-shadow-dark), -8px -8px 20px var(--neu-shadow-light);
}

.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: inset 2px 2px 6px var(--neu-inset-dark), inset -2px -2px 6px var(--neu-inset-light);
}

.btn-ghost {
  padding: 12px 26px;
  background: transparent;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--border-light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

.btn-gold {
  padding: 13px 28px;
  background: var(--grad-gold);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
  white-space: nowrap;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 119, 6, 0.45);
  color: #ffffff;
}

/* ===== CANVAS HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero-bg);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

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

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

.hero-float-card {
  position: absolute;
  background: var(--neu-bg);
  border: 1px solid var(--border-sky);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.float-top-left {
  top: -15px;
  left: -15px;
}

.float-top-right {
  top: -15px;
  right: -15px;
}

.float-bottom-left {
  bottom: -15px;
  left: -10px;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-content-col {
    align-items: center;
    text-align: center;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neu-bg);
  border: 1px solid var(--border-sky);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 5px 5px 14px var(--neu-shadow-dark), -5px -5px 14px var(--neu-shadow-light);
  animation: fadeUp 0.8s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 12px;
  color: var(--text-medium);
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-title {
  font-size: clamp(24px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-subtitle {
  font-size: clamp(13.5px, 1.6vw, 18.5px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.65;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
  width: 100%;
  box-sizing: border-box;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 18px 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.25;
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
  padding: 26px 0;
  background: var(--bg-sky);
  border-top: 1px solid var(--border-sky);
  border-bottom: 1px solid var(--border-sky);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 36px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-medium);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.marquee-item::before {
  content: '◆';
  font-size: 8px;
  color: var(--primary);
}

/* ===== SECTIONS ===== */
section {
  padding: 70px 5%;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--bg-alt);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

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

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: var(--grad-sky);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-sky);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--bg-sky);
  border: 1px solid var(--border-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.06);
}

.service-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.tag {
  padding: 3px 9px;
  background: var(--bg-sky);
  border: 1px solid var(--border-sky);
  border-radius: 100px;
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
}

.service-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg-sky);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.service-card:hover .service-arrow {
  opacity: 1;
  background: var(--primary);
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* ===== AI SECTION SHOWCASE ===== */
.ai-section {
  background: var(--bg-main);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.ai-feature {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ai-feature:hover, .ai-feature.active {
  background: var(--bg-sky);
  border-color: var(--border-sky);
  transform: translateX(4px);
}

.ai-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.ai-feature-content h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ai-feature-content p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.ai-card {
  background: var(--bg-main);
  border: 1px solid var(--border-sky);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.ai-card-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
}

.ai-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.ai-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.ai-metric {
  background: var(--bg-sky);
  border: 1px solid var(--border-sky);
  border-radius: 12px;
  padding: 14px;
}

.ai-metric-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
}

.ai-metric-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.ai-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-bar-label {
  font-size: 11px;
  color: var(--text-medium);
  font-weight: 600;
  width: 85px;
}

.ai-bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-sky-light);
  border-radius: 3px;
  overflow: hidden;
}

.ai-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--grad-sky);
  transition: width 1.5s ease-out;
}

.ai-bar-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  width: 30px;
  text-align: right;
}

/* ===== INDUSTRIES GRID ===== */
.industries-section {
  background: var(--bg-alt);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.industry-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 24px 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-sky);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-sky);
  box-shadow: var(--shadow-md);
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-emoji {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}

.industry-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.industry-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== PROCESS STEPS ===== */
.process-section {
  background: var(--bg-main);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 6px;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-sky);
  border: 2px solid var(--border-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-num {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.step-title {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== TESTIMONIALS / CLIENTS ===== */
.clients-section {
  background: var(--bg-sky);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--bg-main);
  border: 1px solid var(--border-sky);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #f59e0b;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-sky-light);
  border: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.author-info h4 {
  font-size: 13.5px;
  font-weight: 700;
}

.author-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== TECH STACK TABS ===== */
.tech-section {
  background: var(--bg-alt);
}

.tech-categories {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
  justify-content: center;
}

.tech-cat-btn {
  padding: 7px 16px;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-main);
  cursor: pointer;
  transition: all 0.25s ease;
}

.tech-cat-btn:hover, .tech-cat-btn.active {
  background: var(--grad-sky);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.tech-item {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.tech-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-sky);
  box-shadow: var(--shadow-md);
}

.tech-item-icon {
  font-size: 26px;
}

.tech-item-name {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: var(--grad-sky);
  color: #ffffff;
  padding: 70px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 4% 50px;
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  color: #ffffff;
  font-size: clamp(26px, 3.8vw, 44px);
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin: 0 auto 26px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: #ffffff;
  padding: 60px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.1fr 1.1fr 1.1fr 1.1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: #ffffff;
  font-size: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 14px 0 18px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading, .footer-col h4 {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a, .footer-link {
  display: block;
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover, .footer-link:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  font-size: 13px;
  color: #94a3b8;
}

.footer-contact-item a {
  color: #38bdf8 !important;
  font-weight: 700;
  text-decoration: none;
  display: inline-block !important;
  margin-bottom: 0 !important;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #7dd3fc !important;
  text-decoration: underline;
  transform: none !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal-card {
  background: var(--bg-main);
  border: 1px solid var(--border-sky);
  border-radius: 18px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-sky);
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== ANIMATION CLASSES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
  nav { padding: 0 3%; }
  .nav-link { padding: 5px 8px; font-size: 12.5px; }
  .nav-cta { padding: 7px 14px; font-size: 12.5px; }
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .ai-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }
  nav { padding: 0 4%; height: 60px; max-width: 100vw; box-sizing: border-box; }
  .hero { padding: 36px 4% 24px; min-height: auto; width: 100%; overflow: hidden; box-sizing: border-box; }
  .hero-grid { width: 100%; max-width: 100%; box-sizing: border-box; }
  .hero-title { font-size: clamp(20px, 5.5vw, 32px); letter-spacing: -0.5px; line-height: 1.25; word-break: break-word; overflow-wrap: break-word; hyphens: auto; }
  .hero-subtitle { font-size: 13px; margin-bottom: 20px; word-break: break-word; overflow-wrap: break-word; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 100%; gap: 10px; box-sizing: border-box; align-items: stretch; }
  .hero-ctas a, .hero-ctas button, .btn-primary, .btn-secondary, .btn-ghost, .btn-gold { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; justify-content: center !important; text-align: center !important; white-space: normal !important; word-break: break-word !important; padding: 12px 14px !important; }
  
  .hero-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; margin-top: 24px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .stat-card { padding: 10px 4px !important; box-sizing: border-box !important; min-width: 0 !important; overflow: hidden !important; width: 100% !important; }
  .stat-num { font-size: clamp(18px, 4.2vw, 24px) !important; }
  .stat-label { font-size: clamp(8px, 2.1vw, 9.5px) !important; letter-spacing: 0px !important; line-height: 1.25 !important; word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }

  /* Reset absolute floating cards & browser mockups that trigger horizontal scrollbar on mobile */
  .hero-float-card, .float-top-left, .float-top-right, .float-bottom-left { position: relative !important; inset: auto !important; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; margin: 8px auto !important; transform: none !important; max-width: 100% !important; box-sizing: border-box !important; }
  .ai-3d-badge-top, .ai-3d-badge-bottom { position: relative !important; inset: auto !important; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; margin: 8px auto !important; max-width: 100% !important; }
  .browser-mockup { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
  .browser-header { display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 6px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
  .browser-address { flex: 1 !important; min-width: 0 !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; font-size: 9px !important; }
  .browser-body { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; padding: 12px 8px !important; }
  
  section { padding: 36px 4%; max-width: 100vw; box-sizing: border-box; overflow-x: hidden; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 20px 16px; box-sizing: border-box; min-width: 0 !important; }
  
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .industry-card { padding: 16px 10px; box-sizing: border-box; min-width: 0 !important; }
  .industry-emoji { font-size: 24px; margin-bottom: 6px; }
  .industry-name { font-size: 13.5px; }

  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-step { text-align: left; display: flex; gap: 12px; align-items: flex-start; min-width: 0 !important; }
  .step-num { margin: 0; flex-shrink: 0; width: 38px; height: 38px; font-size: 14px; }

  .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tech-item { min-width: 0 !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 0 !important; }

  /* UNIVERSAL PAGE CONTAINMENT FOR ALL SPECIALTY PAGES */
  .cap-grid, .svc-grid, .price-grid, .team-grid, .blog-grid, .contact-grid, .form-grid, .faq-grid, .review-grid, .ws-grid, .ai-3d-hero-grid, .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .cap-card, .svc-card, .price-card, .team-card, .blog-card, .contact-card-item, .form-box, .contact-form-box, .faq-item, .ds-case-study-card, .uc-card, .roi-calc, .offer-box, .ws-item, .card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 18px 14px !important;
    grid-template-columns: 1fr !important;
  }

  .form-input, .form-select, .form-textarea, input, select, textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-section { margin: 0 2% 32px; padding: 32px 4%; border-radius: 16px; box-sizing: border-box; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col { min-width: 0 !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-badge { padding: 5px 10px; max-width: 100%; }
  .hero-badge span { font-size: 10.5px; }
  .hero-title { font-size: clamp(19px, 5.2vw, 26px); }
  .hero-subtitle { font-size: 12.5px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
  .stat-card { padding: 8px 4px; }
  .industries-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .top-notice-bar { font-size: 10.5px; padding: 6px 3%; flex-direction: column; gap: 4px; }
}

/* ===== DARK MODE THEME OVERRIDES ===== */
[data-theme="dark"] {
  --bg-main: #0b1523;
  --bg-alt: #0e1a2b;
  --bg-sky: #111f33;
  --bg-sky-light: #16273d;
  
  --neu-bg: #0b1523;
  --neu-shadow-dark: #040912;
  --neu-shadow-light: #142337;
  --neu-inset-dark: #040811;
  --neu-inset-light: #16263b;
  
  --primary: #38bdf8;
  --primary-hover: #7dd3fc;
  --primary-light: #0ea5e9;
  --sky-accent: #38bdf8;
  
  --text-dark: #f8fafc;
  --text-medium: #cbd5e1;
  --text-muted: #94a3b8;
  --text-sky: #38bdf8;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-sky: rgba(56, 189, 248, 0.25);
  --border-sky-strong: rgba(56, 189, 248, 0.45);
  
  --glass-bg: rgba(11, 21, 35, 0.92);
  --glass-border: rgba(56, 189, 248, 0.18);
  
  --shadow-sm: 5px 5px 14px var(--neu-shadow-dark), -5px -5px 14px var(--neu-shadow-light);
  --shadow-md: 10px 10px 24px var(--neu-shadow-dark), -10px -10px 24px var(--neu-shadow-light);
  --shadow-lg: 16px 16px 36px var(--neu-shadow-dark), -16px -16px 36px var(--neu-shadow-light);
  --shadow-glow: 0 0 35px rgba(56, 189, 248, 0.3);
  
  --grad-sky-text: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 50%, #bae6fd 100%);
  --grad-hero-bg: radial-gradient(ellipse at 50% -10%, #152438 0%, #0b1523 60%, #0b1523 100%);
  --grad-card: linear-gradient(145deg, #0e1a2b 0%, #08101c 100%);
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border-sky);
  background: var(--bg-sky);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.theme-toggle-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.05);
}
.sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: inline-block; }

/* Dark mode specific component adjustments */
[data-theme="dark"] .hero,
[data-theme="dark"] .offer-page-hero,
[data-theme="dark"] .company-hero,
[data-theme="dark"] .contact-hero {
  background: var(--grad-hero-bg);
}

[data-theme="dark"] .dropdown,
[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .tech-item,
[data-theme="dark"] .cap-card,
[data-theme="dark"] .svc-card,
[data-theme="dark"] .service-block-card,
[data-theme="dark"] .tool-card,
[data-theme="dark"] .uc-card,
[data-theme="dark"] .roi-calc,
[data-theme="dark"] .modal-content,
[data-theme="dark"] .modal-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .capability-card,
[data-theme="dark"] .industry-card,
[data-theme="dark"] .ind-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .price-block,
[data-theme="dark"] .ws-item,
[data-theme="dark"] .dc-body,
[data-theme="dark"] .cc-body,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .offer-box,
[data-theme="dark"] .team-card,
[data-theme="dark"] .contact-card-item,
[data-theme="dark"] .contact-form-box,
[data-theme="dark"] .form-box,
[data-theme="dark"] .contact-info-box {
  background: var(--neu-bg) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 10px 10px 24px var(--neu-shadow-dark), -10px -10px 24px var(--neu-shadow-light) !important;
  color: var(--text-dark);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .search-input {
  background: var(--neu-bg) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
  box-shadow: inset 4px 4px 9px var(--neu-inset-dark), inset -4px -4px 9px var(--neu-inset-light) !important;
  color: var(--text-dark) !important;
}

[data-theme="dark"] .contact-card-icon,
[data-theme="dark"] .dropdown-icon,
[data-theme="dark"] .service-icon,
[data-theme="dark"] .cap-icon,
[data-theme="dark"] .ind-icon,
[data-theme="dark"] .icon-box,
[data-theme="dark"] .stat-icon,
[data-theme="dark"] .faq-icon {
  background: var(--neu-bg) !important;
  box-shadow: inset 3px 3px 7px var(--neu-inset-dark), inset -3px -3px 7px var(--neu-inset-light) !important;
}

[data-theme="dark"] .hero-badge,
[data-theme="dark"] .hero-badge-neu {
  background: var(--neu-bg) !important;
  border-color: rgba(56, 189, 248, 0.2) !important;
  box-shadow: 5px 5px 12px var(--neu-shadow-dark), -5px -5px 12px var(--neu-shadow-light) !important;
}
[data-theme="dark"] .hero-badge span,
[data-theme="dark"] .hero-badge-neu span {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .svc-top,
[data-theme="dark"] .svc-tools,
[data-theme="dark"] .svc-cta,
[data-theme="dark"] .sb-tools-row,
[data-theme="dark"] .sb-cta-row {
  background: var(--neu-bg) !important;
}

[data-theme="dark"] .svc-features,
[data-theme="dark"] .sb-body {
  background: var(--bg-alt) !important;
}

[data-theme="dark"] .svc-feat,
[data-theme="dark"] .sb-feature {
  background: #0f172a !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .timeline-container {
  border-left-color: #38bdf8 !important;
}
[data-theme="dark"] .timeline-node::before {
  background: #38bdf8 !important;
  box-shadow: 0 0 0 4px #1e293b !important;
}
[data-theme="dark"] .timeline-year {
  color: #38bdf8 !important;
}

[data-theme="dark"] .team-avatar {
  background: #1e293b !important;
  border-color: #0ea5e9 !important;
  color: #38bdf8 !important;
}

[data-theme="dark"] .ai-nav-sticky,
[data-theme="dark"] .service-nav-sticky,
[data-theme="dark"] .sticky-subnav {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom-color: #1e293b !important;
}

[data-theme="dark"] .an-tab,
[data-theme="dark"] .sn-tab,
[data-theme="dark"] .subnav-tab {
  color: #94a3b8;
}
[data-theme="dark"] .an-tab:hover,
[data-theme="dark"] .sn-tab:hover,
[data-theme="dark"] .subnav-tab:hover {
  color: #38bdf8;
  background: #1e293b;
}

[data-theme="dark"] .ind-filter,
[data-theme="dark"] .tct-btn {
  background: #1e293b;
  color: #94a3b8;
  border-color: #334155;
}

[data-theme="dark"] .pb-inc,
[data-theme="dark"] .oi-item,
[data-theme="dark"] .bc-res,
[data-theme="dark"] .cc-stat,
[data-theme="dark"] .roi-res,
[data-theme="dark"] .tool-chip,
[data-theme="dark"] .svc-tag,
[data-theme="dark"] .svc-chip,
[data-theme="dark"] .sb-stat-chip {
  background: #1e293b !important;
  border-color: #334155 !important;
  color: #cbd5e1 !important;
}

[data-theme="dark"] .dc-img-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 1) 0%, transparent 60%);
}

[data-theme="dark"] thead tr {
  background: #1e293b;
}
[data-theme="dark"] tbody tr:hover {
  background: #1e293b;
}
[data-theme="dark"] td {
  color: #cbd5e1;
}
[data-theme="dark"] td:first-child {
  color: #f8fafc;
}

[data-theme="dark"] thead th.highlight-col {
  background: #291e07;
  color: #fbbf24;
}
[data-theme="dark"] td.highlight-col {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea,
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
  background: #1e293b !important;
  color: #f8fafc !important;
  border-color: #334155 !important;
}
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-textarea:focus,
[data-theme="dark"] .form-select:focus {
  background: #1e293b !important;
  color: #f8fafc !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
}
[data-theme="dark"] option {
  background: #0f172a !important;
  color: #f8fafc !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #64748b !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .svc-title,
[data-theme="dark"] .sb-title,
[data-theme="dark"] .sf-title,
[data-theme="dark"] .uc-title,
[data-theme="dark"] .ind-name,
[data-theme="dark"] .price-title,
[data-theme="dark"] .ws-content h4,
[data-theme="dark"] .dc-check,
[data-theme="dark"] .cc-title,
[data-theme="dark"] .timeline-title,
[data-theme="dark"] .team-name,
[data-theme="dark"] .contact-card-title,
[data-theme="dark"] .form-label,
[data-theme="dark"] .spots-count {
  color: #f8fafc !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .svc-brief,
[data-theme="dark"] .sf-desc,
[data-theme="dark"] .sb-desc,
[data-theme="dark"] .ind-desc,
[data-theme="dark"] .price-desc,
[data-theme="dark"] .ws-content p,
[data-theme="dark"] .bc-quote,
[data-theme="dark"] .cc-story,
[data-theme="dark"] .cc-quote,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .timeline-desc,
[data-theme="dark"] .team-bio,
[data-theme="dark"] .contact-card-text,
[data-theme="dark"] .section-sub,
[data-theme="dark"] .hero-subtitle {
  color: #94a3b8 !important;
}

/* ===== CTA SECTION & FOOTER DARK MODE FIX ===== */
[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .cta-section h1,
[data-theme="dark"] .cta-section h2,
[data-theme="dark"] .cta-section h3,
[data-theme="dark"] .cta-section h4 {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .cta-section p,
[data-theme="dark"] .cta-section .cta-sub {
  color: #cbd5e1 !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}

[data-theme="dark"] .cta-section .btn-primary {
  background: var(--grad-sky) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5) !important;
  border: none !important;
}

[data-theme="dark"] .cta-section .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(56, 189, 248, 0.7) !important;
  color: #ffffff !important;
}

[data-theme="dark"] .cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  font-weight: 700 !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
}

[data-theme="dark"] footer {
  background: #070a12 !important;
  border-top: 1px solid #1e293b !important;
}

[data-theme="dark"] .footer-col h4 {
  color: #38bdf8 !important;
  letter-spacing: 1.2px;
}

[data-theme="dark"] .footer-link {
  color: #94a3b8 !important;
}

[data-theme="dark"] .footer-link:hover {
  color: #38bdf8 !important;
}

[data-theme="dark"] .social-link {
  background: #1e293b !important;
  border-color: #334155 !important;
  color: #cbd5e1 !important;
}

[data-theme="dark"] .social-link:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.5) !important;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: #1e293b !important;
}

[data-theme="dark"] .footer-bottom p,
[data-theme="dark"] .footer-bottom-links a {
  color: #64748b !important;
}

[data-theme="dark"] .footer-bottom-links a:hover {
  color: #38bdf8 !important;
}

/* ===== 3D AI SOLUTIONS UI & GRAPHIC STYLING ===== */
.ai-3d-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.ai-3d-card-wrapper {
  position: relative;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.ai-3d-glass-card {
  position: relative;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 25px 60px rgba(2, 132, 199, 0.25), 0 0 40px rgba(14, 165, 233, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  overflow: hidden;
}

.ai-3d-glass-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 35px 80px rgba(2, 132, 199, 0.35), 0 0 50px rgba(56, 189, 248, 0.25);
}

.ai-3d-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ai-3d-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #f8fafc;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.ai-3d-badge-top { top: 24px; left: -14px; }
.ai-3d-badge-bottom { bottom: 24px; right: -14px; animation-delay: 2s; }

@keyframes floatBadge {
  0% { transform: translateY(0px) translateZ(20px); }
  100% { transform: translateY(-10px) translateZ(30px); }
}

/* ===== DIFFERENZ SYSTEM INSPIRED LAYOUT COMPONENTS ===== */

/* TRUST RATINGS STRIP */
.trust-ratings-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.review-box {
  background: var(--glass-bg);
  border: 1px solid var(--border-sky);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.review-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.review-badge-pill {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  background: var(--bg-sky);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border-sky);
  white-space: nowrap;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-platform {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.review-stars {
  font-size: 12px;
  color: #f59e0b;
}

.review-score {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
}

/* CASE STUDY SPOTLIGHT GRID */
.ds-case-study-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  transition: all 0.35s ease;
}

.ds-case-study-card:hover {
  border-color: var(--border-sky);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.cs-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: var(--bg-sky);
  border: 1px solid var(--border-sky);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.cs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cs-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.cs-impact-box {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.cs-impact-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
}

.cs-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-impact-list li {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-impact-list li span.check {
  color: #10b981;
  font-weight: 800;
}

.cs-tech-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cs-preview-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-sky);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--border-sky);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-sky);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* DARK MODE OVERRIDES FOR NEW COMPONENTS */
[data-theme="dark"] .review-box,
[data-theme="dark"] .ds-case-study-card,
[data-theme="dark"] .faq-item {
  background: #0f172a !important;
  border-color: #1e293b !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .review-platform,
[data-theme="dark"] .cs-title,
[data-theme="dark"] .cs-impact-list li,
[data-theme="dark"] .faq-question {
  color: #f8fafc !important;
}

[data-theme="dark"] .review-badge-pill,
[data-theme="dark"] .cs-tag,
[data-theme="dark"] .faq-toggle-icon {
  background: #1e293b !important;
  border-color: #334155 !important;
  color: #38bdf8 !important;
}

[data-theme="dark"] .cs-impact-box {
  background: #1e293b !important;
  border-color: #334155 !important;
}

[data-theme="dark"] .cs-desc,
[data-theme="dark"] .faq-answer {
  color: #94a3b8 !important;
}

@media (max-width: 992px) {
  .ds-case-study-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

/* 3D MOTIVATIONAL VISION BANNER */
.ai-3d-vision-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 28px;
  padding: 40px 5%;
  margin: 50px auto;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.15);
  position: relative;
  overflow: hidden;
}

.ai-3d-vision-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.ai-3d-vision-sub {
  font-size: 15px;
  color: #cbd5e1;
  margin-top: 14px;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .ai-3d-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .ai-3d-vision-banner { grid-template-columns: 1fr; text-align: center; }
}

/* ==========================================================================
   PREMIUM ENTERPRISE REDESIGN STYLES (LINEAR / VERCEL / STRIPE / APPLE)
   ========================================================================== */

.hero-container-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-text-col {
  text-align: left;
}

.hero-visual-col {
  position: relative;
  perspective: 1200px;
}

.hero-composition {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-composition:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* GLASS BROWSER DASHBOARD MOCKUP */
.browser-mockup {
  background: var(--glass-bg);
  border: 1px solid var(--border-sky);
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), var(--shadow-glow);
  backdrop-filter: blur(16px);
  overflow: hidden;
  position: relative;
}

.browser-header {
  background: rgba(2, 132, 199, 0.08);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-address {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 11px;
  font-family: monospace;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
  letter-spacing: 0.5px;
}

.browser-body {
  padding: 20px;
}

/* FLOATING WIDGETS */
.hero-float-card {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--border-sky);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.25);
  backdrop-filter: blur(16px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-top-right {
  top: -20px;
  right: -15px;
  animation: floatSlow 6s ease-in-out infinite;
}

.float-bottom-left {
  bottom: -24px;
  left: -20px;
  animation: floatReverse 7s ease-in-out infinite;
}

.float-top-left {
  top: 15%;
  left: -28px;
  animation: floatSlow 8s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.2deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(10px) rotate(-1.2deg); }
}

/* SHOWCASE GRID & MODES */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.showcase-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-sky-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.showcase-preview {
  height: 220px;
  background: var(--grad-hero-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.showcase-content {
  padding: 24px;
}

.showcase-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 8px;
}

.showcase-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.showcase-desc {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .hero-container-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text-col {
    text-align: center;
  }
  .hero-float-card {
    display: none;
  }
  .hero-composition {
    transform: none;
  }
}

/* ESPORTS & SPORTS GAMING ANIMATIONS */
@keyframes sportsPulse {
  0% { box-shadow: 0 0 15px rgba(168, 85, 247, 0.35), inset 0 0 15px rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.5); }
  50% { box-shadow: 0 0 35px rgba(56, 189, 248, 0.65), inset 0 0 25px rgba(56, 189, 248, 0.25); border-color: rgba(56, 189, 248, 0.8); }
  100% { box-shadow: 0 0 15px rgba(168, 85, 247, 0.35), inset 0 0 15px rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.5); }
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.25); }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(1000%); }
}

@keyframes healthBarFill {
  0% { width: 0%; }
  100% { width: 88%; }
}

.sports-hero-hud {
  animation: sportsPulse 3.5s infinite ease-in-out;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.sports-hero-hud::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #c084fc, #38bdf8, #10b981, transparent);
  animation: scanline 2.5s linear infinite;
  opacity: 0.7;
}

.live-dot-pulse {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #ef4444;
  margin-right: 6px;
  animation: liveBlink 1.2s infinite ease-in-out;
  box-shadow: 0 0 10px #ef4444;
  vertical-align: middle;
}

.esports-score-banner {
  background: linear-gradient(90deg, rgba(168,85,247,0.18) 0%, rgba(56,189,248,0.22) 50%, rgba(16,185,129,0.18) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 12px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.matchup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 10px;
}

.health-bar-fill {
  height: 6px;
  background: linear-gradient(90deg, #c084fc 0%, #38bdf8 100%);
  border-radius: 3px;
  animation: healthBarFill 1.5s ease-out forwards;
}

/* =========================================================
   FLOATING ACTION BUTTONS / QUICK CONTACT (WHATSAPP & CALL - ICON ONLY)
   ========================================================= */

.floating-cta-container {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.floating-cta-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.28), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: visible;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

/* WhatsApp Brand Gradient & Styles */
.floating-cta-btn.cta-whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.floating-cta-btn.cta-whatsapp:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.5), 0 4px 10px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Call Brand Gradient & Styles */
.floating-cta-btn.cta-call {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
}

.floating-cta-btn.cta-call:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.5), 0 4px 10px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.85);
}

.cta-svg {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
  transition: transform 0.25s ease;
}

.floating-cta-btn:hover .cta-svg {
  transform: scale(1.08) rotate(4deg);
}

/* Pulsing Badge on Bot Button */
.cta-pulse-ring {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* MOBILE VIEW RESPONSIVE STYLES */
@media (max-width: 768px) {
  .floating-cta-container {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }

  .floating-cta-btn {
    width: 38px;
    height: 38px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .cta-svg {
    width: 17px;
    height: 17px;
  }

  .cta-pulse-ring {
    top: 0px;
    right: 0px;
    width: 8px;
    height: 8px;
  }
}

/* =========================================================
   OZOBOT AI SUPPORT & SALES CHATBOT ENGINE
   ========================================================= */

.bot-greeting-badge {
  position: fixed;
  bottom: 128px;
  right: 76px;
  z-index: 99998;
  background: var(--card-bg);
  border: 1px solid var(--border-sky);
  padding: 8px 14px;
  border-radius: 14px 14px 4px 14px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  cursor: pointer;
  animation: badgeSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bot-greeting-badge::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 7px;
  border-style: solid;
  border-color: transparent transparent transparent var(--card-bg);
}

@keyframes badgeSlideIn {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bot-badge-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

.bot-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.bot-badge-close {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s ease;
}

.bot-badge-close:hover {
  color: var(--text-dark);
}

/* Floating Chatbot Button Style */
.floating-cta-btn.cta-bot {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
}
.floating-cta-btn.cta-bot:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.5), 0 4px 10px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.85);
}

/* CHATBOT WINDOW MODAL */
.ozobot-window {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 100px);
  background: var(--card-bg);
  border: 1px solid var(--border-sky);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ozobot-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.ozobot-header {
  background: var(--grad-sky);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.ozobot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ozobot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ozobot-title-box h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.ozobot-status {
  font-size: 11.5px;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ozobot-status-dot {
  width: 7px;
  height: 7px;
  background-color: #4ef081;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ef081;
}

.ozobot-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ozobot-icon-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.ozobot-icon-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Quick Action Bar Inside Chat Window */
.ozobot-quick-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.ozobot-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ozobot-quick-btn.quick-wa {
  background: #25D366;
  color: #ffffff;
}
.ozobot-quick-btn.quick-call {
  background: #0284c7;
  color: #ffffff;
}
.ozobot-quick-btn.quick-book {
  background: var(--card-bg);
  color: var(--primary);
  border: 1px solid var(--border-sky);
}

.ozobot-quick-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Chat Messages Feed */
.ozobot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-main);
}

.ozobot-msg {
  max-width: 85%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.45;
  word-wrap: break-word;
  animation: msgFadeIn 0.3s ease forwards;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ozobot-msg.bot {
  background: var(--card-bg);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.ozobot-msg.user {
  background: var(--grad-sky);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.ozobot-msg a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.ozobot-msg.user a {
  color: #ffffff;
}

/* Typing Indicator */
.ozobot-typing {
  align-self: flex-start;
  background: var(--card-bg);
  padding: 10px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--border-light);
}

.ozobot-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out both;
}

.ozobot-dot:nth-child(1) { animation-delay: 0s; }
.ozobot-dot:nth-child(2) { animation-delay: 0.2s; }
.ozobot-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* Chips / Action Buttons */
.ozobot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ozobot-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border-sky);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ozobot-chip:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Input Area */
.ozobot-footer {
  padding: 12px 14px;
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ozobot-input {
  flex: 1;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-dark);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.ozobot-input:focus {
  border-color: var(--primary);
}

.ozobot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-sky);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}

.ozobot-send-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .ozobot-window {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
    height: 520px;
  }
}

/* ===== GLOBAL FORM CONTROLS & NEUMORPHIC CARDS ===== */
.form-box, .apply-form-card {
  background: var(--neu-bg);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 26px;
  padding: 44px;
  box-shadow: 16px 16px 36px var(--neu-shadow-dark), -16px -16px 36px var(--neu-shadow-light);
  transition: all 0.3s ease;
}

[data-theme="dark"] .form-box,
[data-theme="dark"] .apply-form-card {
  border-color: rgba(255, 255, 255, 0.08);
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  background: var(--neu-bg);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  box-shadow: inset 4px 4px 9px var(--neu-inset-dark), inset -4px -4px 9px var(--neu-inset-light);
  transition: all 0.25s ease;
}

.form-select option, .form-select optgroup {
  font-size: 14px;
  padding: 8px;
  background: var(--neu-bg);
  color: var(--text-dark);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: inset 2px 2px 5px var(--neu-inset-dark), inset -2px -2px 5px var(--neu-inset-light), 0 0 0 3.5px rgba(2, 132, 199, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-neu {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: var(--grad-sky);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 6px 6px 18px var(--neu-shadow-dark), -6px -6px 18px var(--neu-shadow-light), 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-neu:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 24px var(--neu-shadow-dark), -8px -8px 24px var(--neu-shadow-light), 0 6px 20px rgba(2, 132, 199, 0.45);
}

@media (max-width: 850px) {
  .form-group-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-box, .apply-form-card { padding: 28px 20px; border-radius: 20px; }
  .form-input, .form-select, .form-textarea { font-size: 13.5px; padding: 12px 14px; }
}





