/* ==========================================================================
   RehabZ - Modern Clinical Physiotherapy Platform
   Design System & Main Stylesheet
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --primary: #0b6050;
  --primary-hover: #07473b;
  --primary-deep: #05332a;
  --primary-light: #e8f7f4;
  --primary-mint: #d1f0ea;
  --primary-glow: rgba(11, 96, 80, 0.15);
  
  /* Accent & Status Colors */
  --accent-coral: #dc2626;
  --accent-coral-bg: #fef2f2;
  --accent-coral-border: #fee2e2;
  --accent-amber: #f59e0b;
  --accent-blue: #2563eb;
  --accent-teal: #0d9488;
  
  /* Neutrals */
  --text-main: #111827;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-inverse: #ffffff;
  
  --bg-page: #ffffff;
  --bg-subtle: #f8fafb;
  --bg-alt: #f1f7f5;
  --bg-card: #ffffff;
  --bg-dark: #1e2429;
  --bg-dark-accent: #293239;
  
  /* Borders & Dividers */
  --border-color: #e5e7eb;
  --border-light: #f3f4f6;
  --border-focus: #0b6050;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px rgba(11, 96, 80, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-float: 0 20px 48px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Container Widths */
  --container-max: 1200px;
  --container-narrow: 860px;
  --header-height: 80px;
}

/* ==========================================================================
   CSS Reset & Base
   ========================================================================== */

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-hero {
  padding: 60px 0 70px 0;
  text-align: center;
}

.section-hero-2col {
  padding: 70px 0 80px 0;
  text-align: left;
}

.section-alt {
  background-color: var(--bg-subtle);
}

.section-mint {
  background-color: var(--bg-alt);
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title-dark {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title-dark .highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.section-title-dark {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.badge-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.badge-pill-mint {
  background-color: var(--primary-mint);
  color: var(--primary-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-star {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.brand-logo img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.footer-brand .brand-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .brand-logo img {
  height: 42px;
  width: auto;
  max-width: 170px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  position: relative;
  padding: 8px 2px;
  transition: color var(--transition-fast);
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

/* Mobile Toggle Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 4px;
  transition: var(--transition-normal);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1060;
  padding: 90px 28px 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-links .nav-link {
  font-size: 1.15rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links .nav-link.active::after {
  display: none;
}
.mobile-nav-links .nav-link.active {
  color: var(--primary);
  font-weight: 700;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 96, 80, 0.28);
}

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

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-pill-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-large {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* ==========================================================================
   Cards & Grids
   ========================================================================== */

.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: #d1d5db;
}

.card-dark-teal {
  background-color: var(--primary);
  color: var(--text-inverse);
  border: none;
  box-shadow: var(--shadow-lg);
}

.card-dark-teal:hover {
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(11, 96, 80, 0.22);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

/* ==========================================================================
   About Page Components
   ========================================================================== */

.problem-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 10px;
}

.problem-card {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-coral);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.problem-header svg {
  width: 22px;
  height: 22px;
  color: var(--accent-coral);
}

.problem-card p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
}

.approach-card {
  padding: 38px 34px;
  border-radius: var(--radius-lg);
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 12px 32px rgba(11, 96, 80, 0.18);
}

.approach-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.approach-header svg {
  width: 22px;
  height: 22px;
  color: #a7f3d0;
}

.approach-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.68;
  margin-bottom: 24px;
}

.approach-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.approach-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #f0fdf4;
  font-weight: 500;
}

.approach-checklist li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #34d399;
}

/* Clinical Guidance Card */
.guidance-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-sm);
}

.guidance-avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3.5px solid var(--primary-mint);
  box-shadow: 0 6px 18px rgba(11, 96, 80, 0.15);
}

.guidance-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guidance-info h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.guidance-role {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.guidance-info p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 14px rgba(11, 96, 80, 0.12);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Page Components
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.info-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--primary);
}

.info-title svg {
  width: 22px;
  height: 22px;
}

.info-content {
  color: var(--text-body);
  font-size: 0.96rem;
  line-height: 1.65;
  padding-left: 32px;
}

.contact-item {
  margin-bottom: 16px;
}

.contact-item .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.contact-item .value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-item a.value:hover {
  color: var(--primary);
}

