/* ==========================================================================
   WON ADS - METALLIC CHROME & OBSIDIAN DESIGN SYSTEM
   Aesthetics: Obsidian dark, brushed steel, silver chrome gradients
   ========================================================================== */

/* Root Variables & Colors - LUXURY GOLD EDITION */
:root {
  --bg-primary: #050507;
  --bg-secondary: #0c0c0f;
  --bg-tertiary: #121217;
  --color-text: #fdfdfd;
  --color-text-muted: #a1a1aa;

  /* 3D Liquid Gold & Brushed Bronze Gradients */
  --grad-chrome: linear-gradient(135deg, #f5e6c8 0%, #d4af37 35%, #b8860b 65%, #f3e5ab 100%);
  /* Liquid Gold */
  --grad-chrome-hover: linear-gradient(135deg, #ffffff 0%, #f5e6c8 45%, #d4af37 80%, #aa7c11 100%);
  --grad-dark: linear-gradient(180deg, rgba(12, 12, 15, 0.85) 0%, rgba(5, 5, 7, 0.99) 100%);
  --grad-steel: linear-gradient(135deg, #f3e5ab 0%, #c5a880 50%, #8c6e43 100%);

  /* Solid colors */
  --chrome-accent: #d4af37;
  /* Gold Accent */
  --silver-accent: #f3e5ab;
  /* Champagne Accent */
  --border-color: rgba(212, 175, 55, 0.12);
  /* Gold-tint borders */
  --border-glow: rgba(212, 175, 55, 0.25);
  --glow-color: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(12, 12, 15, 0.75);
  --glass-blur: blur(20px);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --nav-height: 80px;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(140, 110, 67, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.015) 0%, transparent 50%);
  background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

li {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

.gradient-text {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.uppercase {
  text-transform: uppercase;
}

.tracking {
  letter-spacing: 0.15em;
}

.text-muted {
  color: var(--color-text-muted);
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none !important;
}

.section-padding {
  padding: 100px 0;
}

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

.section-header span {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.section-header .section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--border-radius-md);
  white-space: nowrap;
}

/* Brushed Chrome Button Styling */
.btn-chrome,
.btn-gold {
  background: var(--grad-chrome);
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-chrome:hover,
.btn-gold:hover {
  background: var(--grad-chrome-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--chrome-accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Cards & Glassmorphism */
.card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(5, 5, 8, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

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

.logo-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  white-space: nowrap;
}

.nav-links>ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .nav-item {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1250px) and (min-width: 1025px) {
  .nav-item {
    padding: 6px 8px;
    font-size: 0.85rem;
  }

  .nav-links>ul {
    gap: 2px;
  }
}

.nav-item.active {
  color: var(--chrome-accent) !important;
  font-weight: 600;
}

.nav-item i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-links li:hover>.nav-item {
  color: #ffffff;
}

.nav-links li:hover>.nav-item i {
  transform: rotate(180deg);
  color: var(--chrome-accent);
}

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

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--grad-chrome);
  color: #000000;
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: var(--grad-chrome);
  color: #000000;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}

/* Mega Menu Structure */
.has-mega {
  /* position relative override on desktop to align relative to .nav-container */
}

@media (min-width: 1025px) {
  .has-mega {
    position: static;
  }
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 24px;
  right: 24px;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(20px);
  background: rgba(8, 8, 16, 0.98);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(255, 0, 127, 0.05);
  backdrop-filter: var(--glass-blur);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(5px);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.mega-menu-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-span-1 {
  grid-column: span 1;
}

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

.mega-col h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.col-icon {
  font-size: 0.95rem;
}

.icon-meta {
  color: #8e8e93;
}

.icon-google {
  color: #aeaea3;
}

.icon-seo {
  color: #ffffff;
}

.icon-creative {
  color: #d1d1d6;
}

.icon-dev {
  color: var(--chrome-accent);
}

.mega-col ul li {
  margin-bottom: 6px;
}

.mega-col ul li a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: block;
  padding: 4px 0;
}

.mega-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.sub-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--silver-accent);
  margin-top: 12px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.margin-top {
  margin-top: 16px;
}

.sub-divider {
  height: 1px;
  background: var(--border-color);
  margin: 8px 0;
}

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

.nav-learn-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 12px 0 20px;
}

/* Specific Menu Variations */
.mega-menu.size-small {
  width: 600px;
  max-width: 600px;
}

.mega-menu.size-mini {
  width: 280px;
  max-width: 280px;
  padding: 16px;
}

.mini-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-radius: var(--border-radius-sm);
}

.mini-menu li a i {
  width: 16px;
  text-align: center;
}

.mini-menu li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-desc h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.list-desc p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.list-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-link-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
}

.product-link-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-link-item .p-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-accent);
  flex-shrink: 0;
}

