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

html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

:root {
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary-color: #0891b2;
    --accent-color: #0c4a6e;
    --success-color: #0369a1;
    --warning-color: #0ea5e9;
    --text-dark: #0f172a;
    --text-light: #475569;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0891b2 100%);
    --gradient-secondary: linear-gradient(135deg, #0891b2 0%, #0c4a6e 100%);
    --gradient-accent: linear-gradient(135deg, #0369a1 0%, #0c4a6e 100%);
    --gradient-hero: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    --gradient-surface: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

a.nav-logo:hover,
a.nav-logo:focus,
a.nav-logo:active {
    text-decoration: none !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
}

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

.nav-logo h2 {
    color: black;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 8px;
}

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

.nav-menu-center {
    justify-content: center;
    grid-column: 2;
}

.nav-menu-right {
    justify-content: flex-end;
    grid-column: 3;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 10px;
}

.nav-link:hover:not(.cta-button):not(.sign-in-button) {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 4px;
}

.nav-link.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link.cta-button:hover {
    background: transparent;
    color: var(--text-dark);
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

.nav-link.cta-button:active {
    background: transparent;
    color: var(--text-dark);
    border-color: #000000;
}

.nav-link.sign-in-button {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #000000;
    transition: all 0.3s ease;
}

.nav-link.sign-in-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(14, 165, 233, 0.05);
}

.nav-link.sign-in-button:active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(14, 165, 233, 0.1);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* slightly reduced overlay opacity to let background image breathe more */
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.65) 0%, rgba(2, 132, 199, 0.65) 50%, rgba(3, 105, 161, 0.65) 100%), url('images/swimmer-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    animation: backgroundRotate 45s infinite ease-in-out;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.65) 0%, rgba(2, 132, 199, 0.65) 50%, rgba(3, 105, 161, 0.65) 100%), url('images/swimmer-bg-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeInOut 45s infinite ease-in-out;
}


@keyframes backgroundRotate {
    0%, 100% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%, 20% {
        opacity: 0;
    }
    30%, 50% {
        opacity: 1;
    }
    60%, 100% {
        opacity: 0;
    }
}


.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

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

/* Centered hero layout tweaks */
.hero-content {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
}

/* Strong title override: use Poppins for a more powerful look */
.hero-title {
    font-family: 'Poppins', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 4.2rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 0.6rem;
    line-height: 1.03;
    letter-spacing: -0.02em;
}

.hero-title .title-line-1,
.hero-title .title-line-2 {
    display: block;
}

.highlight-left {
    background: linear-gradient(90deg, rgba(11,120,176,0.14), rgba(14,165,233,0.12));
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(11,120,176,0.08);
}

.highlight-right {
    background: linear-gradient(90deg, rgba(14,165,233,0.18), rgba(11,120,176,0.12));
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 6px 18px rgba(11,120,176,0.08);
}

.hero-title .title-white {
    color: #044f6f !important;
    text-shadow: none !important;
    background: none !important;
    padding: 0 !important;
    display: inline !important;
}

.hero-title .highlight-left,
.hero-title .highlight-right {
    color: #ffffff !important;
}

.hero-title {
    font-size: 3.6rem !important;
    font-weight: 800 !important;
    color: #0b78b0 !important; /* brand blue */
    margin-bottom: 0.8rem !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
}

/* Title split lines and highlights */
.hero-title .title-line-1,
.hero-title .title-line-2 {
    display: block;
}

.highlight-left {
    background: linear-gradient(90deg, rgba(11,120,176,0.12), rgba(14,165,233,0.10));
    color: #042f44;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
}

.highlight-right {
    background: linear-gradient(90deg, rgba(11,120,176,0.14), rgba(14,165,233,0.12));
    color: #052d4a;
    padding: 6px 8px;
    border-radius: 8px;
    display: inline-block;
}

.hero-description {
    font-size: 1.125rem;
    color: #0f172a; /* dark slate for readability */
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    max-width: 780px;
    opacity: 0.95;
}

.hero-cta {
    margin: 0 auto 1.25rem;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1.25rem auto 1.75rem;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.28s cubic-bezier(.22,.9,.32,1), box-shadow 0.28s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(11,120,176,0.10);
}

.btn-primary {
    background: linear-gradient(90deg,#0b78b0 0%,#0ea5e9 100%);
    color: white;
    box-shadow: 0 18px 40px rgba(11,120,176,0.12), inset 0 -2px 8px rgba(255,255,255,0.06);
    border-radius: 999px;
    font-weight: 800;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.06);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px rgba(11,120,176,0.18);
    filter: saturate(1.05);
}

.btn-primary:focus {
    outline: 3px solid rgba(11,120,176,0.12);
    outline-offset: 4px;
}

.btn-secondary {
    background: white;
    color: #0b78b0;
    border: 1px solid rgba(11,120,176,0.12);
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 32px;
    box-shadow: 0 10px 28px rgba(11,120,176,0.06);
    backdrop-filter: blur(2px);
}
.btn-secondary:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 40px rgba(11,120,176,0.08);
}
.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 8px 20px rgba(11,120,176,0.12);
    opacity: 0.98;
}
.btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 6px 16px rgba(11,120,176,0.06);
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    padding: 2rem 0;
}

