/* ── BASE STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800;900&family=Space+Mono:wght@400;700&family=Outfit:wght@600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #030712;
  --surface: #080e1b;
  --accent: #00f0ff;
  --accent2: #7c6aff;
  --gold: #ffb800;
  --text: #e2f8ff;
  --muted: #64748b;
  --border: rgba(0, 240, 255, 0.18);
  --hud-glow: rgba(0, 240, 255, 0.35);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}








/* ── HUD GRID & SCANLINE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.015) 50%, rgba(0, 0, 0, 0.2) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 0;
}

main {
  flex: 1;
}




/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 240, 255, 0.08);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.3;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

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

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

nav a {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s, text-shadow .2s;
}

nav a:hover,
nav a.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity .2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
  color: #000 !important;
}




/* ── PAGE HEADER (SUBPAGES) ── */
.page-header {
  position: relative;
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.page-header p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
}




/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 245, 196, 0.08), rgba(124, 106, 255, 0.08));
  border: 1px solid rgba(0, 245, 196, 0.2);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 4rem auto 0;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}




/* ── FOOTER ── */
footer {
  padding: 1.2rem 4rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  background: #03050a;
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 245, 196, 0.04);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.social-icon:hover {
  border-color: var(--accent);
  background: rgba(0, 245, 196, 0.1);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  transition: fill 0.3s;
}

.social-icon:hover svg {
  fill: #fff;
}




/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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




/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}




/* ── HERO ASK KANI AI BUTTON (DESKTOP & MOBILE - 3D GLASS) ── */
.btn-ai-assistant-hero-3d {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  display: none;
  cursor: pointer;
  outline-offset: 4px;
  user-select: none;
}

.btn-ai-assistant-hero-3d .btn-3d-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: rgba(0, 240, 255, 0.15);
  filter: blur(8px);
  transform: translateY(4px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1), background 600ms;
}

.btn-ai-assistant-hero-3d .btn-3d-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(to left,
      rgba(0, 168, 204, 1) 0%,
      rgba(58, 12, 163, 1) 50%,
      rgba(0, 168, 204, 1) 100%);
  transform: translateY(2px);
  transition: background 600ms;
}

.btn-ai-assistant-hero-3d .btn-3d-front {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(8, 14, 28, 0.9) 0%, rgba(16, 24, 48, 0.95) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.5);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(.3, .7, .4, 1), border-color 0.25s, box-shadow 0.25s;
}

.btn-ai-assistant-hero-3d .icon-3d-bubble {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 3px rgba(0, 240, 255, 0.6));
  animation: floatIcon 3s ease-in-out infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.05);
  }
}

.btn-ai-assistant-hero-3d:hover .btn-3d-front {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.85);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.3), 0 0 25px rgba(0, 240, 255, 0.4);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.btn-ai-assistant-hero-3d:hover .btn-3d-shadow {
  transform: translateY(8px);
  background: rgba(0, 240, 255, 0.25);
  filter: blur(12px);
  transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.btn-ai-assistant-hero-3d:hover .btn-3d-edge {
  background: linear-gradient(to left,
      rgba(0, 240, 255, 1) 0%,
      rgba(124, 106, 255, 1) 50%,
      rgba(0, 240, 255, 1) 100%);
}

.btn-ai-assistant-hero-3d:active .btn-3d-front {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: transform 34ms;
}

.btn-ai-assistant-hero-3d:active .btn-3d-shadow {
  transform: translateY(1px);
  filter: blur(4px);
  transition: transform 34ms;
}

@media (max-width: 768px) {
  .btn-ai-assistant-hero-3d {
    display: inline-block;
  }
  .btn-ai-assistant-hero-3d .btn-3d-front {
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
  }

  .floating-chat-btn {
    display: none !important;
  }

  .floating-chat-window {
    position: fixed;
    bottom: 1.5rem;
    left: 1rem !important;
    right: 1rem !important;
    width: auto;
    max-width: calc(100vw - 2rem);
    height: auto;
    max-height: 78vh;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 240, 255, 0.4);
    z-index: 10000;
  }
}

@media (max-width: 480px) {
  .floating-chat-window {
    bottom: 1rem;
    left: 0.75rem !important;
    right: 0.75rem !important;
    width: auto;
    max-width: calc(100vw - 1.5rem);
    height: auto;
    max-height: 80vh;
  }
}




/* ── ANIMATED CHATBOT LOGO & WIDGET ── */
.bot-avatar-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBot 4s ease-in-out infinite;
  cursor: pointer;
}

.bot-avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px stroke transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: spinRing 8s linear infinite;
  box-shadow: 0 0 25px rgba(0, 245, 196, 0.4);
}

.bot-avatar-core {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #172442, #070b16);
  border: 1px solid rgba(0, 245, 196, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 245, 196, 0.2), 0 0 30px rgba(0, 245, 196, 0.3);
  position: relative;
  z-index: 2;
}

