:root {
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #f87171;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --gray-lighter: #f1f5f9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-secondary: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(0, 84%, 60%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(0, 72%, 51%, 0.15) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(25, 95%, 53%, 0.15) 0px, transparent 50%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 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);
    --shadow-colored: 0 20px 25px -5px rgba(239, 68, 68, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 14px 32px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

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

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    color: var(--primary);
    vertical-align: middle;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
}

.mobile-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 100px 0 140px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-light {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin: 24px 0;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-keywords {
    margin-top: 32px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
}

.hero-keywords p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.hero-keywords strong {
    color: var(--primary);
}

.hero-image {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-2xl);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 320px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    border-color: rgba(239, 68, 68, 0.3);
}

.card-1 {
    top: 20px;
    left: 20px;
}

.card-2 {
    top: 180px;
    right: 40px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 60px;
    left: 0;
    animation-delay: 1s;
}

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

.card-icon {
    font-size: 32px;
    color: var(--primary);
}

.card-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Infographic Sections */
.infographic-section {
    padding: 120px 0;
    background: var(--white);
}

.infographic-section.infographic-dark {
    background: var(--gray-lighter);
}

.infographic-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-light);
}

.infographic-dark .infographic-container {
    background: var(--white);
}

.infographic-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Features Section */
.features {
    padding: 120px 0;
}

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

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 16px;
}

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

.feature-card {
    padding: 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
    transform: translateY(-8px) scale(1.02);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary);
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* CarePass Section */
.carepass {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.carepass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.carepass-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.carepass h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.carepass-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.carepass-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-icon {
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.125rem;
}

.carepass-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    color: var(--dark);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,248,248,1) 100%);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.3);
}

.pricing-card.featured:hover {
    box-shadow: 0 30px 60px -15px rgba(239, 68, 68, 0.4);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header h3 {
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.price span {
    font-size: 1.125rem;
    color: var(--gray);
    font-weight: 500;
}

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

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* For Doctors Section */
.for-doctors {
    padding: 120px 0;
    background: var(--gray-lighter);
}

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

.doctor-benefit {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-light);
}

.doctor-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary);
    display: block;
}

.doctor-benefit h3 {
    margin-bottom: 12px;
}

.doctor-benefit p {
    color: var(--gray);
    line-height: 1.7;
}

.cta-box {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.4);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: var(--gray);
    line-height: 1.7;
}

/* Value Proposition Section */
.value-prop {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

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

.value-card {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    border: 2px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-2xl);
}

.value-icon {
    font-size: 56px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Impact Stats Section */
.impact-stats {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.impact-stats .section-header h2,
.impact-stats .section-header p {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.impact-card {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.impact-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.impact-card p {
    color: var(--gray-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--gray-lighter);
}

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

.testimonial {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial p {
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.7;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Formats Section */
.formats {
    padding: 120px 0;
    background: var(--white);
}

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

.format-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid var(--gray-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.format-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,248,248,1) 100%);
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.2);
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.format-badge,
.format-badge-featured,
.format-badge-prime {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.format-badge {
    background: var(--gray-lighter);
    color: var(--dark);
}

.format-badge-featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.format-badge-prime {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.format-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.format-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.format-features {
    list-style: none;
    margin-bottom: 24px;
}

.format-features li {
    padding: 12px 0 12px 28px;
    color: var(--dark);
    position: relative;
    border-bottom: 1px solid var(--gray-lighter);
}

.format-features li:last-child {
    border-bottom: none;
}

.format-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.format-naming {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--gray);
    background: var(--gray-lighter);
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.faq-question {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-answer {
    color: var(--gray);
    line-height: 1.7;
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background: var(--gray-lighter);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.partner-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.partner-card:hover::before {
    opacity: 0.05;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.partner-icon {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-icon {
    transform: scale(1.15) rotate(5deg);
}

.partner-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
}

.partner-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 64px 0 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 70px;
    width: auto;
}

.footer-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-fine-print {
    font-size: 0.875rem;
    color: var(--gray);
    opacity: 0.7;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 24px;
    text-align: center;
    color: var(--gray);
}

.version-info {
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0.6;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
}

/* Partner Pages */
.partner-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    text-align: center;
}

.partner-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.partner-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.partner-icon-large {
    margin: 24px 0;
}

.partner-icon-large .material-icons {
    font-size: 80px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partner-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.partner-tagline {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.partner-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.partner-about {
    padding: 80px 0;
    background: var(--white);
}

.partner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
}

.partner-content h2 {
    margin-bottom: 24px;
}

.partner-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark);
}

.partner-content .lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.partner-services-list,
.partner-benefits-list {
    list-style: none;
    margin: 16px 0;
}

.partner-services-list li,
.partner-benefits-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.partner-services-list li:last-child,
.partner-benefits-list li:last-child {
    border-bottom: none;
}

.partner-services-list .material-icons {
    color: var(--primary);
    font-size: 24px;
}

.partner-info-card,
.partner-cta-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 24px;
}

.partner-info-card h4,
.partner-cta-card h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .material-icons {
    color: var(--primary);
    font-size: 32px;
}

.info-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.partner-cta-card p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.other-partners {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.partners-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carepass-content {
        grid-template-columns: 1fr;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .formats-grid {
        grid-template-columns: 1fr;
    }

    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 45px;
    }

    .footer-logo-image {
        height: 55px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-card {
        max-width: 280px;
        padding: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .features, .carepass, .for-doctors, .how-it-works, .testimonials, .cta-section, .formats, .faq, .value-prop, .impact-stats, .infographic-section {
        padding: 60px 0;
    }

    .infographic-container {
        padding: 16px;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-image {
        display: none;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px;
    }

    .price {
        font-size: 2.5rem;
    }
}
