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

:root {
  --primary: #0284C7;
  --primary-hover: #0369A1;
  --secondary: #3B82F6;
  --accent-gold: #F59E0B;
  --accent-emerald: #10B981;
  --accent-purple: #8B5CF6;
  --accent-rose: #F43F5E;
  
  --bg-main: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0F172A;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border: #E2E8F0;
  --border-subtle: #F1F5F9;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 30px rgba(2, 132, 199, 0.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== CONTAINER & UTILITIES (Expanded 1340px Max Width) ===== */
.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}

img {
  max-width: 100%;
  height: auto;
}

code {
  font-family: monospace;
  background: #E0F2FE;
  color: #0369A1;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #F0F9FF;
  transform: translateY(-2px);
}

.btn-org {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0284C7;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-org:hover {
  background: #0369A1;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1340px;
  margin: 0 auto;
  padding: 14px 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--primary);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.nav-org-link {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.nav-icon {
  width: 16px;
  height: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  padding: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  gap: 12px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 15px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.16) 0%, rgba(59, 130, 246, 0.04) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: orbGlow 8s ease-in-out infinite alternate;
}

@keyframes orbGlow {
  0% { transform: scale(1) translateY(0); opacity: 0.7; }
  100% { transform: scale(1.25) translateY(-25px); opacity: 1; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  color: #0369A1;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.1);
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  35%, 100% { left: 100%; }
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, #0284C7 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== PHONE MOCKUP (HERO VISUAL) ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 320px;
  background: #0F172A;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  animation: floatPhone 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.phone-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(2, 132, 199, 0.35);
}

@keyframes floatPhone {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(0px); }
  50% { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-14px); }
}

.phone-notch {
  width: 120px;
  height: 20px;
  background: #0F172A;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: #F8FAFC;
  border-radius: 34px;
  padding: 34px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid #1E293B;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-main);
}

.phone-lang-pill {
  background: #0284C7;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 11px;
}

.mic-wave-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  position: relative;
}

.mic-btn-main {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  background: #0284C7;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  z-index: 2;
}

.mic-pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(2, 132, 199, 0.3);
  animation: pulseWave 2.2s infinite ease-out;
}

.mic-pulse.outer {
  width: 110px;
  height: 110px;
  animation-delay: 0.3s;
}

.mic-pulse.inner {
  width: 90px;
  height: 90px;
}

@keyframes pulseWave {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

.phone-transcript-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}

