/* =============================================================================
   QUANT RESEARCH DECODED - Stylesheet
   ============================================================================= */

:root {
  --bg-primary: #e8eef5;
  --bg-secondary: #f4f7fb;
  --bg-card: rgba(255, 255, 255, 0.85);
  --accent-primary: #0a2463;
  --accent-secondary: #1e5aa8;
  --accent-tertiary: #3d8bd4;
  --accent-glow: rgba(61, 139, 212, 0.4);
  --text-primary: #0a2463;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --particle-blue: #1e5aa8;
  --particle-cyan: #4fc3dc;
  --particle-teal: #20b2aa;
  --border-light: rgba(10, 36, 99, 0.1);
  --shadow-soft: 0 8px 32px rgba(10, 36, 99, 0.08);
  --shadow-glow: 0 0 60px rgba(61, 139, 212, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}


html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #dce5f0 100%);
  color: var(--text-primary);
}

/* Mobile scroll fix - let body scroll naturally */
@media (max-width: 768px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* =============================================================================
   Particle Canvas Background
   ============================================================================= */

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =============================================================================
   Main Container
   ============================================================================= */

.app-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Mobile: let app container flow naturally */
@media (max-width: 768px) {
  .app-container {
    height: auto;
    min-height: 100vh;
  }
}

/* =============================================================================
   Header
   ============================================================================= */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.2px;
  color: var(--accent-primary);
}

.logo-subtext {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* =============================================================================
   Navigation Tabs
   ============================================================================= */

.nav-tabs-custom {
  display: flex;
  gap: 4px;
  background: rgba(10, 36, 99, 0.05);
  padding: 4px;
  border-radius: 12px;
  border: none;
}

.nav-tab {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}

.nav-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-tab span {
  position: relative;
  z-index: 1;
}

.nav-tab:hover {
  color: var(--accent-primary);
}

.nav-tab.active {
  color: white;
  box-shadow: 0 4px 20px rgba(10, 36, 99, 0.3);
}

.nav-tab.active::before {
  opacity: 1;
}

/* =============================================================================
   Status Indicator
   ============================================================================= */

.status-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(32, 178, 170, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(32, 178, 170, 0.3);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--particle-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(32, 178, 170, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(32, 178, 170, 0); }
}

.status-text {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--particle-teal);
  letter-spacing: 0.5px;
}

/* =============================================================================
   Main Content
   ============================================================================= */

.main-content {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Mobile: remove overflow hidden to allow natural scrolling */
@media (max-width: 768px) {
  .main-content {
    overflow: visible;
    display: block;
    flex: none;
  }
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-section.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Mobile: switch to relative positioning for natural document flow */
@media (max-width: 768px) {
  .hero-section {
    position: relative;
    height: auto;
    min-height: auto;
    overflow-y: visible;
  }
  
  .hero-section.hidden {
    display: none;
  }
}

.hero-top {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-primary);
  margin-bottom: 12px;
  text-shadow: 0 4px 30px rgba(10, 36, 99, 0.15);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 50px;
  max-width: 500px;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-indicator:hover {
  transform: scale(1.1);
}

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

.scroll-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-secondary);
  letter-spacing: 1.5px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-tertiary);
  border-bottom: 2px solid var(--accent-tertiary);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(6px); }
  60% { transform: rotate(45deg) translateY(3px); }
}

/* =============================================================================
   About Section
   ============================================================================= */

.about-section {
  padding: 60px 50px 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 10%, rgba(255,255,255,0.7) 100%);
}

.about-header {
  text-align: center;
  margin-bottom: 45px;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.about-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================================================
   Feature Cards
   ============================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary), var(--particle-cyan));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-soft);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.08) 0%, rgba(61, 139, 212, 0.15) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-label {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(32, 178, 170, 0.15);
  border-radius: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--particle-teal);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.feature-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--particle-teal), #2dd4bf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.feature-cta:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(10, 36, 99, 0.3);
}

.feature-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.feature-cta:hover svg {
  transform: translateX(4px);
}

/* =============================================================================
   Tab Panels
   ============================================================================= */

.tab-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: transparent;
}

.tab-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Mobile: switch to relative positioning for natural document flow */
@media (max-width: 768px) {
  .tab-panel {
    position: relative;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .tab-panel.active {
    display: block;
  }
}

/* =============================================================================
   Panel Headers
   ============================================================================= */

.panel-header {
  margin-bottom: 30px;
}

.panel-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

.panel-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* =============================================================================
   Card Grid
   ============================================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* =============================================================================
   Indicator Cards
   ============================================================================= */

.indicator-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.indicator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary), var(--particle-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.indicator-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(61, 139, 212, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.indicator-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-soft);
  border-color: rgba(61, 139, 212, 0.15);
}

