/* 
  Keloo POS Landing Page - Stylesheet
  Elite Gaming Cafe, Console, & Snooker Lounge POS
  Design: Minimalist Cyber Dark / Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Core Palette */
  --bg-primary: #0F0F1A;     /* Deep Obsidian Indigo background */
  --bg-secondary: #16162A;   /* Slightly lighter Obsidian for depth */
  --bg-tertiary: #1F1F3D;    /* Cards & element backgrounds */
  --accent-purple: #7B2CBF;  /* Glowing Cyber Purple */
  --accent-purple-glow: rgba(123, 44, 191, 0.25);
  --accent-purple-bright: #9D4EDD;
  --accent-mint: #00F5D4;    /* Vibrant Mint Green */
  --accent-mint-glow: rgba(0, 245, 212, 0.25);
  --accent-mint-dark: #00BFA6;
  --text-main: #F1F5F9;      /* Crisp slate white */
  --text-muted: #94A3B8;     /* Slate grey */
  --text-dim: #64748B;       /* Dark slate grey for borders/captions */
  
  /* Status Colors */
  --status-active: #00F5D4;
  --status-paused: #F97316;
  --status-overtime: #EF4444;
  
  /* Utility */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-mint: rgba(0, 245, 212, 0.2);
  --border-purple: rgba(123, 44, 191, 0.3);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

/* Typography styling */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Ambient Radial Glow Backdrops */
.ambient-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.glow-top-right {
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
}

.glow-center-left {
  top: 40%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.4) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.25) 0%, transparent 70%);
}

/* BUTTONS & LINKS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-mint-dark) 100%);
  color: #051410;
  box-shadow: 0 4px 20px var(--accent-mint-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 245, 212, 0.4);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-purple);
  box-shadow: 0 4px 12px var(--accent-purple-glow);
}

.btn-outline-purple:hover {
  background: var(--accent-purple-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(123, 44, 191, 0.4);
}

/* Pulse Mint Animation for CTAs */
.pulse-btn {
  animation: pulse-mint-shadow 2.5s infinite;
}

@keyframes pulse-mint-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 245, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0);
  }
}

/* STICKY NAVIGATION HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
  padding: 1.5rem 0;
}

.header.scrolled {
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  letter-spacing: -0.03em;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-mint);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-mint);
}

/* HERO SECTION */
.hero {
  padding-top: 10.5rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(123, 44, 191, 0.12);
  border: 1px solid var(--border-purple);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  color: var(--accent-mint);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.1);
}

.badge svg {
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-purple-bright) 10%, var(--accent-mint) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.hero-trust-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.hero-trust-item svg {
  color: var(--accent-mint);
  width: 14px;
  height: 14px;
}

/* Glassmorphic Interactive Dashboard Preview Container */
.dashboard-preview {
  position: relative;
  z-index: 10;
}

.dashboard-glass {
  background: rgba(22, 22, 42, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.dashboard-glass::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--border-purple), transparent, var(--border-mint));
  z-index: -1;
  pointer-events: none;
}

.db-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.db-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.db-live-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 245, 212, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  color: var(--accent-mint);
  font-size: 0.75rem;
  font-weight: 600;
}

