/* 
   Body Sauce / D r P Brand Website Styles
   A fusion of modern tech aesthetics with Kenny Scharf-inspired cosmic elements
*/

:root {
    /* Main brand colors */
    --primary-color: #8a2be2; /* Purple */
    --secondary-color: #00b4d8; /* Cyan */
    --accent-color: #ff3d71; /* Pink/red */
    --background-dark: #0a0a1a; /* Deep space blue */
    --background-darker: #050510; /* Deeper space blue */
    --text-light: #ffffff;
    --text-medium: rgba(255, 255, 255, 0.8);
    --text-dark: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), #6600cc);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), #0077b6);
    --cosmic-gradient: linear-gradient(135deg, #0a0a1a, #1a0a2e);
    
    /* Shadows */
    --glow-primary: 0 0 20px rgba(138, 43, 226, 0.5);
    --glow-secondary: 0 0 20px rgba(0, 180, 216, 0.5);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.primary {
    background: var(--primary-gradient);
    color: var(--text-light);
    border: none;
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

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

.btn.secondary:hover {
    background: var(--secondary-color);
    color: var(--background-dark);
    transform: translateY(-3px);
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* Cosmic Background */
.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cosmic-gradient);
    z-index: -3;
    overflow: hidden;
}

.cosmic-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 60px 60px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    animation: stars 120s linear infinite;
    z-index: -1;
}

.cosmic-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.2), transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.2), transparent 30%),
        radial-gradient(circle at 60% 20%, rgba(255, 61, 113, 0.15), transparent 25%);
    z-index: -1;
    filter: blur(50px);
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--text-light);
    z-index: 1;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light);
    z-index: 1;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(20px);
    opacity: 0.5;
    border-radius: 50%;
    z-index: 0;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--text-light);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.nav-cta {
    background: var(--secondary-gradient);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--text-light);
}

nav a.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-secondary);
}

nav a.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.7));
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

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

/* Wide button with animated arrows */
.btn.wide-button {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.animated-arrows {
    display: flex;
    gap: 0.2rem;
    margin-left: 0.5rem;
}

.animated-arrows i {
    font-size: 0.9rem;
    opacity: 0.6;
    animation: arrow-wave 1.5s ease-in-out infinite;
}

.animated-arrows i:nth-child(1) {
    animation-delay: 0s;
}

.animated-arrows i:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-arrows i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow-wave {
    0%, 60%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    30% {
        opacity: 1;
        transform: translateX(3px);
    }
}

.btn.wide-button:hover .animated-arrows i {
    animation-duration: 0.8s;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Hide mobile version on desktop */
.hero-image.mobile-only {
    display: none;
}

.motion-visual {
    width: 500px;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #0E1836;
    border-radius: 20px;
}

.swimmer-outline {
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url('../images/wake_ai_logo_color.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 3;
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.data-points::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--secondary-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.8;
    animation: datapoints 4s ease-in-out infinite alternate;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background-image: linear-gradient(45deg, transparent 40%, var(--secondary-color) 40%, var(--secondary-color) 60%, transparent 60%);
    background-size: 20px 20px;
    animation: connectionlines 8s linear infinite;
    z-index: 2;
}

@keyframes datapoints {
    0% {
        opacity: 0.2;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes connectionlines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

/* Tech Section */
.tech-section {
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.8), rgba(26, 10, 46, 0.8));
    overflow: hidden;
}

.tech-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: var(--glow-primary);
}

/* Insights Section */
.insights-section {
    background: linear-gradient(to bottom, rgba(26, 10, 46, 0.8), rgba(10, 10, 26, 0.8));
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 1.5rem;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, rgba(10, 10, 26, 0.8), rgba(26, 10, 46, 0.8));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 2rem 0; /* Added padding for more space */
}

.about-text {
    flex: 2;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

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

.profile-photo-container {
    position: relative;
    width: 520px; /* Further increased for desktop */
    height: 520px;
    margin: 0 auto;
}

/* Default profile photo style for other pages */
.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain; /* Changed from cover to contain to show the full body */
    object-position: center; /* Center the image */
    box-shadow: var(--glow-primary);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

/* Hover effect for circular profile photos (not on Story page) */
.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.8), 0 0 20px rgba(0, 180, 216, 0.6);
    border-width: 4px;
    border-color: var(--accent-color);
}

/* Disable hover effect on Story page */
.story-split-container .profile-photo:hover,
.story-right-side .profile-photo:hover {
    transform: none !important;
    box-shadow: none !important;
    border-width: 0 !important;
    border-color: transparent !important;
}

