@font-face {
    font-family: 'Lastica';
    src: url('Assets/lastica_bold.f1226b6384653364c4417ad8363.36b396391257736f6f86496e2e6ac618') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

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

/* Prevent text selection on double-tap (mobile) */
* {
    -webkit-tap-highlight-color: rgba(124, 58, 237, 0.3);
    -webkit-touch-callout: none;
}

/* Allow text selection for readable content */
p, h1, h2, h3, h4, h5, h6, a, span {
    -webkit-touch-callout: default;
    user-select: text;
}

:root {
    --dark-purple: #1a1540;
    --darker-purple: #0f0f2e;
    --bg-gradient-left: #401e5a;
    --bg-gradient-right: #1d2e5a;
    --bright-purple: #7c3aed;
    --light-purple: #a855f7;
    --pink: #ec4899;
    --light-pink: #f0abfc;
    --white: #ffffff;
    --text-gray: #cbd5e1;
}

body {
    font-family: 'Lastica', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #000000;
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    background: transparent;
    padding: 20px 0 0 0;
    position: relative;
    border-bottom: none;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-menu-wrapper {
    position: relative;
}

.user-info {
    color: #00E5FF;
    font-size: 1rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info.clickable {
    cursor: pointer;
    transition: all 0.3s;
}

.user-info.clickable:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
}

.dropdown-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s;
}

.user-info.clickable:hover .dropdown-arrow {
    opacity: 1;
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
    border: 1px solid var(--border-color);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
}

.btn-signup {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: #00E5FF;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    color: #000000;
    background: #00B8D9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-pricing {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-pricing:hover {
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.1);
}

.logo-wrapper {
    position: relative;
}

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

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

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--pink);
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-icon {
    font-size: 1.5rem;
    color: #00E5FF;
}

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

.mobile-header-spacer {
    width: 40px;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #0a0a0a;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-logo {
    height: 36px;
    width: auto;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-sidebar-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: block;
    padding: 14px 16px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-item:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #00E5FF;
}

.mobile-nav-item.active {
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.mobile-nav-item.mobile-cta {
    background: #00E5FF;
    color: #000;
    font-weight: 600;
    margin-top: auto;
}

.mobile-nav-item.mobile-cta:hover {
    background: #00B8D9;
    color: #000;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

.mobile-user-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-signout-btn {
    color: #ff6b6b;
}

.mobile-signout-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

/* Desktop header visibility */
.desktop-header {
    display: block;
}

/* Hero Section */
.hero {
    padding: 30px 0 0 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero .container {
    padding: 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
}

.hero-text {
    flex: 1;
    max-width: 800px;
    margin: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 15px;
}

.hero-graphics {
    flex: 1;
    position: relative;
    height: 400px;
}

.circle {
    position: absolute;
    border-radius: 50%;
}

.circle-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--bright-purple), var(--dark-purple));
    top: 50px;
    right: 100px;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--pink), var(--light-purple));
    top: 30px;
    right: 50px;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--light-pink), var(--pink));
    bottom: 100px;
    right: 200px;
}

.circle-4 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--light-purple), var(--bright-purple));
    bottom: 80px;
    right: 80px;
}

/* Image Slider Section */
.image-slider-section {
    padding: 0;
    margin: -40px 0 0 0;
    background: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Simple 2D Slider */
.simple-slider-container {
    width: 100%;
    height: 375px;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
}

.simple-slider-track {
    display: flex;
    gap: 30px;
    animation: scroll-left 80s linear infinite;
    width: max-content;
}

.simple-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.simple-slide {
    flex-shrink: 0;
    width: 250px;
    height: 344px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 4px solid #00E5FF;
}

.simple-slide:hover {
    transform: scale(1.05);
}

.simple-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-subtitle-container {
    width: 100%;
    padding: 40px 20px 40px 20px;
    text-align: center;
}

.slider-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Old 3D slider styles - kept for backwards compatibility */
.slider-container {
    width: 100%;
    height: 600px;
    position: relative;
    margin: 0;
    padding: 0;
}

.slider-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px #00E5FF) drop-shadow(0 0 4px #00E5FF);
}

.slider-wrapper {
    display: none;
}

.slide {
    display: none;
}

.slide img {
    display: none;
}

/* About Section */
.about {
    padding: 25px 0;
    background: transparent;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* YouTube iframe specific styling */
iframe.main-video {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 400px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-graphic {
    flex: 1;
}

.graphic-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--bright-purple), var(--pink));
    border-radius: 50% 50% 0 50%;
    opacity: 0.6;
}