.db-live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-mint);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.station-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.station-card {
  background: rgba(31, 31, 61, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.station-card:hover {
  transform: translateX(4px);
  background: rgba(31, 31, 61, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.station-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.station-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.station-status-wrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.station-status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.station-timer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.timer-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.timer-count {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.station-billing-wrapper {
  text-align: right;
}

.billing-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  display: block;
}

.billing-amount {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Card State Specifics */
/* Card 1: Active Play */
.card-active {
  border-left: 3px solid var(--status-active);
}
.card-active .status-indicator {
  background-color: var(--status-active);
  box-shadow: 0 0 8px var(--status-active);
}
.card-active .timer-count {
  color: var(--status-active);
}

/* Card 2: Paused Play */
.card-paused {
  border-left: 3px solid var(--status-paused);
}
.card-paused .status-indicator {
  background-color: var(--status-paused);
  box-shadow: 0 0 8px var(--status-paused);
}
.card-paused .timer-count {
  color: var(--status-paused);
}

/* Card 3: Overtime warning */
.card-overtime {
  border-left: 3px solid var(--status-overtime);
  animation: overtime-border-pulse 2s infinite alternate;
}
.card-overtime .status-indicator {
  background-color: var(--status-overtime);
  animation: alarm-pulse 0.8s infinite alternate;
}
.card-overtime .timer-count {
  color: var(--status-overtime);
  animation: text-pulse 0.8s infinite alternate;
}

@keyframes overtime-border-pulse {
  0% { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 0 5px rgba(239, 68, 68, 0.1); }
  100% { border-color: var(--status-overtime); box-shadow: 0 0 15px rgba(239, 68, 68, 0.25); }
}

@keyframes alarm-pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 2px var(--status-overtime); }
  100% { transform: scale(1.3); box-shadow: 0 0 10px var(--status-overtime); }
}

@keyframes text-pulse {
  0% { opacity: 0.75; }
  100% { opacity: 1; }
}

/* PROBLEM & SOLUTION SECTION */
.problems {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-purple-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.6rem;
  max-width: 700px;
  margin: 0 auto 1.2rem auto;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.problem-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-purple), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 44, 191, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.problem-header {
  margin-bottom: 1.5rem;
}

.problem-tag {
  color: #EF4444;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.problem-tag svg {
  width: 14px;
  height: 14px;
}

.problem-title {
  font-size: 1.4rem;
  color: var(--text-main);
  font-weight: 750;
}

.problem-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.solution-box {
  margin-top: auto;
  background: rgba(0, 245, 212, 0.04);
  border: 1px dashed rgba(0, 245, 212, 0.2);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  transition: var(--transition-normal);
}

.problem-card:hover .solution-box {
  background: rgba(0, 245, 212, 0.06);
  border-color: var(--accent-mint);
}

.solution-tag {
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.solution-tag svg {
  width: 14px;
  height: 14px;
}

.solution-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* CORE FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  background: rgba(22, 22, 42, 0.8);
}

.feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(123, 44, 191, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-bright);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(123, 44, 191, 0.2);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  color: var(--accent-mint);
  background: rgba(0, 245, 212, 0.1);
  border-color: var(--accent-mint-glow);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* REMOTE MONITORING SECTION (OWNER DASHBOARD) */
.remote-monitoring {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.remote-grid {
  display: grid;
  grid-template-columns: 0.90fr 1.10fr;
  gap: 6rem;
  align-items: center;
}

/* Stunning Pure CSS Mock Mobile Frame */
.mockup-column {
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-column::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.phone-mockup {
  position: relative;
  z-index: 5;
  width: 290px;
  height: 580px;
  background: #000;
  border: 11px solid #1c1c24;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8),
              0 0 0 2px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Phone top speaker & camera cutout */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #1c1c24;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 100;
}

.phone-notch::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 35px;
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 40px;
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 25px;
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
  border: 1px solid #222;
}

/* Phone screen content area */
.phone-screen {
  flex: 1;
  background: var(--bg-primary);
  padding: 2.2rem 1.15rem 1.5rem 1.15rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 1.1rem;
  font-size: 0.85rem;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.6rem;
  margin-top: 0.5rem;
}

.phone-logo {
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.phone-logo-dot {
  width: 4px;
  height: 4px;
  background: var(--accent-mint);
  border-radius: 50%;
}

.phone-user-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Phone Dashboard Metrics */
.phone-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.phone-card {
  background: rgba(22, 22, 42, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 0.9rem;
}

.phone-card-glow-mint {
  border-color: var(--border-mint);
  box-shadow: 0 4px 15px rgba(0, 245, 212, 0.05);
}

.phone-card-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.phone-card-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.phone-card-val-accent {
  color: var(--accent-mint);
}

.phone-card-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.phone-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phone-list-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.phone-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22, 22, 42, 0.4);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 0.7rem;
}

.phone-item-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phone-item-indicator {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-mint);
}

.phone-item-name {
  font-weight: 600;
  font-size: 0.75rem;
}

.phone-item-right {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Interactive updates transitions */
.value-update-transition {
  animation: value-flash 1s ease-out;
}

@keyframes value-flash {
  0% { color: var(--accent-mint); transform: scale(1.05); }
  100% { color: inherit; transform: scale(1); }
}

/* Remote Copy Column styling */
.remote-copy {
  display: flex;
  flex-direction: column;
}

.remote-title {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}

.remote-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  list-style: none;
}

.remote-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.bullet-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: rgba(123, 44, 191, 0.1);
  border: 1px solid rgba(123, 44, 191, 0.2);
  color: var(--accent-purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullet-icon svg {
  width: 18px;
  height: 18px;
}

.bullet-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bullet-heading {
  font-weight: 750;
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.3;
}

.bullet-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  z-index: 1;
}

/* 3-column card grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

/* Base card */
.pricing-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 44, 191, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

/* Badge (top-right corner pill) */
.pricing-card-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.no-cc-badge {
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid var(--border-mint);
  color: var(--accent-mint);
}

.popular-badge {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.3), rgba(157, 78, 221, 0.2));
  border: 1px solid var(--border-purple);
  color: var(--accent-purple-bright);
}

/* Plan label */
.pricing-plan-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Price block */
.pricing-price-block {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.pricing-amount {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-per {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-bottom: 0.45rem;
}

.pricing-billing-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* Feature list */
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 500;
}

.pricing-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent-mint);
}