/* Map Card */
.map-preview-card {
  position: relative;
  background: #f1f7f5;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-preview-card img, .map-preview-card svg {
  border-radius: var(--radius-sm);
  width: 100%;
  display: block;
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary);
  padding: 42px 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-size: 1.55rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 96, 80, 0.12);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ==========================================================================
   For Patients Page Components
   ========================================================================== */

.patient-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.patient-hero-left h1 {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}

.patient-hero-left h1 span {
  color: var(--primary);
  display: block;
}

.patient-hero-left p {
  font-size: 1.08rem;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.65;
}

/* Patient Phone UI Mockup */
.patient-app-mockup {
  position: relative;
  background: #ffffff;
  border-radius: 34px;
  border: 8px solid #1e293b;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
  padding: 24px 20px;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
}

.mockup-header-notch {
  width: 120px;
  height: 16px;
  background: #1e293b;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.mockup-user-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
}

.mockup-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
}

.mockup-user-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.mockup-progress-wrap {
  margin-bottom: 22px;
}

.mockup-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.mockup-progress-bar {
  height: 10px;
  background: #e2e8f0;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, #0d9488, #0b6050);
  border-radius: var(--radius-full);
}

.mockup-exercises-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #edf2f7;
}

.mockup-exercises-box h5 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.mockup-exercise-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-exercise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
}

.mockup-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mockup-checkbox.checked {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.mockup-checkbox svg {
  width: 12px;
  height: 12px;
}

.mockup-alert-card {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: #92400e;
  margin-bottom: 14px;
}

.mockup-floating-pill {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.mockup-floating-pill .icon-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Patient 4-Grid Cards */
.patient-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.patient-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.patient-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.patient-card-icon svg {
  width: 24px;
  height: 24px;
}

.patient-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.patient-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Treatment plan laptop mockup card */
.laptop-mockup-frame {
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  padding: 16px;
}

.laptop-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
}

.laptop-plan-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.laptop-plan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid #f1f5f9;
}

/* Assigned exercises card list */
.exercise-pill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.exercise-pill-row:last-child {
  margin-bottom: 0;
}

.exercise-pill-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Video thumbnail mockup */
.video-preview-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast);
}

.video-preview-thumb:hover .video-play-btn {
  transform: scale(1.1);
}

/* Roadmap Pathway Component */
.roadmap-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 28px;
  padding: 10px 0;
}

.roadmap-line {
  position: absolute;
  top: 24px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.roadmap-line-progress {
  position: absolute;
  top: 24px;
  left: 30px;
  width: 45%;
  height: 3px;
  background: var(--primary);
  z-index: 2;
}

.roadmap-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.roadmap-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  transition: var(--transition-normal);
}

