/* RehabDox Company Website Styles
   Premium Healthcare SaaS Aesthetic
   ================================= */

/* CSS Variables */
:root {
    --primary-blue: #0066B3;
    --primary-blue-dark: #004A82;
    --primary-blue-light: #E6F3FF;
    --secondary-teal: #00A0A0;
    --secondary-green: #28A745;
    --secondary-green-light: #E8F5E9;
    --white: #FFFFFF;
    --gray-50: #F8FAFB;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --accent-orange: #F59E0B;
    --accent-red: #DC2626;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    --gradient-hero: linear-gradient(160deg, #f0f7ff 0%, #e8f1fb 30%, #dce8f8 60%, #edf4ff 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', var(--font-primary);
    --section-padding: 5rem 0;
    --container-max: 1200px;
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-700);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover { color: var(--primary-blue-dark); }

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header .subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* Background Variants */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--gray-50); }
.bg-primary { background: var(--gradient-primary); }
.bg-dark { background: var(--gradient-dark); }

/* =====================
   Navigation
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.97);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand .logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.navbar-brand .brand-tagline {
    font-size: 0.6875rem;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.navbar-links a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary-blue);
    background-color: var(--primary-blue-light);
}

.navbar-cta {
    display: flex;
    gap: 0.5rem;
}

.navbar-cta .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* =====================
   Buttons
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(0, 102, 179, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue-light);
    color: var(--primary-blue-dark);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn i {
    font-size: 1em;
}

/* =====================
   Hero Section
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero-orb-1 {
    width: 650px;
    height: 650px;
    background: rgba(0, 102, 179, 0.08);
    top: -250px;
    right: -150px;
    animation: orbDrift1 22s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 160, 160, 0.07);
    bottom: -200px;
    left: -150px;
    animation: orbDrift2 28s ease-in-out infinite;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.06);
    top: 35%;
    left: 35%;
    animation: orbDrift3 20s ease-in-out infinite;
}

.hero-orb-4 {
    width: 200px;
    height: 200px;
    background: rgba(124, 58, 237, 0.05);
    top: 15%;
    left: 60%;
    animation: orbDrift1 15s ease-in-out infinite reverse;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.05); }
    66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -50px) scale(1.08); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-35px, -35px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Text */
.hero-text {
    color: var(--gray-800);
    animation: fadeSlideUp 0.8s ease-out both;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 179, 0.08);
    border: 1px solid rgba(0, 102, 179, 0.15);
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-blue);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.hero h1 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0891b2 50%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

/* Hero Feature Chips */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    animation: fadeSlideUp 0.6s ease-out 0.4s both;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 102, 179, 0.12);
    border-radius: 2rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
    transition: var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-chip:hover {
    background: var(--white);
    border-color: rgba(0, 102, 179, 0.3);
    color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 102, 179, 0.1);
}

.hero-chip i {
    font-size: 0.5625rem;
    color: var(--primary-blue);
    opacity: 0.8;
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
    animation: fadeSlideUp 0.8s ease-out 0.25s both;
}

.hero-dashboard {
    background: var(--white);
    border-radius: 1rem;
    box-shadow:
        0 25px 60px -15px rgba(0, 50, 100, 0.18),
        0 0 0 1px rgba(0, 102, 179, 0.08),
        0 8px 30px -10px rgba(0, 102, 179, 0.12);
    overflow: hidden;
}

.dash-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.dash-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.dash-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: block;
}

.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }

.dash-url {
    font-size: 0.6875rem;
    color: var(--gray-500);
    background: var(--white);
    padding: 0.2rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid var(--gray-200);
    flex: 1;
    text-align: center;
}

.dash-url i {
    color: #16a34a;
    margin-right: 0.25rem;
    font-size: 0.5625rem;
}

.dash-body {
    display: flex;
    min-height: 320px;
}

/* Sidebar */
.dash-sidebar {
    width: 52px;
    background: var(--gray-900);
    padding: 0.625rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
}

.dash-logo {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    margin-bottom: 0.625rem;
    flex-shrink: 0;
}

.dash-nav-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    color: #64748b;
    font-size: 0.75rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.dash-nav-icon.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.dash-nav-divider {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: auto 0 0.25rem;
}

/* Main Content */
.dash-content {
    flex: 1;
    padding: 0.75rem 0.875rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.dash-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.dash-greeting {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
}

.dash-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dash-notif {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-500);
    font-size: 0.6875rem;
    position: relative;
}

.dash-notif-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #dc2626;
    color: var(--white);
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--white);
}

/* Stats Row */
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dash-stat-card {
    padding: 0.5rem 0.375rem;
    border-radius: 0.4rem;
    text-align: center;
}

