/* Light Glassmorphic Design System */
:root {
    /* Colors - Light glass palette */
    --white: #ffffff;
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-light: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-dark: rgba(0, 0, 0, 0.02);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-dark: #2563eb;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    
    /* Typography */
    --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-text: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Glass effects */
    --glass-blur: 10px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gradient mesh background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Typography */
h1 {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h2 {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

h3 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-primary);
}

p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.logo-img {
    height: 36px;
    width: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent);
    color: var(--accent);
}

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

/* Product Showcase */
.product-showcase {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.device-mockup {
    width: 800px;
    max-width: 90vw;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.device-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 10px 0 0 #f59e0b, 20px 0 0 #10b981;
}

.device-screen {
    background: var(--white);
    border-radius: 12px;
    margin-top: 30px;
    padding: 32px;
    min-height: 350px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.demo-content {
    text-align: left;
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.voice-wave span {
    display: block;
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.voice-wave span:nth-child(2) { animation-delay: 0.1s; height: 30px; }
.voice-wave span:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.voice-wave span:nth-child(4) { animation-delay: 0.3s; height: 35px; }
.voice-wave span:nth-child(5) { animation-delay: 0.4s; height: 22px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(1.5); opacity: 0.7; }
}

.demo-text {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.demo-transcription h4 {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.soap-preview {
    background: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
}

.soap-preview strong {
    color: var(--accent);
    margin-right: 8px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 20px 30px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    min-width: 140px;
}

.stat-number {
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
}

.stat-suffix {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.trust-item i {
    color: var(--accent);
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    position: relative;
}

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

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 12px;
    font-size: 24px;
    color: var(--white);
}

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

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

.feature-list {
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Languages Section */
.languages-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.languages-showcase {
    margin-top: 48px;
}

.language-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.language-group {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
}

.language-group h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.language-tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.language-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Medical Section */
.medical-section {
    padding: 80px 0;
}

.medical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.medical-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.medical-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.medical-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.medical-header i {
    font-size: 20px;
    color: var(--accent);
}

.medical-header h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.medical-systems {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.system {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px;
    background: var(--white);
    border-radius: 6px;
    border-left: 3px solid var(--accent-light);
}

.system strong {
    color: var(--text-primary);
}

.medical-note {
    margin-top: 32px;
    padding: 16px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.medical-note i {
    color: var(--accent);
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.security-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.security-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 10px;
    font-size: 20px;
    color: var(--white);
}

.security-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

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

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.use-case {
    text-align: center;
    padding: 32px 20px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.use-case img {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.use-case h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.use-case p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.currency {
    font-size: 20px;
    color: var(--text-secondary);
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
}

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

.pricing-features {
    margin-bottom: 24px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-feature i {
    color: var(--accent);
}

.price-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.pricing-roi {
    margin-top: 40px;
    padding: 24px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    border-radius: 16px;
    text-align: center;
}

.roi-text {
    color: var(--text-primary);
    font-size: 16px;
    margin: 0;
}

.roi-text i {
    color: var(--accent);
    margin-right: 8px;
}

.roi-text strong {
    color: var(--accent);
}

.pricing-cta {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Get Started / Trial Section */
.download-section {
    padding: 80px 0;
}

.trial-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.benefit-card {
    text-align: center;
    padding: 32px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 40px;
    margin-bottom: 16px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.trial-cta {
    text-align: center;
    margin: 48px 0;
}

.btn-large {
    font-size: 18px;
    padding: 16px 40px;
}

.trial-subtitle {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.platform-availability {
    margin-top: 48px;
    padding: 32px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.platform-availability h4 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.platforms-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-item i {
    font-size: 32px;
    color: var(--text-secondary);
}

.platform-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.download-card {
    text-align: center;
    padding: 36px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.download-card i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.download-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.download-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-2);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.system-requirements {
    margin-top: 48px;
    padding: 24px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.system-requirements h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

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

.requirement strong {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    display: block;
    padding: 4px 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Documentation Layout */
.doc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    align-items: start;
}

.doc-sidebar {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.doc-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.doc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.doc-nav a:hover {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
}

.doc-content {
    min-width: 0;
    width: 100%;
    max-width: 800px;
}

.doc-content section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.doc-content section:first-child {
    margin-top: 0;
}

.doc-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--glass-border);
    color: var(--text-primary);
}

.doc-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-primary);
}

.doc-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.doc-content ul, .doc-content ol {
    margin: 24px 0;
    padding-left: 28px;
    color: var(--text-secondary);
}

.doc-content li {
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 16px;
}

.doc-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.doc-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    margin: 32px 0;
}

.doc-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.4rem;
}

.doc-card ul {
    margin: 0;
    padding-left: 24px;
}

.doc-card li {
    margin-bottom: 12px;
}

.installation-tabs {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.tab-content {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.tab-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.4rem;
}

.tab-content ol {
    margin: 0;
    padding-left: 24px;
}

.tab-content li {
    margin-bottom: 12px;
}

.code-block {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    overflow-x: auto;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
}

.shortcut-table {
    width: 100%;
    margin: 24px 0;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

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

.shortcut-table th {
    background: rgba(59, 130, 246, 0.1);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--glass-border);
}

.shortcut-table td {
    padding: 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.shortcut-table tr:last-child td {
    border-bottom: none;
}

.shortcut-table kbd {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
}

.warning-box p {
    margin: 0;
    color: var(--text-primary);
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
}

.info-box p {
    margin: 0;
    color: var(--text-primary);
}

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.support-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.support-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.support-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.support-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.contact-info {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--accent);
    font-size: 20px;
    width: 24px;
}

/* Training Page */
.training-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.module-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.module-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

.certification-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.cert-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
}

.cert-card ul {
    list-style: none;
    padding: 0;
}

.cert-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.cert-card li i {
    color: var(--accent);
}

/* Regional Pricing Styles */
.regional-pricing {
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.regional-pricing h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.regional-pricing > p {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.region-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.region-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.region-card h4 i {
    color: var(--accent);
    font-size: 20px;
}

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

.region-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

/* Special Programs */
.special-programs {
    margin: 80px 0;
}

.special-programs h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.program-card {
    padding: 32px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.program-card i {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.program-card a {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-card a:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Pricing FAQ */
.pricing-faq {
    margin: 80px 0;
}

.pricing-faq h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.faq-item {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Pricing CTA Section */
.pricing-cta {
    text-align: center;
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.pricing-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--glass-light);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-mobile-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .language-groups,
    .medical-grid,
    .security-features,
    .use-cases-grid,
    .pricing-cards,
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--accent-light);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-light);
    color: var(--white);
}
/* ================================ */
/* Footer Pages Styles */
/* ================================ */

/* Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--glass-white) 0%, var(--glass-light) 100%);
    backdrop-filter: blur(var(--glass-blur));
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--text-primary);
    text-align: left;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
    text-align: left;
}

.content-wrapper p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: left;
}

/* Stats and Values Grids */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--accent);
    margin: 0 0 8px;
}

.stat-card p {
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.value-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin: 16px 0 12px;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* CTA Section within content */
.cta-section {
    margin: 60px 0;
    padding: 48px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.cta-section h2 {
    text-align: center;
    margin-bottom: 16px;
}

.cta-section p {
    text-align: center;
    margin-bottom: 32px;
}

.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Job Cards */
.job-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 0;
}

.job-card {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
}

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

.job-location {
    background: var(--glass-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.job-tag {
    background: var(--glass-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Documentation Styles */
.doc-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.doc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.doc-nav {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
}

.doc-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.doc-nav a:hover {
    background: var(--glass-light);
    color: var(--accent);
}

/* API Method Cards */
.api-method {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.method-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.method-badge.get {
    background: #10b981;
    color: white;
}

.method-badge.post {
    background: #3b82f6;
    color: white;
}

.method-badge.put {
    background: #f59e0b;
    color: white;
}

.method-badge.delete {
    background: #ef4444;
    color: white;
}

.code-block {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: pre;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

/* Pricing Page */
.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px auto;
    max-width: 1100px;
}

.pricing-card {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 650px;
}

.pricing-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 20px 0 8px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.custom-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

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

.plan-features i {
    color: var(--accent);
    font-size: 14px;
    min-width: 16px;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--glass-light);
    border: 1px solid var(--glass-border);
    transition: 0.4s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background-color: var(--accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.comparison-table {
    width: 100%;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

/* Support FAQ */
.faq-list details {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 16px;
}

details summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    color: var(--accent);
}

details[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

/* Various Cards */
.stat-card,
.value-card,
.benefit-card,
.culture-item,
.support-card,
.tutorial-card,
.program-card,
.cert-card,
.resource-card {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.privacy-notice,
.important-notice {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.privacy-notice i,
.important-notice i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Common Grid Layouts */
.stats-grid,
.values-grid,
.benefits-grid,
.culture-grid,
.faq-grid,
.tutorial-grid,
.resources-grid,
.coding-grid,
.export-formats,
.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

/* CTA Sections */
.cta-section,
.support-cta,
.training-cta,
.pricing-cta {
    text-align: center;
    padding: 60px;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin: 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

kbd {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.mt-3 {
    margin-top: 1rem;
}

.save-badge {
    background: var(--accent);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 4px;
}

/* Language Selector */
.language-selector {
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.lang-toggle {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: var(--glass-light);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.lang-toggle i {
    color: var(--accent);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: var(--glass-light);
    color: var(--accent);
    transform: translateX(4px);
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

/* Enhanced hero badge for auto-detection */
.hero-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Updates for Footer Pages */
@media (max-width: 768px) {
    .contact-grid,
    .contact-support,
    .certification-info {
        grid-template-columns: 1fr;
    }
    
    .doc-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px;
    }
    
    .doc-sidebar {
        position: static;
        top: 0;
        width: 100%;
    }
    
    .doc-content {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

/* ================================ */
/* Ambient AI Demo Showcase Styles */
/* ================================ */

.ambient-ai-demo {
    width: 1000px;
    max-width: 95vw;
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.demo-screen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* AI Panels */
.ai-panel {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    min-height: 200px;
}

.ai-panel.active {
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.panel-header i {
    color: var(--accent);
    font-size: 1.2rem;
}

.panel-header span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Visual Recognition Panel */
.visual-content .patient-view {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.detection-box {
    position: absolute;
    border: 2px solid var(--accent);
    border-radius: 4px;
    padding: 4px 8px;
    animation: pulseBox 2s infinite;
}

.face-detection {
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
}

.hand-detection {
    top: 40px;
    right: 30px;
    width: 60px;
    height: 40px;
}

.detection-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 0.75rem;
    color: var(--accent);
    white-space: nowrap;
    background: var(--glass-white);
    padding: 2px 6px;
    border-radius: 4px;
}

.visual-insights p,
.context-awareness p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visual-insights i,
.context-awareness i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Listening Panel */
.conversation-flow {
    background: var(--glass-white);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.speaker {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.speaker-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    min-width: 60px;
}

.speech {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Cognitive Analysis Panel */
.diagnosis-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.diagnosis-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.confidence {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.confidence.high {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.confidence.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.confidence.low {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.recommendations p {
    font-size: 0.85rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.recommendations i {
    color: var(--accent);
}

/* Documentation Panel */
.note-preview {
    background: var(--glass-white);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.85rem;
}

.note-preview p {
    margin: 6px 0;
    color: var(--text-secondary);
}

.note-preview strong {
    color: var(--text-primary);
}

.demo-screen h5,
.thinking-content h5,
.documentation-content h5 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* AI Activity Indicators */
.ai-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: var(--glass-light);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.indicator.active {
    opacity: 1;
}

.indicator.active i {
    color: var(--accent);
    animation: pulseIcon 2s infinite;
}

.indicator i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.indicator span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@keyframes pulseBox {
    0%, 100% {
        opacity: 1;
        border-color: var(--accent);
    }
    50% {
        opacity: 0.6;
        border-color: var(--accent-light);
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive for Ambient AI Demo */
@media (max-width: 768px) {
    .demo-screen {
        grid-template-columns: 1fr;
    }
    
    .ai-indicators {
        gap: 20px;
    }
    
    .ambient-ai-demo {
        padding: 20px;
    }
}

/* ================================ */
/* Premium Pricing Page Styles */
/* ================================ */

/* ROI Banner */
.roi-banner {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
}

.roi-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.roi-item {
    text-align: center;
    color: white;
}

.roi-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.roi-value {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.roi-detail {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Updated Pricing Cards */
.price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.plan-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

/* Trial Information */
.trial-info {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 2px solid var(--accent);
    border-radius: 20px;
    padding: 48px;
    margin: 60px auto;
    text-align: center;
    max-width: 800px;
}

.trial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.trial-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trial-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Category rows in comparison table */
.category-row td {
    background: var(--glass-light);
    padding: 12px 16px !important;
    font-weight: 600;
    color: var(--text-primary);
}

/* ROI Calculator */
.roi-calculator {
    background: var(--glass-white);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.calc-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.calc-input input {
    width: 100%;
    padding: 10px;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 1rem;
}

.calc-input input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.roi-result {
    text-align: center;
}

.roi-result h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.roi-result p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .roi-value {
        font-size: 2rem;
    }
    
    .roi-display {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trial-features {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Reminder Section - Fixed Alignment */
.features-reminder {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--glass-light) 0%, transparent 100%);
    text-align: center;
}

.features-reminder h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: left;
    padding: 24px;
    background: var(--glass-light);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Download CTA Section - Fixed Alignment */
.download-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 24px;
    margin: 60px 0;
}

.download-cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.download-cta > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.download-cta .btn-large {
    font-size: 18px;
    padding: 16px 40px;
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
}

.download-cta .btn-large:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.download-cta .trial-note {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .features-reminder h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-item {
        text-align: center;
    }
    
    .feature-item i {
        margin: 0 auto 16px;
    }
    
    .download-cta {
        padding: 60px 20px;
        margin: 40px 0;
    }
    
    .download-cta h2 {
        font-size: 32px;
    }
    
    .download-cta > p {
        font-size: 16px;
    }
    
    .download-cta .btn-large {
        font-size: 16px;
        padding: 14px 32px;
        display: inline-block;
        width: auto;
    }
}

/* Additional alignment fixes */
.content-section {
    padding: 60px 0;
}

.download-options {
    margin-bottom: 60px;
}

.requirements-section {
    margin-bottom: 60px;
}