/* Keeping this for fallback */
.profile-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--glow-primary);
    overflow: hidden;
    position: relative;
    display: none;
}

.about-credentials {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
}

.credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    flex: 1;
}

.credential-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credential-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    text-align: center;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, rgba(26, 10, 46, 0.8), rgba(10, 10, 26, 0.8));
}

.contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form {
    flex: 2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.2);
}

/* Form Validation Styles */
.form-group input.invalid,
.form-group textarea.invalid {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 61, 113, 0.2);
}

.validation-message {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.form-status.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
}

.contact-text h3 {
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-page-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}

/* Podcast Page Styles */
.podcast-page-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}


/* Story Page Styles */
.story-page-content {
    padding: 4rem 0;
    background: var(--dark-bg);
}

/* Page Hero Styles */
.problem-hero, .plan-hero, .tech-hero, .product-hero, .coaching-hero, .contact-hero, .podcast-hero, .story-hero {
    padding: 8rem 0 4rem;
    background: var(--cosmic-gradient);
}

.problem-hero h1, .plan-hero h1, .tech-hero h1, .product-hero h1, .coaching-hero h1, .contact-hero h1, .podcast-hero h1, .story-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-hero .lead, .plan-hero .lead, .tech-hero .lead, .product-hero .lead, .coaching-hero .lead, .contact-hero .lead, .podcast-hero .lead, .story-hero .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.problem-content, .plan-content, .tech-content, .product-content, .coaching-content {
    padding: 4rem 0 6rem;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.product-cta-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.tech-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.tech-cta-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.problem-section {
    margin-bottom: 5rem;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.problem-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--glow-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.4;
}

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


.problem-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 61, 113, 0.3);
}

.problem-stat-card h3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    white-space: nowrap;
}

.problem-stat-card p {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin: 0;
    white-space: nowrap;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--glow-secondary);
}

