/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary — Mountain Teal */
    --primary-color: #2E8B7A;
    --primary-dark: #1E6B5C;
    --primary-light: #E4F3FA;

    /* Accent — Weathered Inuksuk */
    --accent-color: #B05A4A;
    --accent-soft: #F5EDEB;

    /* Legacy semantic aliases */
    --secondary-color: #4EA89A;
    --medical-blue: #2878B5;
    --medical-blue-light: #E2F0FC;
    --ai-purple: #8B5CF6;
    --ai-purple-light: #A78BFA;
    --health-pink: #EC4899;
    --insight-orange: #F59E0B;

    /* Text — Dark Water */
    --text-dark: #142230;
    --text-medium: #3E5568;
    --text-light: #7E92A2;
    --text-disabled: #B8C5D0;

    /* Backgrounds — Snowfield */
    --bg-light: #F8FBFD;
    --bg-white: #FFFFFF;
    --bg-secondary: #EFF4F8;
    --bg-tertiary: #E0E8EF;

    /* Borders — Hoarfrost */
    --border-color: #D8E2EA;
    --border-light: #EAF0F4;
    --border-dark: #C2CED8;

    /* Semantic */
    --success-color: #348A5A;
    --success-bg: #E2F2E8;
    --warning-color: #C49A18;
    --warning-bg: #FEF8E0;
    --error-color: #BE4444;
    --error-bg: #FCEBEB;
    --info-color: #2878B5;
    --info-bg: #E2F0FC;

    /* Shadows — Long Shadow */
    --shadow-sm: 0 1px 3px rgba(20, 34, 48, 0.05);
    --shadow-md: 0 4px 6px rgba(20, 34, 48, 0.10);
    --shadow-lg: 0 10px 30px rgba(20, 34, 48, 0.15);
    --shadow-xl: 0 20px 60px rgba(20, 34, 48, 0.25);

    /* Layout */
    --max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }
.step-card:nth-child(5) { transition-delay: 0.3s; }

/* Navigation */
.nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.neem-leaf {
    flex-shrink: 0;
    color: var(--primary-dark);
    -webkit-text-fill-color: initial;
}

.mockup-leaf {
    vertical-align: middle;
    margin-right: 0.3rem;
    opacity: 0.9;
}

.section-leaf {
    color: var(--primary-color);
    vertical-align: middle;
    margin-right: 0.3rem;
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #F8FBFD 0%, #EFF4F8 100%);
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 1rem;
}

.hero-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Language Pills in Hero */
.language-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.language-pill {
    padding: 0.4rem 0.9rem;
    background: rgba(46, 139, 122, 0.1);
    border: 1px solid rgba(46, 139, 122, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.language-pill:hover {
    background: rgba(46, 139, 122, 0.2);
    transform: translateY(-2px);
}

.language-pill-more {
    padding: 0.4rem 0.9rem;
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* Button Styles */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 14px rgba(46, 139, 122, 0.3);
}

.btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 122, 0.4);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #142230;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #142230;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2E8B7A 0%, #4EA89A 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content {
    text-align: center;
    color: white;
    padding: 2rem 1.5rem;
    width: 100%;
}

/* New AI Explanation Mockup Styles */
.mockup-ai-explanation {
    text-align: left;
    padding: 1.5rem 1.25rem;
}

.mockup-ai-explanation .mockup-header {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-align: center;
}

.mockup-lab-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.lab-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.lab-number {
    font-size: 1.5rem;
    font-weight: 800;
}

.lab-status {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.lab-status.warning {
    background: rgba(251, 191, 36, 0.3);
    color: #fef3c7;
}

.mockup-explanation {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.explanation-text {
    font-size: 0.75rem;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.95;
}

.mockup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.action-icon {
    color: #E2F2E8;
    font-weight: bold;
}

/* Legacy mockup styles */
.mockup-header {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.mockup-score {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.score-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.score-label {
    font-size: 2rem;
    font-weight: 600;
    opacity: 0.8;
}

.mockup-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
    transition: var(--transition-smooth);
}

.mockup-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(5px);
}

.item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Section Containers */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.05), rgba(78, 168, 154, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(46, 139, 122, 0.3);
}

.step-icon {
    margin: 1rem auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.step-icon.ai-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    color: var(--ai-purple);
}

.step-icon.insights-icon {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(90, 200, 250, 0.1));
    color: var(--medical-blue);
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    background: var(--bg-white);
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

/* Who This Is For Section */
.who-section {
    background: var(--bg-light);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.who-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.who-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.1), rgba(78, 168, 154, 0.1));
    color: var(--primary-color);
}

.who-icon.caregiver-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    color: var(--health-pink);
}

.who-icon.newcomer-icon {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(90, 200, 250, 0.1));
    color: var(--medical-blue);
}

.who-icon.chronic-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    color: var(--ai-purple);
}

