/* MindOnBend - Modern + Spiritual Growth Design */

/* MindOnBend Color Palette */
:root {
    /* MindOnBend Palette - Modern + Spiritual Growth */
    --bright-sage: #7FB069;      /* Bright Sage - medium, vibrant green */
    --deep-indigo: #1A1B3D;      /* Deep Indigo - very dark, rich blue */
    --light-beige: #F5F5DC;      /* Light Beige - very pale, creamy off-white */
    --bright-lavender: #9B6B9E;  /* Bright Lavender - medium, vibrant purple */
    --highlight-gold: #FFD700;   /* Highlight Gold - bright, clear yellow-gold */
    
    /* Derived colors for consistency */
    --primary-color: var(--deep-indigo);
    --secondary-color: var(--bright-sage);
    --accent-color: var(--bright-lavender);
    --background-color: var(--light-beige);
    --text-color: var(--deep-indigo);
    --light-text: #666;
    --border-color: #ddd;
    --success-color: var(--bright-sage);
    --warning-color: var(--highlight-gold);
    --error-color: #dc3545;
    --card-bg: #fff;
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --gradient-primary: linear-gradient(135deg, var(--deep-indigo) 0%, var(--bright-sage) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--bright-lavender) 0%, var(--highlight-gold) 100%);
    --gradient-sage: linear-gradient(135deg, var(--bright-sage) 0%, var(--light-beige) 100%);
    --gradient-spiritual: linear-gradient(135deg, var(--deep-indigo) 0%, var(--bright-lavender) 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--light-beige) 0%, #e8e6e3 100%);
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    color: var(--light-beige);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 27, 61, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.main-logo {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: block;
    max-width: 100%;
    height: auto;
}

.logo-container h1 {
    margin: 0;
    font-size: 3.5em;
    font-weight: 700;
    color: var(--light-beige);
}

.header-content h1 {
    font-size: 3em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.3em;
    margin: 10px 0;
    opacity: 0.9;
    font-weight: 300;
}

.subtitle {
    font-size: 1.1em;
    opacity: 0.8;
    margin: 10px 0 30px 0;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--light-beige);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    background: rgba(245, 245, 220, 0.2);
    transform: translateY(-2px);
}

/* Daily Sutra */
.daily-sutra-section {
    margin: 60px 0;
    text-align: center;
}

.daily-sutra-section h2 {
    font-size: 2.5em;
    color: #2d5016;
    margin-bottom: 30px;
    font-weight: 600;
}

.sutra-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(74, 124, 89, 0.1);
    transition: transform 0.3s ease;
}

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