.product-link-item strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.product-link-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  z-index: 1;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(255, 0, 127, 0.06) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}

.hero-right-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Glassy Hero Contact Card */
.hero-contact-card {
  background: rgba(8, 8, 8, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.02);
  backdrop-filter: var(--glass-blur);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-banner {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  margin: -24px -24px 20px -24px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-banner h3 {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-badges {
  display: flex;
  gap: 12px;
}

.banner-badges span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--chrome-accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-header {
  margin-bottom: 20px;
}

.form-header h4 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-input-group {
  position: relative;
  margin-bottom: 16px;
}

.form-input-group input,
.form-input-group select {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input-group input:focus,
.form-input-group select:focus {
  border-color: var(--chrome-accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 12px var(--border-glow);
}

.form-input-group select option {
  background-color: #0c0c0c;
  color: #ffffff;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.phone-group {
  display: flex;
}

.phone-group .country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-right: none;
  border-top-left-radius: var(--border-radius-sm);
  border-bottom-left-radius: var(--border-radius-sm);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
}

.phone-group input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 16px;
}

.select-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  pointer-events: none;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 20px;
}

.consent-checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--chrome-accent);
}

.consent-checkbox-label span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.form-urgency-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.form-urgency-footer #countdown-timer {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.form-urgency-footer #seats-percentage {
  color: var(--chrome-accent);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  font-weight: 700;
}

.form-feedback-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 12, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 10;
  animation: fadeIn 0.4s ease forwards;
}

.form-feedback-success i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 16px;
}

.form-feedback-success h5 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-feedback-success p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Hero Slide Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 340px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.carousel-indicators {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.indicator {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.indicator.active {
  background: var(--grad-chrome);
  width: 40px;
}

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

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--chrome-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--chrome-accent);
  animation: pulse-ring 2s infinite;
}

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

  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 14px var(--chrome-accent);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.hero-section h1 {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
}

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

.hero-visual-area {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.canvas-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

#heroCanvas {
  width: 500px;
  height: 500px;
  max-width: 100%;
  max-height: 100%;
}

.scroll-helper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 10px;
}

.bounce {
  animation: bounce-anim 2s infinite;
}

@keyframes bounce-anim {

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

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

  60% {
    transform: translateY(-3px);
  }
}

/* AI Sandbox Section Styles */
.ai-sandbox-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 520px;
}

.sandbox-sidebar {
  border-right: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
}

.sandbox-tab {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.sandbox-tab i {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  transition: var(--transition);
}

.sandbox-tab strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  transition: var(--transition);
}

.sandbox-tab span {
  font-size: 0.78rem;
  color: rgba(160, 160, 176, 0.7);
  display: block;
}

.sandbox-tab.active,
.sandbox-tab:hover {
  background: rgba(255, 255, 255, 0.02);
}

.sandbox-tab.active i {
  color: var(--chrome-accent);
}

.sandbox-tab.active strong {
  color: #ffffff;
}