.bot-avatar-core svg {
  width: 44px;
  height: 44px;
  fill: var(--accent);
  filter: drop-shadow(0 0 8px var(--accent));
  animation: botEyePulse 3s ease-in-out infinite;
}

.bot-speech-bubble {
  position: absolute;
  top: -12px;
  right: -24px;
  background: rgba(0, 245, 196, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: pulse 2s infinite;
}




/* ── ATTENTION-GRABBING FLOATING CHAT BUTTON ── */
.floating-chat-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(8, 14, 28, 0.94);
  border: 1.5px solid #00f0ff;
  padding: 0.75rem 1.4rem 0.75rem 0.9rem;
  border-radius: 100px;
  color: var(--text);
  backdrop-filter: blur(20px);
  cursor: pointer;
  animation: floatButton 4s ease-in-out infinite, pulseNeonGlow 2s ease-in-out infinite alternate;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-chat-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 240, 255, 0.7), 0 0 60px rgba(124, 106, 255, 0.5);
}

@keyframes floatButton {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes pulseNeonGlow {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(0, 240, 255, 0.2);
  }

  100% {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.85), 0 0 60px rgba(124, 106, 255, 0.5), inset 0 0 25px rgba(0, 240, 255, 0.4);
  }
}

/* Floating Notification Badge Above Button */
.chat-tooltip-badge {
  display: none !important;
}

.chat-tooltip-badge::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 22px;
  width: 8px;
  height: 8px;
  background: #00f0ff;
  transform: rotate(45deg);
}

@keyframes bounceBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.floating-chat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.floating-chat-icon svg {
  width: 22px;
  height: 22px;
  fill: #000;
}

.floating-chat-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #00f0ff;
  border: 2px solid #080e1b;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.floating-chat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.floating-chat-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.floating-chat-status {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}




/* ── POP-UP CHAT OVERLAY WINDOW ── */
.floating-chat-window {
  position: fixed;
  bottom: 1.8rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 2.5rem);
  height: auto;
  max-height: 600px;
  background: rgba(8, 14, 28, 0.95);
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.3);
  backdrop-filter: blur(24px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s ease;
}

.floating-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: rgba(0, 240, 255, 0.08);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.window-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.window-mini-hud {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #00f0ff33, transparent);
  box-shadow: 0 0 10px #00f0ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  color: #00f0ff;
}

.window-close-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
}

.window-close-btn:hover {
  color: #00f0ff;
}




/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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





/* ── STATS ── */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}




/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--muted);
  margin-top: 0.8rem;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}





/* ── UI CARDS & GRIDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover {
  border-color: rgba(0, 245, 196, 0.3);
  transform: translateY(-4px);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 245, 196, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 1.2rem;
  font-weight: 500;
}

.card-link:hover {
  text-decoration: underline;
}





/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(0, 245, 196, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 245, 196, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-ai-assistant {
  background: rgba(0, 240, 255, 0.08);
  color: var(--accent);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}
.btn-ai-assistant:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}



/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 245, 196, 0.12);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 106, 255, 0.15);
  top: 200px;
  right: 10%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 245, 196, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.badge::before {
  content: '●';
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 900px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.3s ease both;
  flex-wrap: wrap;
  justify-content: center;
}





/* ── FORM ELEMENTS ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 245, 196, 0.4);
}

.form-group select option {
  background: #0c1020;
}

/* ── FLOATING CHAT POPUP WIDGET ── */
.chat-card-body {
  padding: 1.1rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 90%;
}

.chat-message.bot-msg {
  align-self: flex-start;
}

.chat-message.user-msg {
  align-self: flex-end;
}

.chat-message .msg-bubble {
  padding: 0.85rem 1.15rem;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bot-msg .msg-bubble {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--text);
  border-radius: 16px 16px 16px 3px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

.user-msg .msg-bubble {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 500;
  border-radius: 16px 16px 3px 16px;
  font-family: 'Outfit', sans-serif;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.chip-btn {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.chip-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.3);
}

.chat-card-input {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.chat-card-input input {
  flex: 1;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-card-input input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

.chat-send-btn {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.chat-send-btn:hover {
  transform: scale(1.05);
  background: #33f3ff;
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

/* ── RESPONSIVE DESIGN ── */
/* ── RESPONSIVE DESIGN ── */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.nav-open {
    position: fixed;
    inset: 0;
    background: #050810;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 1000;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex: 1;
  }

  nav ul.open {
    display: flex;
  }

  nav ul a {
    font-size: 1.1rem;
    color: var(--text);
  }

  .nav-cta {
    margin-top: 0.5rem;
    padding: 0.7rem 2rem !important;
    font-size: 1rem !important;
  }

  .hero-section,
  .page-header {
    padding: 6rem 1.2rem 3rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 1.2rem;
  }

  .footer-links,
  .social-icons {
    justify-content: center;
  }
}