.problem-icon {
    font-size: 3rem;
    color: #ff3d71;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 61, 113, 0.1);
    border-radius: 50%;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.problem-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.problem-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.future-vision {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.future-vision h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.future-vision ul {
    list-style: none;
    padding: 0;
}

.future-vision li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.future-vision li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.solution-preview {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.cta-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.solution-cta-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.plan-cta-section {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

/* Footer */
footer {
    background: rgba(5, 5, 16, 0.95);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-links ul {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-legal {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Mobile Navigation Styles */
nav ul.active {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

nav ul.active li {
    opacity: 0;
    animation: slideIn 0.3s ease forwards;
}

nav ul.active li:nth-child(1) { animation-delay: 0.05s; }
nav ul.active li:nth-child(2) { animation-delay: 0.1s; }
nav ul.active li:nth-child(3) { animation-delay: 0.15s; }
nav ul.active li:nth-child(4) { animation-delay: 0.2s; }
nav ul.active li:nth-child(5) { animation-delay: 0.25s; }
nav ul.active li:nth-child(6) { animation-delay: 0.3s; }
nav ul.active li:nth-child(7) { animation-delay: 0.35s; }
nav ul.active li:nth-child(8) { animation-delay: 0.4s; }
nav ul.active li:nth-child(9) { animation-delay: 0.45s; }
nav ul.active li:nth-child(10) { animation-delay: 0.5s; }
nav ul.active li:nth-child(11) { animation-delay: 0.55s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-toggle.active {
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .profile-photo-container {
        width: 320px; /* Increased for tablet */
        height: 320px;
        margin: 0 auto;
    }
    
    .about-credentials {
        justify-content: center;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 0; /* Reduce hero section padding on mobile */
        min-height: auto; /* Allow natural height */
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.3rem; /* Slightly smaller on mobile */
        margin-bottom: 1rem; /* Less space below */
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    /* Show mobile version, hide desktop version */
    .hero-image.mobile-only {
        display: flex;
        width: 100%;
        margin: 0.5rem 0 4rem 0; /* Reduced top margin, increased bottom */
        justify-content: center; /* Center the visual */
        padding-left: 0; /* Remove padding for full width */
    }
    
    .hero-image.desktop-only {
        display: none;
    }
    
    .motion-visual {
        width: 240px; /* 20% smaller than 300px */
        height: 200px; /* 20% smaller than 250px */
        margin: 0 auto; /* Center the visual */
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem; /* Reduce spacing */
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2rem 0; /* Even less padding on iPhone */
    }
    
    .hero-subtitle {
        font-size: 1.2rem; /* Smaller font */
        margin-bottom: 0.75rem; /* Less margin */
    }
    
    .hero-image.mobile-only {
        margin: 0.5rem 0 3.5rem 0; /* Reduced top, increased bottom */
        padding-left: 0; /* No padding for full width */
    }
    
    .motion-visual {
        width: 200px; /* Even smaller on iPhone */
        height: 167px; /* Maintain aspect ratio */
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn.wide-button {
        padding: 1rem 1.5rem; /* Slightly smaller button */
        font-size: 1rem;
    }
    
    .about-credentials {
        flex-direction: column;
    }
    
    .profile-photo-container {
        width: 260px; /* Increased for phone */
        height: 260px;
    }
}
/* Plan Section */
.plan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(74, 20, 140, 0.1) 100%);
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 20, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 35, 126, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-quote {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-left: 4px solid var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.philosophy-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.philosophy-quote cite {
    display: block;
    text-align: right;
    color: var(--accent-primary);
    font-style: normal;
    font-weight: 500;
}

.plan-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--text-light);
}

.roadmap-container {
    margin-top: 4rem;
}

.roadmap-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    opacity: 0.3;
}

.roadmap-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
}

.roadmap-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-primary);
    white-space: nowrap;
    z-index: 2;
}

.roadmap-item.current .roadmap-marker {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(74, 20, 140, 0.5);
}

.roadmap-item.future .roadmap-marker {
    border-style: dashed;
    opacity: 0.7;
}

.roadmap-content {
    flex: 0 0 45%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.roadmap-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.roadmap-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Mobile responsiveness for Vision section */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .roadmap-item,
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        padding-left: 80px;
    }
    
    .roadmap-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .roadmap-content {
        flex: 1;
    }
}
EOF < /dev/null
/* Wellness Connections */
.wellness-connections {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wellness-connections h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.connection-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-primary);
}

.connection-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.connection-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.connection-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.future-vision {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.1) 0%, rgba(26, 35, 126, 0.1) 100%);
    border-radius: 12px;
}

.coming-soon {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 500;
    line-height: 1.6;
}

/* Mobile responsiveness for wellness connections */
@media (max-width: 768px) {
    .connection-grid {
        grid-template-columns: 1fr;
    }
    
    .wellness-connections h3 {
        font-size: 1.5rem;
    }
}

/* Objectives Section in About */
.objectives-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.objectives-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.objective {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.objective:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.objective h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.objective p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Mobile responsiveness for objectives */
@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .objectives-section h3 {
        font-size: 1.5rem;
    }
    
    .objective h4 {
        font-size: 1.1rem;
    }
}
/* Body Sauce Product Section */
.body-sauce-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    position: relative;
}

.body-sauce-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.product-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-features > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-medium);
    margin: 0;
}

.product-demo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.demo-placeholder:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.demo-placeholder i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.demo-placeholder p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin: 0;
}

.early-access {
    background: rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.early-access h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.early-access p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

/* Mobile responsiveness for Body Sauce section */
@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-item:hover {
        transform: translateX(5px);
    }
    
    .demo-placeholder {
        padding: 3rem 2rem;
        min-height: 250px;
    }
    
    .demo-placeholder i {
        font-size: 3rem;
    }
}
/* Podcast Section */
.podcast-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    position: relative;
}

.podcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.podcast-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.podcast-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-medium);
}

.podcast-topics {
    margin-bottom: 2.5rem;
}

.podcast-topics h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.podcast-topics ul {
    list-style: none;
    padding: 0;
}

.podcast-topics li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.podcast-topics li:hover {
    padding-left: 1rem;
    color: var(--secondary-color);
}

.podcast-topics li i {
    color: #1DB954; /* Spotify green */
    font-size: 1.2rem;
}

.podcast-cta {
    text-align: left;
}

.spotify-btn {
    background: #1DB954;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.spotify-btn:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
    color: white;
}

.spotify-btn i {
    font-size: 1.5rem;
}

.podcast-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.podcast-player {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.spotify-embed {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    min-height: 352px;
    position: relative;
}

.embed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 352px;
    text-align: center;
}

.embed-placeholder i {
    font-size: 4rem;
    color: #1DB954;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.embed-placeholder p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.text-link {
    color: #1DB954;
    font-weight: 500;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #1ed760;
    text-decoration: underline;
}