.dash-stat-card.blue { background: #eff6ff; }
.dash-stat-card.green { background: #f0fdf4; }
.dash-stat-card.amber { background: #fffbeb; }
.dash-stat-card.red { background: #fef2f2; }

.dash-stat-number {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.dash-stat-card.blue .dash-stat-number { color: var(--primary-blue); }
.dash-stat-card.green .dash-stat-number { color: #16a34a; }
.dash-stat-card.amber .dash-stat-number { color: #d97706; }
.dash-stat-card.red .dash-stat-number { color: #dc2626; }

.dash-stat-label {
    display: block;
    font-size: 0.5rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.1rem;
    font-weight: 600;
}

/* Section Label */
.dash-section-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.375rem;
}

/* Appointment Queue */
.dash-queue {
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    overflow: hidden;
}

.dash-queue-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.625rem;
    border-bottom: 1px solid var(--gray-100);
}

.dash-queue-row:last-child { border-bottom: none; }

.dash-queue-row.row-recording {
    background: rgba(37, 99, 235, 0.03);
    border-left: 2px solid #3b82f6;
}

.dash-patient-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.dash-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.dash-avatar.av-blue { background: var(--primary-blue); }
.dash-avatar.av-green { background: #16a34a; }
.dash-avatar.av-orange { background: #d97706; }

.dash-patient-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-patient-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-patient-meta {
    font-size: 0.5625rem;
    color: var(--gray-500);
    line-height: 1.3;
}

/* Status Pills */
.dash-status-pill {
    font-size: 0.5625rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.dash-status-pill.st-progress { background: #dcfce7; color: #15803d; }
.dash-status-pill.st-recording { background: #dbeafe; color: #1d4ed8; }
.dash-status-pill.st-scheduled { background: var(--gray-100); color: var(--gray-600); }

/* Voice Waveform Animation */
.voice-wave {
    display: inline-flex;
    align-items: center;
    gap: 1.5px;
    height: 12px;
    vertical-align: middle;
}

.voice-wave span {
    width: 2px;
    display: block;
    background: currentColor;
    border-radius: 1px;
    animation: waveBar 1s ease-in-out infinite;
}

.voice-wave span:nth-child(1) { height: 4px; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 8px; animation-delay: 0.12s; }
.voice-wave span:nth-child(3) { height: 12px; animation-delay: 0.24s; }
.voice-wave span:nth-child(4) { height: 6px; animation-delay: 0.36s; }
.voice-wave span:nth-child(5) { height: 10px; animation-delay: 0.18s; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(0.35); }
    50% { transform: scaleY(1); }
}

/* Voice Bar */
.dash-voice-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.625rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
    border-radius: 0 0 0.375rem 0;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.dash-voice-indicator {
    color: #60a5fa;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.dash-voice-text {
    font-size: 0.5625rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero Floating Cards */
.hero-float-cards-row {
    position: static;
    display: contents;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.625rem 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px -6px rgba(0, 50, 100, 0.15), 0 0 0 1px rgba(0, 102, 179, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-float-card.card-1 {
    top: 2%;
    right: -1.5rem;
    animation: float 6s ease-in-out infinite;
}

.hero-float-card.card-2 {
    top: 36%;
    right: -1.75rem;
    animation: float 6s ease-in-out infinite 2s;
}

.hero-float-card.card-3 {
    top: 70%;
    right: -1.5rem;
    animation: float 6s ease-in-out infinite 4s;
}

.float-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.4rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.float-icon.icon-green { background: var(--secondary-green-light); color: var(--secondary-green); }
.float-icon.icon-blue { background: var(--primary-blue-light); color: var(--primary-blue); }
.float-icon.icon-orange { background: #fef3c7; color: #d97706; }

.hero-float-card .card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.2;
}

.hero-float-card .card-subtitle {
    font-size: 0.625rem;
    color: var(--gray-500);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================
   Trust Indicators
   ===================== */
.trust-bar {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--gray-300);
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--secondary-green);
}

/* =====================
   Value Props / Cards
   ===================== */
.value-props {
    padding: 5rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 102, 179, 0.12), 0 4px 12px rgba(0,0,0,0.06);
    border-color: var(--primary-blue-light);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 0.875rem;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.value-card h4 { margin-bottom: 0.5rem; }

.value-card p {
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* =====================
   Features Grid
   ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.features-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-grid1 .feature-category:nth-child(4) {
    grid-column: 2 / 3;
}

.feature-category {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.feature-category:hover {
    border-color: var(--primary-blue-light);
    box-shadow: 0 8px 24px -4px rgba(0, 102, 179, 0.08);
}

.feature-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.feature-category-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    font-size: 1.375rem;
    flex-shrink: 0;
}

.feature-category-icon.clinical { background: var(--primary-blue-light); color: var(--primary-blue); }
.feature-category-icon.patient { background: var(--secondary-green-light); color: var(--secondary-green); }
.feature-category-icon.admin { background: #FEF3C7; color: var(--accent-orange); }
.feature-category-icon.security { background: #FEE2E2; color: var(--accent-red); }
.feature-category-icon.tech { background: #E0E7FF; color: #4F46E5; }

.feature-category h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.feature-list { list-style: none; }

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.feature-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-list li i {
    color: var(--secondary-green);
    font-size: 0.875rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-list li span {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* =====================
   Workflow / Solutions
   ===================== */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.workflow-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.workflow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -8px rgba(0, 102, 179, 0.1);
    border-color: var(--primary-blue-light);
}

.workflow-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.workflow-card h4 { margin-bottom: 0.5rem; }

.workflow-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Role Benefits */
.roles-section { padding: 5rem 0; }

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.role-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition-base);
}

.role-card:hover {
    border-color: var(--primary-blue-light);
    box-shadow: 0 8px 24px -4px rgba(0, 102, 179, 0.08);
}

.role-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.role-card h4 { margin-bottom: 1rem; }

.role-benefits {
    list-style: none;
    text-align: left;
}

.role-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.role-benefits li i {
    color: var(--secondary-green);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* =====================
   About / Page Hero
   ===================== */
.about-hero {
    background: var(--gradient-primary);
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
}

.about-hero::before,
.page-hero::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.about-hero .container,
.page-hero .container,
.cta-section .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero {
    background: var(--gradient-primary);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.mission-section { padding: 5rem 0; }

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 { margin-bottom: 1.5rem; }

.mission-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.mission-image { position: relative; }

.mission-image-placeholder {
    background: var(--gradient-primary);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mission-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mission-image-placeholder span {
    font-size: 1.125rem;
    opacity: 0.9;
}

.values-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.values-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -4px rgba(0, 102, 179, 0.08);
    border-color: var(--primary-blue-light);
}

.value-item i {
    font-size: 2.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-item h4 { margin-bottom: 0.5rem; }

.value-item p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================
   Contact Page
   ===================== */
.contact-section { padding: 5rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-method-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-method-text p {
    color: var(--gray-500);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-method-text a { color: var(--primary-blue); }

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: var(--gray-700);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--primary-blue-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; }

/* =====================
   CTA Section
   ===================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================
   Footer
   ===================== */
.footer {
    background: var(--gray-50);
    color: var(--gray-600);
    padding: 4rem 0 0;
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-200);
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.footer-brand .brand-tagline {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-500);
    border-radius: 0.5rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.footer-links h4 {
    color: var(--gray-800);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--primary-blue); }

.footer-contact h4 {
    color: var(--gray-800);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-contact-item i {
    color: var(--primary-blue);
    margin-top: 0.125rem;
}

.footer-bottom { padding: 1.5rem 0; }

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

.footer-legal a:hover { color: var(--primary-blue); }

/* =====================
   Scroll Animations
   ===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   Responsive Design
   ===================== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-chips { justify-content: center; }

    .hero-visual {
        max-width: 540px;
        margin: 1rem auto 0;
    }

    .dash-sidebar { display: none; }
    .dash-topbar { display: none; }

    /* Float cards become a row below dashboard on tablet/mobile */
    .hero-float-card {
        position: static;
        animation: none;
        box-shadow: 0 4px 16px -4px rgba(0, 50, 100, 0.12), 0 0 0 1px rgba(0, 102, 179, 0.06);
    }

    .hero-float-cards-row {
        display: flex;
        gap: 0.625rem;
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .mission-grid { gap: 3rem; }

    .features-grid1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid1 .feature-category:nth-child(4) {
        grid-column: auto;
    }

    .value-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 0;
    }

    /* Nav */
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0.75rem;
        border-top: 1px solid var(--gray-200);
    }

    .navbar-menu.active { display: flex; }

    .navbar-links {
        flex-direction: column;
        width: 100%;
    }

    .navbar-links a {
        padding: 0.75rem 1rem;
    }

    .navbar-cta {
        width: 100%;
        flex-direction: column;
    }

    .navbar-cta .btn { width: 100%; }

    .navbar-toggle { display: block; }

    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggle.active span:nth-child(2) { opacity: 0; }

    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 7rem 0 3.5rem;
    }

    .hero h1 { font-size: 2rem; }

    .hero-visual {
        max-width: 100%;
        margin: 1.25rem auto 0;
    }

    /* Mobile Dashboard Compact View */
    .hero-visual {
        width: 100%;
    }

    .hero-dashboard {
        border-radius: 0.875rem;
        width: 100%;
    }

    .dash-chrome {
        padding: 0.5rem 0.75rem;
    }

    .dash-url {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .dash-body {
        min-height: auto;
    }

    .dash-content {
        padding: 0.625rem;
    }

    .dash-stats-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.375rem;
        margin-bottom: 0.5rem;
    }

    .dash-stat-card {
        padding: 0.4rem 0.25rem;
    }

    .dash-stat-number {
        font-size: 1rem;
    }

    .dash-stat-label {
        font-size: 0.4375rem;
        letter-spacing: 0.01em;
    }

    .dash-queue {
        display: block;
    }

    .dash-queue-row {
        padding: 0.375rem 0.5rem;
    }

    .dash-patient-name {
        font-size: 0.6875rem;
    }

    .dash-patient-meta {
        font-size: 0.5rem;
    }

    .dash-status-pill {
        font-size: 0.5rem;
        padding: 0.15rem 0.375rem;
    }

    .dash-voice-bar {
        display: flex;
        padding: 0.35rem 0.5rem;
        margin-top: 0.375rem;
        border-radius: 0 0 0.5rem 0;
    }

    .dash-voice-text {
        font-size: 0.5rem;
    }

    .dash-section-label {
        display: block;
        font-size: 0.5625rem;
        margin-bottom: 0.25rem;
    }

    .hero-chips {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.35rem;
    }

    .hero .container { text-align: left; }
    .hero-buttons { justify-content: flex-start; }
    .hero-subtitle { max-width: 100%; }

    /* Mobile float cards - compact row */
    .hero-float-card {
        padding: 0.5rem 0.625rem;
        border-radius: 0.625rem;
    }

    .hero-float-card .card-title {
        font-size: 0.6875rem;
    }

    .hero-float-card .card-subtitle {
        font-size: 0.5625rem;
    }

    .float-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    /* Trust bar */
    .trust-bar .container {
        gap: 1rem;
    }

    .trust-item:not(:last-child)::after { display: none; }

    .trust-item {
        font-size: 0.8125rem;
    }

    /* Grids */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid { grid-template-columns: 1fr; }

    .features-grid1 { grid-template-columns: repeat(2, 1fr); }

    .value-grid { grid-template-columns: 1fr; }

    .values-grid-3col { grid-template-columns: repeat(2, 1fr); }

    .roles-grid { grid-template-columns: repeat(2, 1fr); }

    .workflow-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .page-hero { padding: 8rem 0 3.5rem; }
    .about-hero { padding: 8rem 0 4rem; }
}

/* Small tablet / large mobile */
@media (max-width: 640px) {
    .features-grid1 { grid-template-columns: 1fr; }
    .values-grid-3col { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: 1fr; }
    .value-grid-4col { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    .navbar-brand .brand-name { font-size: 1.25rem; }
    .navbar-brand .brand-tagline { display: none; }

    .hero { padding: 6.5rem 0 2.5rem; }
    .hero h1 { font-size: 1.75rem; }
    .hero-subtitle { font-size: 0.9375rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn { width: 100%; }

    /* Ultra-compact dashboard on small mobile */
    .dash-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
    }

    .dash-stat-number { font-size: 1.125rem; }
    .dash-stat-label { font-size: 0.4375rem; }

    .dash-queue-row:last-child { display: none; }

    .dash-patient-name { font-size: 0.625rem; }
    .dash-patient-meta { font-size: 0.4375rem; }
    .dash-status-pill { font-size: 0.4375rem; padding: 0.125rem 0.3rem; }

    /* Small mobile float cards */
    .hero-float-cards-row {
        gap: 0.5rem;
    }

    .hero-float-card {
        padding: 0.4rem 0.5rem;
    }

    .hero-float-card .card-subtitle {
        display: none;
    }

    .float-icon {
        width: 24px;
        height: 24px;
        font-size: 0.625rem;
    }

    .section-header h2 { font-size: 1.5rem; }

    .value-card,
    .feature-category,
    .workflow-card,
    .role-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper { padding: 1.5rem; }

    .cta-section { padding: 3.5rem 0; }
    .page-hero { padding: 7rem 0 3rem; }
    .about-hero { padding: 7rem 0 3rem; }
}

/* =====================
   Utility Classes
   ===================== */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Accessibility */
.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;
}

*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: var(--transition-fast);
}

.skip-link:focus { top: 0; }

/* Print */
@media print {
    .navbar, .footer, .cta-section { display: none; }
    body { font-size: 12pt; color: #000; }
    a { color: #000; text-decoration: underline; }
}

/* Logo */
.logo-wrapper {
    height: 48px;
    width: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footermarginlogo {
    margin-bottom: 1rem;
}
