/* ==========================================================================
   TRIXON TECHNOLOGIES - LUXURY CORPORATE DARK THEME & RESPONSIVE ENGINE
   VERSION 3.0 - ULTIMATE PREMIUM EDITION
   ========================================================================== */

:root {
  --bg-primary: #02050e;
  --bg-secondary: #070d1d;
  --bg-card: rgba(13, 23, 47, 0.75);
  --bg-card-hover: rgba(20, 36, 73, 0.9);

  --neon-blue: #00d2ff;
  --neon-blue-glow: rgba(0, 210, 255, 0.35);
  --electric-red: #ff2a5f;
  --electric-red-glow: rgba(255, 42, 95, 0.35);
  --neon-green: #10b981;

  --text-pure: #ffffff;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 210, 255, 0.3);
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-pure);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ==========================================================================
   AMBIENT VISUAL EFFECTS
   ========================================================================== */
.glow-orb {
  position: fixed;
  width: clamp(300px, 45vw, 550px);
  height: clamp(300px, 45vw, 550px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.2;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-1 { background: var(--neon-blue); top: -100px; left: -100px; }
.orb-2 { background: var(--electric-red); bottom: -150px; right: -100px; animation-delay: -6s; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.grid-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   LANGUAGE MODAL
   ========================================================================== */
.lang-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(1, 3, 10, 0.92);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lang-modal-overlay.hidden,
.auth-modal-overlay.hidden {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.lang-modal-box {
  background: linear-gradient(180deg, #0d172e 0%, #060a16 100%);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 30px);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 210, 255, 0.1);
  animation: popUp 0.3s ease;
}

@keyframes popUp {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lang-modal-icon {
  font-size: 2.8rem;
  color: var(--neon-blue);
  margin-bottom: 14px;
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 20px var(--neon-blue-glow); }
  50% { transform: scale(1.1); text-shadow: 0 0 40px var(--neon-blue-glow); }
}

.lang-modal-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  margin-bottom: 6px;
}

.lang-modal-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.lang-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--neon-blue);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.lang-name {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.lang-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   AUTH MODAL
   ========================================================================== */
.auth-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(1, 3, 10, 0.88);
  backdrop-filter: blur(12px);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-modal-overlay.open { display: flex; }

.auth-modal-box {
  background: linear-gradient(180deg, #0d172e 0%, #060a16 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 30px);
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0, 210, 255, 0.05);
}

.close-modal-btn {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-modal-btn:hover { color: #fff; transform: rotate(90deg); }

.auth-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  animation: iconPulse 2.5s infinite;
}

.auth-modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.auth-modal-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.btn-google-login {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-google-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.user-modal-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--neon-blue);
  margin-bottom: 12px;
  object-fit: cover;
  box-shadow: 0 0 25px var(--neon-blue-glow);
}

.user-action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.btn-admin-nav {
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon-blue), #0077ff);
  color: #02050e;
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: var(--transition-smooth);
}

.btn-admin-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--neon-blue-glow);
}

.btn-logout {
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-logout:hover { background: rgba(255, 42, 95, 0.2); border-color: var(--electric-red); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(2, 5, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0.3;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-pure);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  transition: var(--transition-smooth);
}

.logo:hover { transform: scale(1.02); }

.logo-symbol { color: var(--neon-blue); font-size: 1.4rem; }

.accent-text {
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-red), var(--neon-blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-red));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover { color: var(--neon-blue); }
.nav-link:hover::after { width: 100%; }

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--neon-blue);
  padding: 8px 12px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.lang-switch-badge:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--neon-blue);
}

.btn-login-trigger {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-login-trigger:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.08);
}

.btn-nav {
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(255, 42, 95, 0.2));
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: 99px;
  transition: var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-nav:hover::before { left: 100%; }