.about-text {
    flex: 1;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title.center {
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-size: 1.15rem;
}

/* Services Section */
.services {
    padding: 0 0 25px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-start-free {
    display: inline-block;
    background: #00E5FF;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-start-free:hover {
    background: #00B8D9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
}

.btn-start-free:active {
    transform: translateY(0);
}

.service-card {
    background: #1a1a1a;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
    border: 1px solid #00E5FF;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-description {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* AI Coaches Section */
.ai-coaches-section {
    padding: 80px 0;
    background: #000000;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.coach-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for 1080x1920 videos (portrait) */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4);
}

.coach-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.coach-video-wrapper:hover .coach-play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.coach-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.coach-play-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    transition: all 0.3s ease;
}

.coach-video-wrapper:hover .coach-play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.btn-service {
    background: var(--darker-purple);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: var(--bright-purple);
}

/* Feature Sections */
.feature {
    padding: 12.5px 0;
    background: transparent;
}

.feature-content {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.feature-right .feature-content {
    flex-direction: row-reverse;
}

.feature-text-box {
    flex: 1;
    border: 2px solid rgba(0, 229, 255, 0.3);
    padding: 0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    align-self: stretch;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.feature-text-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.3);
    border: 1px solid #00E5FF;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    padding: 0 40px;
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
    padding: 0 40px;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--bright-purple);
    transform: translateY(-2px);
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.feature-video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0;
    position: relative;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.feature-video:hover {
    border-color: #00E5FF;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.feature-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-sizing: border-box;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.9);
    border-radius: 50%;
    color: #000000;
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
    padding-left: 4px;
}

.video-play-overlay:hover .play-icon {
    transform: scale(1.1);
    background: #00E5FF;
}

.circle-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 4px solid var(--bright-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.2));
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: transparent;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.project-card-link:hover .project-card,
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 300px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 30px 30px 10px;
}

.project-description {
    color: var(--text-gray);
    padding: 0 30px 30px;
    line-height: 1.8;
}

/* Companies Section */
.companies {
    padding: 100px 0;
    background: transparent;
}

.companies-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.companies-graphic {
    flex: 1;
}

.companies-illustration {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 12px;
}

.companies-text {
    flex: 1;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    padding: 30px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
}