.pricing-check-popular {
  color: var(--accent-purple-bright);
}

/* Excluded feature (crossed out) */
.pricing-feature-excluded {
  color: var(--text-dim);
}

.pricing-x {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: var(--text-dim);
}

/* CTA button inside card (full width) */
.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* ── MOST POPULAR card ── */
.pricing-card-popular {
  background: rgba(20, 15, 40, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(157, 78, 221, 0.45);
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.15),
    0 20px 50px rgba(123, 44, 191, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: popular-glow-pulse 3s ease-in-out infinite;
  transform: translateY(-8px); /* elevate slightly vs siblings */
}

.pricing-card-popular:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 0 1px rgba(157, 78, 221, 0.5),
    0 30px 60px rgba(123, 44, 191, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes popular-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(157, 78, 221, 0.25),
      0 20px 50px rgba(123, 44, 191, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(157, 78, 221, 0.55),
      0 20px 60px rgba(123, 44, 191, 0.35),
      0 0 30px rgba(157, 78, 221, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.pricing-card-popular .pricing-plan-label {
  color: var(--accent-purple-bright);
}

.pricing-card-popular .pricing-amount,
.pricing-card-popular .pricing-currency {
  background: linear-gradient(135deg, var(--accent-purple-bright) 0%, var(--accent-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-card-popular .pricing-feature-item {
  color: var(--text-main);
}

/* ── Scroll-reveal animation ── */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children delay */
.reveal-card:nth-child(1) { transition-delay: 0s; }
.reveal-card:nth-child(2) { transition-delay: 0.12s; }
.reveal-card:nth-child(3) { transition-delay: 0.24s; }

/* ── Addons row ── */
.pricing-addons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.addon-pill {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2rem;
  transition: var(--transition-normal);
}

.addon-pill:hover {
  border-color: var(--border-mint);
  box-shadow: 0 8px 24px rgba(0, 245, 212, 0.08);
  transform: translateY(-3px);
}

.addon-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--border-radius-sm);
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid var(--border-mint);
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-icon svg {
  width: 18px;
  height: 18px;
}

.addon-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.addon-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.addon-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.addon-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.addon-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-mint);
}

.addon-period {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── Popular card offset fix in addon stagger ── */
/* addon pills get stagger relative to their own parent */
.pricing-addons .reveal-card:nth-child(1) { transition-delay: 0.3s; }
.pricing-addons .reveal-card:nth-child(2) { transition-delay: 0.42s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-popular {
    transform: translateY(0);
    order: -1; /* show most popular first on mobile */
  }

  .pricing-card-popular:hover {
    transform: translateY(-6px);
  }

  .pricing-addons {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    max-width: 100%;
  }

  .pricing-addons {
    max-width: 100%;
  }

  .addon-pill {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .addon-price {
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
}

/* 15-DAY FREE TRIAL BANNER SECTION */
.trial-cta {
  z-index: 2;
  overflow: hidden;
}

.trial-banner {
  background: radial-gradient(circle at top right, #1F1138 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-purple);
  border-radius: var(--border-radius-xl);
  padding: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(123, 44, 191, 0.15);
}

.trial-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent-purple-glow) 0%, transparent 60%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.trial-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  margin: 0 auto;
}

.trial-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trial-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Perks Check Grid */
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 0 auto 3.5rem auto;
  max-width: 620px;
  text-align: left;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
}

.perk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(0, 245, 212, 0.12);
  color: var(--accent-mint);
  flex-shrink: 0;
}

.perk-check svg {
  width: 12px;
  height: 12px;
}

/* CONCISE ACCORDION FAQ SECTION */
.faq {
  z-index: 1;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item[open] {
  border-color: var(--border-purple);
  box-shadow: 0 10px 25px var(--accent-purple-glow);
}

.faq-question {
  padding: 1.6rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none; /* Hide default summary arrow */
  user-select: none;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent-mint);
}

/* Modern SVG arrow rotating on open */
.faq-icon-arrow {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
}

.faq-question:hover .faq-icon-arrow {
  color: var(--accent-mint);
}

.faq-item[open] .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--accent-mint);
}

.faq-answer {
  padding: 0 2rem 1.6rem 2rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1rem;
  border-top: 1px solid transparent;
  transition: var(--transition-normal);
}

.faq-item[open] .faq-answer {
  border-color: rgba(255, 255, 255, 0.05);
}

/* FOOTER SECTION */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 3rem 0;
  background-color: var(--bg-primary);
  font-size: 0.92rem;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  max-width: 280px;
  line-height: 1.55;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-nav-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-mint);
}