.indicator-card:hover::before {
  transform: scaleX(1);
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.08) 0%, rgba(61, 139, 212, 0.12) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.card-badge {
  padding: 5px 11px;
  background: rgba(32, 178, 170, 0.15);
  border-radius: 16px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--particle-teal);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.card-badge.premium {
  background: rgba(10, 36, 99, 0.1);
  color: var(--accent-primary);
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.card-description {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-metrics {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.metric-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Coming Soon Cards */
.indicator-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.indicator-card.coming-soon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  pointer-events: none;
  opacity: 1 !important;
}

.indicator-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
  border-color: var(--border-light);
}

.indicator-card.coming-soon:hover::before {
  transform: scaleX(0);
}

.indicator-card.coming-soon:hover::after {
  opacity: 1 !important;
}

.indicator-card.coming-soon .card-badge {
  background: rgba(113, 128, 150, 0.15);
  color: var(--text-muted);
}

/* =============================================================================
   Premium Panel Styles (Shared)
   ============================================================================= */

/* Gradient Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 195, 220, 0.4) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 90, 168, 0.3) 0%, transparent 70%);
  bottom: -50px;
  left: 5%;
  animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(32, 178, 170, 0.35) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: floatOrb3 18s ease-in-out infinite;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(61, 139, 212, 0.25) 0%, transparent 70%);
  bottom: 10%;
  right: 25%;
  animation: floatOrb4 22s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-30px, 40px) scale(1.1); }
  50% { transform: translate(20px, 60px) scale(0.95); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -30px) scale(1.15); }
  66% { transform: translate(-20px, -50px) scale(0.9); }
}

@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.2); }
}

@keyframes floatOrb4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, -20px) scale(1.1); }
  75% { transform: translate(30px, 40px) scale(0.95); }
}

/* Flowing Lines */
.flowing-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.flowing-lines svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.flow-line.line-1 {
  stroke: url(#lineGradient1);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 3s ease-out forwards, pulseLine 4s ease-in-out 3s infinite;
}

.flow-line.line-2 {
  stroke: url(#lineGradient2);
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2.5s ease-out 0.3s forwards;
  stroke-width: 1;
}

.flow-line.line-3 {
  stroke: url(#lineGradient3);
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease-out 0.6s forwards;
  stroke-width: 0.8;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.4; }
}

/* Grid Pattern */
.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(10, 36, 99, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Shared Animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =============================================================================
   Booking Panel
   ============================================================================= */

#booking-panel {
  background: linear-gradient(135deg, 
    rgba(232, 238, 245, 0.4) 0%, 
    rgba(244, 247, 251, 0.6) 30%,
    rgba(220, 229, 240, 0.5) 70%,
    rgba(232, 238, 245, 0.4) 100%);
  padding: 0;
  overflow-y: auto;
  position: relative;
}

#booking-panel.active .booking-content {
  animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

#booking-panel.active .booking-info-panel {
  animation: slideInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.booking-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  min-height: 100%;
  padding: 30px 50px;
  opacity: 0;
  transform: translateY(60px);
}

.booking-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(-40px);
}

.booking-info-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(32, 178, 170, 0.12);
  border: 1px solid rgba(32, 178, 170, 0.25);
  border-radius: 20px;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--particle-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--particle-teal);
}

.booking-info-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-primary);
  line-height: 1.1;
}

.booking-info-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.08);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.benefit-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.2px;
}

.benefit-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.booking-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 36, 99, 0.08);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.trust-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Calendly Container */
.calendly-container {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 250, 252, 0.95) 50%,
    rgba(241, 245, 249, 0.97) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 30px 100px rgba(10, 36, 99, 0.12),
    0 15px 40px rgba(10, 36, 99, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 800px;
  height: calc(100vh - 140px);
  min-height: 700px;
  max-height: 850px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.calendly-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary), var(--particle-cyan), var(--particle-teal));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.calendly-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 40px 120px rgba(10, 36, 99, 0.15),
    0 20px 50px rgba(10, 36, 99, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.calendly-container:hover::before {
  opacity: 1;
}

.calendly-inline-widget {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

/* Mobile Book Button - hidden on desktop */
.mobile-book-btn {
  display: none;
}

.booking-accent {
  position: absolute;
  bottom: 30px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.accent-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-tertiary), transparent);
  border-radius: 1px;
}

