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

body {
    font-family: 'Quicksand', 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #f5f3f0;
}

/* Header Styles */
.header {
    background-color: rgba(245, 243, 240, 0.95);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure nav-menu is always visible on desktop */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile hamburger menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: space-around;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-item {
    color: #4a4a4a;
    font-size: 22px;
    font-weight: 400;
    padding: 0 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
}

.nav-item:hover {
    color: #667eea;
}

.nav-item.active {
    font-weight: 500;
}

.nav-separator {
    color: #666;
    font-size: 14px;
    margin: 0 5px;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 200px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    font-family: 'Comfortaa', sans-serif;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: capitalize;
    font-family: 'Comfortaa', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.hero-coach-link {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.hero-coach-link .coach-text-link {
    color: #ffffff !important;
    text-decoration: underline;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-coach-link .coach-text-link:hover {
    color: #e0e0e0 !important;
    text-decoration: none;
}

.contact-coach-link {
    margin: 30px 0;
    text-align: center;
}

/* Founders Section Styles */
.founders-section {
    background-color: #f5f3f0;
    color: #4a4a4a;
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.founders-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founders-text {
    padding-right: 20px;
}

.founders-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #5a5a5a;
    font-family: 'Comfortaa', sans-serif;
}

.founders-quote {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    line-height: 1.4;
    color: #6a6a6a;
    font-family: 'Comfortaa', sans-serif;
}

.founders-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.video-player:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.video-container {
    position: relative;
    display: inline-block;
}

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

.video-play-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    font-size: 40px;
    color: #ffffff;
    margin-left: 5px; /* Slight offset to center the triangle visually */
}

/* Play button visibility controlled by JavaScript */

/* Mission Header Section */
.mission-header-section {
    background-color: #f5f3f0;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    position: relative;
}

.mission-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: rgba(74, 74, 74, 0.2);
    width: 80%;
    max-width: 1400px;
}

.mission-header-content {
    text-align: center;
    padding: 0 20px;
}

.mission-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: #4a4a4a;
    margin: 20px;
    margin-top: 10vh;
    letter-spacing: -0.02em;
    font-family: 'Comfortaa', sans-serif;
}

/* Use Cases Section */
.use-cases-section {
    background-color: #f5f3f0;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.use-cases-content {
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
}

.use-cases-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(74, 74, 74, 0.15);
}

/* Mission Item Sections */
.mission-item {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3f0;
    margin-bottom: 5vh;
}

