/* ========================================================
   DESIGN SYSTEM VARIABLES
   ======================================================== */
:root {
  --primary: #2F3BFF;
  --secondary: #4F5CFF;
  --accent: #6F7DFF;
  --background: #F7F9FC;
  --surface: #FFFFFF;
  --dark-text: #111827;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-ultra-light: #F3F4F6;
  
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(47, 59, 255, 0.04), 0 4px 6px -2px rgba(47, 59, 255, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(47, 59, 255, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 0 30px rgba(47, 59, 255, 0.35);
  
  --border-glass: 1px solid rgba(255, 255, 255, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.65);
  --blur-glass: blur(20px);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================
   DARK THEME OVERRIDES  (toggled via data-theme="dark")
   ======================================================== */
[data-theme="dark"] {
  --background:        #0D0F1A;
  --surface:           #141623;
  --dark-text:         #F0F2FF;
  --gray:              #8892A4;
  --gray-light:        #1E2136;
  --gray-ultra-light:  #1A1D30;

  --border-glass:      1px solid rgba(255, 255, 255, 0.08);
  --bg-glass:          rgba(20, 22, 35, 0.75);

  --shadow-sm:  0 4px 6px -1px rgba(0,0,0,0.35), 0 2px 4px -1px rgba(0,0,0,0.25);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,0.45), 0 4px 6px -2px rgba(0,0,0,0.30);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,0.55), 0 10px 10px -5px rgba(0,0,0,0.30);
}

/* Specific element overrides that use hardcoded colours */
[data-theme="dark"] .glass-navbar {
  background: rgba(13, 15, 26, 0.80);
  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .glass-navbar.scrolled {
  background: rgba(13, 15, 26, 0.92);
}

[data-theme="dark"] .bento-card {
  background: var(--surface);
  border-color: var(--gray-light);
}

[data-theme="dark"] .ai-agent-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .faq-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .step-content {
  background: var(--surface);
  border-color: var(--gray-light);
}

[data-theme="dark"] .calc-box {
  background: var(--surface);
  border-color: var(--gray-light);
}

[data-theme="dark"] .option-box,
[data-theme="dark"] .check-box {
  background: var(--gray-ultra-light);
  border-color: var(--gray-light);
}

[data-theme="dark"] .calc-right {
  background: rgba(47, 59, 255, 0.05);
  border-color: var(--gray-light);
}

[data-theme="dark"] .modal-details-grid {
  background: var(--gray-ultra-light);
}

[data-theme="dark"] .bento-modal-box {
  background: var(--surface);
}

[data-theme="dark"] .btn-secondary {
  background-color: var(--gray-ultra-light);
  border-color: var(--gray-light);
  color: var(--dark-text);
}

[data-theme="dark"] .active-indicator {
  background-color: var(--gray-ultra-light);
}

[data-theme="dark"] .card-inner {
  background: rgba(20, 22, 35, 0.90);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .contact-card-form {
  background: var(--surface);
}

[data-theme="dark"] .input-group input,
[data-theme="dark"] .input-group select,
[data-theme="dark"] .input-group textarea {
  background: var(--gray-ultra-light);
  border-color: var(--gray-light);
  color: var(--dark-text);
}

[data-theme="dark"] .input-group label {
  background-color: var(--gray-ultra-light);
  color: var(--gray);
}

[data-theme="dark"] .modal-close-btn {
  background-color: var(--gray-ultra-light);
  color: var(--gray);
}

[data-theme="dark"] .aurora {
  opacity: 0.25;
}

[data-theme="dark"] .grid-overlay {
  opacity: 0.60;
}

[data-theme="dark"] .card-enquire {
  background-color: var(--gray-ultra-light);
}

/* ========================================================
   GLOBAL BASE & RESET
   ======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--background);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.loading-locked {
  overflow: hidden;
  height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 5px;
  border: 2px solid var(--background);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* Noise overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

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

/* ========================================================
   AURORA & GRID OVERLAYS
   ======================================================== */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: aurora-move 20s infinite alternate ease-in-out;
}

.aurora-1 {
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.aurora-2 {
  bottom: -10%;
  right: -10%;
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, var(--accent) 0%, transparent 75%);
  animation-duration: 25s;
}

.aurora-3 {
  top: 40%;
  left: 50%;
  width: 40vw;
  height: 40vh;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation-duration: 18s;
  animation-delay: -5s;
}

@keyframes aurora-move {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(5%, 10%) scale(1.1) rotate(180deg); }
  100% { transform: translate(-5%, -5%) scale(0.9) rotate(360deg); }
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background-image: 
    linear-gradient(rgba(47, 59, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 59, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 70%, transparent 100%);
}

/* ========================================================
   CUSTOM CURSOR & SPOTLIGHT
   ======================================================== */
#custom-cursor {
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: normal;
  display: none;
}

#custom-cursor.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(47, 59, 255, 0.15);
  border: 1px solid var(--primary);
}