.btn-nav:hover {
  background: var(--neon-blue);
  color: #02050e;
  box-shadow: 0 0 20px var(--neon-blue-glow);
  border-color: var(--neon-blue);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-toggle:hover { color: var(--neon-blue); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: clamp(130px, 20vw, 170px) 24px clamp(60px, 10vw, 90px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-container { max-width: 920px; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.badge:hover {
  background: rgba(0, 210, 255, 0.15);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.2);
}

.pulse-dot {
  width: 8px; height: 8px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  box-shadow: 0 0 10px var(--neon-blue);
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(0, 210, 255, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--neon-blue) 75%, var(--electric-red) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.btn-glow {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--neon-blue), #0077ff 60%, var(--electric-red));
  background-size: 200% auto;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.35);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-glow:hover::before { left: 100%; }

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0, 210, 255, 0.55);
  background-position: right center;
}

.btn-outline {
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
}

.metrics-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: clamp(16px, 3vw, 24px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.metrics-strip:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.08);
}

.metric-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue-glow);
}

.metric-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ==========================================================================
   ANIMATED COUNTER SECTION (NEW)
   ========================================================================== */
.counter-section {
  padding: clamp(40px, 6vw, 60px) 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
}

.counter-item {
  text-align: center;
  padding: 16px;
  transition: var(--transition-smooth);
}

.counter-item:hover {
  transform: translateY(-5px);
}

.counter-icon {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.counter-item:hover .counter-icon {
  transform: scale(1.2) rotate(5deg);
  text-shadow: 0 0 30px var(--neon-blue-glow);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 30px var(--neon-blue-glow);
  margin-bottom: 6px;
}

.counter-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section { padding: clamp(60px, 10vw, 90px) 0; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto clamp(30px, 6vw, 50px);
}

.sub-heading {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--neon-blue);
  display: block;
  margin-bottom: 8px;
}

.main-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-intro { color: var(--text-secondary); font-size: 1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 28px);
  border-radius: 22px;
  position: relative;
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.4);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 210, 255, 0.08);
}

.service-card.featured {
  border-color: rgba(0, 210, 255, 0.35);
  background: linear-gradient(180deg, rgba(13, 23, 47, 0.9) 0%, rgba(7, 13, 29, 0.9) 100%);
}

.featured-tag {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(0, 210, 255, 0.15);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 210, 255, 0.4);
  animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 210, 255, 0.2); }
  50% { box-shadow: 0 0 25px rgba(0, 210, 255, 0.5); }
}

.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.blue-icon { background: rgba(0, 210, 255, 0.1); color: var(--neon-blue); }
.red-icon { background: rgba(255, 42, 95, 0.1); color: var(--electric-red); }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-text { font-size: 0.92rem; color: var(--text-secondary); }

/* ==========================================================================
   WHY CHOOSE US SECTION (NEW)
   ========================================================================== */
.why-us-section { padding: clamp(60px, 10vw, 90px) 0; }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  text-align: center;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 210, 255, 0.1);
}

.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background: var(--neon-blue);
  color: #02050e;
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--neon-blue-glow);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PORTFOLIO SECTION (NEW)
   ========================================================================== */
.portfolio-section { padding: clamp(60px, 10vw, 90px) 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 210, 255, 0.1);
}

.portfolio-img {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(255, 42, 95, 0.15));
  border: 1px solid rgba(0, 210, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--neon-blue);
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 30px var(--neon-blue-glow);
}

.portfolio-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   TESTIMONIALS SECTION (NEW)
   ========================================================================== */
.testimonials-section { padding: clamp(60px, 10vw, 90px) 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   3-STEP ORDER PORTAL
   ========================================================================== */
.portal-section { padding: clamp(60px, 10vw, 90px) 0; }

.portal-wrapper {
  background: linear-gradient(180deg, #091326 0%, #040915 100%);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 36px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 210, 255, 0.03);
}

.portal-header { text-align: center; margin-bottom: 36px; }

.portal-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--electric-red);
  background: rgba(255, 42, 95, 0.1);
  border: 1px solid rgba(255, 42, 95, 0.3);
  padding: 5px 14px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 10px;
  animation: tagPulse 2.5s infinite;
}

.portal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.portal-subtitle { color: var(--text-secondary); font-size: 0.98rem; }

.stepper-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: nowrap;
}

.step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.step-badge .step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.step-badge.active {
  color: #fff;
  border-color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
  animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(0, 210, 255, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 210, 255, 0.4); }
}