.mission-item-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-item-image {
    flex: 2;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fullscreen-image {
    width: 100%;
    height: 90vh;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(74, 74, 74, 0.15);
}

.mission-item-text {
    flex: 0.8;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-item-text p {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-family: 'Comfortaa', sans-serif;
}

/* First mission item should have image on right, text on left */
.mission-item-first .mission-item-content {
    flex-direction: row-reverse;
}

/* Alternating layout for mission items (excluding first item) */
.mission-item:not(.mission-item-first):nth-child(odd) .mission-item-content {
    flex-direction: row-reverse;
}

/* Ensure consistent spacing for all mission items including last one */
.mission-item:last-child {
    margin-bottom: 5vh;
}

/* Generic Section Header Styles */
.section-header {
    background-color: #f5f3f0;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: rgba(74, 74, 74, 0.2);
    width: 80%;
    max-width: 1400px;
}

.section-header-content {
    text-align: center;
    padding: 0 20px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: #4a4a4a;
    margin: 20px;
    margin-top: 10vh;
    letter-spacing: -0.02em;
    font-family: 'Comfortaa', sans-serif;
}

/* Comparison Table Section */
.comparison-section {
    background-color: #f5f3f0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.comparison-container {
    max-width: 1200px;
    padding: 0 40px;
    width: 100%;
}

.comparison-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Comfortaa', sans-serif;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(74, 74, 74, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    font-family: 'Comfortaa', sans-serif;
    border: 1px solid #e5e5e5;
}

.comparison-table thead {
    background: #ede8e3;
}

.comparison-table th {
    padding: 10px 8px;
    text-align: center;
    color: #4a4a4a;
    font-weight: 600;
    font-size: clamp(1rem, 3.5vw, 2rem);
    border-right: 1px solid rgba(74, 74, 74, 0.2);
    width: 20%;
}

.comparison-table th:last-child {
    border-right: none;
}

.comparison-table td {
    padding: 8px 6px;
    text-align: center;
    color: #4a4a4a;
    font-size: clamp(1rem, 2.4vw, 1.4rem);
    border-bottom: 1px solid rgba(74, 74, 74, 0.1);
    border-right: 1px solid rgba(74, 74, 74, 0.1);
    width: 20%;
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: rgba(74, 74, 74, 0.05);
}

.feature-name {
    text-align: left !important;
    font-weight: 600;
    background-color: #ede8e3;
    color: #4a4a4a;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.partial-coverage {
    font-size: clamp(0.5rem, 1.2vw, 0.7rem);
    color: rgba(74, 74, 74, 0.6);
    display: block;
    margin-top: 3px;
}

.coverage-emoji {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    display: block;
    margin-bottom: 2px;
}

.check {
    font-size: 1.5rem;
}

/* Custom circle icons for table */
.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.check-circle {
    background-color: #22c55e;
    color: white;
}

.cross-circle {
    background-color: #6b7280;
    color: white;
}

.partial-circle {
    background-color: #f59e0b;
    color: white;
}

.limited-circle {
    background-color: #ef4444;
    color: white;
}

/* How It Works Section */
.how-it-works-content {
    background-color: #f5f3f0;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.steps-container {
    max-width: 800px;
    padding: 0 40px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.step-number {
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
    flex-shrink: 0;
}

.step-item p {
    color: #4a4a4a;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
}

/* Best of Both Worlds Section */
.best-of-both-section {
    background-color: #f5f3f0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.best-of-both-content {
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.best-of-both-text {
    flex: 1;
}

.best-of-both-title {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Comfortaa', sans-serif;
}

.feature-list p {
    color: #4a4a4a;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    margin-bottom: 20px;
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.4;
}

.feature-highlight {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    font-weight: 400 !important;
    margin-bottom: 30px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.feature-highlight-small {
    font-size: clamp(1rem, 1.75vw, 1.5rem) !important;
    font-weight: 400 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: #4a4a4a;
    font-family: 'Comfortaa', sans-serif;
}

.best-of-both-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 330px;
    height: 590px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #2a2a2a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 15px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 11;
}

.carousel-container {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.carousel-text {
    padding: 15px 20px 10px 20px;
    text-align: center;
    background: transparent;
}

.carousel-text p {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.carousel-slides {
    width: 100%;
    height: calc(100% - 80px);
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    border-radius: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 8px;
    margin-top: auto;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #667eea;
}

/* Join Us Section */
.join-us-content {
    background-color: #f5f3f0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.join-us-container {
    max-width: 800px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.join-option {
    background: #333;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-option:hover {
    background: #444;
    transform: translateY(-5px);
}

.join-option p {
    color: #ffffff;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.4;
}

.coach-option {
    text-decoration: none;
    display: block;
}

.coach-option:hover {
    background: #444;
    transform: translateY(-5px);
}

.beta-option {
    text-decoration: none;
    display: block;
}

.beta-option:hover {
    background: #444;
    transform: translateY(-5px);
}

.beta-cta-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #45B7D1 100%);
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.beta-cta-button:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.cta-main {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    font-family: 'Comfortaa', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Comfortaa', sans-serif;
}

.coach-link {
    text-align: center;
    margin: 30px 0;
}

.coach-text-link {
    color: #667eea;
    text-decoration: underline;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-family: 'Comfortaa', sans-serif;
    transition: all 0.3s ease;
}

.coach-text-link:hover {
    color: #5a6fd8;
    text-decoration: none;
}

/* Team Section */
.team-content {
    background-color: #f5f3f0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.team-container {
    max-width: 1200px;
    padding: 0 40px;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 40px 20px 20px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member-photo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Comfortaa', sans-serif;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #667eea;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Specific styling for Alonso's photo (4th team member) */
.team-member:nth-child(4) .profile-image {
    transform: scale(1);
    object-position: 55% 60%;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-family: 'Comfortaa', sans-serif;
}

.team-member-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 15px;
    font-family: 'Comfortaa', sans-serif;
}

.team-member-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    font-family: 'Comfortaa', sans-serif;
    margin: 0;
    margin-bottom: 120px;
    flex: 1;
}

.team-member-label {
    font-family: 'Kalam', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
    font-style: italic;
    margin-top: auto;
    padding-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}



/* Contact Section */
.contact-section {
    background-color: #f5f3f0;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

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

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-family: 'Comfortaa', sans-serif;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.join-us-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Comfortaa', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.join-us-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.contact-button {
    background: transparent;
    color: #667eea;
    text-decoration: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Comfortaa', sans-serif;
}

.contact-button:hover {
    transform: translateY(-3px);
    color: #5a6fd8;
}

/* Medium Screen Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .team-member-label {
        font-size: 1.4rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        background-color: transparent;
        backdrop-filter: none;
        padding: 20px 0;
    }
    
    .nav {
        justify-content: flex-end;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 6px;
        padding: 10px;
        backdrop-filter: blur(5px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 20px 30px 20px;
        gap: 25px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        min-height: 100vh;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        padding: 15px 0;
        font-size: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #f0f0f0;
    }
    
    .nav-separator {
        display: none;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-image {
        object-position: 90% center; /* Show the right side where people are visible */
    }
    
    .founders-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .founders-text {
        padding-right: 0;
    }
    
    .video-player {
        max-width: 350px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .mission-item-content {
        flex-direction: column !important;
        padding: 0 20px;
        gap: 0;
    }
    
    .mission-item-text {
        order: 1;
        height: auto;
        min-height: auto;
        padding: 15px 20px 10px 20px !important;
        margin-bottom: -150px;
    }
    
    .mission-item-image {
        order: 2;
        height: 50vh;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }
    
    .fullscreen-image {
        height: 45vh;
        max-width: 95%;
        object-fit: contain;
    }
    
    .mission-item-text p {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .section-title {
        font-size: clamp(3rem, 6vw, 4rem);
        margin-top: 5vh;
    }
    
    .best-of-both-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .feature-highlight {
        font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    }
    
    .feature-highlight-small {
        font-size: clamp(0.9rem, 2.5vw, 1.3rem) !important;
    }
    
    .phone-mockup {
        width: 270px;
        height: 450px;
        padding: 12px;
        border: 3px solid #2a2a2a;
        border-radius: 35px;
    }
    
    .phone-mockup::before {
        width: 50px;
        height: 20px;
        top: 6px;
    }
    
    .phone-mockup::after {
        width: 35px;
        height: 3px;
        top: 12px;
    }
    
    .carousel-dots {
        padding: 8px;
        gap: 6px;
    }
    
    .carousel-container {
        margin-top: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .steps-container {
        padding: 0 20px;
    }
    
    .join-us-container {
        padding: 0 20px;
    }
    
    .team-container {
        padding: 0 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-buttons {
        gap: 20px;
    }
    
    .use-cases-section {
        padding: 40px 0;
    }
    
    .use-cases-content {
        padding: 0 20px;
    }
    
    .use-cases-image {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-container {
        padding: 0 20px;
    }
    
    .comparison-title {
        margin-bottom: 30px;
    }
    
    .comparison-table th {
        font-size: clamp(1.0rem, 2.6vw, 1.4rem);
        padding: 8px 4px;
    }
    
    .comparison-table td {
        padding: 8px 4px;
        font-size: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .feature-name {
        font-size: clamp(1.0rem, 2.6vw, 1.4rem);
    }
    
    .partial-coverage {
        font-size: clamp(0.4rem, 1.0vw, 0.6rem);
    }
    
    .coverage-emoji {
        font-size: clamp(1.0rem, 2vw, 1.4rem);
    }
    
    .circle-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .impressum-content {
        padding: 0 20px;
    }
    
    .impressum-section {
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }
    
    .nav-item {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .founders-section {
        padding: 60px 0;
    }
    
    .founders-content {
        padding: 0 15px;
        gap: 20px;
    }
    
    .video-player {
        max-width: 300px;
    }
    
    .feature-highlight {
        font-size: clamp(2rem, 6vw, 3rem) !important;
        margin-bottom: 20px !important;
    }
    
    .feature-highlight-small {
        font-size: clamp(0.8rem, 3vw, 1.2rem) !important;
        margin-bottom: 10px !important;
    }
    
    .mission-item-content {
        padding: 0 15px;
    }
    
    .mission-item-image {
        height: 50vh;
    }
    
    .fullscreen-image {
        height: 40vh;
        max-width: 98%;
        object-fit: contain;
    }
    
    .mission-item-text {
        height: 50vh;
        padding: 15px !important;
        flex: 1;
    }
    
    .mission-item-text p {
        font-size: clamp(1rem, 5vw, 1.4rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-top: 3vh;
    }
    
    .phone-mockup {
        width: 210px;
        height: 350px;
        padding: 10px;
        border: 2px solid #2a2a2a;
        border-radius: 30px;
    }
    
    .phone-mockup::before {
        width: 40px;
        height: 15px;
        top: 5px;
    }
    
    .phone-mockup::after {
        width: 25px;
        height: 2px;
        top: 10px;
    }
    
    .carousel-dots {
        padding: 6px;
        gap: 4px;
    }
    
    .carousel-container {
        margin-top: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .steps-container {
        padding: 0 15px;
    }
    
    .step-item {
        margin-bottom: 20px;
    }
    
    .join-us-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .join-option {
        padding: 30px 20px;
    }
    
    .team-container {
        padding: 0 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 30px 20px 20px 20px;
        min-height: 550px;
    }
    
    .profile-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        border: 2px solid #667eea;
    }
    
    .profile-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .team-member-name {
        font-size: 1.3rem;
    }
    
    .team-member-title {
        font-size: 1rem;
    }
    
    .team-member-description {
        font-size: 0.9rem;
        margin-bottom: 140px;
    }
    
    .team-member-label {
        font-size: 1.26rem;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .join-us-button {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .contact-buttons {
        gap: 15px;
    }
    
    .privacy-main {
        padding-top: 70px;
    }
    
    .privacy-section {
        padding: 20px 15px;
    }
    
    .privacy-container {
        padding: 20px;
        margin: 0 auto;
        width: calc(100% - 30px);
        border-radius: 15px;
    }
    
    .privacy-content {
        padding: 0 10px 20px 10px;
    }
    
    .privacy-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-top: 20px;
        margin-bottom: 20px;
    }
    
    .privacy-content h2 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
    
    .privacy-content p,
    .privacy-content li {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .privacy-footer {
        padding: 20px 10px;
    }
}

/* Privacy Policy Styles */
.privacy-main {
    padding-top: 100px;
    background-color: #f5f3f0;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.privacy-section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    width: calc(100% - 40px);
    box-sizing: border-box;
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    font-family: 'Comfortaa', sans-serif;
}

.privacy-content {
    padding: 0 20px 40px 20px;
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    font-family: 'Comfortaa', sans-serif;
}

.privacy-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Comfortaa', sans-serif;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    font-family: 'Comfortaa', sans-serif;
}

.privacy-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.back-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Comfortaa', sans-serif;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Impressum Section */
.impressum-section {
    background-color: #f5f3f0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.impressum-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: #6b7280;
    margin-bottom: 15px;
    font-family: 'Comfortaa', sans-serif;
    opacity: 0.7;
}

.impressum-details {
    color: #6b7280;
    font-family: 'Comfortaa', sans-serif;
    line-height: 1.5;
    opacity: 0.5;
}

.impressum-details p {
    margin: 6px 0;
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    font-weight: 200;
}

.impressum-details strong {
    color: #9ca3af;
    font-weight: 300;
}

/* Footer Privacy Notice */
.privacy-notice {
    background-color: #f5f3f0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-notice p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Comfortaa', sans-serif;
}
    
    .use-cases-section {
        padding: 30px 0;
    }
    
    .use-cases-content {
        padding: 0 15px;
    }
    
    .use-cases-image {
        border-radius: 10px;
    }
    
    .comparison-section {
        padding: 40px 0;
    }
    
    .comparison-container {
        padding: 0 15px;
    }
    
    .comparison-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .comparison-table th {
        padding: 4px 2px;
        font-size: clamp(0.9rem, 2.4vw, 1.2rem);
    }
    
    .comparison-table td {
        padding: 4px 2px;
        font-size: clamp(0.7rem, 1.6vw, 1rem);
    }
    
    .feature-name {
        font-size: clamp(0.9rem, 2.3vw, 1.2rem);
    }
    
    .partial-coverage {
        font-size: clamp(0.36rem, 0.8vw, 0.5rem);
    }
    
    .coverage-emoji {
        font-size: clamp(0.8rem, 1.6vw, 1.2rem);
    }
    
    .circle-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .impressum-content {
        padding: 0 15px;
    }
    
    .impressum-section {
        padding: 25px 0;
    }
    
    .impressum-title {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        margin-bottom: 10px;
        opacity: 0.6;
    }
    
    .impressum-details {
        opacity: 0.4;
    }
}

.privacy-notice a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Animation for smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation for video */
.video-player:not([src]) {
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
} 