.accent-text {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* =============================================================================
   Premium Modal Styles
   ============================================================================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 36, 99, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 94%;
  max-width: 1000px;
  height: 80vh;
  max-height: 700px;
  background: linear-gradient(135deg, 
    rgba(232, 238, 245, 0.98) 0%, 
    rgba(244, 247, 251, 0.98) 30%,
    rgba(220, 229, 240, 0.98) 70%,
    rgba(232, 238, 245, 0.98) 100%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 
    0 30px 100px rgba(10, 36, 99, 0.25),
    0 15px 40px rgba(10, 36, 99, 0.15);
}

.modal-overlay.active .modal-container {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 36, 99, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 100;
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.1);
}

.modal-close:hover {
  background: white;
  border-color: rgba(10, 36, 99, 0.2);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.15);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-primary);
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.modal-close:hover svg {
  stroke: var(--accent-secondary);
}

.modal-premium-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  height: 100%;
  padding: 30px 45px;
  opacity: 0;
  transform: translateY(60px);
}

.modal-overlay.active .modal-premium-content {
  animation: slideInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.modal-info-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  transform: translateX(-40px);
  height: 100%;
  justify-content: center;
}

.modal-overlay.active .modal-info-panel {
  animation: slideInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.modal-info-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(32, 178, 170, 0.12);
  border: 1px solid rgba(32, 178, 170, 0.25);
  border-radius: 20px;
  width: fit-content;
}

.modal-info-badge span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--particle-teal);
}

.modal-info-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-primary);
  line-height: 1.1;
  margin: 0;
}

.modal-info-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.modal-info-description {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.modal-feature-item:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.08);
}

.modal-feature-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.modal-feature-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-foundation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}

.foundation-tag {
  padding: 6px 11px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(61, 139, 212, 0.05) 100%);
  border: 1px solid rgba(10, 36, 99, 0.08);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent-secondary);
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.foundation-tag:hover {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.08) 0%, rgba(61, 139, 212, 0.08) 100%);
  border-color: rgba(61, 139, 212, 0.2);
  transform: translateY(-2px);
}

.modal-main-container {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 250, 252, 0.95) 50%,
    rgba(241, 245, 249, 0.97) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 30px 100px rgba(10, 36, 99, 0.12),
    0 15px 40px rgba(10, 36, 99, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  width: 100%;
  height: calc(100% - 30px);
  min-height: 350px;
  max-height: 550px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(40px);
}

.modal-overlay.active .modal-main-container {
  animation: slideInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.modal-main-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-tertiary), var(--particle-cyan), var(--particle-teal));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-main-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 40px 120px rgba(10, 36, 99, 0.15),
    0 20px 50px rgba(10, 36, 99, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.modal-main-container:hover::before {
  opacity: 1;
}

.modal-video-section {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-container {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 220px;
  background: linear-gradient(145deg, rgba(10, 36, 99, 0.04) 0%, rgba(61, 139, 212, 0.06) 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(10, 36, 99, 0.06);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
}

.video-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--accent-secondary);
  opacity: 0.5;
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.video-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-secondary);
  opacity: 0.7;
}

.modal-subscribe-section {
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(10, 36, 99, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.modal-subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.25);
}

.modal-subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.modal-subscribe-btn:hover::before {
  left: 100%;
}

.modal-subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 36, 99, 0.35);
}

.modal-subscribe-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.modal-subscribe-btn:hover svg {
  transform: scale(1.1);
}

.modal-price {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.4px;
}

.modal-accent {
  position: absolute;
  bottom: 20px;
  left: 45px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============================================================================
   Organic Floating Particles
   ============================================================================= */

#organic-particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.organic-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: floatOrganic linear infinite;
}

.organic-particle.type-1 {
  background: radial-gradient(circle at 30% 30%, var(--particle-cyan), transparent 70%);
  filter: blur(1px);
}

.organic-particle.type-2 {
  background: radial-gradient(circle at 30% 30%, var(--particle-teal), transparent 70%);
  filter: blur(2px);
}

.organic-particle.type-3 {
  background: radial-gradient(circle at 30% 30%, var(--accent-tertiary), transparent 70%);
  filter: blur(1.5px);
}

