/* ========================================
   Skyline Innovation - Speech Check Styles
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Primary - Sky */
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  
  /* Success - Emerald */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  
  /* Neutral - Slate */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  /* Accent - Amber */
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  color: var(--slate-600);
}

.text-large {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}

.section-header p {
  margin-top: var(--space-md);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
  color: #fff;
  box-shadow: var(--shadow-md), 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 6px 20px rgba(14, 165, 233, 0.4);
}

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

.btn-secondary {
  background: #fff;
  color: var(--slate-700);
  border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
  border-color: var(--sky-300);
  color: var(--sky-600);
  background: var(--sky-50);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white {
  background: #fff;
  color: var(--sky-700);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--sky-50);
  transform: translateY(-2px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--slate-900);
}

.logo img {
  width: 44px;
  height: 44px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-menu a {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--sky-600);
  background: var(--sky-50);
}

.nav-cta {
  margin-left: var(--space-sm);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
    padding: var(--space-lg);
    background: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    border-top: 1px solid var(--slate-200);
    z-index: 1001;
    transform: translateY(-120%);
    transition: transform .25s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: var(--space-md);
    font-size: 1.125rem;
    border-bottom: 1px solid var(--slate-100);
  }

  .nav-cta {
    margin: var(--space-lg) 0 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--sky-50) 0%, #fff 40%, var(--emerald-50) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--amber-100) 0%, #fff7ed 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber-600);
  margin-bottom: var(--space-lg);
  animation: badge-float 3s ease-in-out infinite;
}

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

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--sky-500), var(--emerald-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: var(--space-md);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: var(--space-lg);
}

.hero-credibility {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding: var(--space-sm) var(--space-md);
  background: var(--sky-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sky-500);
}

.hero-credibility svg {
  flex-shrink: 0;
  color: var(--sky-600);
}

.hero-credibility span {
  font-size: 0.9375rem;
  color: var(--slate-700);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-500);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--emerald-700);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-device {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  animation: device-float 6s ease-in-out infinite;
}

@keyframes device-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.hero-device img {
  width: 100%;
  display: block;
}

/* Floating elements */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  animation: float-card 4s ease-in-out infinite;
}

.float-card-1 {
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 1s;
}

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

.float-card .metric {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--emerald-600);
}

.float-card .label {
  font-size: 0.75rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-credibility {
    justify-content: center;
    text-align: left;
  }

  .hero-visual {
    order: -1;
  }

  .float-card {
    display: none;
  }
}

/* ========================================
   PARTNERS STRIP
   ======================================== */
.partners {
  padding: var(--space-2xl) 0;
  background: #fff;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.partners-group {
  margin-bottom: var(--space-xl);
}

.partners-group:last-child {
  margin-bottom: 0;
}

.partners-group.past {
  padding-top: var(--space-lg);
  border-top: 1px dashed var(--slate-200);
}

.partners-group.past .partners-logos img {
  height: 50px;
  opacity: 0.7;
}

.partners-group.past .partners-logos img:hover {
  opacity: 0.9;
}

.partners-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
}

.partners-logos img {
  height: 50px;
  width: auto;
  opacity: 0.85;
  filter: grayscale(30%);
  transition: all var(--transition-base);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========================================
   CLINICAL CREDIBILITY SECTION
   ======================================== */
.clinical-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, #fff 0%, var(--sky-50) 100%);
}

.clinical-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.clinical-content h2 {
  margin-bottom: var(--space-md);
}

.clinical-content > p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.clinical-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.clinical-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.clinical-highlight svg {
  flex-shrink: 0;
  color: var(--emerald-500);
  margin-top: 2px;
}

.clinical-highlight .text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--slate-800);
  margin-bottom: 2px;
}

.clinical-highlight .text span {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.clinical-image {
  position: relative;
}

.clinical-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.clinical-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  background: #fff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sky-700);
  white-space: nowrap;
}

.clinical-badge svg {
  color: var(--emerald-500);
}

@media (max-width: 900px) {
  .clinical-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clinical-highlights {
    grid-template-columns: 1fr;
  }

  .clinical-highlight {
    text-align: left;
  }

  .clinical-image {
    order: -1;
    margin-bottom: var(--space-xl);
  }

  .clinical-badge {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--space-md);
  }
}

/* ========================================
   BENTO GRID
   ======================================== */