.latest-episodes {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.latest-episodes h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.episode-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.episode-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.episode-item:hover {
    background: rgba(29, 185, 84, 0.1);
    transform: translateX(5px);
}

.episode-number {
    background: #1DB954;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.episode-title {
    flex: 1;
    color: var(--text-light);
}

/* Mobile responsiveness for podcast section */
@media (max-width: 768px) {
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .podcast-cta {
        text-align: center;
    }
    
    .spotify-btn {
        width: 100%;
        justify-content: center;
    }
    
    .embed-placeholder {
        height: 250px;
    }
}

/* Demo link styling for Body Sauce section */
.demo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.demo-link:hover {
    transform: scale(1.05);
}

.demo-link i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.demo-link:hover i {
    opacity: 1;
    color: var(--accent-color);
    transform: scale(1.1);
}

.demo-link p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin: 0;
    transition: all 0.3s ease;
}

.demo-link:hover p {
    color: var(--text-light);
}

.demo-placeholder:has(.demo-link:hover) {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 61, 113, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 61, 113, 0.05) 100%);
}

/* Coaching Page Styles */
.coaching-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.coaching-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.coaching-intro h2 {
    margin-bottom: 1.5rem;
}

.coaching-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.coaching-programs {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

.program-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.program-card.featured {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 180, 216, 0.1));
    border-color: rgba(138, 43, 226, 0.3);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.program-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.program-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

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

.service-item {
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    margin-bottom: 0.5rem;
}

.coaching-philosophy {
    margin-bottom: 5rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.philosophy-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.philosophy-text li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.coach-credentials {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credential-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.credential-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.coaching-cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 180, 216, 0.1));
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.coaching-cta-section h2 {
    margin-bottom: 1rem;
}