.daily-card {
    background: linear-gradient(135deg, #fff 0%, #f8f6f0 100%);
    border: 3px solid #4a7c59;
}

.sutra-number {
    font-size: 1.2em;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 20px;
}

.sanskrit {
    font-size: 1.8em;
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.transliteration {
    font-size: 1.3em;
    color: #4a7c59;
    margin-bottom: 15px;
    font-style: italic;
}

.translation {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.explanation {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
    text-align: left;
    background: rgba(74, 124, 89, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.sutra-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-beige);
    box-shadow: 0 4px 15px rgba(26, 27, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 27, 61, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bright-sage);
    border: 2px solid var(--bright-sage);
}

.btn-outline:hover {
    background: var(--bright-sage);
    color: var(--light-beige);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Search & Explore */
.explore-section {
    margin: 60px 0 30px 0;
}

.explore-section h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.search-controls {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--bright-sage);
}

.search-btn {
    padding: 15px 20px;
    background: var(--bright-sage);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-color);
}

.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #4a7c59;
}

/* Sutras Grid */
.sutras-grid-section {
    margin: 40px 0;
}

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

.loading-spinner {
    text-align: center;
    padding: 60px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* Practice Section */
.practice-section {
    margin: 80px 0;
    background: rgba(74, 124, 89, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
}

.practice-section h2 {
    font-size: 2.5em;
    color: #2d5016;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.practice-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.practice-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.practice-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Footer */
.sutras-footer {
    background: #2d3436;
    color: #f8f6f0;
    padding: 50px 40px 20px;
    border-radius: 20px;
    margin: 60px 0 0 0;
}

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

.footer-section h4 {
    margin: 0 0 15px 0;
    color: #4a7c59;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Sound Therapy Styles */
.sound-therapy-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sound-hero {
    background: var(--gradient-spiritual);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.sound-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sound-hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.sound-assessment-section {
    background: var(--light-beige);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.sound-profile-container {
    text-align: center;
}

.sound-profile-loading {
    padding: 40px;
}

.sound-profile-content {
    text-align: left;
}

.sound-profile {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0;
}

.profile-section {
    background: var(--light-beige);
    padding: 20px;
    border-radius: 10px;
}

.profile-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.recommendations {
    margin-top: 30px;
}

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

.recommendation-card {
    background: var(--light-beige);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--bright-lavender);
}

.recommendation-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.recommendation-card li {
    padding: 5px 0;
    color: var(--secondary-color);
}

/* Sound Categories */
.sound-categories-section {
    margin-bottom: 40px;
}

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

.sound-category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sound-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.sound-category-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.category-features li {
    padding: 8px 0;
    color: var(--secondary-color);
}

/* Dosha Sound Therapy */
.dosha-sound-section {
    margin-bottom: 40px;
}

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

.dosha-sound-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-top: 5px solid;
}

.dosha-sound-card.vata {
    border-top-color: #74b9ff;
}

.dosha-sound-card.pitta {
    border-top-color: #fd79a8;
}

.dosha-sound-card.kapha {
    border-top-color: #55a3ff;
}

.dosha-sound-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dosha-sounds {
    margin: 20px 0;
}

.sound-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sound-name {
    font-weight: 500;
    color: var(--primary-color);
}

.sound-frequency {
    color: var(--bright-lavender);
    font-size: 0.9em;
}

/* Guna Sound Therapy */
.guna-sound-section {
    margin-bottom: 40px;
}

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

.guna-sound-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-top: 5px solid;
}

.guna-sound-card.sattva {
    border-top-color: #00b894;
}

.guna-sound-card.rajas {
    border-top-color: #fdcb6e;
}

.guna-sound-card.tamas {
    border-top-color: #636e72;
}

.guna-sound-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.guna-sounds {
    margin: 20px 0;
}

/* Gong Therapy */
.gong-therapy-section {
    margin-bottom: 40px;
}

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

.gong-category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--bright-lavender);
}

.gong-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gong-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.gong-category-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gong-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
    padding: 15px;
    background: var(--light-beige);
    border-radius: 10px;
}

.material, .quality {
    color: var(--bright-lavender);
    font-size: 0.9em;
    font-weight: 500;
}

.gong-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.gong-benefits li {
    padding: 8px 0;
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
}

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

/* Sound Sessions */
.sound-sessions-section {
    margin-bottom: 40px;
}

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

.session-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.session-card:hover {
    transform: translateY(-3px);
}

.session-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.session-details {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background: var(--light-beige);
    border-radius: 10px;
}

.duration, .level {
    color: var(--bright-lavender);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sound-hero h1 {
        font-size: 2em;
    }
    
    .profile-details {
        grid-template-columns: 1fr;
    }
    
    .sound-categories-grid,
    .dosha-sound-grid,
    .guna-sound-grid,
    .sound-sessions-grid {
        grid-template-columns: 1fr;
    }
    
    .sound-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 20px;
    text-align: center;
    color: #b2bec3;
}

.sister-sites-note {
    margin-top: 10px;
    color: var(--light-text);
}

.sister-sites-note a {
    color: var(--bright-lavender);
    text-decoration: none;
    font-weight: 500;
}

.sister-sites-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header-content h1 {
        font-size: 2.2em;
    }
    
    .main-nav {
        gap: 15px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 0.9em;
    }
    
    .sutras-grid {
        grid-template-columns: 1fr;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sutra-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

/* Animations */
.sutra-card {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Hero Banner Styles */
.hero-banner {
    background: var(--gradient-primary);
    color: var(--light-beige);
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--light-beige), var(--highlight-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--light-beige);
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-beige);
}

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

/* AI Agents Section */
.ai-agents-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light-beige) 0%, #e9ecef 100%);
}

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

