/* landing.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #050811;      /* Deep dark slate */
  --bg-secondary: #0c101b;    /* Cards / panels background */
  --bg-tertiary: #131826;     /* Input fields / highlight cards */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --primary: #4ee000;         /* Vibrant Neon Green */
  --primary-hover: #42c200;
  --primary-glow: rgba(78, 224, 0, 0.15);
  --primary-glow-heavy: rgba(78, 224, 0, 0.35);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(78, 224, 0, 0.2);
  --border-focus: rgba(78, 224, 0, 0.4);
  
  --glass-bg: rgba(12, 16, 27, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(78, 224, 0, 0.12);
  --shadow-glow-heavy: 0 0 45px rgba(78, 224, 0, 0.25);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* Base resets & theme setting */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar Customization */
::-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(--bg-tertiary);
}

/* Ambient Glowing Background Orbs */
.ambient-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  mix-blend-mode: screen;
}

.orb-1 {
  background: var(--primary);
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation: floatOrb 20s infinite ease-in-out;
}

.orb-2 {
  background: #0088ff;
  width: 600px;
  height: 600px;
  top: 30%;
  left: -200px;
  animation: floatOrb 25s infinite ease-in-out alternate;
}

.orb-3 {
  background: var(--primary);
  width: 450px;
  height: 450px;
  bottom: 10%;
  right: -100px;
  animation: floatOrb 18s infinite ease-in-out;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(78, 224, 0, 0.1));
}

/* Helper Buttons & Styling classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary);
  color: #000000;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 20px rgba(78, 224, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(78, 224, 0, 0.4);
}

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

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

.btn-outline-glow {
  background-color: rgba(78, 224, 0, 0.03);
  color: var(--primary);
  border: 1px solid rgba(78, 224, 0, 0.3);
  box-shadow: inset 0 0 10px rgba(78, 224, 0, 0.01);
}

.btn-outline-glow:hover {
  background-color: rgba(78, 224, 0, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(78, 224, 0, 0.2), inset 0 0 10px rgba(78, 224, 0, 0.05);
}

/* Layout section common container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 10;
}

section {
  padding: 100px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

/* STICKY GLASSMORPHIC HEADER */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.app-header.scrolled {
  background-color: rgba(5, 8, 17, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(78, 224, 0, 0.2));
  transition: var(--transition-smooth);
}