.step-badge.active .step-num {
  background: var(--neon-blue);
  color: #02050e;
  font-weight: 700;
}

.step-badge.completed {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.step-line {
  width: clamp(20px, 5vw, 50px);
  height: 2px;
  background: var(--border-subtle);
  margin: 0 6px;
  transition: var(--transition-smooth);
}

.step-line.completed { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue-glow); }

.portal-step { display: none; }
.portal-step.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-heading i { color: var(--neon-blue); }
.step-subheading { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 24px; }

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.biz-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: clamp(16px, 3vw, 22px) 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.biz-card i { font-size: 1.8rem; color: var(--text-secondary); transition: var(--transition-smooth); }
.biz-card span { font-size: 0.9rem; font-weight: 600; text-align: center; }

.biz-card:hover {
  background: rgba(0, 210, 255, 0.08);
  border-color: rgba(0, 210, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.biz-card:hover i { color: var(--neon-blue); transform: scale(1.1); }

.biz-card.active {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--neon-blue);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
  transform: translateY(-4px);
}

.biz-card.active i { color: var(--neon-blue); }

.plans-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.plan-card {
  display: block;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: clamp(16px, 3vw, 22px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.plan-card input { display: none; }

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}

.plan-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; }
.plan-price { font-size: 1.25rem; font-weight: 800; color: var(--neon-blue); }
.plan-price small { font-size: 0.8rem; color: var(--text-secondary); font-weight: 400; }
.free-price { color: var(--neon-green); }
.plan-details { font-size: 0.88rem; color: var(--text-secondary); }

.plan-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateX(5px);
}

.plan-card.active {
  border-color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.08);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.summary-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.sum-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; }
.sum-value { font-size: 0.95rem; font-weight: 700; color: var(--neon-blue); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }

.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap i { position: absolute; left: 16px; color: var(--text-dim); font-size: 1rem; }

.input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px 14px 46px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.input-wrap input:focus { border-color: var(--neon-blue); box-shadow: 0 0 15px var(--neon-blue-glow); }

.input-wrap.textarea-wrap { align-items: flex-start; }
.input-wrap.textarea-wrap textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
  resize: vertical;
  transition: var(--transition-fast);
}
.input-wrap.textarea-wrap textarea:focus { border-color: var(--neon-blue); box-shadow: 0 0 15px var(--neon-blue-glow); }

/* ==========================================================================
   BRAND VAULT
   ========================================================================== */
.project-vault-card {
  margin: 22px 0;
  padding: clamp(16px, 3vw, 24px);
  background: rgba(0, 210, 255, 0.03);
  border: 1px dashed rgba(0, 210, 255, 0.35);
  border-radius: 18px;
  transition: var(--transition-smooth);
}

.project-vault-card:hover {
  border-color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.05);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.05);
}

.vault-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vault-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 210, 255, 0.12);
  color: var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  animation: iconPulse 3s infinite;
}

.vault-card-header h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--neon-blue);
  margin-bottom: 2px;
}

.vault-card-header p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.file-upload-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.file-upload-box:hover {
  background: rgba(0, 210, 255, 0.06);
  border-color: var(--neon-blue);
  transform: scale(1.01);
}

.file-upload-box .file-icon {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 4px;
  transition: var(--transition-smooth);
}

.file-upload-box:hover .file-icon { transform: translateY(-5px); }

.file-upload-box span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
}

.file-upload-box small {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.step-footer { display: flex; margin-top: 24px; gap: 12px; }
.step-footer.right-align { justify-content: flex-end; }
.step-footer.split-align { justify-content: space-between; }

.btn-primary, .btn-secondary, .btn-launch {
  cursor: pointer;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  padding: 12px 24px;
  background: var(--neon-blue);
  color: #02050e;
  border: none;
  font-size: 0.95rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--neon-blue-glow);
}

.btn-secondary {
  padding: 12px 20px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.btn-secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

.btn-launch {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--electric-red), #ff5c87);
  color: #fff;
  border: none;
  font-size: 0.98rem;
  box-shadow: 0 8px 25px rgba(255, 42, 95, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-launch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-launch:hover::before { left: 100%; }

.btn-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 42, 95, 0.55);
}