.roadmap-node.completed {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.roadmap-node.active {
  background: #ffffff;
  border: 2.5px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.roadmap-node.locked {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #94a3b8;
}

.roadmap-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
}

.roadmap-step.active .roadmap-label {
  color: var(--primary);
  font-weight: 800;
}

/* ==========================================================================
   For Physios Page Components
   ========================================================================== */

.physio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.physio-hero-left h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.physio-hero-left p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* Physio Dashboard Mockup */
.physio-dashboard-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.dashboard-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-tile {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.stat-tile .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-tile .value-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.stat-tile .val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
}

.stat-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.stat-pill.green {
  background: #dcfce7;
  color: #15803d;
}

.patient-list-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.patient-list-card h5 {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.patient-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.patient-row:last-child {
  border-bottom: none;
}

.patient-mini-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.patient-avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-mint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.patient-name-txt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.patient-tag-txt {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.patient-time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

/* Stepper / Timeline for Physios */
.clinical-stepper-wrap {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0;
}

.stepper-center-line {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%);
  border-radius: 4px;
  overflow: hidden;
}

.stepper-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #0b6050 0%, #0d9488 70%, #14b8a6 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(13, 148, 136, 0.6);
  transition: height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-item {
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  position: relative;
}

.stepper-item:last-child {
  margin-bottom: 0;
}

.stepper-item.left {
  justify-content: flex-start;
}

.stepper-item.right {
  justify-content: flex-end;
}

.stepper-content-box {
  width: 44%;
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.stepper-item.left .stepper-content-box {
  transform: translateX(-40px) scale(0.96);
  opacity: 0.3;
}

.stepper-item.right .stepper-content-box {
  transform: translateX(40px) scale(0.96);
  opacity: 0.3;
}

/* Step Active on Scroll */
.stepper-item.step-active .stepper-content-box {
  transform: translateX(0) scale(1);
  opacity: 1;
  border-color: #5eead4;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 96, 80, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stepper-content-box:hover {
  box-shadow: 0 20px 42px rgba(11, 96, 80, 0.16);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.01);
}

.stepper-step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.stepper-item.step-active .stepper-step-tag {
  background: var(--primary-mint);
  color: var(--primary-deep);
}

.stepper-content-box h4 {
  font-size: 1.22rem;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.stepper-item.step-active .stepper-content-box h4 {
  color: var(--primary);
}

.stepper-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stepper-item.step-active .stepper-icon-box {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 4px 12px rgba(11, 96, 80, 0.25);
}

.stepper-content-box p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

.stepper-node-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cbd5e1;
  color: #64748b;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.stepper-item.step-active .stepper-node-number {
  background: var(--primary);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 0 0 6px var(--primary-light), 0 8px 24px rgba(11, 96, 80, 0.35);
}

.stepper-item.step-active .stepper-node-number::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulseRing 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Testimonial Quote Card */
.quote-card {
  max-width: 780px;
  margin: 60px auto 0 auto;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--primary-mint);
  font-family: Georgia, serif;
  margin-bottom: -10px;
}

.quote-text {
  font-size: 1.12rem;
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-details h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.author-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Card Banner */
.cta-banner-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 980px;
  margin: 0 auto;
}

.cta-banner-card h2 {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-banner-card p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Features Page Components
   ========================================================================== */

.feature-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-rich-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-normal);
}

.feature-rich-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

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

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-rich-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-rich-card p.description {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.feature-checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.pro-tip-box {
  background: #f0fdf9;
  border: 1px solid var(--primary-mint);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 20px;
}

.pro-tip-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.pro-tip-box p {
  font-size: 0.85rem;
  color: #0f766e;
  line-height: 1.5;
}

/* Feature Preview Skeletons & Mini Mockups */
.preview-mini-canvas {
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #edf2f7;
  padding: 18px;
  margin-top: 18px;
}

.skeleton-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.skeleton-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skeleton-line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
}

.skeleton-bars-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 50px;
  padding-top: 10px;
}

.skeleton-bar {
  flex: 1;
  background: #cbd5e1;
  border-radius: 4px 4px 0 0;
}

.skeleton-bar.active {
  background: var(--primary);
}

.skeleton-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.skeleton-cal-cell {
  height: 24px;
  background: #edf2f7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.skeleton-cal-cell.highlight {
  background: var(--primary-mint);
  color: var(--primary-deep);
  font-weight: 700;
}

.skeleton-chat-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-chat-bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  max-width: 80%;
}

.skeleton-chat-bubble.in {
  background: #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.skeleton-chat-bubble.out {
  background: var(--primary-mint);
  color: var(--primary-deep);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 600;
}

/* ==========================================================================
   Home Landing Page Additions
   ========================================================================== */

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.hero-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  max-width: 720px;
  margin: 0 auto;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Tab Switcher for Home Page */
.audience-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  background: #ffffff;
  color: var(--text-muted);
  border: 1.5px solid var(--border-color);
  transition: var(--transition-normal);
}

.tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px var(--primary-glow);
}

/* ==========================================================================
   Modal Component (Download App)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  padding: 20px;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 38px 32px;
  box-shadow: var(--shadow-float);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: var(--transition-normal);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

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

.modal-content-header h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-content-header p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.download-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-opt-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  text-decoration: none;
}

.download-opt-card:hover {
  border-color: var(--primary);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.download-opt-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.download-opt-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-opt-icon svg {
  width: 24px;
  height: 24px;
}

.download-opt-meta h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.download-opt-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.download-opt-arrow {
  color: var(--primary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #1e2429;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-normal);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon-success {
  color: #34d399;
}

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

.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 64px 0 36px 0;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand .brand-logo svg {
  color: #34d399;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark-accent);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 16px;
  height: 16px;
}

.footer-nav-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: #34d399;
  padding-left: 2px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
