/* Import Urbanist font */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --accent-primary: #f59e0b;
    --accent-secondary: #f97316;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    overflow-x: hidden;
}

/* Ensure all headings use Urbanist font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Ensure buttons and other elements use Urbanist */
button, input, textarea, select {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Force Urbanist font on all text elements */
* {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-image-small {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border-radius: 25px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
    border-radius: 25px;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Mascot Styles */
.hero-mascot {
    margin-top: 30px;
    text-align: center;
}

.mascot-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(44, 62, 80, 0.15),
        0 0 0 8px #1a1a1a,
        0 0 0 12px #2d2d2d;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: #f8f9fa;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.indicators {
    display: flex;
    align-items: center;
    gap: 4px;
}

.network {
    font-size: 10px;
    font-weight: 600;
}

.battery-percent {
    font-size: 10px;
    color: #4CAF50;
}

.app-content {
    flex: 1;
    padding: 20px 16px 80px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-y: auto;
}

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

.greeting h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.greeting p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-stats {
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 24px;
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.stat-label {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.stat-status.good {
    background: #c6f6d5;
    color: #22543d;
}

.daily-focus {
    margin-bottom: 24px;
}

.daily-focus h2 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.focus-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.focus-visual {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breathing-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.focus-content {
    flex: 1;
}

.focus-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.focus-content p {
    font-size: 12px;
    color: #718096;
    margin: 0 0 12px 0;
}

.start-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.start-btn:hover {
    transform: translateY(-1px);
}

.quick-actions h2 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-item:hover {
    transform: translateY(-2px);
}

.action-icon {
    font-size: 24px;
}

.action-item span {
    font-size: 12px;
    font-weight: 600;
    color: #2d3748;
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-item i {
    font-size: 16px;
    color: #718096;
}

.nav-item span {
    font-size: 10px;
    color: #718096;
    font-weight: 500;
}

.nav-item.active i,
.nav-item.active span {
    color: #667eea;
}

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

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0 5px;
}

.indicators {
    display: flex;
    gap: 5px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #333;
    overflow-y: auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

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

.progress-indicator {
    color: #666;
    font-size: 0.9rem;
}

.breathing-coach {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    color: #495057;
    margin-bottom: 15px;
    border: 1px solid rgba(108, 117, 125, 0.1);
}

.meditation-visual {
    margin-bottom: 10px;
}

.yoga-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.coach-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.coach-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.start-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: 500;
}

.daily-activities {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: space-between;
}

.activity-item {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.activity-icon {
    font-size: 1.2rem;
}

.activity-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #666;
}

.todays-focus {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
}

.focus-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.9rem;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 8px;
    background: white;
    border-radius: 8px;
}

.focus-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.focus-details {
    flex: 1;
}

.focus-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.focus-time {
    font-size: 0.7rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-mascot {
    margin-bottom: 20px;
}

.blue-mascot {
    height: 80px;
    width: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-icon.with-circle {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
}

.feature-icon.yoga-feature {
    background: transparent;
    border: none;
}

.yoga-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.shopping-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.exercise-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.daily-focus-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.recipes-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.tracking-feature-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    border-radius: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.mission {
    padding: 80px 0;
    background: white;
}

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

.mission-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #ff6b6b;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-item p {
    color: #4a5568;
    font-weight: 500;
}

.values {
    padding: 80px 0;
    background: #f8fafc;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: white;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-member {
    background: #f7fafc;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 350px;
}

.member-image {
    margin-bottom: 25px;
}

.member-image img {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.member-role {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #4a5568;
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* App Page Styles */
.app-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.app-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-download-buttons {
    margin-top: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.download-btn.beta-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
}

.download-btn.disabled {
    background: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
}

.download-btn i {
    font-size: 2rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.coming-soon-buttons {
    margin-top: 20px;
}

.app-features {
    padding: 80px 0;
    background: #f8fafc;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-showcase:nth-child(even) .feature-image {
    order: 2;
}

.feature-showcase:nth-child(even) .feature-content {
    order: 1;
}

.feature-image {
    text-align: center;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #4a5568;
}

.feature-list i {
    color: #48bb78;
    font-size: 1.1rem;
}

.beta-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-align: center;
}

.beta-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.beta-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .feature-showcase:nth-child(even) .feature-image,
    .feature-showcase:nth-child(even) .feature-content {
        order: unset;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .app-hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Founder Story Section */
.founder {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 40px;
    line-height: 1.2;
}

.story-content {
    margin-bottom: 40px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.founder-signature {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 1rem;
    color: #718096;
    font-style: italic;
}

.founder-image {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.founder-photo {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.founder-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    z-index: -1;
}

.founder-quote {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    max-width: 320px;
}

.quote-icon {
    color: #ff6b6b;
    font-size: 24px;
    margin-bottom: 15px;
}

.founder-quote p {
    font-size: 1rem;
    font-style: italic;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 968px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .founder-text h2 {
        font-size: 2.2rem;
    }
    
    .founder-photo {
        width: 220px;
        height: 220px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    color: #666;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mascot-large {
    height: 200px;
    width: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.mascot-speech-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 250px;
    text-align: center;
}

.mascot-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: white;
}

.mascot-speech-bubble p {
    margin: 0;
    color: #495057;
    font-weight: 500;
    font-style: italic;
}



/* Download Section */
.download {
    padding: 100px 0;
    background: #F2EFEF;
    color: #333;
    text-align: center;
}

.download-mascot {
    margin-bottom: 30px;
}

.mascot-download {
    height: 100px;
    width: auto;
    object-fit: contain;
    animation: bounce 2s ease-in-out infinite;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-logo .logo-image {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8);
}

.footer-logo-white {
    filter: brightness(0) invert(1) !important;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
    position: relative;
}

.footer-mascot {
    margin-bottom: 15px;
}

.footer-blue-mascot {
    height: 60px;
    width: auto;
    object-fit: contain;
    animation: bounce 3s ease-in-out infinite;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .phone-mockup {
        transform: none;
        width: 250px;
        height: 500px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-mascot {
        margin-bottom: 20px;
    }
}

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

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
}

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

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beta Signup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #e74c3c;
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: #000000;
    border-radius: 20px 20px 0 0;
    color: white;
}

.modal-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    object-fit: contain;
    display: block;
    max-width: 100%;
}

.modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.signup-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
}

.checkbox-group label {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #4a5568;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
}

.success-message {
    text-align: center;
    padding: 40px 30px;
    color: #22543d;
}

.success-message i {
    font-size: 48px;
    color: #38a169;
    margin-bottom: 15px;
}

.success-message h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.success-message p {
    margin: 0;
    font-size: 14px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .signup-form {
        padding: 20px;
    }
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 15px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    transition: background-color 0.2s;
}

.dropdown-link:hover {
    background-color: #f7fafc;
    color: #2d3748;
}

.dropdown-link i {
    font-size: 1.2rem;
    color: #ff6b6b;
    width: 20px;
    text-align: center;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d3748;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 2px;
}

/* Newly Diagnosed & Natural Methods Pages */
.quick-stats {
    padding: 60px 0;
    background: white;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #f7fafc;
    border-radius: 16px;
    border-bottom: 4px solid #ff6b6b;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-card p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.natural-methods {
    padding: 80px 0;
    background: #f8fafc;
}

.natural-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.method-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    align-items: flex-start;
}

.method-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-content h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.method-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.method-cta {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.method-cta:hover {
    color: #e53e3e;
}

.timeline-section {
    padding: 80px 0;
    background: white;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b6b, #ff8e53);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.timeline-marker {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    text-align: center;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.timeline-content {
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.solution-section {
    padding: 80px 0;
    background: #f8fafc;
}

.solution-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.solution-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
}

.comparison-col {
    padding: 30px;
    text-align: center;
}

.comparison-col:first-child {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-col h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.comparison-col p {
    opacity: 0.8;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.comparison-item:first-child {
    border-right: 1px solid #e2e8f0;
    background: #fef5f5;
}

.comparison-item:last-child {
    background: #f0fff4;
}

.comparison-item i {
    font-size: 1.2rem;
}

.comparison-item:first-child i {
    color: #e53e3e;
}

.comparison-item:last-child i {
    color: #38a169;
}

.comparison-item p {
    margin: 0;
    color: #2d3748;
    font-weight: 500;
}

.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.story-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #ff6b6b;
}

.story-quote {
    margin-bottom: 20px;
}

.story-quote i {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.story-quote p {
    color: #2d3748;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.story-author strong {
    color: #2d3748;
    font-size: 1rem;
}

.story-author span {
    color: #718096;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .comparison-table {
        margin: 0 20px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-item:first-child {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}

/* Feature Pages Layout Styles */
.feature-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-hero-text .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item i {
    font-size: 1.3rem;
    color: #ffd700;
}

.trust-item span {
    font-weight: 600;
    font-size: 1rem;
}

.safety-notice,
.transparency-notice,
.stress-connection {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.safety-notice i,
.transparency-notice i,
.stress-connection i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 5px;
}

.notice-content h4,
.connection-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.notice-content p,
.connection-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.feature-hero-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Exercise Page Specific */
.exercise-benefits {
    padding: 80px 0;
    background: white;
}

.exercise-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.benefit-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border-bottom: 4px solid #ff6b6b;
}

.benefit-stat {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b6b;
    line-height: 1;
}

.benefit-unit {
    font-size: 1.2rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

.exercise-types {
    padding: 80px 0;
    background: #f8fafc;
}

.exercise-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.workout-category {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.workout-category h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.workout-category p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.workout-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.workout-list li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.workout-list li:last-child {
    border-bottom: none;
}

.safety-guidelines {
    padding: 80px 0;
    background: white;
}

.safety-guidelines h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.safety-do,
.safety-dont {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.safety-do {
    border-left: 5px solid #38a169;
}

.safety-dont {
    border-left: 5px solid #e53e3e;
}

.safety-do h3 {
    color: #38a169;
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-dont h3 {
    color: #e53e3e;
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.safety-do ul,
.safety-dont ul {
    list-style: none;
    padding: 0;
}

.safety-do li,
.safety-dont li {
    padding: 10px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.5;
}

.safety-do li:last-child,
.safety-dont li:last-child {
    border-bottom: none;
}

/* Nutrition Page Specific */
.problem-section {
    padding: 80px 0;
    background: white;
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.problem-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 50px;
    line-height: 1.7;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-stat {
    background: #f7fafc;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border-bottom: 4px solid #e53e3e;
}

.problem-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 10px;
}

.problem-stat p {
    color: #4a5568;
    margin: 0;
}

.solution-intro {
    background: #f0fff4;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #38a169;
}

.solution-intro h3 {
    color: #38a169;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.solution-intro p {
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
}

.nutrition-features {
    padding: 80px 0;
    background: #f8fafc;
}

.nutrition-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-benefits li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.feature-benefits li:last-child {
    border-bottom: none;
}

.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.testimonial-author {
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 1rem;
}

.feature-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-align: center;
}

.feature-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-benefit i {
    font-size: 1.2rem;
}

/* Meditation Page Specific */
.stress-bp-section {
    padding: 80px 0;
    background: white;
}

.stress-bp-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.intro-text {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

.stress-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stress-fact {
    background: #f7fafc;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid #ff6b6b;
}

.stress-fact h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.stress-fact p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.ai-coach-features {
    padding: 80px 0;
    background: #f8fafc;
}

.ai-coach-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.coach-feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-number {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.coach-feature h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.coach-feature p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.breathing-techniques {
    padding: 80px 0;
    background: white;
}

.breathing-techniques h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.technique-card {
    background: #f7fafc;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #4299e1;
    text-align: center;
}

.technique-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.technique-description {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
}

.technique-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.step {
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    color: #2d3748;
    font-weight: 600;
    border: 2px solid #4299e1;
}

.technique-benefit {
    color: #4a5568;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Tracking Page Specific */
.tracking-features {
    padding: 80px 0;
    background: #f8fafc;
}

.tracking-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 60px;
}

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

.tracking-feature {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.tracking-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tracking-feature .feature-icon i {
    font-size: 2rem;
    color: white;
}

.tracking-feature h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.tracking-feature p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newly-diagnosed {
    padding: 80px 0;
    background: white;
}

.newly-diagnosed h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 30px;
}

.diagnosed-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.journey-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #f7fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid #ff6b6b;
}

.step-number {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Feature Pages */
@media (max-width: 768px) {
    .feature-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
    }
    
    .stress-facts {
        grid-template-columns: 1fr;
    }
    
    .coach-features-grid {
        grid-template-columns: 1fr;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .trust-indicators {
        align-items: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
}