.transcript-tag {
  font-size: 11px;
  font-weight: 800;
  color: #0284C7;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}

.transcript-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.transcript-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.score-preview-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 12px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.score-title {
  font-size: 12px;
  font-weight: 800;
  color: #92400E;
}

.score-stars {
  font-size: 11px;
  font-weight: 800;
  color: #D97706;
}

.score-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.score-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.score-pill.green { background: #DCFCE7; color: #15803D; }
.score-pill.blue { background: #E0F2FE; color: #0369A1; }

.phone-audio-bar {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.audio-icon { color: #0284C7; width: 18px; height: 18px; }

.audio-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.audio-waveform span {
  width: 3px;
  background: #0284C7;
  border-radius: 2px;
  height: 100%;
  animation: equalize 1.2s ease-in-out infinite alternate;
}

.audio-waveform span:nth-child(1) { height: 40%; animation-duration: 0.8s; animation-delay: 0.1s; }
.audio-waveform span:nth-child(2) { height: 80%; animation-duration: 1.1s; animation-delay: 0.3s; }
.audio-waveform span:nth-child(3) { height: 100%; animation-duration: 0.9s; animation-delay: 0.2s; }
.audio-waveform span:nth-child(4) { height: 60%; animation-duration: 1.3s; animation-delay: 0.4s; }
.audio-waveform span:nth-child(5) { height: 90%; animation-duration: 0.7s; animation-delay: 0.1s; }
.audio-waveform span:nth-child(6) { height: 50%; animation-duration: 1.0s; animation-delay: 0.3s; }
.audio-waveform span:nth-child(7) { height: 75%; animation-duration: 1.2s; animation-delay: 0.5s; }

@keyframes equalize {
  0% { height: 25%; opacity: 0.5; }
  100% { height: 100%; opacity: 1; }
}

.audio-time { font-size: 11px; font-weight: 700; color: var(--text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 54px;
}

.section-header.center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #BAE6FD;
}

.feature-card:hover .feature-icon {
  transform: scale(1.12) rotate(6deg);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.icon-teal { background: #E0F2FE; color: #0284C7; }
.icon-blue { background: #EFF6FF; color: #3B82F6; }
.icon-amber { background: #FFFBEB; color: #F59E0B; }
.icon-purple { background: #F3E8FF; color: #8B5CF6; }
.icon-emerald { background: #ECFDF5; color: #10B981; }
.icon-rose { background: #FFE4E6; color: #F43F5E; }

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

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

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 90px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.step-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F0F9FF;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  font-weight: 800;
  color: #E2E8F0;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

.step-arrow {
  color: #CBD5E1;
}

/* ===== THERAPY EXERCISES SHOWCASE ===== */
.exercises-section {
  padding: 100px 0;
}

.exercises-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.exercises-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.exercises-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.exercise-pills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ex-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.ex-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ex-pill strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}

.ex-pill span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Stack cards visual */
.exercises-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.ex-stack-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.ex-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ex-card-badge.blue { background: #E0F2FE; color: #0369A1; }
.ex-card-badge.green { background: #ECFDF5; color: #047857; }

.ex-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ex-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F3E8FF;
  color: #8B5CF6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ex-avatar.blue { background: #E0F2FE; color: #0284C7; }
.ex-avatar.green { background: #DCFCE7; color: #16A34A; }

.ex-card-header h4 { font-size: 16px; font-weight: 800; }
.ex-card-header p { font-size: 13px; color: var(--text-muted); }

.ex-card-bar {
  height: 8px;
  background: #F1F5F9;
  border-radius: 4px;
  overflow: hidden;
}

.ex-card-bar div {
  height: 100%;
  background: #10B981;
  border-radius: 4px;
}

.ex-card-bar.blue div { background: #0284C7; }

/* ===== ORGANIZATIONS SPOTLIGHT ===== */
.organizations-spotlight {
  padding: 80px 0;
}

.org-banner-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: 32px;
  padding: 56px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.org-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38BDF8;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.org-banner-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.org-banner-content p {
  font-size: 17px;
  color: #94A3B8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.org-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.org-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #E2E8F0;
}

.org-feat-item svg {
  width: 20px;
  height: 20px;
  color: #38BDF8;
  flex-shrink: 0;
  margin-top: 2px;
}

.org-banner-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.org-hint {
  font-size: 13px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.org-hint svg { color: #10B981; width: 16px; height: 16px; }

.org-portal-mockup {
  background: #1E293B;
  border: 1.5px solid #334155;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.portal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #334155;
  font-weight: 800;
  font-size: 15px;
}

.portal-header svg { color: #38BDF8; }

.portal-status {
  margin-left: auto;
  background: #0284C7;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.portal-stats-row {
  display: flex;
  gap: 16px;
  margin: 20px 0;
}

.portal-stat {
  flex: 1;
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 14px;
}

.p-num {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
}

.p-lbl {
  font-size: 11px;
  color: #94A3B8;
}

.portal-code-box {
  background: #0F172A;
  border: 1px dashed #38BDF8;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #E2E8F0;
}

.portal-code-box svg { color: #38BDF8; width: 16px; height: 16px; }

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: #F59E0B;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popular-badge svg { width: 13px; height: 13px; }

.pricing-card.org {
  border-color: #0284C7;
}

.plan-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
}

.plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-main);
}

.plan-features li.disabled {
  color: #94A3B8;
}

.check-icon { color: #10B981; width: 18px; height: 18px; flex-shrink: 0; }
.x-icon { color: #94A3B8; width: 18px; height: 18px; flex-shrink: 0; }

/* ===== DOWNLOAD & CONTACT ===== */
.download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
}

.download-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.download-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.download-content p {
  font-size: 18px;
  color: #E0F2FE;
  margin-bottom: 36px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  color: #0F172A;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.store-icon { width: 28px; height: 28px; color: #0284C7; }

.store-sub { font-size: 10px; font-weight: 800; color: #64748B; display: block; text-transform: uppercase; }
.store-title { font-size: 16px; font-weight: 800; display: block; line-height: 1.1; }

.contact-section {
  padding: 90px 0;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0284C7;
}

/* ===== FOOTER ===== */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 70px 0 30px;
  border-top: 1px solid #1E293B;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer-logo img { width: 32px; height: 32px; border-radius: 6px; }

.footer-brand p { font-size: 14px; color: #94A3B8; max-width: 320px; margin-bottom: 16px; }

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1E293B;
  border: 1px solid #334155;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: #94A3B8;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: #FFFFFF; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748B;
}

/* ===== BETA TESTER MODAL ===== */
.beta-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.beta-modal-card {
  background: #FFFFFF;
  border-radius: 32px;
  max-width: 680px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.beta-modal-overlay.open .beta-modal-card {
  transform: translateY(0) scale(1);
}

.beta-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748B;
  transition: all 0.2s ease;
}

.beta-modal-close:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.beta-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.beta-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E0F2FE;
  color: #0369A1;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.beta-modal-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.beta-modal-header p {
  font-size: 14px;
  color: #64748B;
}

.beta-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-beta-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-beta-download.android {
  background: #0284C7;
  color: #FFFFFF;
}

.btn-beta-download.android:hover {
  background: #0369A1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.btn-beta-download.ios {
  background: #0F172A;
  color: #FFFFFF;
}

.btn-beta-download.ios:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.beta-invite-box {
  background: #F1F5F9;
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.beta-invite-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.beta-invite-box p {
  font-size: 12px;
  color: #64748B;
  margin-bottom: 12px;
}

.beta-form {
  display: flex;
  gap: 10px;
}

.beta-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #CBD5E1;
  font-size: 13px;
  outline: none;
}

.beta-form input:focus { border-color: #0284C7; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .org-banner-card { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .features-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .exercises-inner { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .mobile-menu.open { display: flex; }
  .hero h1 { font-size: 42px; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .org-features-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