#cursor-glow {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(47, 59, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  display: none;
}

@media (pointer: fine) {
  #custom-cursor, #cursor-glow {
    display: block;
  }
}

/* ========================================================
   AI BOOT / LOADING SCREEN
   ======================================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0B0E17;
  color: #FFFFFF;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.boot-container {
  width: 90%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  perspective: 1000px;
}

.boot-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 20px rgba(47, 59, 255, 0.5));
  animation: logo-drift 4s infinite ease-in-out;
}

@keyframes logo-drift {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateY(180deg); }
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.boot-console {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 15px;
  font-family: monospace;
  font-size: 0.85rem;
  color: #8A99AD;
  margin-bottom: 25px;
  min-height: 110px;
  backdrop-filter: blur(10px);
}

.console-line {
  margin-bottom: 5px;
  opacity: 0;
  animation: console-fade-in 0.3s forwards;
}

.text-blue {
  color: #4F5CFF;
  text-shadow: 0 0 8px rgba(79, 92, 255, 0.4);
}

@keyframes console-fade-in {
  to { opacity: 1; }
}

.progress-bar-container {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.1s linear;
}

/* Beam scanner */
.progress-bar-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: progress-beam 1.5s infinite linear;
}

@keyframes progress-beam {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.progress-text {
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* ========================================================
   UI UTILITY STYLES (GLASS, BUTTONS)
   ======================================================= */
.glass-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(47, 59, 255, 0.25);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s, background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(47, 59, 255, 0.35);
  transform: scale(1.03);
}

.btn-secondary {
  background-color: #FFFFFF;
  border: 1px solid var(--gray-light);
  color: var(--dark-text);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--gray-ultra-light);
  transform: scale(1.03);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(47, 59, 255, 0.2);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

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

.btn svg {
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ========================================================
   FLOATING NAVBAR
   ======================================================== */
.glass-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  width: 90%;
  max-width: 1120px;
  height: 70px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  border: var(--border-glass);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.glass-navbar.visible {
  transform: translateX(-50%) translateY(0);
}

.glass-navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(47, 59, 255, 0.1);
}

.nav-container {
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links-wrapper {
  position: relative;
  display: none; /* Hide on mobile by default */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.nav-links a.active, .nav-links a:hover {
  color: var(--dark-text);
}

.active-indicator {
  position: absolute;
  height: 36px;
  background-color: var(--gray-ultra-light);
  border-radius: 20px;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Theme toggle pill button ───────────────────────────── */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--surface);
  color: var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 14px rgba(47, 59, 255, 0.25);
  transform: scale(1.1) rotate(15deg);
}

.theme-toggle-btn .sun-icon,
.theme-toggle-btn .moon-icon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When page is dark, moon shows; light mode shows sun */
.theme-toggle-btn .sun-icon  { opacity: 1;  transform: rotate(0deg) scale(1); }
.theme-toggle-btn .moon-icon { opacity: 0;  transform: rotate(-90deg) scale(0.6); }

[data-theme="dark"] .theme-toggle-btn {
  background: var(--gray-ultra-light);
  border-color: var(--gray-light);
}

[data-theme="dark"] .theme-toggle-btn .sun-icon  { opacity: 0; transform: rotate(90deg) scale(0.6); }
[data-theme="dark"] .theme-toggle-btn .moon-icon { opacity: 1; transform: rotate(0deg) scale(1); }

/* keep both SVGs visible (override inline display:none) */
.theme-toggle-btn .sun-icon,
.theme-toggle-btn .moon-icon {
  display: block !important;
}

/* ========================================================
   SECTION SHELL LAYOUTS
   ======================================================== */
section {
  padding: 100px 0;
  position: relative;
}

.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-container-fluid {
  width: 100%;
  margin: 0 auto;
}

.center-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(47, 59, 255, 0.08);
  color: var(--primary);
  border: 1px solid rgba(47, 59, 255, 0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
}

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

.highlight-underline {
  position: relative;
  display: inline-block;
}

.highlight-underline::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(47, 59, 255, 0.2);
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease 0.3s;
}

.scroll-reveal.active .highlight-underline::after {
  transform: scaleX(1);
}

/* Scroll reveal system */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================
   SECTION 1: HERO
   ======================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  overflow: hidden;
}

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

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-headline {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 25px;
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotate(2deg);
  filter: blur(8px);
  animation: word-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.word-reveal:nth-child(2) { animation-delay: 0.15s; }
.word-reveal:nth-child(4) { animation-delay: 0.3s; }
.word-reveal:nth-child(5) { animation-delay: 0.45s; }

@keyframes word-rise {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fade-in 1s ease 1s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.avatars-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
  animation: avatar-float 4s infinite ease-in-out;
}

.avatar:first-child { margin-left: 0; }
.avatar-1 { animation-delay: 0s; }
.avatar-2 { animation-delay: 0.5s; }
.avatar-3 { animation-delay: 1s; }
.avatar-4 { animation-delay: 1.5s; }

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

.social-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  display: flex;
  flex-direction: column;
}