.sidebar-footer {
  margin-top: auto;
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.sandbox-main {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.sandbox-input-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.sandbox-input-panel p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 600px;
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.input-group input,
.input-group select,
.input-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 14px;
  color: #ffffff;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--chrome-accent);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.input-group select option {
  background: var(--bg-secondary);
  color: #ffffff;
}

/* Scanner Loading state */
.sandbox-loading-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

.scanner-container {
  position: relative;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.scanner-icon {
  font-size: 2.5rem;
  color: var(--chrome-accent);
  z-index: 2;
  animation: pulse-robot 1.5s infinite;
}

@keyframes pulse-robot {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    color: #ffffff;
  }

  100% {
    transform: scale(1);
  }
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-chrome);
  opacity: 0.7;
  animation: scan-vertical 2s linear infinite;
  z-index: 1;
}

@keyframes scan-vertical {
  0% {
    top: 0%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 0%;
  }
}

.sandbox-loading-panel h4 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sandbox-loading-panel p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.progress-bar-bg {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--grad-chrome);
  border-radius: 50px;
  transition: width 0.1s linear;
}

/* Sandbox Results */
.sandbox-results-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.results-header {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.results-score {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--chrome-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.score-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
}

.score-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.results-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.results-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.results-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-chrome {
  color: var(--chrome-accent);
}

.text-steel {
  color: #8e8e93;
}

.metrics-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.metric-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.metric-lbl {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

/* Mentor Section Styles */
.mentor-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 32px;
}

.mentor-subjects-panel {
  padding: 24px;
}

.mentor-subjects-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.subject-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subject-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--color-text-muted);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.subject-btn i {
  font-size: 1.1rem;
}

.subject-btn.active,
.subject-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.subject-btn.active {
  box-shadow: inset 3px 0 0 var(--chrome-accent);
}

.mentor-chat-panel {
  height: 520px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.15);
}

.mentor-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-accent);
  font-size: 1.4rem;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2e7d32;
  border: 2px solid var(--bg-secondary);
}

.chat-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-msg {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-msg.mentor {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-top-left-radius: 0;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--grad-chrome);
  color: #000000;
  font-weight: 500;
  border-top-right-radius: 0;
}

.chat-msg-typing {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: 12px;
  border-top-left-radius: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot-anim {
  width: 6px;
  height: 6px;
  background-color: var(--color-text-muted);
  border-radius: 50%;
  animation: dot-beat 1.4s infinite ease-in-out;
}

.dot-anim:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-anim:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-beat {

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

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

.chat-choices-panel {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.choice-chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.choice-chip:hover {
  border-color: var(--chrome-accent);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Free Growth Tools Section Styles */
.tools-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tool-tab-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition);
}

.tool-tab-btn.active,
.tool-tab-btn:hover {
  background: var(--grad-chrome);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.tool-card {
  display: none;
}

.tool-card.active {
  display: block;
}

.tool-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 40px;
}

.tool-inputs h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.tool-sub-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.input-block {
  margin-bottom: 24px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.slider-val {
  color: var(--chrome-accent);
  font-weight: 700;
}

/* Custom Range Slider Styles */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--chrome-accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.tool-outputs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.outputs-header h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-weight: 700;
}

.outputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-bottom: 24px;
}

.output-item-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.output-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.output-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.output-value.highlight {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.out-health-badge {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.out-health-badge.warning {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* Case Studies Section Styles */
.results-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.03);
}

.case-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chrome-accent);
  margin-bottom: 16px;
}

.case-metric {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}

.case-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  flex-grow: 1;
}

.case-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* About / Team Section on Home */
.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  margin-top: 60px;
}