/* ==========================================================================
   LIVE CLIENT PROJECT TRACKER STYLING
   ========================================================================== */
.tracker-section {
  padding: clamp(50px, 8vw, 80px) 0;
  position: relative;
  z-index: 1;
}

.tracker-card {
  background: linear-gradient(180deg, #091326 0%, #040915 100%);
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 44px) clamp(18px, 4vw, 36px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 210, 255, 0.03);
}

.tracker-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
}

.tracker-input-row {
  display: flex;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
}

.tracker-input-row .input-wrap {
  flex: 1;
  min-width: 240px;
}

.btn-track {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--neon-blue), #0077ff);
  color: #02050e;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px var(--neon-blue-glow);
  position: relative;
  overflow: hidden;
}

.btn-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-track:hover::before { left: 100%; }

.btn-track:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--neon-blue-glow);
}

.tracker-result-box {
  animation: fadeIn 0.4s ease;
}

.tracker-card-inner {
  background: rgba(4, 9, 21, 0.8);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 32px);
}

.tracker-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.tracker-app-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(0, 210, 255, 0.15);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 210, 255, 0.35);
  margin-bottom: 8px;
}

.tracker-client-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.tracker-plan-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.tracker-city-tag {
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border-subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tracker-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.tracker-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 15px var(--neon-blue-glow);
  position: relative;
  overflow: hidden;
}

.tracker-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.tracker-stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.tracker-step-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 16px;
  transition: var(--transition-fast);
}

.tracker-step-item .step-circle {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: inline-block;
}

.tracker-step-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.tracker-step-item p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.tracker-step-item.completed {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}
.tracker-step-item.completed .step-circle { color: var(--neon-green); }

.tracker-step-item.current {
  border-color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
  animation: stepPulse 2s infinite;
}
.tracker-step-item.current .step-circle { color: var(--neon-blue); }

.tracker-step-item.future {
  opacity: 0.45;
}
.tracker-step-item.future .step-circle { color: var(--text-dim); }

.tracker-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

.btn-chat-with-founder {
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  color: var(--neon-blue);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-chat-with-founder:hover {
  background: var(--neon-blue);
  color: #02050e;
  box-shadow: 0 0 20px var(--neon-blue-glow);
}

/* ==========================================================================
   FOUNDER SECTION
   ========================================================================== */
.founder-section { padding: clamp(60px, 10vw, 90px) 0; }

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 50px) clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
  transition: var(--transition-smooth);
}

.founder-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.05);
}

.avatar-frame { position: relative; width: 150px; height: 150px; flex-shrink: 0; }

.avatar-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #132247, #070d1d);
  border: 2px solid var(--neon-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  color: var(--neon-blue);
  transition: var(--transition-smooth);
}

.founder-card:hover .avatar-placeholder {
  box-shadow: 0 0 40px var(--neon-blue-glow);
  transform: scale(1.05);
}

.founder-seal {
  position: absolute; bottom: 4px; right: 4px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--electric-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  animation: iconPulse 3s infinite;
}

.founder-badge { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; color: var(--neon-blue); margin-bottom: 6px; }
.founder-name { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.2vw, 2rem); font-weight: 800; }
.founder-role { font-size: 0.95rem; color: var(--electric-red); margin-bottom: 18px; }
.founder-quote { font-family: var(--font-heading); font-size: clamp(1.05rem, 2vw, 1.25rem); font-style: italic; margin-bottom: 16px; color: #f1f5f9; }
.founder-bio { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 16px; }

.founder-signatures .tag {
  font-size: 0.78rem;
  color: var(--neon-blue);
  background: rgba(0, 210, 255, 0.08);
  padding: 4px 10px;
  border-radius: 99px;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.founder-signatures .tag:hover {
  background: rgba(0, 210, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   IN-HOUSE LIVE CHAT WIDGET
   ========================================================================== */
.chat-widget-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 10000;
}

.chat-toggle-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), #0066ff);
  border: none;
  color: #02050e;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: chatGlow 3s infinite;
}

@keyframes chatGlow {
  0%, 100% { box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4); }
  50% { box-shadow: 0 10px 40px rgba(0, 210, 255, 0.7); }
}