.coaching-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    /* Override previous mobile styles with better ones */
    
    /* Typography for better mobile readability */
    body {
        font-size: 16px; /* Prevent iOS zoom on input focus */
    }
    
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Header improvements */
    header {
        padding: 0.75rem 0;
        position: sticky;
        top: 0;
        z-index: 1100;
    }
    
    header .container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        font-size: 1.5rem;
        padding: 0.75rem;
        margin: -0.75rem -0.75rem -0.75rem 0;
        cursor: pointer;
    }
    
    /* Navigation menu styling */
    nav ul.active {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    nav ul.active a {
        padding: 1rem;
        font-size: 1.1rem;
        touch-action: manipulation; /* Prevent double-tap zoom */
    }
    
    /* Button improvements */
    .btn {
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
        min-height: 48px; /* Better touch target */
        touch-action: manipulation;
    }
    
    /* Form improvements */
    input, select, textarea {
        font-size: 16px !important; /* Prevent zoom on iOS */
        padding: 0.875rem !important;
        min-height: 48px;
    }
    
    /* Section spacing */
    section {
        padding: 3rem 0 !important;
    }
    
    .container {
        padding: 0 1.25rem !important;
        max-width: 100%;
    }
    
    /* Grid layouts */
    .tech-cards,
    .insights-grid,
    .connection-grid,
    .objectives-grid,
    .credentials-grid,
    .service-list {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Cards and containers */
    .tech-card,
    .insight-card,
    .connection-card,
    .feature-item,
    .contact-card,
    .program-card {
        padding: 1.5rem !important;
    }
    
    /* Contact form */
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem !important;
    }
    
    /* Footer improvements */
    footer {
        padding: 3rem 0 2rem !important;
    }
    
    .footer-links {
        margin: 1.5rem 0;
    }
    
    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        text-align: left;
        padding: 0;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Problem statement cards */
    .problem-stats {
        gap: 1rem !important;
    }
    
    .stat-card {
        padding: 1.5rem !important;
        gap: 0.75rem;
    }
    
    .stat-icon {
        font-size: 2rem !important;
    }
    
    /* About section */
    .about-credentials {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .credential {
        min-width: 120px;
    }
    
    /* Animation buttons */
    .animated-arrows {
        display: flex; /* Keep arrows visible on mobile */
        gap: 0.2rem;
        margin-left: 0.5rem;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Overflow prevention */
    * {
        max-width: 100vw;
        overflow-wrap: break-word;
    }
    
    /* Philosophy quote */
    .philosophy-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    blockquote p {
        font-size: 1.1rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.4rem !important;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .footer-links ul {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        max-width: none;
    }
}

/* Story Page Split Layout */
.story-split-container {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
}

.story-left-side {
    width: 65%; /* Increase left side to 65% */
    overflow-y: auto;
    height: 100%;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.story-left-side::-webkit-scrollbar {
    display: none;
}

.story-right-side {
    width: 35%; /* Reduce right side to 35% */
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-darker);
    overflow: hidden;
}

.story-right-side .profile-photo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* Remove shadow */
    padding-top: 2rem; /* Shift image down */
    padding-bottom: 2rem;
}

/* Story page specific - override all profile photo styles */
.story-split-container .story-right-side .profile-photo-container .profile-photo,
.story-right-side .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Change to cover to zoom in more */
    object-position: center 38%; /* Shift up to 38% to show more hands */
    border-radius: 0 !important; /* Remove circular border */
    box-shadow: none !important; /* Remove shadow */
    border: none !important; /* Remove border */
    overflow: visible !important; /* Show full image */
    transform: scale(1.05) !important; /* Zoom in only 5% for less cropping */
    transform-origin: center center !important; /* Scale from center */
    clip-path: none !important; /* Remove any clipping */
    -webkit-mask: none !important; /* Remove any webkit mask */
    mask: none !important; /* Remove any mask */
}

/* Adjust story page content for split layout */
.story-split-container .story-hero {
    padding: 4rem 0 0.5rem; /* Reduced bottom padding significantly */
}

.story-split-container .story-page-content {
    padding: 2rem 0 4rem;
}

/* Story page mission text - ensure it fits on one line */
.story-split-container .story-hero .lead {
    max-width: 100%; /* Use full container width */
    margin: 0; /* Remove auto margins */
    padding: 0 1rem; /* Small padding */
    font-size: 1.2rem; /* Slightly smaller font */
}

.story-split-container .container {
    max-width: 90%; /* Limit max width to prevent stretching */
    margin: 0;
    margin-left: 5%; /* Small left margin */
    margin-right: 40%; /* Very large right margin to ensure no cutoff */
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Hide the about-image in the left content since it's now on the right */
.story-split-container .about-image {
    display: none;
}

/* Story page specific objective blocks */
.story-split-container .objective {
    padding: 1.5rem; /* Less padding to save space */
}

.story-split-container .objective h4 {
    font-size: 1.05rem; /* Slightly smaller font */
    line-height: 1.3; /* Tighter line height */
    white-space: normal; /* Allow text wrapping */
    overflow-wrap: break-word; /* Break long words if needed */
}

.story-split-container .objectives-grid {
    gap: 1.5rem; /* Smaller gap between blocks */
}

/* Mobile-only photo - hidden on desktop */
.mobile-only-photo {
    display: none;
}

/* Founder's story content styling */
.founder-story {
    padding: 0.5rem 0 3rem 0; /* Further reduced top padding to decrease gap */
}

.story-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-content h2:first-child {
    margin-top: 0;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.wellness-challenges {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.wellness-challenges li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.8;
}

.wellness-challenges li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.2;
}

.wellness-challenges strong {
    color: var(--text-light);
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Footer inside left side */
.story-left-side footer {
    margin-top: 4rem;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .story-split-container {
        display: block; /* Change from flex to block */
        position: relative; /* Change from fixed to relative */
        top: 80px;
        height: auto; /* Change from calc(100vh - 80px) to auto */
    }
    
    .story-left-side {
        width: 100%;
        height: auto;
        overflow-y: visible;
    }
    
    .story-right-side {
        display: none; /* Hide the right side on mobile */
    }
    
    .story-split-container .container {
        max-width: 100%;
        margin: 0;
        padding: 0 1rem;
        margin-right: 0; /* Reset the large right margin */
    }
    
    /* Show mobile photo only on mobile */
    .mobile-only-photo {
        display: block;
        margin: 0.5rem 0; /* Significantly reduced margins */
    }
    
    .mobile-profile-photo {
        display: block;
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center 40%;
        border-radius: 0;
        border: 3px solid var(--secondary-color); /* Blue themed border */
    }
    
    /* Adjust padding for mobile */
    .story-split-container .story-hero {
        padding: 2rem 0 0.5rem; /* Reduced bottom padding */
    }
    
    .founder-story {
        padding: 0.5rem 0 3rem 0; /* Reduced top padding */
    }
    
    /* Make story hero title smaller on mobile to prevent overflow */
    .story-hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .story-hero .lead {
        font-size: 1rem !important;
        line-height: 1.5;
    }
}

/* Further reduce font size on very small screens */
@media (max-width: 480px) {
    .story-hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
        word-break: break-word; /* Allow long words to break if needed */
    }
    
    .story-hero .lead {
        font-size: 0.95rem !important;
    }
}