@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,800,700,500,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  --bg-pure: #030305;
  --bg-dark: #070913;
  --bg-card: rgba(10, 14, 26, 0.65);
  --bg-card-hover: rgba(14, 20, 38, 0.85);
  
  --accent-cyan: #00D2FF;
  --accent-blue: #0052FF;
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  --accent-gradient-hover: linear-gradient(135deg, #00b4cc 0%, #003db3 100%);
  
  --text-white: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dimmed: #475569;
  
  --border-glass: rgba(0, 82, 255, 0.12);
  --border-glass-hover: rgba(0, 82, 255, 0.25);
  --border-cyan-glow: rgba(0, 210, 255, 0.25);
  --border-blue-glow: rgba(0, 82, 255, 0.25);
  
  --shadow-glow: 0 0 30px rgba(0, 82, 255, 0.15);
  --shadow-glow-cyan: 0 0 30px rgba(0, 210, 255, 0.15);
  
  --font-title: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
 
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--bg-pure);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-pure);
}
::-webkit-scrollbar-thumb {
  background: #242426;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Text Selection */
::selection {
  background-color: var(--accent-cyan);
  color: var(--bg-pure);
}

/* Background Effects */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  pointer-events: none;
}

.bg-glow-blob {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: -1;
  filter: blur(150px);
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: screen;
}
.blob-1 {
  top: -10%;
  right: -10%;
  background: var(--accent-cyan);
  animation: float-blob 25s infinite alternate;
}
.blob-2 {
  bottom: 10%;
  left: -10%;
  background: var(--accent-green);
  animation: float-blob-reverse 30s infinite alternate;
}
.blob-3 {
  top: 40%;
  right: 25%;
  background: #5d00ff;
  opacity: 0.08;
  animation: float-blob 20s infinite alternate;
}

/* Keyframe Animations */
@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 50px) scale(1.2); }
}
@keyframes float-blob-reverse {
  0% { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-60px, -80px) scale(0.9); }
}
@keyframes pulse-badge {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

/* ==========================================
   REUSABLE UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-badge 2s infinite ease-in-out;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent-gradient);
  color: var(--bg-pure);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient-hover);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary span.arrow {
  transition: var(--transition-fast);
}

.btn-primary:hover span.arrow {
  transform: translateX(4px);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(3, 3, 5, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 8px;
  font-family: monospace;
  color: var(--accent-cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(0, 82, 255, 0.15);
  padding: 6px 28px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--accent-blue);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-nav:hover {
  background: var(--accent-blue);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(0, 82, 255, 0.3);
  transform: translateY(-2px);
}

.nav-cta-mobile {
  display: none;
}

/* Mobile Nav Toggle Icon */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION (3-COLUMN CYBER BLUE LAYOUT)
   ========================================== */
.hero {
  padding: 140px 0 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.05);
  transform: translateY(-2px);
}

/* Stats Row */
.hero-stats-row {
  display: flex;
  gap: 32px;
  width: 100%;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 26px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 10px;
  color: var(--text-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Center Column: Graphic */
.hero-center-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  background-color: rgba(7, 9, 19, 0.4);
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--accent-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 10s ease-in-out;
}

.hero-image-wrap:hover .hero-img {
  transform: scale(1.05);
}

/* Right Column: Status Panels */
.hero-right-col {
  display: flex;
  flex-direction: column;
}

.status-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 4px;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulse-badge 2s infinite ease-in-out;
}

.status-num-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.01em;
}

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

.btn-full-width {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
}

/* ==========================================
   STATEMENT SECTION (PHILOSOPHY)
   ========================================== */
.statement-section {
  padding: 120px 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.03) 0%, transparent 60%);
}

.statement-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.statement-text {
  font-size: 28px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

/* ==========================================
   DOUBLE PANEL SECTION (LOCATION + TESTIMONIAL)
   ========================================== */
.double-panel-section {
  padding: 40px 0 100px 0;
}

.double-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.panel-left-location {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
}

.panel-badge {
  font-size: 10px;
  font-family: monospace;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.panel-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.panel-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 380px;
}

/* Cyber mesh effect inside panel */
.panel-bg-network-mesh {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(0, 82, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
  opacity: 0.5;
  border-radius: 50%;
  filter: blur(2px);
}

.panel-right-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #FFB800;
}

.testimonial-quote-text {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 32px;
}

.user-profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border-cyan-glow);
}

.user-profile-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.user-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   SERVICES SECTION (END-TO-END)
   ========================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.services-tag {
  font-size: 10px;
  font-family: monospace;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-main-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.services-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.service-num {
  font-size: 12px;
  font-family: monospace;
  color: var(--accent-cyan);
  opacity: 0.4;
  font-weight: 700;
}

.service-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.service-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================
   SECCION DE CIERRE & CONVERSION (CTA)
   ========================================== */
.conversion {
  padding: 100px 0 140px 0;
}

.conversion-box {
  position: relative;
  background: radial-gradient(circle at top right, rgba(0, 82, 255, 0.08) 0%, rgba(3, 3, 5, 0.98) 70%), var(--bg-card);
  border: 1px solid var(--border-blue-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 82, 255, 0.05);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}

.conversion-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
}