.social-text .counter-number {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
}

.social-text .subtext {
  color: var(--gray);
  font-size: 0.8rem;
}

/* Hero Right: 3D Orbital cards */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 500px;
}

.orbital-viewport {
  width: 450px;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.orbital-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(47, 59, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-glow);
}

.center-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 59, 255, 0.25) 0%, transparent 70%);
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.center-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(47, 59, 255, 0.15);
  pointer-events: none;
}

.ring-1 {
  width: 260px;
  height: 260px;
}

.ring-2 {
  width: 400px;
  height: 400px;
}

.orbital-card {
  position: absolute;
  width: 160px;
  z-index: 10;
  /* Setup orbit properties through custom CSS variables updated dynamically */
  --radius: 180px;
  --speed: 60s;
  --angle: calc(var(--card-index) * 72deg);
  transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
  animation: orbit var(--speed) linear infinite;
  transform-origin: center;
}

@keyframes orbit {
  from {
    transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
  }
  to {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius)) rotate(calc(-1 * (var(--angle) + 360deg)));
  }
}

.orbital-viewport:hover .orbital-card {
  animation-play-state: paused;
}

.card-inner {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.orbital-card:hover .card-inner {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(47, 59, 255, 0.3);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(47, 59, 255, 0.15);
}

.card-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.web-color { background: linear-gradient(135deg, #FF5C00, #FF9E00); }
.ai-color { background: linear-gradient(135deg, #2F3BFF, #6F7DFF); }
.auto-color { background: linear-gradient(135deg, #00DF89, #00F5D4); }
.cloud-color { background: linear-gradient(135deg, #7B2CBF, #9D4EDD); }
.branding-color { background: linear-gradient(135deg, #F72585, #7209B7); }

.card-details h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.card-price {
  font-size: 0.75rem;
  color: var(--gray);
}

.card-rating {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFAE00;
}

.card-enquire {
  display: block;
  text-align: center;
  padding: 5px 0;
  background-color: var(--gray-ultra-light);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.card-inner:hover .card-enquire {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* ========================================================
   SECTION 2: FOUNDER'S DESK
   ======================================================== */
.founders-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.founders-left {
  display: flex;
  flex-direction: column;
}

.founder-message {
  margin-bottom: 30px;
}

.highlighted-paragraph {
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
}

.founder-message p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.signature-block {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
}

.sig-wrapper {
  width: 160px;
  height: 50px;
}

.sig-path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 2s ease;
}

.scroll-reveal.active .sig-path {
  stroke-dashoffset: 0;
}

.sig-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
}

.sig-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Video glass player container */
.founders-right {
  display: flex;
  justify-content: center;
}

.video-glass-card {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  padding: 12px;
}

.video-aspect {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: calc(var(--radius-lg) - 10px);
  position: relative;
  overflow: hidden;
}

.video-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1E2540 0%, #0F1221 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79, 92, 255, 0.25);
  animation: pulse-ring 6s infinite linear;
}

.ring-v-1 { width: 120px; height: 120px; }
.ring-v-2 { width: 220px; height: 220px; animation-delay: -2s; }
.ring-v-3 { width: 320px; height: 320px; animation-delay: -4s; }

@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.neural-mesh-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(79, 92, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(11, 14, 23, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.play-btn-wrapper {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.play-button:hover {
  transform: scale(1.1);
  background-color: #FFFFFF;
  box-shadow: 0 15px 40px rgba(47, 59, 255, 0.4);
}

.play-button svg {
  transform: translateX(2px);
}

.video-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9rem;
}

.video-caption .duration {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 4px;
  font-size: 0.75rem;
}

/* ========================================================
   SECTION 3: WEB SOLUTIONS (BENTO GRID)
   ======================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}

.bento-card {
  background: #FFFFFF;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 59, 255, 0.2);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(47, 59, 255, 0.05);
}

/* Dynamic glow borders */
.bento-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(47, 59, 255, 0.02) 0%, transparent 60%);
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-bg-gradient {
  background: radial-gradient(circle at 50% 50%, rgba(47, 59, 255, 0.05) 0%, transparent 70%);
}

.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

.bento-art {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 180px;
  height: 130px;
  opacity: 0.65;
  transition: var(--transition-smooth);
}

.bento-card:hover .bento-art {
  transform: scale(1.05) translateY(-5px);
  opacity: 1;
}

.bento-svg {
  width: 100%;
  height: 100%;
}

.bento-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.bento-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bento-meta .rating {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFAE00;
}

.bento-meta .price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(47, 59, 255, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
}

.bento-content h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bento-content p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 15px;
  max-width: 90%;
}

.bento-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.bento-footer .arrow-icon {
  transition: transform 0.3s;
}

.bento-card:hover .bento-footer .arrow-icon {
  transform: translateX(4px);
}

/* ========================================================
   SECTION 4: AI AGENTS
   ======================================================== */
.ai-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.ai-interactive-panel {
  background: #0B0E17;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

#neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.panel-glow-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-title);
  color: #FFFFFF;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #00DF89;
  border-radius: 50%;
  box-shadow: 0 0 10px #00DF89;
  animation: pulse-indicator 2s infinite;
}

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

.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ai-agent-card {
  background: var(--surface);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.ai-agent-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 59, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.agent-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.agent-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(47, 59, 255, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-title h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.agent-title span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.ai-agent-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.agent-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.agent-features span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-text);
  background-color: var(--gray-ultra-light);
  padding: 3px 8px;
  border-radius: 4px;
}

.custom-agent-highlight {
  grid-column: span 2;
  background: radial-gradient(circle at 100% 100%, rgba(47, 59, 255, 0.08) 0%, #FFFFFF 100%);
  border-color: rgba(47, 59, 255, 0.15);
}

/* ========================================================
   SECTION 5: WHY VAKYAM 360
   ======================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 59, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(47, 59, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg);
  background-color: var(--primary);
}

.why-card:hover .why-icon svg {
  stroke: #FFFFFF;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ========================================================
   SECTION 6: WORK PROCESS (TIMELINE)
   ======================================================== */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-track {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--gray-light);
  border-radius: 2px;
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  box-shadow: 0 0 15px var(--primary);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.timeline-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:nth-child(even) {
  left: 0;
  text-align: right;
}

.timeline-step:nth-child(odd) {
  left: 50%;
  text-align: left;
}

.step-marker {
  position: absolute;
  top: 30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 3px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition-smooth);
}

.timeline-step.active .step-marker {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.timeline-step:nth-child(even) .step-marker {
  right: -16px;
}

.timeline-step:nth-child(odd) .step-marker {
  left: -16px;
}

.step-num {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray);
}

.timeline-step.active .step-num {
  color: var(--primary);
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-step.active .step-content {
  border-color: rgba(47, 59, 255, 0.15);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.step-duration {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background-color: rgba(47, 59, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ========================================================
   SECTION 7: TESTIMONIALS (MARQUEE)
   ======================================================== */
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.marquee-viewport::before, .marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--background) 0%, transparent 100%);
}

.marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--background) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

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

.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 380px;
  background: var(--surface);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(47, 59, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.card-stars {
  color: #FFAE00;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer-details h5 {
  font-size: 0.9rem;
  font-weight: 600;
}

.reviewer-details span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ========================================================
   SECTION 8: PRICING CALCULATOR
   ======================================================== */
.calc-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.calc-left {
  padding: 40px;
}

.calc-group {
  margin-bottom: 35px;
}

.calc-group:last-child {
  margin-bottom: 0;
}

.calc-group h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.calc-option {
  cursor: pointer;
}

.calc-option input {
  display: none;
}

.option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: var(--transition-smooth);
  height: 90px;
  text-align: center;
}

.calc-option input:checked + .option-box {
  border-color: var(--primary);
  background-color: rgba(47, 59, 255, 0.05);
  box-shadow: 0 0 10px rgba(47, 59, 255, 0.08);
}

.option-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.option-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

/* Slider */
.slider-wrapper {
  padding: 10px 0;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-light);
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(47, 59, 255, 0.4);
  transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 10px;
}

.current-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-option {
  cursor: pointer;
}

.checkbox-option input {
  display: none;
}

.check-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: var(--transition-smooth);
}

.checkbox-option input:checked + .check-box {
  border-color: var(--primary);
  background-color: rgba(47, 59, 255, 0.05);
}

.check-label {
  font-size: 0.8rem;
  font-weight: 600;
}

.check-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
}

/* Calculator Quote Panel */
.calc-right {
  background: rgba(47, 59, 255, 0.02);
  border-left: 1px solid var(--gray-light);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.quote-header h4 {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gray);
}

.popular-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 4px;
}

.quote-total {
  margin-bottom: 30px;
}

.total-label {
  font-size: 0.85rem;
  color: var(--gray);
}

.total-amount {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0;
  color: var(--primary);
}

.recurring-disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
}

.quote-breakdown {
  margin-bottom: 30px;
  border-top: 1px solid var(--gray-light);
  padding-top: 25px;
}

.quote-breakdown h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.deliverable-list {
  list-style: none;
  font-size: 0.8rem;
  color: var(--gray);
}

.deliverable-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.deliverable-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.quote-savings {
  margin-bottom: 30px;
}

.savings-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 223, 137, 0.08);
  border: 1px dashed rgba(0, 223, 137, 0.2);
  color: #00DF89;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ========================================================
   SECTION 9: FAQ (ACCORDION)
   ======================================================== */
.faq-layout {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card:hover {
  border-color: rgba(47, 59, 255, 0.15);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gray-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition-smooth);
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: #FFFFFF;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
  padding: 0 24px 24px 24px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========================================================
   SECTION 10: CONTACT
   ======================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.world-map-wrapper {
  position: relative;
  background: rgba(255,255,255,0.4);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 30px 0;
}

.world-map-svg {
  width: 100%;
  height: auto;
}

.map-node-pulse {
  transform-origin: center;
  animation: map-node-pulse 2s infinite ease-out;
}

@keyframes map-node-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.location-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loc-tag {
  position: absolute;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--gray-light);
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.pos-1 { top: 30%; left: 18%; }
.pos-2 { top: 18%; left: 36%; }
.pos-3 { top: 26%; left: 63%; }

.contact-details-list {
  display: flex;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(47, 59, 255, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Form Right */
.contact-card-form {
  padding: 40px;
}

#project-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.input-group {
  position: relative;
  width: 100%;
}

.input-group input, .input-group select, .input-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  background: var(--surface);
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  transition: var(--transition-smooth);
}

.input-group textarea {
  resize: none;
}

.input-group label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-size: 0.9rem;
  color: var(--gray);
  pointer-events: none;
  transition: var(--transition-smooth);
  background-color: var(--surface);
  padding: 0 4px;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(47, 59, 255, 0.06);
}

/* Translate label on focus or filled input */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.form-feedback-msg {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
}

.success-msg {
  background-color: rgba(0, 223, 137, 0.08);
  border: 1px dashed rgba(0, 223, 137, 0.2);
  color: #00DF89;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer-section {
  background-color: #0B0E17;
  color: #FFFFFF;
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}

.starfield-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.footer-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-icon-sm {
  width: 36px;
  height: 36px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #8A99AD;
  max-width: 280px;
}

.social-links-footer {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

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

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8A99AD;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: #8A99AD;
}

.footer-col ul a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.85rem;
  color: #8A99AD;
  margin-bottom: 15px;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50px;
  padding: 4px;
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
}

.footer-newsletter-form button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: var(--secondary);
}

.footer-bottom {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8A99AD;
}

.rocket-back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.rocket-back-to-top:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.rocket-back-to-top:hover .rocket-icon {
  animation: rocket-launch 0.5s ease infinite alternate;
}

@keyframes rocket-launch {
  from { transform: translateY(0); }
  to { transform: translateY(-4px) translateX(2px); }
}

/* ========================================================
   PREMIUM DETAILED BENTO MODAL
   ======================================================== */
.bento-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background-color: rgba(11, 14, 23, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.bento-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.bento-modal-box {
  width: 90%;
  max-width: 580px;
  background: #FFFFFF;
  border: 1px solid rgba(47, 59, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  padding: 40px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-modal-overlay.open .bento-modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gray-ultra-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray);
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

.modal-header-section {
  margin-bottom: 25px;
}

.modal-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(47, 59, 255, 0.05);
  color: var(--primary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-header-section h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal-header-section p {
  font-size: 0.95rem;
  color: var(--gray);
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background-color: var(--gray-ultra-light);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.detail-block h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.modal-big-price {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-info-stat {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
}

.detail-block p {
  font-size: 0.75rem;
  color: var(--gray);
}

.modal-tab-wrapper {
  margin-bottom: 30px;
}

.modal-tab-headers {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
  gap: 20px;
  margin-bottom: 15px;
}

.modal-tab-btn {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  position: relative;
}

.modal-tab-btn.active {
  color: var(--primary);
}

.modal-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.modal-tab-panel {
  display: none;
}

.modal-tab-panel.active {
  display: block;
}

.modal-tab-panel ul {
  list-style: none;
  font-size: 0.85rem;
  color: var(--gray);
}

.modal-tab-panel ul li {
  margin-bottom: 6px;
  padding-left: 15px;
  position: relative;
}

.modal-tab-panel ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ========================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ======================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-left {
    align-items: center;
  }
  
  .hero-headline {
    font-size: 3.5rem;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .col-span-2 {
    grid-column: span 2;
  }

  .ai-layout {
    grid-template-columns: 1fr;
  }
  
  .ai-interactive-panel {
    height: 300px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-box {
    grid-template-columns: 1fr;
  }
  
  .calc-right {
    border-left: none;
    border-top: 1px solid var(--gray-light);
  }
}

@media (min-width: 768px) {
  .nav-links-wrapper {
    display: block;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .founders-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .col-span-2 {
    grid-column: span 1;
  }
  
  .row-span-2 {
    grid-row: span 1;
  }
  
  .bento-art {
    display: none;
  }

  .ai-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-agent-highlight {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .timeline-track {
    left: 20px;
  }
  
  .timeline-step {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .step-marker {
    left: 4px !important;
    right: auto !important;
  }

  .calc-left, .calc-right {
    padding: 24px;
  }

  .calc-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