.coach-announcement {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: 450px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coach-announcement-text {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.see-more-button {
    background: white !important;
    color: var(--text-dark) !important;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.05rem;
    transition: padding 0.35s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.3px;
    cursor: pointer;
    width: auto;
    text-align: center;
    min-width: 140px;
    outline: none !important;
}

.see-more-button:link,
.see-more-button:visited,
.see-more-button:active {
    color: var(--text-dark) !important;
    text-decoration: none !important;
    background: white !important;
}

.see-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

/* animated glowing border */
.see-more-button::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 30px;
    /* subtle animated linear gradient that moves along the edge */
    background: linear-gradient(90deg, rgba(11,120,176,0), rgba(14,165,233,0.7), rgba(11,120,176,0));
    z-index: 0;
    filter: blur(6px);
    opacity: 0.85;
    background-size: 200% 100%;
    pointer-events: none;
    transition: opacity 0.3s ease;
    animation: glowMove 3.5s linear infinite;
}

@keyframes glowMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.see-more-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-color);
    text-decoration: none !important;
    color: var(--text-dark) !important;
}

.see-more-button:hover::before {
    left: 100%;
}

.see-more-button:active {
    transform: translateY(0);
}

.see-more-button .see-more-text,
.see-more-button .see-more-arrow {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

.see-more-arrow {
    font-size: 0.95rem;
    width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transform: translateX(-4px);
    transition: width 0.35s ease, opacity 0.3s ease, margin-left 0.35s ease, transform 0.35s ease;
}

.see-more-button:hover {
    padding-right: 38px;
}

.see-more-button:hover .see-more-arrow {
    width: 1em;
    opacity: 1;
    margin-left: 8px;
    transform: translateX(0);
}

.see-more-button:not(:hover) .see-more-arrow {
    transform: translateX(8px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #ff6b35;
    font-size: 0.9rem;
}

/* Glassy badge style (for hero badge) */
.glass-badge {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    color: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(11,120,176,0.12);
    padding: 6px 14px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title br {
    display: none;
}

.gradient-text {
    color: #000000;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
    margin-left: -0.5rem;
}

.btn {
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #007AFF;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 122, 255, 0.3);
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 500;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Official App Store and Google Play Store Badge Styles */
.app-store-badge,
.google-play-badge {
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.app-store-badge img {
    height: 85px;
    width: 210px;
    border-radius: 8px;
    object-fit: contain;
}

.google-play-badge img {
    height: 85px;
    width: 210px;
    border-radius: 8px;
    object-fit: contain;
}

.app-store-badge:hover,
.google-play-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

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

.phone-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #333;
    width: 280px;
    height: 560px;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(3deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.app-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.app-header h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.workout-summary {
    display: grid;
    gap: 15px;
}

.summary-card {
    background: var(--gray-50);
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.card-content {
    flex: 1;
}

.card-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.quick-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.action-btn.secondary {
    background: var(--gray-100);
    color: var(--text-dark);
    border: 1px solid var(--gray-200);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Coach Section */
.coach-section {
    padding: 120px 0;
    background: var(--white);
    background-image: url('../images/coachsection.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.coach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.coach-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

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

.coach-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coach-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.coach-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.coach-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    background: var(--gradient-secondary);
}

.coach-cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.coach-cta-button:hover i {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--gradient-surface);
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}


/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--gradient-surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.pricing-card.featured .card-header h3,
.pricing-card.featured .amount,
.pricing-card.featured .currency,
.pricing-card.featured .period,
.pricing-card.featured .feature {
    color: white;
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.card-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.feature i {
    color: var(--success-color);
    font-size: 1.1rem;
}


/* Screenshots Section - Infinite Coverflow Carousel */
.screenshots {
    padding: 150px 0;
    background: #fafafa;
}

.screenshots .section-header {
    margin-bottom: 4rem;
    margin-top: 0;
}

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

.coverflow-carousel {
    position: relative;
    perspective: 1000px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.coverflow-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coverflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
}

.carousel-item {
    position: absolute;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
}

/* Center item - fully visible and prominent */
.carousel-item.center {
    transform: translateX(-50%) translateZ(0px) scale(1);
    z-index: 3;
    opacity: 1;
}

/* Left item - smaller, pushed back, rotated */
.carousel-item.left {
    transform: translateX(-50%) translateX(-200px) translateZ(-100px) rotateY(45deg) scale(0.7);
    z-index: 1;
    opacity: 0.6;
}

/* Right item - smaller, pushed back, rotated */
.carousel-item.right {
    transform: translateX(-50%) translateX(200px) translateZ(-100px) rotateY(-45deg) scale(0.7);
    z-index: 1;
    opacity: 0.6;
}

/* Hidden items - completely out of view */
.carousel-item.hidden {
    transform: translateX(-50%) translateZ(-200px) scale(0.5);
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 45px;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 5px solid #333;
    width: 200px;
    height: 400px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.center .phone-frame {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.carousel-item.left .phone-frame,
.carousel-item.right .phone-frame {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.phone-screen {
    background: white;
    border-radius: 40px;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.screenshot-placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 4rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 35px;
    color: white;
}

.screenshot-placeholder span {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
}

.carousel-arrow {
    background: #f8fafc;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    font-weight: bold;
}

.carousel-arrow:hover {
    background: #ffffff;
    border-color: #9ca3af;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:active {
    transform: scale(0.95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .coverflow-carousel {
        height: 550px;
    }
    
    .coverflow-container {
        height: 400px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coverflow-carousel {
        height: 400px;
        margin: 1.5rem 0;
    }
    
    .coverflow-container {
        height: 300px;
    }
    
    .carousel-item.left {
        transform: translateX(-50%) translateX(-90px) translateZ(-70px) rotateY(30deg) scale(0.6);
    }
    
    .carousel-item.right {
        transform: translateX(-50%) translateX(90px) translateZ(-70px) rotateY(-30deg) scale(0.6);
    }
    
    .phone-frame {
        width: 160px;
        height: 320px;
    }
    
    .carousel-controls {
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 0;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 150px 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(14, 165, 233, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(8, 145, 178, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 30%);
    background-size: 600px 600px, 500px 500px, 400px 400px;
    background-position: 0 0, 100% 100%, 50% 50%;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.personal-touch {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
    font-style: italic;
    line-height: 1.5;
}

.testimonials .section-header h2 {
    margin: 0;
    font-size: 2.5rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 800%;
}

.testimonial-item {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    width: 12.5%;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.stars {
    margin-bottom: 1.5rem;
    text-align: center;
}

.stars span {
    color: #fbbf24;
    font-size: 1.4rem;
    font-weight: bold;
}

.testimonial-item blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 2rem 0;
    font-style: italic;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.95rem;
}

.arrow-btn {
    background: #f8fafc;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    font-weight: bold;
}

.arrow-btn:hover {
    background: #ffffff;
    border-color: #9ca3af;
    color: #1f2937;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.arrow-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.faq-item {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-question {
    background: white;
    border-radius: 8px;
    padding: 1.2rem 1.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question:hover {
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question .plus-sign {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
}

.faq-item.active .faq-question .plus-sign {
    background: #0ea5e9;
    color: white;
}

.faq-answer {
    background: white;
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.2rem 1.8rem;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-buttons .download-btn {
    display: inline-block;
    background: white;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    width: 180px;
    margin: 0 0.5rem;
}

.download-buttons .download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.download-buttons .download-btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.download-buttons .store-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.download-buttons .download-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-buttons .download-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.download-buttons .store-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.download-feature i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo .logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.download-prompt {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.app-downloads {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
}

.download-btn {
    display: block;
    background: white;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    width: 180px;
}

.download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.download-btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.store-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.download-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.store-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.made-by {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem !important; }
    .hero-stats { display:flex; flex-wrap:wrap; gap:1rem; }
    .hero-stats .stat-item { flex: 1 1 50%; text-align:center; }
    .hero-stats .stat-item:nth-child(3) { flex: 1 1 100%; }
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: white;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.social-link.instagram {
    border-radius: 50%;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .app-downloads {
        width: 100%;
    }
    
    .download-btn {
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        grid-template-columns: 1fr auto;
    }
    
    .nav-menu-center,
    .nav-menu-right {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--box-shadow);
        padding: 2rem 0;
        grid-column: auto;
    }
    
    .nav-menu-center.active,
    .nav-menu-right.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        padding: 0 15px;
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
    }
    
    .hero-right-content {
        align-items: center;
        text-align: center;
        padding: 1rem 0;
        gap: 2rem;
    }
    
    .coach-announcement {
        max-width: 100%;
        padding: 0;
        align-items: center;
    }
    
    .coach-announcement-text {
        font-size: 2rem;
        text-align: center;
    }
    
    .see-more-button {
        padding: 16px 32px;
        font-size: 1rem;
        width: auto;
    }
    
    .hero-badge {
        margin-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title br {
        display: block;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .app-store-badge,
    .google-play-badge {
        margin: 0;
    }
    
    .app-store-badge img {
        height: 75px;
        width: 185px;
        object-fit: contain;
    }
    
    .google-play-badge img {
        height: 75px;
        width: 185px;
        object-fit: contain;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .testimonials {
        padding: 100px 0;
    }
    
    .testimonials .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .personal-touch {
        font-size: 1rem;
        margin: 0 0 0.75rem 0;
    }
    
    .testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .carousel-wrapper {
        gap: 1rem;
    }
    
    .testimonial-item {
        padding: 2rem;
        min-height: 250px;
    }
    
    .testimonial-item blockquote {
        font-size: 1.1rem;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Coach Section Mobile */
    .coach-section {
        padding: 80px 0;
    }
    
    .coach-section h2 {
        font-size: 2rem;
    }
    
    .coach-section p {
        font-size: 1rem;
    }
    
    .coach-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    
}

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

.feature-card,
.screenshot-item,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
    background: #000000;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: #1a1a1a;
    border: 2px solid #2563eb;
    border-radius: 20px;
    padding: 4rem 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    margin-top: 0;
}

.email-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.email-icon {
    color: white;
    flex-shrink: 0;
}

.email-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #2563eb;
    text-decoration: none;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .contact-card h1 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .email-link {
        font-size: 1rem;
    }
}
} 