.ai-agent-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.ai-agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ai-agent-card.featured {
    border-color: var(--bright-sage);
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--bright-sage) 100%);
    transform: scale(1.05);
}

.agent-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.ai-agent-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.agent-subtitle {
    color: var(--bright-lavender);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.agent-features {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.agent-features li {
    margin: 8px 0;
    color: #4a7c59;
}

.agent-description {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

/* Why MendonBend Section */
.why-mendonbend-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: #f8f6f0;
    text-align: center;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.5em;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-content h4 {
    color: #e8f5e8;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.benefit-content p {
    color: #f0f8f0;
    line-height: 1.5;
}

.platform-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.platform-section h3 {
    color: #e8f5e8;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.platform-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f8f0;
}

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

.platform-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1.1em;
}

.feature-icon {
    font-size: 1.3em;
}

.journey-section {
    max-width: 600px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.journey-section h3 {
    color: #e8f5e8;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.journey-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f8f0;
}

/* Product Tiles Section */
.products-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    color: #2d5016;
    font-size: 2.5em;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.product-tile {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.product-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #4a7c59, #2d5016);
    color: white;
}

.product-tile h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

.product-subtitle {
    color: #8b4513;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.product-tile p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    color: #4a7c59;
    font-size: 0.95em;
}

.product-tile.therapy {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.product-tile.therapy .product-icon {
    background: linear-gradient(135deg, #4a7c59, #2d5016);
}

.product-tile.sequence-creator {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.product-tile.sequence-creator .product-icon {
    background: linear-gradient(135deg, #4a7c59, #2d5016);
}

.product-tile.spiritual-growth {
    border-color: #6c5ce7;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.product-tile.spiritual-growth .product-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.product-tile.pose-perfection {
    border-color: #e17055;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.product-tile.pose-perfection .product-icon {
    background: linear-gradient(135deg, #e17055, #fd79a8);
}

/* Yoga Therapy Page Styles */
.therapy-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.therapy-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.therapy-hero h1 {
    font-size: 3em;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 700;
}

.therapy-hero-description {
    font-size: 1.3em;
    color: #4a7c59;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.assessment-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.assessment-card.primary {
    border-color: #4a7c59;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.assessment-card.comprehensive {
    border-color: #6c5ce7;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8f5e8 100%);
}

.assessment-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    margin: 0 auto 20px auto;
    background: linear-gradient(135deg, #4a7c59, #2d5016);
    color: white;
}

.assessment-card.comprehensive .assessment-icon {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.assessment-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

.assessment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.assessment-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.assessment-features li {
    padding: 8px 0;
    color: #4a7c59;
    font-size: 0.95em;
}

.previous-results-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.results-summary {
    text-align: center;
}

.results-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Prana Vayu Assessment Results */
.prana-vayu-section {
    background: rgba(139, 69, 19, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #8b4513;
}

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

.vayu-score {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.vayu-score.dominant {
    border-color: #8b4513;
    background: rgba(139, 69, 19, 0.05);
    transform: scale(1.02);
}

.vayu-score h4 {
    color: #8b4513;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.vayu-score p {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.score-bar {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    background: linear-gradient(90deg, #8b4513, #d2691e);
    height: 100%;
    transition: width 0.5s ease;
}

.vayu-analysis {
    background: rgba(139, 69, 19, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.vayu-analysis h4 {
    color: #8b4513;
    margin-bottom: 15px;
}