.conversion-title {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.conversion-text {
  max-width: 720px;
  margin: 0 auto 48px auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
  white-space: pre-line;
}

.btn-large {
  padding: 20px 48px;
  font-size: 15px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 40px 0;
}

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

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

.footer-brand-logo {
  display: flex;
  flex-direction: column;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  margin-bottom: 24px;
}

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

.footer-link-item a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link-item a:hover {
  color: var(--accent-cyan);
}

.footer-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-badge {
  font-size: 11px;
  font-family: monospace;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item span.label {
  font-size: 10px;
  color: var(--text-dimmed);
  text-transform: uppercase;
}

.contact-item:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-dimmed);
}

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

.footer-bottom-link {
  font-size: 12px;
  color: var(--text-dimmed);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-link:hover {
  color: var(--text-muted);
}

/* ==========================================
   INTERACTIVE AUDIT MODAL (DIAGNOSTIC FLOW)
   ========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 5, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
  padding: 20px;
}

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

.modal-container {
  background: var(--bg-pure);
  border: 1px solid var(--border-blue-glow);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), var(--shadow-glow);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(40px) scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  z-index: 10;
}

.modal-close:hover {
  color: var(--text-white);
  border-color: var(--border-glass-hover);
  background: rgba(255, 255, 255, 0.02);
}

.modal-header {
  padding: 36px 36px 20px 36px;
}

.modal-step-indicator {
  font-family: monospace;
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.modal-body {
  padding: 0 36px 36px 36px;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

/* Question Steps */
.step-content {
  display: none;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
}

.step-content.active {
  display: flex;
  animation: fade-in-step 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fade-in-step {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-question {
  font-size: 15px;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.5;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.option-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-glass-hover);
}

.option-card.selected {
  background: rgba(0, 82, 255, 0.05);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
}

.option-selector {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-dimmed);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.option-card.selected .option-selector {
  border-color: var(--accent-cyan);
}

.option-selector::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-fast);
}

.option-card.selected .option-selector::after {
  opacity: 1;
  transform: scale(1);
}

.option-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.option-card.selected .option-label {
  color: var(--text-white);
}

/* Text Input Fields */
.modal-input {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.modal-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 15px rgba(0, 82, 255, 0.05);
}

/* Modal Navigation */
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.modal-btn-prev {
  background: none;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-btn-prev:hover {
  color: var(--text-white);
  border-color: var(--border-glass-hover);
  background: rgba(255, 255, 255, 0.02);
}

.modal-btn-next {
  background: var(--text-white);
  color: var(--bg-pure);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.modal-btn-next:hover {
  background: #E5E5EA;
  transform: translateY(-1px);
}

.modal-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Loading/Audit Simulator Screen */
.audit-loader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 280px;
}

.terminal-box {
  width: 100%;
  background: #020204;
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  font-family: monospace;
  font-size: 12px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  height: 180px;
  overflow-y: auto;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.terminal-line {
  margin-bottom: 6px;
  opacity: 0.85;
}

.terminal-line.success {
  color: var(--accent-cyan);
  font-weight: bold;
}

.terminal-line.blink::after {
  content: '_';
  animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.audit-status-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* Result Screen */
.audit-result-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 20px 0;
}

.result-badge {
  background: rgba(0, 210, 255, 0.08);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan-glow);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.05);
}

.result-badge svg {
  width: 14px;
  height: 14px;
}

.result-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  margin-top: 8px;
}

.result-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 12px;
}

.calendar-integration {
  width: 100%;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.calendar-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calendar-slot {
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.005);
  color: var(--text-white);
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calendar-slot:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.05);
  transform: translateY(-2px);
}

.calendar-slot.active {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
  color: var(--bg-pure);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

/* ==========================================
   INTERACTIVE FLOATING GRAPHICS
   ========================================== */
.glow-spot-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 82, 255, 0.15);
  position: absolute;
  animation: rotate-dashed 40s linear infinite;
  pointer-events: none;
}

@keyframes rotate-dashed {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-left-col {
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-intro {
    position: static;
    align-items: center;
    text-align: center;
  }
  .double-panel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    position: relative;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(3, 3, 5, 0.98);
    border-bottom: 1px solid var(--border-glass);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    display: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--border-glass);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 12px;
  }
  .nav-links .nav-cta-mobile .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .conversion-box {
    padding: 48px 24px;
  }
  .conversion-title {
    font-size: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .modal-container {
    max-height: 90%;
    overflow-y: auto;
  }
  .modal-header, .modal-body {
    padding: 24px;
  }
}