.footer-badge-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.nextgen-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 245, 212, 0.06);
  border: 1px solid var(--border-mint);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-mint);
}

.nextgen-badge svg {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ============================================================
   HAMBURGER NAV & MOBILE DRAWER
   ============================================================ */

/* Desktop CTA visible, hamburger hidden by default */
.nav-cta-mobile { display: none; }
.nav-cta-desktop { display: inline-flex; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  padding: 0;
  z-index: 1100;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-mint);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animated X state */
.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* ── 1024px: tablet ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-list {
    justify-content: center;
  }

  .remote-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .mockup-column {
    order: 2;
  }

  .remote-copy {
    order: 1;
    text-align: center;
  }

  .remote-bullets {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Pricing: single column on tablet */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card-popular {
    transform: translateY(0);
    order: -1;
  }

  .pricing-card-popular:hover {
    transform: translateY(-6px);
  }

  .pricing-addons {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── 768px: mobile ── */
@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }

  /* ── Hamburger visible; desktop nav hidden ── */
  .nav-hamburger {
    display: flex;
  }

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

  /* Nav menu becomes full-screen slide-down drawer */
  .nav-menu {
    display: flex;                       /* override the old "display:none" */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    z-index: 1050;
    transform: translateX(100%);         /* hidden off-screen */
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu li {
    border-bottom: 1px solid var(--border-light);
  }

  .nav-menu li:last-child {
    border-bottom: none;
    margin-top: 1.5rem;
  }

  .nav-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
  }

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

  /* ── Hero ── */
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-list {
    flex-direction: column;
    gap: 0.55rem;
    align-items: center;
  }

  /* ── Dashboard preview ── */
  .dashboard-glass {
    padding: 1.3rem;
  }

  .station-card {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .station-billing-wrapper {
    text-align: right;
  }

  /* ── Section typography ── */
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* ── Problems grid ── */
  .problem-grid {
    grid-template-columns: 1fr;
  }

  /* ── Features grid ── */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  /* ── Remote monitoring ── */
  .remote-title {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 260px;
    height: 520px;
  }

  /* ── Pricing ── */
  .pricing-grid {
    max-width: 100%;
  }

  .pricing-addons {
    max-width: 100%;
  }

  .pricing-amount {
    font-size: 3.2rem;
  }

  .addon-pill {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  /* ── Trial banner ── */
  .trial-banner {
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius-lg);
  }

  .trial-title {
    font-size: 2rem;
  }

  .trial-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .perks-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 320px;
    margin-bottom: 2.5rem;
  }

  /* ── FAQ ── */
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  /* ── Footer ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ── 480px: small phone ── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  section {
    padding: 4rem 0;
  }

  /* ── Hero ── */
  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.025em;
  }

  .badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
  }

  /* ── Features grid: 1 column on tiny screens ── */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* ── Section header ── */
  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* ── Pricing card ── */
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-amount {
    font-size: 2.8rem;
  }

  .pricing-currency {
    font-size: 1.3rem;
  }

  /* ── Addon pill: stack vertically ── */
  .addon-pill {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem;
  }

  .addon-price {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  /* ── Trial ── */
  .trial-title {
    font-size: 1.75rem;
  }

  /* ── Phone mockup: hide on very small screens (it's decorative) ── */
  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  /* ── FAQ ── */
  .faq-question {
    font-size: 0.95rem;
  }

  /* ── Remote copy ── */
  .remote-title {
    font-size: 1.75rem;
  }

  /* ── Footer ── */
  .footer {
    padding: 3.5rem 0 2rem;
  }
}

