/* ==========================================================================
   Control Horario Plus - Modern SaaS Design System (Obsidian & Glass Theme)
   ========================================================================== */

:root {
  --bg-base: #06090F;
  --bg-surface: #0E131F;
  --bg-surface-elevated: #151C2C;
  --bg-card: rgba(15, 23, 42, 0.7);
  --bg-card-hover: rgba(26, 36, 56, 0.8);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(59, 130, 246, 0.4);
  
  --primary: #3B82F6;
  --primary-hover: #2563EB;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --secondary: #10B981;
  --secondary-glow: rgba(16, 185, 129, 0.35);
  --accent-cyan: #06B6D4;
  --accent-amber: #F59E0B;
  --accent-rose: #F43F5E;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-base);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--text-main);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ==========================================================================
   Typography & Global Helpers
   ========================================================================== */
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #93C5FD 70%, #6EE7B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #60A5FA 0%, #38BDF8 50%, #34D399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Buttons */
.btn-modern-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #10B981 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 9999px;
  box-shadow: 0 0 25px -4px rgba(37, 99, 235, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px -2px rgba(59, 130, 246, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.08);
}

.btn-modern-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 9999px;
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.btn-modern-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.modern-navbar-wrapper {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1.25rem;
}

.modern-navbar {
  max-width: 76rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(11, 15, 23, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.nav-logo img {
  height: 2.25rem;
  width: auto;
  display: block;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #FFFFFF;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn-ghost {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.2s;
}

.nav-btn-ghost:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-btn-cta {
  background: #2563EB;
  color: #FFFFFF !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  box-shadow: 0 0 20px -4px rgba(37, 99, 235, 0.5);
  transition: all 0.2s;
}

.nav-btn-cta:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  color: var(--text-muted);
  padding: 0.5rem;
}

@media (max-width: 900px) {
  .nav-links-desktop, .nav-actions { display: none; }
  .mobile-menu-toggle { display: block; }
}

.mobile-drawer {
  position: fixed;
  top: 5rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(14, 19, 31, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.mobile-drawer.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  text-align: center;
}

.hero-glow-1 {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25) 0%, rgba(16, 185, 129, 0.08) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93C5FD;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 20px -5px rgba(59, 130, 246, 0.3);
}

.hero-badge-pill {
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  max-width: 58rem;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 1.5rem auto 2.5rem auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--text-subtle);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   Hero Interactive Dashboard Canvas
   ========================================================================== */
.hero-canvas-wrapper {
  margin-top: 3.5rem;
  position: relative;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-canvas {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 120px -25px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  text-align: left;
}

.canvas-topbar {
  background: rgba(6, 9, 15, 0.7);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 0.45rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.canvas-title-bar {
  font-size: 0.8rem;
  color: var(--text-subtle);
  font-family: monospace;
}

.canvas-body {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.6) 0%, rgba(6, 9, 15, 0.95) 100%);
}

@media (max-width: 900px) {
  .canvas-body {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
  transition: border-color 0.2s;
}

.dashboard-card:hover {
  border-color: var(--border-glow);
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
}

.punch-timer {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', monospace;
  color: #FFFFFF;
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.punch-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.interactive-punch-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.btn-punch-action {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-action-pause {
  background: rgba(245, 158, 11, 0.15);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.btn-action-pause:hover {
  background: rgba(245, 158, 11, 0.25);
}

.btn-action-stop {
  background: rgba(239, 68, 68, 0.15);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-action-stop:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* Progress bar inside card */
.progress-bar-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin: 0.85rem 0 0.5rem 0;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3B82F6, #10B981);
  border-radius: 9999px;
}

/* Employee live list inside card */
.employee-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.825rem;
}

.employee-mini-row:last-child {
  border-bottom: none;
}

.employee-avatar-chip {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Trust / Compliance Ribbon
   ========================================================================== */
.compliance-ribbon {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(14, 19, 31, 0.4);
}

.compliance-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  max-width: 76rem;
  margin: 0 auto;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.compliance-icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Bento Grid Section (Features)
   ========================================================================== */
.bento-section {
  padding: 6rem 1.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38BDF8;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  max-width: 76rem;
  margin: 0 auto;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.25);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
}

.bento-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-blue { background: rgba(59, 130, 246, 0.15); color: #60A5FA; }
.icon-emerald { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.icon-purple { background: rgba(168, 85, 247, 0.15); color: #C084FC; }
.icon-amber { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }

.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.bento-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.bento-graphic {
  margin-top: 1.5rem;
  background: rgba(6, 9, 15, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

/* ==========================================================================
   Mobile & Tablet Showcase
   ========================================================================== */
.mobile-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-base) 0%, rgba(14, 19, 31, 0.8) 50%, var(--bg-base) 100%);
  position: relative;
  overflow: hidden;
}

.mobile-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .mobile-grid-layout {
    grid-template-columns: 1fr;
  }
}

.app-store-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.35rem;
  background: #000000;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: #FFFFFF !important;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
}

.app-badge-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 30px -5px rgba(59, 130, 246, 0.3);
}

.app-badge-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.app-badge-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.2rem;
}

/* Realistic Phone Mockup */
.device-showcase-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.modern-phone {
  width: 300px;
  background: #06090F;
  border: 10px solid #1E293B;
  border-radius: 44px;
  box-shadow: 0 30px 80px -15px rgba(37, 99, 235, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.phone-top-island {
  width: 90px;
  height: 20px;
  background: #0F172A;
  border-radius: 9999px;
  margin: 8px auto 0 auto;
}

.phone-inner-screen {
  padding: 1.25rem;
  background: #FFFFFF;
  color: #0F172A;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floating-kiosk-pill {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: rgba(14, 19, 31, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: floatKiosk 4s ease-in-out infinite alternate;
}

@keyframes floatKiosk {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   Planes y Precios (Modern SaaS Pricing)
   ========================================================================== */
.pricing-section {
  padding: 6rem 1.5rem;
  position: relative;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 58rem;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .pricing-cards-container {
    grid-template-columns: 1fr;
  }
}

.modern-pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-free:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.pricing-card-pro {
  background: linear-gradient(160deg, #0F172A 0%, #151D2F 100%);
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.35), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.pricing-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #10B981);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.pricing-card-pro:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -15px rgba(37, 99, 235, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.4);
}

.pricing-badge-hot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0 0.5rem 0;
}

.pricing-big-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}

.pricing-period-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin: 2rem 0;
}

.pricing-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.check-bullet {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 6rem 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.modern-faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.modern-faq-item.active {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(14, 19, 31, 0.9);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.modern-faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.modern-faq-item.active .faq-drawer {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Final Radiant CTA Banner
   ========================================================================== */
.radiant-cta-wrapper {
  padding: 6rem 1.5rem;
  position: relative;
  text-align: center;
}

.radiant-cta-card {
  max-width: 68rem;
  margin: 0 auto;
  padding: 5rem 2rem;
  background: radial-gradient(circle at 50% 0%, #1E3A8A 0%, #0F172A 75%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px -20px rgba(37, 99, 235, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.radiant-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.radiant-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 46rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.radiant-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 36rem;
  margin: 1.25rem auto 2.5rem auto;
  position: relative;
  z-index: 2;
}

.radiant-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Modern Footer
   ========================================================================== */
.modern-footer {
  background: #030509;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 1.5rem 2.5rem 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 76rem;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand-logo {
  height: 2.25rem;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-desc {
  color: var(--text-subtle);
  line-height: 1.6;
  max-width: 22rem;
}

.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: #34D399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  margin-top: 1.25rem;
}

.footer-col-header {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-anchor {
  color: var(--text-muted);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-anchor:hover {
  color: #38BDF8;
  transform: translateX(3px);
}

.footer-bottom-bar {
  max-width: 76rem;
  margin: 3.5rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-subtle);
  font-size: 0.825rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Toast Floating Notification */
.app-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 28rem;
  background: rgba(14, 19, 31, 0.95);
  color: #F8FAFC;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.app-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.app-toast-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.app-toast-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.app-toast-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #CBD5E1;
}

.app-toast-text strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.app-toast-close {
  color: #94A3B8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s;
}

.app-toast-close:hover {
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .app-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100% - 2rem);
  }
}