.who-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.who-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Language Section */
.language-section {
    background: linear-gradient(135deg, #0C1017, #142230);
    color: white;
}

.language-section .section-title {
    color: white;
}

.language-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.language-showcase {
    text-align: center;
}

.language-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.language-item {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.language-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.language-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.05), rgba(78, 168, 154, 0.05));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-persona {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.persona-type {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card-primary {
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.05), rgba(78, 168, 154, 0.05));
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.health-icon {
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.15), rgba(78, 168, 154, 0.15));
    color: var(--primary-color);
}

.insights-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(34, 211, 238, 0.15));
    color: var(--accent-color);
}

.trend-icon {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15), rgba(90, 200, 250, 0.15));
    color: var(--medical-blue);
}

.ai-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.15));
    color: var(--ai-purple);
}

.document-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
    color: var(--insight-orange);
}

.family-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(244, 114, 182, 0.15));
    color: var(--health-pink);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-card p.feature-example {
    font-style: italic;
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.08), rgba(78, 168, 154, 0.08));
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    margin-top: 0.5rem;
}

.feature-card p.feature-benefit {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

/* 3-column features grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* 2x2 features grid */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* 4-column features grid */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.features-grid-4 .feature-card {
    padding: 1.5rem;
}

.features-grid-4 .feature-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.features-grid-4 .feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.features-grid-4 .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.features-grid-4 .feature-example {
    font-size: 0.85rem;
    padding: 0.75rem;
}

@media (max-width: 1100px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .features-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Values Section */
.values-section {
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.05), rgba(78, 168, 154, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(46, 139, 122, 0.1), rgba(78, 168, 154, 0.1));
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.trust-icon-wrapper.hipaa-icon {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(90, 200, 250, 0.1));
    color: var(--medical-blue);
}

.trust-icon-wrapper.encryption-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.1));
    color: var(--ai-purple);
}

.trust-icon-wrapper.no-ads-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    color: var(--health-pink);
}

.trust-icon-wrapper.canada-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(248, 113, 113, 0.1));
    color: #DC2626;
}

.trust-item.canada-highlight {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(248, 113, 113, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.trust-item:hover .trust-icon-wrapper {
    transform: scale(1.1);
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Waitlist Form */
.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    max-width: 400px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #7E92A2;
}

.waitlist-form .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.waitlist-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.waitlist-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    min-height: 24px;
}

.form-message.success {
    color: #E2F2E8;
}

.form-message.error {
    color: #FCEBEB;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.footer-brand .neem-leaf {
    color: var(--secondary-color);
}

.footer-brand p {
    color: #7E92A2;
    margin-bottom: 2rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links a {
    color: #7E92A2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom p {
    color: #7E92A2;
    font-size: 0.875rem;
}

/* Privacy Page Styles */
.privacy-page .content {
    text-align: left;
    padding: 50px 60px;
    max-width: 900px;
}

.privacy-page .header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-page .header h1 a {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.privacy-page .header h1 a:hover {
    color: var(--secondary-color);
}

.privacy-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.privacy-content section {
    margin-bottom: 40px;
}

.privacy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.privacy-content h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.privacy-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.privacy-content li {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.8;
}

.privacy-content ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content strong {
    color: var(--text-dark);
}

.back-link {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.back-link a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 122, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .language-pills {
        justify-content: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .score-number {
        font-size: 4rem;
    }

    .score-label {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-arrow {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    /* Who section responsive */
    .who-grid {
        grid-template-columns: 1fr 1fr;
    }

    .who-card {
        padding: 1.5rem 1rem;
    }

    .who-icon {
        width: 50px;
        height: 50px;
    }

    /* Language section responsive */
    .language-flags {
        gap: 0.75rem;
    }

    .language-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .language-description {
        font-size: 1rem;
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 36px;
        height: 36px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper svg {
        width: 32px;
        height: 32px;
    }

    .trust-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .trust-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .privacy-page .content {
        padding: 30px 25px;
    }

    .privacy-page .header h1 a {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.7rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
    }

    .privacy-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    /* AI explanation mockup mobile */
    .mockup-ai-explanation {
        padding: 1rem;
    }

    .lab-number {
        font-size: 1.25rem;
    }

    .explanation-text {
        font-size: 0.7rem;
    }

    .action-item {
        font-size: 0.7rem;
    }

    .score-number {
        font-size: 3rem;
    }

    .score-label {
        font-size: 1.2rem;
    }

    .mockup-item {
        padding: 0.6rem 0.8rem;
    }

    .item-text {
        font-size: 0.75rem;
    }

    .item-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Who section mobile */
    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-card h3 {
        font-size: 1.1rem;
    }

    .who-card p {
        font-size: 0.9rem;
    }

    /* Language section mobile */
    .language-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .language-description {
        font-size: 0.95rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-card p.feature-example {
        font-size: 0.85rem;
        padding: 0.75rem;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .trust-item h4 {
        font-size: 1rem;
    }

    .trust-item p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .form-group {
        flex-direction: column;
    }

    .email-input {
        max-width: 100%;
    }
}