.bento-section {
  background: var(--slate-50);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.bento-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  border: 1px solid var(--slate-100);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.bento-card.span-2 {
  grid-column: span 2;
}

.bento-card.pricing {
  background: linear-gradient(135deg, var(--emerald-50) 0%, #fff 100%);
  border: 2px solid var(--emerald-500);
}

.bento-card .icon {
  width: 56px;
  height: 56px;
  background: var(--sky-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.bento-card h3 {
  margin-bottom: var(--space-sm);
}

.bento-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Pricing card specifics */
.pricing-display {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin: var(--space-lg) 0;
}

.pricing-display .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--emerald-600);
}

.pricing-display .amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--emerald-700);
  line-height: 1;
}

.pricing-display .period {
  font-size: 1rem;
  color: var(--slate-500);
}

.pricing-features {
  margin: var(--space-lg) 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.pricing-features li svg {
  color: var(--emerald-500);
  flex-shrink: 0;
}

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

  .bento-card.span-2 {
    grid-column: span 1;
  }
}

/* ========================================
   CONDITIONS SECTION
   ======================================== */
.conditions-section {
  background: var(--slate-50);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.condition-card {
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.condition-card h3 {
  color: var(--slate-900);
  margin-bottom: var(--space-md);
}

.condition-card p {
  margin-bottom: var(--space-md);
}

.condition-card ul {
  margin-top: var(--space-sm);
  color: var(--slate-600);
}

.condition-card li {
  margin-bottom: var(--space-xs);
  padding-left: var(--space-md);
  position: relative;
}

.condition-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sky-500);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-section {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
  position: relative;
}

.step-card {
  position: relative;
  text-align: center;
  padding: var(--space-xl);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--sky-600) 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.9375rem;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.67% + 48px);
  right: calc(16.67% + 48px);
  height: 2px;
  background: var(--slate-200);
  z-index: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--slate-50) 0%, #fff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.testimonial-card blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: var(--space-lg);
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  font-weight: 700;
  color: var(--sky-200);
  line-height: 0;
  display: block;
  margin-bottom: var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sky-400), var(--emerald-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.testimonial-meta .name {
  font-weight: 600;
  color: var(--slate-800);
}

.testimonial-meta .role {
  font-size: 0.875rem;
  color: var(--slate-500);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content > p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.about-list {
  margin: var(--space-lg) 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  color: var(--slate-600);
}

.about-list li svg {
  color: var(--emerald-500);
  flex-shrink: 0;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

  .about-image {
    order: -1;
  }
}

/* ========================================
   FOR CLINICIANS CTA
   ======================================== */
.clinicians-section {
  background: linear-gradient(135deg, var(--sky-600) 0%, var(--sky-700) 100%);
  color: #fff;
}

.clinicians-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.clinicians-content h2 {
  color: #fff;
  margin-bottom: var(--space-lg);
}

.clinicians-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.clinicians-features {
  margin-bottom: var(--space-xl);
}

.clinicians-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  color: rgba(255, 255, 255, 0.9);
}

.clinicians-features li svg {
  color: var(--emerald-400);
}

.clinicians-visual {
  display: flex;
  justify-content: center;
}

.clinicians-visual img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 900px) {
  .clinicians-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .clinicians-features {
    display: inline-block;
    text-align: left;
  }
}

/* ========================================
   WAITLIST SECTION
   ======================================== */
.waitlist-section {
  background: var(--slate-50);
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--slate-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--slate-800);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--sky-600);
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-500);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.faq-question[aria-expanded="true"] .icon {
  background: var(--sky-500);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: var(--space-lg);
  color: var(--slate-600);
  line-height: 1.7;
}

.faq-answer[hidden] {
  display: none;
}

.regulatory-note {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
  padding: var(--space-lg);
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  text-align: center;
}

.regulatory-note p {
  font-size: 0.875rem;
  color: var(--slate-500);
  margin: 0;
}

.regulatory-note strong {
  color: var(--slate-600);
}

.blog-callout {
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--slate-200);
}

.blog-callout p {
  color: var(--slate-600);
}

.blog-callout a {
  color: var(--sky-600);
  text-decoration: underline;
}

.blog-callout a:hover {
  color: var(--sky-700);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--slate-50);
}

.contact-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
  text-align: center;
}

.contact-card p {
  margin-bottom: var(--space-lg);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--sky-600);
  font-size: 1.125rem;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  margin-bottom: var(--space-md);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
}

.final-cta .btn-primary {
  background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-800);
  border-radius: var(--radius-sm);
  color: var(--slate-400);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--sky-600);
  color: #fff;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--slate-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  animation: fallback-reveal 0.1s ease 1s forwards;
}

@keyframes fallback-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}