.app-header.scrolled .logo-img {
  height: 42px;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--primary);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Nav Toggle Icon */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* KILLER HERO SECTION */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: rgba(78, 224, 0, 0.05);
  border: 1px solid rgba(78, 224, 0, 0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(78, 224, 0, 0.05);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

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

.hero-stat-val {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-stat-val span {
  color: var(--primary);
}

.hero-stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* HERO INTERACTIVE SIGNATURE DEMO PREVIEWER */
.hero-visual {
  position: relative;
  z-index: 10;
}

.visual-glow-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(78, 224, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.interactive-mockup {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: var(--transition-smooth);
}

.interactive-mockup:hover {
  border-color: rgba(78, 224, 0, 0.15);
  box-shadow: var(--shadow-lg), var(--shadow-glow-heavy);
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.mockup-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(78, 224, 0, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #eab308; }
.mockup-dot.green { background-color: #22c55e; }

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.demo-input-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.demo-input {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.demo-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(78, 224, 0, 0.15);
}

.demo-preview-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* MOCKUP SIGNATURE DISPLAY LAYOUT */
.sig-demo-layout {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  color: #333333;
  font-size: 13px;
  text-align: left;
}

.sig-demo-table {
  border-collapse: collapse;
  width: 100%;
}

.sig-demo-cell-left {
  width: 80px;
  vertical-align: top;
  padding-right: 15px;
}

.sig-demo-logo {
  display: block;
  width: 75px;
  height: auto;
}

.sig-demo-cell-right {
  vertical-align: top;
  border-left: 2px solid #4ee000;
  padding-left: 15px;
}

.sig-demo-name {
  font-size: 16px;
  font-weight: 700;
  color: #0c101b;
  margin: 0 0 2px 0;
  line-height: 1.2;
}

.sig-demo-title {
  font-size: 12px;
  font-weight: 600;
  color: #666666;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.sig-demo-info-row {
  margin: 2px 0;
  color: #444444;
  font-size: 11px;
}

.sig-demo-info-row strong {
  color: #4ee000;
}

/* PREMIUM FEATURE CARDS WITH GLOW EFFECTS */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* CSS Radial border glow on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(78, 224, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 224, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(78, 224, 0, 0.05);
}

.feature-card:hover::before {
  background: radial-gradient(circle at 50% 0%, rgba(78, 224, 0, 0.08) 0%, transparent 65%);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(78, 224, 0, 0.04);
  border: 1px solid rgba(78, 224, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
  box-shadow: inset 0 0 10px rgba(78, 224, 0, 0.02);
}

.feature-card:hover .feature-icon-wrapper {
  background: rgba(78, 224, 0, 0.1);
  border-color: rgba(78, 224, 0, 0.2);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(78, 224, 0, 0.15);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* HOW IT WORKS TIMELINE */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 40px;
}

/* Linear connector line behind step points */
.timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color) 15%, var(--border-color) 85%, transparent);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-container {
  width: 60px;
  height: 60px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-number-container {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(78, 224, 0, 0.2);
  transform: scale(1.05);
}

.step-number-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 0 12px var(--primary);
}

.timeline-step:hover .step-number-glow {
  opacity: 0.3;
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.timeline-step p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 280px;
}

/* INTERACTIVE PRICING SECTION */
.pricing-calculator {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
}

.calculator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.calculator-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calculator-title h3 {
  font-size: 22px;
}

.calculator-title p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Custom Currency / Billing Toggle Switch */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 30px;
}

.toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-label.active {
  color: var(--primary);
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: .4s;
  border-radius: 20px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-secondary);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch-slider {
  background-color: rgba(78, 224, 0, 0.1);
  border-color: var(--primary);
}

input:checked + .switch-slider:before {
  transform: translateX(18px);
  background-color: var(--primary);
}

/* User Estimator Range Slider */
.slider-group {
  margin-bottom: 45px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.slider-val-display {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
  background: rgba(78, 224, 0, 0.05);
  border: 1px solid rgba(78, 224, 0, 0.12);
  padding: 2px 10px;
  border-radius: 4px;
}

.pricing-slider-container {
  position: relative;
  width: 100%;
}

.pricing-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--bg-primary);
  outline: none;
  border: 1px solid var(--border-color);
}

/* Custom styled slider thumb */
.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-secondary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: var(--transition-fast);
}

.pricing-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px var(--primary);
}

.pricing-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-secondary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: var(--transition-fast);
}

.pricing-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px var(--primary);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 5px;
}

.slider-tick {
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
}

.slider-tick.active {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Plan Cards Deck */
.plans-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

/* Highlighted Popular Plan */
.plan-card.highlighted {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 25px rgba(78, 224, 0, 0.05);
}

/* Visual Moving Glow Border or Overlay */
.plan-card.highlighted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(78, 224, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(78, 224, 0, 0.25);
}

.plan-header {
  margin-bottom: 25px;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-price-group {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.plan-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 2px;
}

.plan-price {
  font-size: 38px;
  font-weight: 700;
  font-family: var(--font-title);
  line-height: 1.2;
}

.plan-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 12px;
}

/* Feature checklist limits list */
.plan-features {
  list-style: none;
  margin-bottom: 35px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.plan-feature-item svg {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Grayed out disabled items in plan */
.plan-feature-item.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.55;
}

.plan-feature-item.disabled svg {
  color: var(--text-muted);
}

.plan-feature-item strong {
  color: var(--text-primary);
}

.plan-feature-item.disabled strong {
  color: var(--text-muted);
}

.plan-action-btn {
  width: 100%;
}

/* MODERN FAQ ACCORDIONS */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  border-color: var(--border-glow);
  box-shadow: 0 0 20px rgba(78, 224, 0, 0.03);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.faq-question-btn span {
  padding-right: 15px;
}

.faq-icon-arrow {
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180px);
  color: var(--primary);
}

/* Smooth Accordion expand height */
.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer {
  padding: 0 30px 24px 30px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* CTA WRAPPER BANNER */
.cta-section {
  position: relative;
  z-index: 10;
}

.cta-banner-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(78, 224, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-wrapper h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-banner-wrapper p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 30px auto;
  font-size: 15px;
}

/* FOOTER STYLINGS */
.app-footer {
  background: #03050a;
  border-top: 1px solid var(--border-color);
  padding: 50px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(78, 224, 0, 0.15));
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-copy span {
  color: var(--primary);
}

/* GLASSMORPHISM INTERACTIVE LOGIN MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.login-modal {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 40px 30px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
  position: relative;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.login-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-modal-logo {
  height: 48px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(78, 224, 0, 0.25));
}

.login-modal-header h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.login-modal-header p {
  color: var(--text-secondary);
  font-size: 13px;
}

/* User Type Tab Switcher inside Login */
.login-tabs {
  display: flex;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 25px;
}

.login-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.login-tab-btn.active {
  background: var(--bg-tertiary);
  color: var(--primary);
  border: 1px solid rgba(78, 224, 0, 0.12);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

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

.form-field-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-input-wrapper {
  position: relative;
}

.form-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.form-field-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 14px 12px 42px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-fast);
}

.form-field-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(78, 224, 0, 0.15);
  background-color: var(--bg-tertiary);
}