.founder-img-box {
  width: 100%;
  height: 380px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.founder-info h3 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.founder-title {
  color: var(--chrome-accent);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.founder-bio {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.founder-signature {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Contact & Lead Section Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-top: 12px;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-info p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-method-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-method-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-accent);
  font-size: 1.3rem;
}

.c-method-item strong {
  display: block;
  font-size: 1rem;
  color: #ffffff;
}

.c-method-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.c-method-item span a:hover {
  color: var(--chrome-accent);
}

.contact-form-card {
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-feedback {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

/* Footer Styles */
footer {
  border-top: 1px solid var(--border-color);
  background: rgba(5, 5, 8, 0.95);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-socials a:hover {
  color: var(--chrome-accent);
  border-color: var(--chrome-accent);
}

.footer-links-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-links-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Floating WhatsApp Widget (Bottom Right) */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #25d366;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.whatsapp-icon-box {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-floating-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background-color: #20ba59;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

/* Tablet Mode Breakpoints (Width between 768px and 1024px) */
@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .hero-text-content {
    align-items: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 32px;
  }

  .hero-visual-area {
    height: 450px;
  }

  .ai-sandbox-container {
    grid-template-columns: 240px 1fr;
  }

  .sandbox-tab {
    padding: 16px;
    gap: 12px;
  }

  .results-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .founder-card {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }

  .founder-img-box {
    height: 300px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    display: none;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links>ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .has-mega:hover .mega-menu {
    display: none;
    /* Disable hover dropdowns on mobile */
  }

  .nav-actions .btn {
    display: none;
  }
}

/* Mobile Mode Breakpoints (Width up to 768px) */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .hero-section h1 {
    font-size: 2.6rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-visual-area {
    height: 350px;
  }

  .ai-sandbox-container {
    grid-template-columns: 1fr;
  }

  .sandbox-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    flex-direction: row;
    overflow-x: auto;
  }

  .sandbox-tab {
    flex-shrink: 0;
    padding: 12px 16px;
    border-bottom: none;
    border-right: 1px solid var(--border-color);
  }

  .sandbox-main {
    padding: 24px 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .results-actions {
    flex-direction: column;
    gap: 12px;
  }

  .results-actions .btn {
    width: 100%;
  }

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

  .mentor-chat-panel {
    height: 480px;
  }

  .tool-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

  .results-showcase-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .founder-img-box {
    height: 320px;
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-card {
    padding: 24px 16px;
  }

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

  .whatsapp-floating-btn {
    bottom: 20px;
    right: 20px;
    padding: 4px 4px 4px 14px;
  }

  .whatsapp-text {
    font-size: 0.8rem;
  }

  .whatsapp-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   NEW UPGRADES: PRELOADER, CUSTOM CURSOR, AND MORPHING FORM
   ========================================================================== */

/* Custom Logo Cursor */
.custom-cursor {
  width: 24px;
  height: 24px;
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), height 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #000000;
}

.custom-cursor.hovered {
  width: 44px;
  height: 44px;
}

.custom-cursor.hovered img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
  border-color: rgba(255, 255, 255, 0.7);
}

/* Hide native cursor on desktop only when custom cursor is active */
@media (min-width: 1025px) {

  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor a,
  html.has-custom-cursor button,
  html.has-custom-cursor select,
  html.has-custom-cursor input,
  html.has-custom-cursor textarea,
  html.has-custom-cursor .nav-item,
  html.has-custom-cursor .btn {
    cursor: none !important;
  }
}

/* Preloader Splash Screen */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #030304;
  /* Dark luxury obsidian background */
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

.preloader-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.preloader-content {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.preloader-logo-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  filter: blur(15px);
  z-index: 1;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.preloader-logo-container {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--chrome-accent);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: logoZoomPulse 2s ease-in-out infinite alternate;
  will-change: transform, box-shadow;
}

.preloader-logo {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 50%;
}

.preloader-tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f3e5ab 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  opacity: 0.9;
}

.preloader-progress-container {
  width: 280px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.preloader-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #aa7c11, #d4af37, #f3e5ab);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  border-radius: 4px;
  transition: width 0.05s linear;
}

.preloader-percentage-container {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--chrome-accent);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes glowPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
    filter: blur(12px);
  }

  100% {
    transform: scale(1.25);
    opacity: 1;
    filter: blur(18px);
  }
}

@keyframes logoZoomPulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  }

  100% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.75);
  }
}

/* Blast Transition Effect when finished */
.preloader.blast-out {
  pointer-events: none;
}

