/* ============================================
   Genrush - Modern Landing Page Styles
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --primary-50: #ecfdf5;
    --primary-100: #d1fae5;
    --primary-200: #a7f3d0;
    --primary-300: #6ee7b7;
    --primary-400: #34d399;
    --primary-500: #10b981;
    --primary-600: #059669;
    --primary-700: #047857;
    --primary-800: #065f46;
    --primary-900: #064e3b;

    /* Secondary/Accent (if needed) */
    --secondary-50: #f0fdf4;
    --secondary-500: #22c55e;
    --secondary-600: #16a34a;

    /* Neutrals */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Theme Variables (Editable) */
    --bg-body: white;
    --bg-surface: white;
    --bg-surface-alt: #f8fafc;
    /* slate-50 */
    --text-main: #334155;
    /* slate-700 */
    --text-heading: #0f172a;
    /* slate-900 */
    --text-muted: #64748b;
    /* slate-500 */

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows & Radius */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-500);
}

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

.btn-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.39);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(245, 158, 11, 0.45);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-300);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary-outline:hover {
    color: var(--primary-700);
    border-color: var(--primary-400);
    transform: translateY(-2px);
}

.btn-secondary-outline:hover::before {
    left: 0;
}

.hero-btn {
    animation: fadeInUp 0.5s ease backwards;
}

.hero-btn:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-btn:nth-child(2) {
    animation-delay: 0.45s;
}

.hero-btn:nth-child(3) {
    animation-delay: 0.6s;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-top: -12px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--slate-600);
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

.nav-cta {
    padding: 10px 20px;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    z-index: -1;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-700);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    animation: fadeInDown 0.6s ease;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-600);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: #0f172a;
    border-radius: 12px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    padding: 50px 16px 16px;
}

.app-header-preview {
    text-align: center;
    margin-bottom: 20px;
}

.app-logo-preview {
    height: 40px;
    width: auto;
}

.search-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-100);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.search-preview span {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.medicine-cards-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.med-card-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--slate-50);
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--slate-200);
}

.med-icon {
    font-size: 1.5rem;
}

.med-info {
    display: flex;
    flex-direction: column;
}

.med-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-800);
}

.med-price {
    font-size: 0.8rem;
    color: var(--primary-600);
    font-weight: 600;
}

.med-price s {
    color: var(--slate-400);
    font-weight: 400;
    margin-left: 4px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
}

.floating-icon {
    font-size: 1.25rem;
}

.card-1 {
    top: 60px;
    left: -40px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: -60px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 120px;
    left: -20px;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
}

/* Problem Section */
.problem {
    background: white;
}

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

.problem-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--slate-50);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: white;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    color: var(--primary-600);
    box-shadow: var(--shadow);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* Solution / Features Section */
.solution {
    background: linear-gradient(180deg, white 0%, var(--slate-50) 100%);
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: all 0.3s ease;
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    color: var(--primary-600);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

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

/* How It Works Section */
.how-it-works {
    background: var(--slate-900);
    color: white;
}

.how-it-works .section-tag {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-400);
}

.how-it-works .section-title {
    color: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 300px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 50px 32px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    color: var(--primary-400);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--slate-400);
    line-height: 1.7;
}

.step-connector {
    flex-shrink: 0;
}

/* Medicines Section */
.medicines {
    background: white;
}

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

.medicine-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.medicine-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

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

.medicine-icon {
    font-size: 2rem;
}

.medicine-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.medicine-use {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: var(--slate-50);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.branded-price,
.generic-price {
    text-align: center;
}

.price-comparison .label {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 4px;
}

.price-comparison .price {
    font-size: 1.25rem;
    font-weight: 700;
}

.branded-price .price {
    color: var(--slate-400);
}

.strikethrough {
    text-decoration: line-through;
}

.generic-price .price {
    color: var(--primary-600);
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    width: 100%;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(180deg, var(--slate-50) 0%, white 100%);
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    color: var(--primary-600);
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--slate-500);
    font-size: 0.9375rem;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: white;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--slate-800);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.store-btn svg {
    width: 28px;
    height: 28px;
}

.store-btn span {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-500);
}

.store-btn strong {
    display: block;
    font-size: 1.125rem;
}

.store-btn.coming-soon {
    opacity: 0.7;
    position: relative;
}

.qr-code {
    text-align: center;
}

.qr-placeholder {
    background: white;
    padding: 16px;
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-lg);
}

.qr-code p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--slate-50);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary-600);
    box-shadow: var(--shadow);
}

.contact-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--primary-600);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-card a:hover {
    color: var(--primary-700);
}

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

/* Footer */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 80px 0 40px;
}

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

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.8;
    max-width: 300px;
}

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

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul a {
    transition: color 0.2s ease;
}

.footer-column ul a:hover {
    color: var(--primary-400);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-600);
    color: white;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Header Actions & Cart */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--slate-600);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.cart-toggle:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-500);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: var(--radius-full);
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-400);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.cart-close:hover {
    color: var(--slate-900);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    text-align: center;
    color: var(--slate-400);
    margin-top: 40px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--slate-50);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary-600);
    font-weight: 700;
    font-size: 0.875rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--slate-200);
    background: white;
    color: var(--slate-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
}

.remove-item {
    background: none;
    border: none;
    color: var(--slate-400);
    cursor: pointer;
    font-size: 0.75rem;
    text-decoration: underline;
    margin-top: 8px;
}

.remove-item:hover {
    color: #ef4444;
}

.cart-footer {
    padding: 24px;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--slate-600);
}

#cart-savings {
    color: var(--primary-600);
    font-weight: 600;
}

.grand-total {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 24px;
}

.btn-block {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Medicine Card Updates */
.medicine-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-50);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-visual {
        margin-top: 40px;
        transform: scale(0.9);
    }

    .steps-container {
        flex-direction: column;
    }

    .step {
        max-width: 400px;
    }

    .step-connector {
        transform: rotate(90deg);
    }

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

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column !important;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .features-grid,
    .problem-grid,
    .medicines-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .download-text h2 {
        font-size: 1.75rem;
    }

    .price-comparison {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .medicine-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .medicine-category {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
    }
}

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

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

    .btn-lg {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

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