.login-btn {
  width: 100%;
  margin-top: 10px;
}

.form-error-msg {
  font-size: 12px;
  color: #ef4444;
  line-height: 1.4;
  margin-top: -10px;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* REGISTRATION PAGE SPECIFIC STYLES (`register.html`) */
.register-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.register-main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px 20px;
  position: relative;
  z-index: 10;
}

.register-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.register-card-header {
  text-align: center;
  margin-bottom: 30px;
}

.register-card-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.register-card-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.register-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.register-form-grid.full-width {
  grid-template-columns: 1fr;
}

.register-form-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  grid-column: span 2;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 6px;
  margin-top: 10px;
}

.register-form-grid.full-width .register-form-section-title {
  grid-column: span 1;
}

/* Small visual summary cards of selected plan */
.selected-plan-summary {
  grid-column: span 2;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.selected-plan-summary.highlighted {
  border-color: rgba(78, 224, 0, 0.3);
  background-color: rgba(78, 224, 0, 0.02);
}

.selected-plan-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.selected-plan-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

.selected-plan-price {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* REGISTRATION SUCCESS STATE */
.register-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-secondary);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.success-icon-checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(78, 224, 0, 0.1);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 15px rgba(78, 224, 0, 0.3));
  transform: scale(0.5);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.register-success-overlay.active .success-icon-checkmark {
  transform: scale(1);
}

.success-icon-checkmark svg {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: draw-checkmark 0.8s ease forwards 0.3s;
}

@keyframes draw-checkmark {
  to { stroke-dashoffset: 0; }
}

.success-setup-loader {
  width: 280px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.success-setup-status {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-setup-progress-track {
  height: 4px;
  background-color: var(--bg-primary);
  border-radius: 4px;
  overflow: hidden;
}

.success-setup-progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  border-radius: 4px;
}

/* REGISTRATION ENHANCEMENTS & ACTIONS */
.input-pw-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-pw-wrapper input {
  padding-right: 42px !important;
}
.input-pw-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s;
}
.input-pw-toggle:hover {
  color: var(--text-primary);
}
.pw-strength-container {
  margin-top: 6px;
  margin-bottom: 4px;
}
.pw-strength-bar {
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.pw-strength-fill {
  height: 100%;
  width: 0%;
  background: #ef4444;
  transition: width 0.3s ease, background 0.3s ease;
}
.pw-strength-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.form-error-msg {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease;
}
.onboarding-completion-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}
.onboarding-tenant-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
}
.onboarding-tenant-summary strong {
  color: var(--text-primary);
}
.onboarding-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.btn-launch-dashboard {
  background: var(--primary);
  color: #070a13 !important;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(78, 224, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-launch-dashboard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 224, 0, 0.4);
}
.btn-view-welcome-email {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-view-welcome-email:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* WELCOME EMAIL MODAL */
.email-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.email-modal-card {
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.email-modal-header {
  background: #0f172a;
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1e293b;
}
.email-modal-header h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}
.email-modal-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  font-size: 20px;
  transition: color 0.2s;
}
.email-modal-close:hover {
  color: #ffffff;
}
.email-modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
  background: #f8fafc;
}
.email-modal-iframe {
  width: 100%;
  height: 520px;
  border: none;
  background: #ffffff;
}

/* RESPONSIVE LAYOUTS - MOBILE & TABLET MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .plans-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(5, 8, 17, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    padding: 40px;
    gap: 30px;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .header-actions .btn-outline-glow {
    display: none; /* Hide header Launch App button on mobile to save space */
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .timeline::after {
    display: none; /* Hide linear timeline line on mobile */
  }
  
  .calculator-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .pricing-calculator {
    padding: 24px;
  }
  
  .register-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .register-form-section-title {
    grid-column: span 1;
  }
  
  .selected-plan-summary {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
