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

/* Mobile viewport fix */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    min-width: 320px;
}

:root {
    /* Color Palette */
    --primary-blue: #0066FF;
    --secondary-blue: #004ED6;
    --light-blue: #E6F2FF;
    --dark-blue: #003399;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

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

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

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.login-btn {
    background: var(--primary-blue) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.login-btn:hover {
    background: #1e40af !important;
    transform: translateY(-1px);
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-cta {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-blue) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%);
    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="%23E2E8F0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.mockup-header {
    background: var(--gray-50);
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-dots span:first-child {
    background: #FF5F57;
}

.mockup-dots span:nth-child(2) {
    background: #FFBD2E;
}

.mockup-dots span:last-child {
    background: #28CA42;
}

.mockup-content {
    padding: 32px;
}

.chart-placeholder {
    height: 120px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.chart-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

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

.metric-card {
    height: 60px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

/* Partners & Backers Section */
.partners-backers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.partners-content {
    display: grid;
    grid-template-columns: 1.2fr 1px 0.8fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.section-divider {
    background: linear-gradient(to bottom, transparent 0%, var(--gray-300) 20%, var(--gray-300) 80%, transparent 100%);
    width: 1px;
    height: 200px;
    margin: 40px 0;
    align-self: center;
}

.working-with h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.backed-by-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    margin-left: -160px;
}

.client-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.client-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.client-logo-large {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.university-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.client-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.client-detail {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.backers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: stretch;
    max-width: 800px;
    margin: 0 auto;
}

.backer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    min-height: 100px;
    justify-content: flex-start;
    width: 100%;
}

.backer-logo:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.backer-img {
    height: 60px;
    width: auto;
    display: block;
}

.ddqic-logo .backer-img {
    height: 70px;
}

.backer-placeholder {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
}

a.backer-logo {
    text-decoration: none;
}

/* FAQ Hero Section */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    padding: 120px 0 80px 0;
    text-align: center;
    color: white;
}

.faq-hero-content h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.faq-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Content Section */
.faq-content {
    padding: 80px 0;
    background: var(--gray-50);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-cta h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    background: var(--gray-50);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* App Showcase Section */
.app-showcase {
    background: var(--white);
    padding: 80px 0;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.coaching-platform,
.mobile-app {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-app {
    grid-template-columns: 1fr 0.6fr;
}

.platform-info h3,
.mobile-info h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.platform-info p,
.mobile-info p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
    position: relative;
    padding-left: 32px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
}

.app-stores {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.store-button {
    display: block;
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-button img {
    height: 60px;
    width: auto;
}

/* Screenshot Frames */
.screenshot-frame {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.screenshot-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.screenshot-header {
    background: var(--gray-50);
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 16px;
}

.screenshot-dots {
    display: flex;
    gap: 8px;
}

.screenshot-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.screenshot-dots span:first-child { background: #FF5F57; }
.screenshot-dots span:nth-child(2) { background: #FFBD2E; }
.screenshot-dots span:last-child { background: #28CA42; }

.screenshot-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.screenshot-content {
    padding: 24px;
    background: var(--white);
}

.dashboard-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--gray-50);
    padding: 8px;
    border-radius: var(--border-radius);
}

.nav-item {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item.active {
    background: var(--primary-blue);
    color: var(--white);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 20px;
}

.card-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.performance-chart {
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.performance-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
}

.athlete-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.athlete-item {
    height: 20px;
    background: var(--gray-200);
    border-radius: 4px;
}

.athlete-item:nth-child(1) { width: 90%; }
.athlete-item:nth-child(2) { width: 75%; }
.athlete-item:nth-child(3) { width: 85%; }

/* Mobile App Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
    transition: all 0.3s ease;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

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

.mobile-header {
    background: var(--white);
    padding: 16px 20px 12px;
}

.status-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    margin-bottom: 16px;
    width: 60%;
}

.app-header {
    display: flex;
    justify-content: center;
}

.app-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.mobile-content {
    padding: 20px;
    background: var(--gray-50);
    height: calc(100% - 80px);
}

.mobile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-stat-card {
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 8px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stat-name {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

.mobile-chart {
    height: 120px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.mobile-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    opacity: 0.8;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.action-button.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--gray-200);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* Add subtle section dividers */
section:not(.hero):not(.footer)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* Improved section flow */
.hero {
    margin-bottom: 0;
}

.used-by {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--white) 100%);
}


.about {
    background: var(--gray-50);
    padding: 80px 0;
}


.section-header h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-text h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-text > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.feature-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.team-photo-placeholder {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
}

.photo-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.photo-content h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.photo-content p {
    font-size: 16px;
    opacity: 0.9;
}



/* Backed By Section */
.backed-by {
    background: var(--white);
    padding: 80px 0;
}

.backers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.backer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.backer-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.backer-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission {
    background: var(--white);
    padding: 80px 0;
}

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

.mission-text h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.mission-text > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Timeline Styles */
.timeline {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 100px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    background: var(--white);
    padding: 12px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-blue);
    position: relative;
    z-index: 2;
    margin: 0 40px;
    height: fit-content;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.timeline-content p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.contact-hero-content h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-hero-content p {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main {
    background: var(--white);
    padding: 80px 0;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

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

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--gray-700);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 14px;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background: var(--off-white);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.last-updated {
    color: var(--gray-600);
    font-size: 16px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
}

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

.legal-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


/* Mobile-First Responsive Design */
@media (max-width: 1024px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-divider {
        display: none;
    }
    
    .backed-by-content h3 {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-divider {
        display: none;
    }
    
    .client-highlight {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .backers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .backer-logo {
        min-height: 80px;
        flex-direction: row;
        justify-content: center;
        padding: 20px;
    }
    
    .backed-by-content h3 {
        margin-left: 0 !important;
    }
    
    .faq-hero-content h1 {
        font-size: 36px;
    }
    
    .faq-hero-content p {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .timeline-date {
        position: absolute;
        left: -40px;
        margin: 0;
        width: 80px;
        font-size: 14px;
        padding: 8px;
    }
    
    .timeline-content {
        margin-left: 0;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 40px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 20px;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .login-btn {
        margin-top: 20px !important;
        display: inline-block !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 16px 24px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .showcase-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .coaching-platform,
    .mobile-app {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mobile-app {
        flex-direction: column-reverse;
    }
    
    .platform-info h3,
    .mobile-info h3 {
        font-size: 28px;
    }
    
    .feature-list {
        margin-bottom: 24px;
    }
    
    .app-stores {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .screenshot-frame {
        max-width: 100%;
    }
    
    .phone-mockup {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .client-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 24px;
    }
    
    .client-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .client-logos {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .client-logo {
        width: 200px;
    }
    
    .coaching-platform,
    .mobile-app {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-app .mobile-info {
        order: 2;
    }
    
    .mobile-app .mobile-screenshots {
        order: 1;
    }
    
    .app-stores {
        justify-content: center;
    }
    
    .store-button img {
        height: 50px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .platform-info h3,
    .mobile-info h3 {
        font-size: 28px;
    }
    
    .feature-list {
        text-align: left;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.3s;
}

.hero-stats {
    animation-delay: 0.4s;
}

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

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline-offset: 4px;
}