.testimonial-item p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-link {
    color: var(--bright-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.testimonial-link:hover {
    color: var(--pink);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.contact-item h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contact-item p {
    font-size: 1.1rem;
}

.social h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--bright-purple);
    border-color: var(--bright-purple);
}

.contact-form-wrapper {
    flex: 1;
    position: relative;
}

.gradient-background {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bright-purple), var(--pink), var(--light-pink));
    border-radius: 12px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 80px 0 0 0;
    color: var(--text-gray);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-tagline {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: #00E5FF;
    border-color: #00E5FF;
    color: #000000;
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #00E5FF;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    color: #00E5FF;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-copyright p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00E5FF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1;
        margin: 0;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
    }

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

    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }

    .ai-coaches-section {
        padding: 60px 0;
    }

    .feature-content,
    .about-content,
    .companies-content,
    .contact-content {
        flex-direction: column;
    }

    .feature-right .feature-content {
        flex-direction: column;
    }

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1;
        margin: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1.05rem;
    }

    /* Mobile Header & Sidebar - Show on mobile */
    .mobile-header {
        display: flex;
    }

    .desktop-header {
        display: none;
    }

    /* Add padding to body for fixed mobile header */
    body {
        padding-top: 60px;
    }

    /* Hero Section */
    .hero {
        padding: 20px 0 0 0;
    }

    .hero-graphics {
        display: none;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.6875rem;
    }

    /* Image Slider Section */
    .image-slider-section {
        padding: 0;
    }

    /* Simple 2D Slider - Mobile */
    .simple-slider-container {
        height: 250px;
    }
    
    .simple-slide {
        width: 175px;
        height: 250px;
    }
    
    .slider-container {
        height: 450px;
    }

    .slider-subtitle-container {
        padding: 0 15px 30px 15px;
    }

    .slider-subtitle {
        font-size: 1.1rem;
    }

    /* About Section */
    .about {
        padding: 15px 0;
    }

    .video-container {
        padding: 0 20px;
    }

    .main-video {
        max-width: 100%;
    }

    .about-content {
        gap: 40px;
        text-align: center;
    }

    .abstract-shape {
        width: 150px;
        height: 150px;
    }

    /* Services */
    .services {
        padding: 0 0 15px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .coaches-grid {
        gap: 20px;
        margin-top: 40px;
    }

    .coach-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-icon img {
        width: 70px;
        height: 70px;
    }

    .service-heading {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    /* Features */
    .feature {
        padding: 7.5px 0;
    }

    .feature-content {
        gap: 40px;
    }

    .feature-text-box {
        padding: 0;
        width: 100%;
    }

    .feature-image {
        width: 100%;
    }

    .feature-video-container {
        width: 100%;
        height: auto;
    }

    .play-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .circle-image {
        width: 250px;
        height: 250px;
    }

    /* Touch-Friendly Buttons */
    .btn-primary,
    .btn-service {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Projects */
    .projects {
        padding: 60px 0;
    }

    .projects-grid {
        gap: 30px;
    }

    .project-image {
        height: 250px;
    }

    /* Companies */
    .companies {
        padding: 60px 0;
    }

    .companies-content {
        gap: 40px;
    }

    .companies-illustration {
        height: 250px;
    }

    .testimonial-item {
        padding: 20px;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        gap: 40px;
    }

    .contact-title {
        font-size: 2rem;
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .gradient-background {
        height: 300px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* Container Padding */
    .container {
        padding: 0 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1;
        margin: 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .logo img {
        height: 31.5px;
    }

    .btn-signup {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .btn-pricing {
        font-size: 0.9rem;
        padding: 6px 12px;
        margin-right: 8px;
    }

    .user-info {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .user-dropdown {
        min-width: 150px;
    }

    .user-dropdown-item {
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .feature-text-box {
        padding: 0;
        width: 100%;
    }

    .feature-image {
        width: 100%;
    }

    .feature-video-container {
        width: 100%;
        height: auto;
    }

    .play-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .coach-play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-service {
        width: 100%;
    }

    .circle-image {
        width: 200px;
        height: 200px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    /* Footer - Extra Small */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-legal {
        gap: 15px;
    }

    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects for touch devices */
    .service-card:hover {
        transform: none;
    }

    .feature-text-box:hover {
        transform: none;
    }

    .project-card:hover {
        transform: none;
    }

    /* Add active/tap states instead */
    .service-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .project-card:active {
        transform: scale(0.98);
    }

    .btn-primary:active,
    .btn-service:active {
        transform: scale(0.95);
    }

    .dropdown-item:active {
        background: rgba(124, 58, 237, 0.5);
    }

    /* Larger tap targets */
    .dropdown-item {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* ============================================================================
   LEGAL DOCUMENTS MODAL
   ============================================================================ */

.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    margin: 20px;
    padding: 0;
    border: 2px solid #00E5FF;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
    animation: slideUp 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.legal-modal-header {
    background: linear-gradient(90deg, #00E5FF 0%, #00B8D9 100%);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00B8D9;
}

.legal-modal-header h2 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Lastica', sans-serif;
}

.legal-modal-close {
    color: #000000;
    font-size: 42px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.legal-modal-close:hover,
.legal-modal-close:focus {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.legal-modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
    color: #e0e0e0;
    line-height: 1.8;
}

.legal-modal-body h1 {
    color: #00E5FF;
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Lastica', sans-serif;
}

.legal-modal-body h2 {
    color: #00E5FF;
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 229, 255, 0.3);
    padding-bottom: 8px;
}

.legal-modal-body p {
    margin-bottom: 16px;
    color: #c0c0c0;
    font-size: 1rem;
}

.legal-modal-body strong {
    color: #00E5FF;
    font-weight: 600;
}

.legal-modal-body ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-modal-body li {
    margin-bottom: 10px;
    color: #b0b0b0;
    list-style-type: disc;
}

.legal-modal-body a {
    color: #00E5FF;
    text-decoration: underline;
}

.legal-modal-body a:hover {
    color: #00B8D9;
}

/* Custom scrollbar for modal */
.legal-modal-body::-webkit-scrollbar {
    width: 10px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: #00E5FF;
    border-radius: 10px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: #00B8D9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .legal-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .legal-modal-header {
        padding: 20px 24px;
    }
    
    .legal-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .legal-modal-body {
        padding: 24px;
    }
    
    .legal-modal-body h1 {
        font-size: 1.6rem;
    }
    
    .legal-modal-body h2 {
        font-size: 1.3rem;
    }
}

/* Tablet Responsive (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .ai-coaches-section {
        padding: 70px 0;
    }
}

/* Medium screens adjustment */
@media (min-width: 481px) and (max-width: 768px) {
    .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