.chat-toggle-btn:hover { transform: scale(1.08); }

.chat-bubble-ping {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--electric-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #02050e;
  animation: pulse 1.5s infinite;
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 70px; right: 0;
  width: 380px; height: 500px;
  background: #081122;
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 210, 255, 0.05);
  flex-direction: column;
  overflow: hidden;
}

.chat-window.open { display: flex; animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: #0d1a33;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.chat-agent-info { display: flex; align-items: center; gap: 12px; }

.agent-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--neon-blue);
  color: #02050e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  animation: iconPulse 2.5s infinite;
}

.chat-agent-info h4 { font-size: 0.92rem; font-weight: 700; color: #fff; }
.online-indicator { font-size: 0.72rem; color: var(--neon-green); display: flex; align-items: center; gap: 5px; }
.online-indicator .dot { width: 6px; height: 6px; background: var(--neon-green); border-radius: 50%; animation: pulse 1.5s infinite; }

.chat-close { 
  background: none; 
  border: none; 
  color: var(--text-dim); 
  font-size: 1.3rem; 
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}
.chat-close:hover { color: #fff; transform: rotate(90deg); }

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #040813;
}

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-word;
}

.chat-msg.admin {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border-left: 3px solid var(--neon-blue);
}

.chat-msg.user {
  background: var(--neon-blue);
  color: #02050e;
  font-weight: 500;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg small { display: block; font-size: 0.65rem; margin-top: 4px; opacity: 0.7; }

.chat-footer {
  padding: 12px 14px;
  background: #08101e;
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
}

.chat-footer input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}
.chat-footer input:focus { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0, 210, 255, 0.15); }

.chat-footer button {
  background: var(--neon-blue);
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  color: #02050e;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.chat-footer button:hover { background: #33dcff; box-shadow: 0 0 15px var(--neon-blue-glow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: #010309;
  padding: 40px 0;
  text-align: center;
}

.footer-logo { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; }
.footer-logo span { color: var(--neon-blue); text-shadow: 0 0 15px var(--neon-blue-glow); }
.footer-brand p { font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }
.copyright-notice { font-size: 0.82rem; color: var(--text-secondary); margin-top: 14px; }
.copyright-notice a { color: var(--neon-blue); text-decoration: none; transition: var(--transition-fast); }
.copyright-notice a:hover { text-shadow: 0 0 15px var(--neon-blue-glow); }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE ENGINE
   ========================================================================== */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #070d1d;
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
    gap: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section { padding-top: 120px; }

  .metrics-strip {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .metric-divider {
    width: 60%;
    height: 1px;
  }

  .summary-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-footer {
    flex-direction: column-reverse;
  }

  .step-footer button {
    width: 100%;
  }

  .tracker-input-row {
    flex-direction: column;
  }

  .tracker-input-row .btn-track {
    width: 100%;
    justify-content: center;
  }

  .tracker-top-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracker-stages-grid {
    grid-template-columns: 1fr;
  }

  .chat-widget-wrap {
    bottom: 16px;
    right: 16px;
  }

  .chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
    z-index: 99999;
  }

  .chat-header {
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
  }

  .chat-footer {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

.brand-logo-img {
  height: 65px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  vertical-align: middle;
  transform: translateY(-2px);
  transition: var(--transition-smooth);
}

.brand-logo-img:hover {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 15px var(--neon-blue-glow));
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .btn-nav {
    display: none !important; 
  }
  .nav-right-actions {
    gap: 8px !important;
  }

  .chat-window.open {
    position: fixed !important;
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .chat-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding-bottom: 20px !important;
  }

  .chat-footer {
    position: relative !important;
    background: var(--bg-dark) !important;
    border-top: 1px solid var(--border-subtle) !important;
    padding-bottom: calc(15px + env(safe-area-inset-bottom)) !important; 
  }
  
  .chat-window.open ~ .whatsapp-float {
    display: none !important;
  }
}