.preloader.blast-out .preloader-logo-container {
  animation: logoBlast 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader.blast-out .preloader-logo-glow {
  animation: glowBlast 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader.blast-out .preloader-tagline,
.preloader.blast-out .preloader-progress-container,
.preloader.blast-out .preloader-percentage-container {
  animation: fadeOutElement 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoBlast {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(0.85);
    opacity: 1;
  }

  100% {
    transform: scale(16);
    opacity: 0;
    filter: blur(8px);
  }
}

@keyframes glowBlast {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(25);
    opacity: 0;
    filter: blur(40px);
  }
}

@keyframes fadeOutElement {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* Form Modal Popup & Morphing Overlay */
.form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 2, 2, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.form-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

#modal-contact-card {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 255, 255, 0.05);
}

/* Destination placeholder in hero */
.hero-form-destination {
  width: 100%;
  min-height: 480px;
  border-radius: var(--border-radius-lg);
  border: 1px dashed rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* Morph Close button on the card */
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--chrome-accent);
  border-color: var(--chrome-accent);
  transform: rotate(90deg);
}

/* Morph transition classes */
.hero-contact-card.morph-active {
  position: fixed;
  z-index: 10000;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.2);
}

/* Temporary Overlay Canvas for Nano particles */
#morphCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  pointer-events: none;
}

/* ==========================================================================
   WON ADS - LUXURY GLOW & GOLD COLOR GRADING OVERLAYS
   ========================================================================== */

/* Card and interactives transition setup */
.card,
.btn,
.navbar,
.subject-btn,
.sandbox-tab,
.mentor-subjects-panel,
.mentor-chat-panel,
.contact-form-card,
.founder-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease !important;
}

/* Ambient Box Glows on Hover */
.card:hover,
.mentor-subjects-panel:hover,
.mentor-chat-panel:hover,
.contact-form-card:hover,
.founder-card:hover {
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.18) !important;
  transform: translateY(-4px);
}

.btn-chrome:hover,
.btn-gold:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
}

/* Logo Symbol Gold Hover Glow */
.logo-symbol {
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.04);
  transition: all 0.4s ease;
}

.logo:hover .logo-symbol {
  border-color: var(--chrome-accent) !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  transform: scale(1.06);
}

/* Custom Cursor styling details */
.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid var(--chrome-accent);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.custom-cursor.hovered {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.28);
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.custom-cursor img {
  display: none;
  /* Hide default cursor image, keep neat gold circle for luxury */
}

/* Responsive Accordion style for Solutions Submenu on mobile devices */
@media (max-width: 1024px) {
  .nav-links {
    overflow-y: auto !important;
  }

  .has-mega {
    width: 100%;
  }

  .has-mega>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mega-menu {
    display: none;
    /* Controlled programmatically via .open class */
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    background: rgba(12, 12, 17, 0.75) !important;
    padding: 20px !important;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    border-left: 2px solid var(--chrome-accent) !important;
    margin-top: 8px !important;
    border-radius: var(--border-radius-sm) !important;
    max-height: none !important;
    overflow-y: visible !important;
    transition: opacity 0.3s ease, max-height 0.3s ease !important;
  }

  .mega-menu.open {
    display: block !important;
  }

  .mega-menu-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .mega-col h3 {
    margin-bottom: 10px !important;
    padding-bottom: 6px !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
  }

  .mega-col ul {
    display: block !important;
    padding-left: 12px !important;
  }

  .mega-col ul li a {
    padding: 8px 0 !important;
    font-size: 0.88rem !important;
    color: var(--color-text-muted) !important;
  }

  .mega-col ul li a:hover {
    color: #ffffff !important;
    padding-left: 6px !important;
  }

  .has-mega:hover .mega-menu {
    display: none !important;
    /* Overrule hover logic on mobile screen */
  }

  .has-mega:hover .mega-menu.open {
    display: block !important;
  }
}

/* Glassmorphism Color Grading Overrides */
.glass {
  background: rgba(10, 10, 14, 0.7) !important;
  border: 1px solid rgba(212, 175, 55, 0.08) !important;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.gradient-text {
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}