@keyframes floatOrganic {
  0% {
    opacity: 0;
    transform: translateY(100vh) translateX(0) scale(0.5);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) translateX(var(--drift-x)) scale(1);
  }
}
/* =============================================================================
   Scrollbar
   ============================================================================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 36, 99, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(10, 36, 99, 0.3);
}

/* =============================================================================
   Responsive Styles
   ============================================================================= */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .calendly-container {
    max-width: 100%;
  }
  
  .booking-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 40px;
  }
  
  .booking-info-panel {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .booking-info-title {
    font-size: 2.2rem;
  }

  .modal-premium-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 40px;
    overflow-y: auto;
  }

  .modal-info-panel {
    max-width: 500px;
    margin: 0 auto;
    height: auto;
  }

  .modal-info-title {
    font-size: 2.2rem;
  }

  .modal-main-container {
    max-height: 500px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .header {
    padding: 16px 24px;
  }
  
  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .nav-tab {
    padding: 12px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  .panel-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .booking-content {
    padding: 24px;
  }
  
  .booking-info-title {
    font-size: 1.8rem;
  }
  
  .booking-trust {
    gap: 16px;
  }
  
  .trust-value {
    font-size: 1.2rem;
  }

  .modal-container {
    width: 96%;
    height: 90vh;
  }

  .modal-premium-content {
    padding: 24px;
  }

  .modal-info-title {
    font-size: 1.8rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
  }
  
  #booking-panel {
    overflow-y: visible;
  }
  
  .logo-section {
    gap: 12px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }
  
  .logo-subtext {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }
  
  .nav-tabs-custom {
    width: 100%;
    justify-content: center;
    padding: 4px;
    gap: 4px;
  }
  
  .nav-tab {
    padding: 10px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
  }
  
  .status-section {
    display: none;
  }
  
  .hero-top {
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .scroll-indicator {
    transform: scale(0.85);
  }
  
  .about-section {
    padding: 50px 20px 60px;
  }
  
  .about-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .about-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  
  .features-grid {
    gap: 24px;
  }
  
  .feature-card {
    padding: 24px;
    border-radius: 20px;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .feature-description {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .feature-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  
  .tab-panel {
    padding: 20px;
  }
  
  .panel-header {
    margin-bottom: 24px;
  }
  
  .panel-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .panel-description {
    font-size: 0.85rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .indicator-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .card-description {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .card-metrics {
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .metric-value {
    font-size: 1rem;
  }
  
  .booking-content {
    padding: 20px 16px 40px;
    gap: 24px;
    height: auto;
    min-height: auto;
    align-items: flex-start;
    overflow-y: visible;
  }
  
  .booking-info-panel {
    gap: 20px;
  }
  
  .booking-info-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
  
  .booking-info-subtitle {
    font-size: 0.9rem;
  }
  
  .booking-benefits {
    gap: 12px;
  }
  
  .benefit-item {
    padding: 12px 16px;
  }
  
  .benefit-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .benefit-title {
    font-size: 0.85rem;
  }
  
  .benefit-desc {
    font-size: 0.75rem;
  }
  
  .booking-trust {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .calendly-container {
    display: none;
  }
  
  .mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(10, 36, 99, 0.25);
    transition: all 0.3s ease;
  }
  
  .mobile-book-btn:active {
    transform: scale(0.98);
  }
  
  .mobile-book-btn svg {
    stroke: white;
  }
  
  .booking-accent {
    display: none;
  }
  
  .gradient-orb {
    opacity: 0.3;
  }

  .modal-container {
    width: 98%;
    height: 95vh;
    border-radius: 16px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .modal-premium-content {
    padding: 20px 16px;
    gap: 20px;
  }

  .modal-info-panel {
    gap: 16px;
  }

  .modal-info-title {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .modal-info-subtitle {
    font-size: 0.9rem;
  }

  .modal-features {
    gap: 10px;
  }

  .modal-feature-item {
    padding: 10px 14px;
  }

  .modal-feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .modal-feature-text {
    font-size: 0.8rem;
  }

  .modal-main-container {
    max-height: 400px;
    border-radius: 16px;
  }

  .modal-main-container:hover {
    transform: none;
  }

  .modal-accent {
    display: none;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .header {
    padding: 10px 12px;
    gap: 10px;
  }
  
  #booking-panel {
    overflow-y: visible;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
  }
  
  .logo-text {
    font-size: 0.8rem;
  }
  
  .logo-subtext {
    display: none;
  }
  
  .nav-tab {
    padding: 8px 10px;
    font-size: 0.65rem;
    letter-spacing: 0;
  }
  
  .hero-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .about-title {
    font-size: 1.3rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-title {
    font-size: 1.1rem;
  }
  
  .highlight-item {
    font-size: 0.8rem;
  }
  
  .panel-title {
    font-size: 1.3rem;
  }
  
  .indicator-card {
    padding: 16px;
  }
  
  .card-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .booking-content {
    padding: 16px 12px 40px;
    height: auto;
    min-height: auto;
    overflow-y: visible;
  }
  
  .booking-info-title {
    font-size: 1.3rem;
  }
  
  .mobile-book-btn {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .modal-info-title {
    font-size: 1.3rem;
  }

  .modal-subscribe-btn {
    padding: 14px 24px;
    font-size: 0.8rem;
  }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .header {
    padding: 8px 16px;
    flex-direction: row;
  }
  
  .hero-top {
    min-height: auto;
    padding: 20px;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .hero-subtitle {
    margin-bottom: 20px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .booking-content {
    grid-template-columns: 280px 1fr;
    padding: 20px;
  }
  
  .calendly-container {
    min-height: 350px;
  }

  .modal-premium-content {
    grid-template-columns: 280px 1fr;
    padding: 20px;
  }
}

/* Touch device optimizations - disable hover transforms only */
@media (hover: none) and (pointer: coarse) {
  .indicator-card:hover,
  .feature-card:hover,
  .calendly-container:hover,
  .benefit-item:hover,
  .modal-main-container:hover,
  .modal-feature-item:hover,
  .tradingview-chart-preview:hover,
  .tradingview-button:hover,
  .modal-subscribe-btn:hover,
  .foundation-tag:hover {
    transform: none !important;
  }
  
  .indicator-card:active,
  .feature-card:active {
    transform: scale(0.98);
  }
  
  .nav-tab {
    -webkit-tap-highlight-color: transparent;
  }
}

/* =============================================================================
   TradingView Preview Panel
   ============================================================================= */

.tradingview-preview-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.tradingview-chart-preview {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 250px;
  background: linear-gradient(145deg, rgba(10, 36, 99, 0.04) 0%, rgba(61, 139, 212, 0.06) 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(10, 36, 99, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tradingview-chart-preview:hover {
  transform: translateY(-4px);
  box-shadow: 
    inset 0 2px 8px rgba(10, 36, 99, 0.06),
    0 12px 32px rgba(10, 36, 99, 0.15);
}

.chart-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 36, 99, 0) 0%,
    rgba(10, 36, 99, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tradingview-chart-preview:hover .preview-overlay {
  opacity: 1;
}

.preview-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.2);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.tradingview-chart-preview:hover .preview-badge {
  transform: translateY(0);
}

.preview-badge svg {
  stroke: var(--accent-secondary);
}

.tradingview-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 4px;
}

.info-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(32, 178, 170, 0.08);
  border: 1px solid rgba(32, 178, 170, 0.2);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--particle-teal);
  letter-spacing: 0.3px;
}

.info-item svg {
  stroke: var(--particle-teal);
}

.tradingview-description {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.tradingview-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.25);
  flex-wrap: wrap;
}

.tradingview-button .button-subtitle {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  opacity: 0.9;
  margin-top: 2px;
}

.tradingview-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.tradingview-button:hover::before {
  left: 100%;
}

.tradingview-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 36, 99, 0.35);
}

.tradingview-button svg {
  transition: transform 0.3s ease;
}

.tradingview-button:hover svg {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tradingview-chart-preview {
    min-height: 200px;
  }
  
  .info-row {
    gap: 10px;
  }
  
  .tradingview-button {
    padding: 14px 24px;
    font-size: 0.8rem;
  }
}

/* =============================================================================
   Footer
   ============================================================================= */

.site-footer {
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.95) 0%, rgba(30, 90, 168, 0.95) 100%);
  padding: 40px 30px;
  position: relative;
  z-index: 10;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* Mobile footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 6px;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
}

/* =============================================================================
   Terms/Privacy Modal Styles
   ============================================================================= */

.terms-modal {
  max-width: 700px;
  height: auto;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
}

.terms-content {
  padding: 40px 50px;
}

.terms-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.terms-updated {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.terms-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.terms-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.terms-content strong {
  color: var(--accent-primary);
}

/* Mobile terms modal */
@media (max-width: 768px) {
  .terms-modal {
    width: 100% !important;
    max-height: none;
    border-radius: 0 !important;
  }
  
  .terms-content {
    padding: 30px 20px 60px;
  }
  
  .terms-content h2 {
    font-size: 1.4rem;
  }
  
  .terms-content h3 {
    font-size: 0.95rem;
  }
  
  .terms-content p {
    font-size: 0.8rem;
  }
}
