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

body {
    font-family: 'Satoshi', sans-serif;
    background-color: #141414;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1;
}

/* Responsive container */
@media (max-width: 768px) {
    .landing-page {
        border-radius: 0;
    }

    .navbar {
        padding: 20px;
    }

    /* Ensure all sections are responsive */
    .daily-progress,
    .features-section,
    .fitscore-section,
    .testimonials,
    .download-section,
    .coming-soon,
    .footer {
        width: 100% !important;
    }
}

/* Landing Page Container */
.landing-page {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #141414;
    border-radius: 24px;
    overflow: hidden;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 1006px;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #141414 0%, rgba(20, 20, 20, 0.8) 30%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: calc(58.333% + 1px);
    width: 694px;
    height: 1006px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, #141414, transparent);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-image {
    width: 694px;
    height: 1006px;
    object-fit: cover;
    transform: rotate(180deg) scaleY(-1);
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 100px;
    z-index: 10;
}

.nav-logo {
    position: relative;
}

.logo {
    height: 52px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    padding: 8px;
    gap: 12px;
}

.nav-item {
    padding: 8px 12px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.nav-item span {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #c2c2c2;
    white-space: nowrap;
}

.nav-item.active {
    background-color: #54f100;
    padding: 8px 32px;
}

.nav-item.active span {
    color: #101010;
}

.nav-item:hover span {
    color: #ffffff;
}

.cta-button {
    background-color: #54f100;
    border-radius: 100px;
    padding: 12px 32px;
    cursor: pointer;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.cta-button span {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #101010;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    position: absolute;
    left: 92px;
    top: 252px;
    width: 674px;
    z-index: 10;
}

.hero-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 60px;
    line-height: 0.98;
    color: #54f100;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: 674px;
}

.hero-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 0.98;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    width: 615px;
}

.hero-description {
    position: absolute;
    left: -5px;
    top: 251px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #c2c2c2;
    width: 384px;
    margin-bottom: 82px;
}

.app-buttons {
    position: absolute;
    left: -10px;
    top: 333px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.app-store-btn,
.google-play-btn {
    width: 180px;
    height: 52px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
}

/* Reviews */
.reviews {
    position: absolute;
    left: -10px;
    top: 414px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatars {
    display: flex;
    align-items: center;
    padding-right: 23px;
}

.review-avatars .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: -23px;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.stars .star {
    width: 16px;
    height: 16px;
}

.stars .five-stars {
    width: 80px;
    height: 16px;
}

.rating {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    margin-left: 8px;
}

.review-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #d6d6d6;
}

/* Hero Phone */
.hero-phone {
    position: absolute;
    left: calc(41.667% + 23px);
    top: 143px;
    z-index: 5;
}

.hero-phone .phone-mockup {
    transform: rotate(-3.866deg);
    width: 500px;
    height: auto;
    max-width: none;
}

/* Video Section */
.video-section {
    width: 100%;
    background-color: #141414;
    padding: 100px 0;
    position: relative;
}

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

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

.video-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.video-header p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #d6d6d6;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-color: #232323;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Daily Progress Section */
.daily-progress {
    width: 100%;
    height: 1200px;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.background-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-circle-1 {
    position: absolute;
    left: calc(8.333% + 110px);
    top: -147px;
    opacity: 0.3;
}

.bg-circle-2 {
    position: absolute;
    left: calc(8.333% + 111.18px);
    top: 728.67px;
    opacity: 0.3;
    transform: scaleY(-1);
}

.section-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 121px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.section-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.section-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 796px;
    margin: 0;
    text-align: center;
}

.section-header p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #d6d6d6;
    max-width: 650px;
    margin: 0;
    text-align: center;
}

.features-grid {
    position: absolute;
    left: 50%;
    top: 420px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 10;
}

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

.feature-card {
    width: 392px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(214, 214, 214, 0.5);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #54f100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-card p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #c2c2c2;
    height: 72px;
}

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

.phone-center .phone-mockup {
    width: 381px;
    height: auto;
}

/* Features Section */
.features-section {
    width: 100%;
    min-height: 750px;
    height: auto;
    background-color: #141414;
    position: relative;
    overflow: visible;
    padding-bottom: 40px;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    bottom: 0;
    background-color: #323232;
    border-radius: 24px;
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    border-radius: 24px;
    opacity: 0.2;
    z-index: 2;
}

.features-container {
    position: relative;
    z-index: 10;
    padding: 80px 100px 40px;
}

.features-header {
    margin-bottom: 50px;
}

.features-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    width: 841px;
}

.features-header p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #d6d6d6;
    width: 718px;
    padding-top: 12px;
}

.features-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
}

.feature-large-card {
    width: 392px;
    min-height: 450px;
    height: auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.feature-large-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    width: 344px;
}

.feature-large-card p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #aeabab;
    margin-bottom: 24px;
    width: 344px;
}

.feature-image {
    width: 344px;
    height: 260px;
    border-radius: 12px;
    background-color: #232323;
    object-fit: cover;
    margin-top: auto;
}

/* FitScore Section */
.fitscore-section {
    width: 100%;
    height: 950px;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.fitscore-content {
    position: absolute;
    left: calc(50% + 0.5px);
    top: 120px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 32px;
    width: 1219px;
}

.fitscore-phone .phone-mockup {
    width: 495px;
    height: auto;
}

.fitscore-text {
    width: 691px;
}

.fitscore-text h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
    width: 841px;
}

.fitscore-description {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #9d9d9d;
    width: 691px;
}

/* Testimonials Section */
.testimonials {
    width: 100%;
    height: 800px;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    position: absolute;
    left: calc(29.167% - 300px);
    top: 120px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 1.2;
    color: #ffffff;
    width: 691px;
}

.testimonial-content {
    position: absolute;
    left: 120px;
    top: 220px;
    display: flex;
    gap: 40px;
    width: 1200px;
}

.testimonial-image {
    position: relative;
    width: 482px;
    height: 475px;
}

.testimonial-bg {
    width: 482px;
    height: 475px;
    object-fit: cover;
}

.rating-card {
    position: absolute;
    left: 0;
    top: 281px;
    width: 201px;
    height: 194px;
    background-color: #54f100;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating-score {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 86px;
    line-height: 81px;
    color: #000000;
    width: 132px;
}

.rating-stars {
    margin-bottom: 12px;
}

.five-stars {
    width: 116px;
    height: 20px;
}

.rating-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    color: #000000;
    opacity: 0.9;
}

.testimonial-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(84, 241, 0, 0.04);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 100px;
    line-height: normal;
    color: #ffffff;
}

.testimonial-text {
    height: 169px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-text h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
}

.testimonial-text p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #bfbfbf;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar .avatar {
    width: 49px;
    height: 49px;
    border-radius: 50%;
}

.user-details h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 4px;
}

.user-rating {
    width: 100px;
    height: 16px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ededed;
    cursor: pointer;
}

.dot.active {
    width: 49px;
    background-color: #54f100;
    border-radius: 24px;
}

/* Download Section */
.download-section {
    width: 100%;
    height: 650px;
    background-color: #141414;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    bottom: 40px;
    background-color: #202020;
    border-radius: 24px;
}

.download-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.download-phones {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-40%);
}

.download-phone-img {
    height: 420px;
    width: auto;
    max-width: 100%;
    padding-right: 40px;
    object-fit: contain;
}

.download-content {
    position: absolute;
    left: 98px;
    top: 50%;
    transform: translateY(-50%);
}

.download-text h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 74px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
    width: 681px;
}

.download-description {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #9d9d9d;
    width: 692px;
    margin-bottom: 8px;
}

.download-buttons {
    display: flex;
    gap: 24px;
}

/* Coming Soon Section */
.coming-soon {
    width: 100%;
    height: 550px;
    background-color: #141414;
    padding: 60px 91px;
}

.coming-soon-header {
    margin-bottom: 60px;
}

.coming-soon-header h2 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 74px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
    width: 851px;
}

.coming-soon-header p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #d6d6d6;
    width: 922px;
}

.coming-soon-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 56px;
    width: 1311px;
    margin: 0 auto;
    height: 308px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coming-feature {
    display: flex;
    align-items: center;
    gap: 100px;
}

.coming-feature:last-child {
    gap: 166px;
}

.coming-feature h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #54f100;
    white-space: nowrap;
}

.coming-feature p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #d6d6d6;
    width: 476px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #606060, transparent);
    width: 1215px;
    margin: 0 auto;
}

/* Footer */
.footer {
    width: 100%;
    height: 339px;
    background-color: #101010;
    overflow: hidden;
}

.footer-content {
    padding: 56px 0 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 1240px;
    margin: 0 auto;
}

.footer-logo {
    margin: 0 auto 32px auto;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #606060;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(85deg);
}


.social-link:hover {
    background: rgba(84, 241, 0, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.copyright {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #c2c2c2;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links span,
.footer-links a {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #c2c2c2;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links span:hover,
.footer-links a:hover {
    color: #54f100;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .landing-page {
        width: 100%;
        max-width: 1440px;
    }

    .hero,
    .daily-progress,
    .features-section,
    .fitscore-section,
    .testimonials,
    .download-section,
    .coming-soon,
    .footer {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 56px;
    }

    .features-grid {
        flex-direction: column;
        gap: 40px;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-content {
        flex-direction: column;
        gap: 40px;
    }

    .fitscore-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Container */
    .landing-page {
        width: 100%;
        border-radius: 0;
    }

    /* Navigation */
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
        position: relative;
        width: 100%;
        max-width: none;
        transform: none;
        left: 0;
        background: rgba(20, 20, 20, 0.95);
        backdrop-filter: blur(10px);
    }

    .logo {
        height: 40px;
    }

    .nav-menu {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 8px;
    }

    .nav-item {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .nav-item span {
        font-size: 14px;
        font-weight: 500;
    }

    .nav-item.active {
        background: rgba(84, 241, 0, 0.2);
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 25px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero::after {
        display: none;
    }

    .hero-background {
        display: none;
    }

    .hero-content {
        position: static;
        text-align: center;
        padding: 0 20px;
        width: 100%;
        max-width: 380px;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 35px;
    }

    .hero-title {
        font-size: 38px;
        width: 100%;
        line-height: 1.05;
        margin-bottom: 18px;
        font-weight: 900;
        letter-spacing: -1px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 22px;
        width: 100%;
        margin-bottom: 16px;
        font-weight: 700;
        color: #54f100;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-description {
        position: static;
        width: 100%;
        font-size: 17px;
        margin-bottom: 28px;
        left: 0;
        top: 0;
        line-height: 1.55;
        opacity: 0.95;
        color: #e8e8e8;
        font-weight: 400;
    }

    .hero-phone {
        position: static;
        text-align: center;
        transform: none;
        margin-bottom: 35px;
        flex-shrink: 0;
    }

    .hero-phone .phone-mockup {
        width: 310px;
        transform: none;
        border-radius: 28px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        filter: drop-shadow(0 0 20px rgba(84, 241, 0, 0.1));
    }

    .app-buttons {
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 18px;
        left: 0;
        top: 0;
        margin: 0 auto 28px;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .app-store-btn,
    .google-play-btn {
        width: 145px;
        height: auto;
        border-radius: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .app-store-btn:active,
    .google-play-btn:active {
        transform: scale(0.98);
    }

    .reviews {
        position: static;
        justify-content: center;
        margin: 20px auto 0;
        left: 0;
        top: 0;
        padding: 0 20px;
        gap: 14px;
        align-items: center;
    }

    .review-avatars {
        gap: -6px;
        margin-right: 2px;
    }

    .avatar {
        width: 38px;
        height: 38px;
        border: 2.5px solid #141414;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .stars {
        gap: 6px;
        align-items: center;
    }

    .rating {
        font-size: 15px;
        font-weight: 800;
        color: #54f100;
    }

    .review-text {
        font-size: 13px;
        opacity: 0.85;
        font-weight: 500;
    }

    /* Video Section */
    .video-section {
        padding: 60px 0;
    }

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

    .video-header {
        margin-bottom: 40px;
    }

    .video-header h2 {
        font-size: 36px;
        line-height: 1.08;
        margin-bottom: 16px;
        font-weight: 900;
        letter-spacing: -0.8px;
    }

    .video-header p {
        font-size: 17px;
        line-height: 1.52;
        max-width: 340px;
    }

    .video-wrapper {
        border-radius: 16px;
    }

    /* Daily Progress Section */
    .daily-progress {
        height: auto;
        padding: 70px 0 75px;
        background: linear-gradient(180deg, #141414 0%, #1a1a1a 100%);
    }

    .section-header {
        position: static;
        padding: 0 20px;
        left: 0;
        top: 0;
        transform: none;
        margin-bottom: 45px;
    }

    .section-header h2 {
        font-size: 36px;
        width: 100%;
        line-height: 1.08;
        margin-bottom: 16px;
        font-weight: 900;
        text-align: center;
        letter-spacing: -0.8px;
    }

    .section-header p {
        font-size: 17px;
        width: 100%;
        line-height: 1.52;
        opacity: 0.92;
        text-align: center;
        max-width: 340px;
        margin: 0 auto;
        font-weight: 450;
        color: #f0f0f0;
    }

    .features-grid {
        position: static;
        flex-direction: column;
        gap: 35px;
        padding: 0 20px;
        left: 0;
        top: 0;
        transform: none;
        align-items: center;
    }

    .phone-center {
        order: 2;
        margin: 15px 0 10px;
    }

    .phone-center .phone-mockup {
        width: 285px;
        border-radius: 26px;
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
        filter: drop-shadow(0 0 15px rgba(84, 241, 0, 0.08));
    }

    .features-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .features-column:first-child {
        order: 1;
    }

    .features-column:last-child {
        order: 3;
    }

    .feature-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 22px 20px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(84, 241, 0, 0.3);
        transform: translateY(-2px);
    }

    .feature-card h3 {
        font-size: 19px;
        font-weight: 800;
        margin: 14px 0 10px;
        color: #ffffff;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.48;
        opacity: 0.88;
        font-weight: 450;
        color: #e8e8e8;
    }

    .feature-icon {
        margin-bottom: 6px;
    }

    .feature-icon .icon {
        width: 44px;
        height: 44px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    /* Features Section */
    .features-section {
        height: auto;
        padding: 72px 0 78px;
        background: #141414;
    }

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

    .features-header {
        text-align: center;
        margin-bottom: 42px;
    }

    .features-header h2 {
        font-size: 36px;
        width: 100%;
        line-height: 1.08;
        margin-bottom: 16px;
        font-weight: 900;
        letter-spacing: -0.8px;
    }

    .features-header p {
        font-size: 17px;
        width: 100%;
        line-height: 1.52;
        opacity: 0.92;
        max-width: 340px;
        margin: 0 auto;
        font-weight: 450;
        color: #f0f0f0;
    }

    .features-cards {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        margin-bottom: 30px;
    }

    .feature-large-card {
        width: 100%;
        max-width: 360px;
        height: auto;
        padding: 28px 22px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-large-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(84, 241, 0, 0.3);
        transform: translateY(-3px);
    }

    .feature-large-card h3 {
        font-size: 24px;
        width: 100%;
        font-weight: 800;
        margin-bottom: 10px;
        color: #54f100;
        letter-spacing: -0.3px;
    }

    .feature-large-card p {
        width: 100%;
        font-size: 15px;
        line-height: 1.48;
        opacity: 0.88;
        margin-bottom: 20px;
        font-weight: 450;
        color: #e8e8e8;
    }

    .feature-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* FitScore Section */
    .fitscore-section {
        height: auto;
        padding: 72px 0 75px;
        background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
    }

    .fitscore-content {
        position: static;
        flex-direction: column;
        gap: 35px;
        text-align: center;
        padding: 0 20px;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        align-items: center;
    }

    .fitscore-phone {
        order: 1;
    }

    .fitscore-phone .phone-mockup {
        width: 285px;
        border-radius: 26px;
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
        filter: drop-shadow(0 0 15px rgba(84, 241, 0, 0.08));
    }

    .fitscore-text {
        order: 2;
        max-width: 360px;
    }

    .fitscore-text h2 {
        font-size: 36px;
        width: 100%;
        line-height: 1.08;
        margin-bottom: 20px;
        font-weight: 900;
        letter-spacing: -0.8px;
    }

    .fitscore-description {
        width: 100%;
        font-size: 17px;
        line-height: 1.55;
        opacity: 0.92;
        font-weight: 450;
        color: #f0f0f0;
    }

    .fitscore-description p {
        margin-bottom: 14px;
    }

    .fitscore-description p:first-child {
        font-weight: 700;
        color: #54f100;
        font-size: 19px;
        margin-bottom: 12px;
    }

    /* Testimonials Section */
    .testimonials {
        height: auto;
        padding: 80px 0;
        background: #141414;
    }

    .testimonials h2 {
        position: static;
        font-size: 40px;
        width: 100%;
        text-align: center;
        padding: 0 24px;
        left: 0;
        top: 0;
        line-height: 1.1;
        margin-bottom: 50px;
        font-weight: 800;
    }

    .testimonial-content {
        position: static;
        flex-direction: column;
        gap: 40px;
        padding: 0 24px;
        width: 100%;
        left: 0;
        top: 0;
        align-items: center;
    }

    .testimonial-image {
        width: 100%;
        height: auto;
        position: relative;
        max-width: 400px;
    }

    .testimonial-bg {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 20px;
    }

    .rating-card {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: auto;
        background: rgba(20, 20, 20, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 24px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rating-score {
        font-size: 48px;
        line-height: 1;
        width: 100%;
        color: #54f100;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .rating-text {
        font-size: 14px;
        opacity: 0.8;
    }

    .testimonial-card {
        width: 100%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        padding: 32px 24px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .testimonial-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #54f100;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
        opacity: 0.9;
        margin-bottom: 24px;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .user-avatar .avatar {
        width: 48px;
        height: 48px;
    }

    .user-details h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    /* Download Section */
    .download-section {
        height: auto;
        padding: 85px 0 90px;
        background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
        position: relative;
    }

    .download-section::before {
        top: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
        border-radius: 26px;
        background: rgba(84, 241, 0, 0.06);
        border: 2px solid rgba(84, 241, 0, 0.25);
        box-shadow: inset 0 0 20px rgba(84, 241, 0, 0.03);
    }

    .download-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
        position: relative;
    }

    .download-phones {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 50px;
        margin-bottom: 35px;
        padding: 0 20px;
        order: 2;
        z-index: 1;
    }

    .download-phone-img {
        height: auto;
        max-width: 200px;
        width: 100%;
        padding: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        background: white;
    }

    .download-content {
        position: relative;
        text-align: center;
        padding: 0 20px;
        left: 0;
        top: 0;
        transform: none;
        z-index: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .download-text {
        margin-bottom: 0;
        width: 100%;
        z-index: 3;
    }

    .download-text h2 {
        font-size: 38px;
        width: 100%;
        line-height: 1.05;
        margin-bottom: 30px;
        font-weight: 900;
        color: #54f100;
        letter-spacing: -1px;
        text-shadow: 0 2px 8px rgba(84, 241, 0, 0.3);
    }

    .download-description {
        font-size: 18px;
        width: 100%;
        line-height: 1.52;
        opacity: 0.95;
        max-width: 330px;
        margin: 0 auto 30px;
        font-weight: 450;
        color: #f0f0f0;
    }

    .download-description p {
        margin-bottom: 6px;
    }

    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 0;
        position: relative;
        z-index: 3;
    }

    .download-buttons .app-store-btn,
    .download-buttons .google-play-btn {
        width: 160px;
        height: auto;
        border-radius: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        filter: drop-shadow(0 0 8px rgba(84, 241, 0, 0.1));
    }

    .download-buttons .app-store-btn:active,
    .download-buttons .google-play-btn:active {
        transform: scale(0.98);
    }

    /* Coming Soon Section */
    .coming-soon {
        height: auto;
        padding: 80px 24px;
        background: #141414;
    }

    .coming-soon-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .coming-soon-header h2 {
        font-size: 40px;
        width: 100%;
        line-height: 1.1;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .coming-soon-header p {
        font-size: 18px;
        width: 100%;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 380px;
        margin: 0 auto;
    }

    .coming-soon-features {
        width: 100%;
        padding: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .coming-feature {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .coming-feature h3 {
        font-size: 24px;
        white-space: normal;
        font-weight: 700;
        color: #54f100;
        margin-bottom: 12px;
    }

    .coming-feature p {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
        opacity: 0.8;
    }

    .divider {
        display: none;
    }

    /* Footer */
    .footer {
        height: auto;
        background: #0a0a0a;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        padding: 60px 24px 40px;
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 32px;
    }

    .footer-logo .logo {
        height: 48px;
    }

    .footer-social {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        margin-bottom: 40px;
    }

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

    .social-link {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: rgba(84, 241, 0, 0.1);
        border-color: rgba(84, 241, 0, 0.3);
        transform: translateY(-2px);
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .copyright {
        font-size: 14px;
        opacity: 0.7;
    }

    .footer-links {
        gap: 24px;
        justify-content: center;
    }

    .footer-links span,
    .footer-links a {
        font-size: 14px;
        opacity: 0.8;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .footer-links span:hover,
    .footer-links a:hover {
        opacity: 1;
        color: #54f100;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Hero adjustments */
    .hero {
        padding: 90px 0 45px;
        min-height: 95vh;
    }

    .hero-content {
        padding: 0 18px;
        max-width: 350px;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-phone .phone-mockup {
        width: 280px;
    }

    /* Section headers */
    .section-header,
    .features-header,
    .coming-soon-header {
        padding: 0 18px;
        margin-bottom: 35px;
    }

    .section-header h2,
    .features-header h2,
    .fitscore-text h2,
    .testimonials h2,
    .download-text h2,
    .coming-soon-header h2 {
        font-size: 30px;
        margin-bottom: 14px;
        letter-spacing: -0.6px;
    }

    .section-header p,
    .features-header p,
    .coming-soon-header p {
        font-size: 16px;
        max-width: 320px;
    }

    /* Navigation */
    .navbar {
        padding: 18px 16px;
        gap: 18px;
    }

    .logo {
        height: 36px;
    }

    .nav-item {
        padding: 6px 12px;
    }

    .nav-item span {
        font-size: 13px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Sections */
    .daily-progress,
    .features-section,
    .fitscore-section {
        padding: 60px 0 65px;
    }

    .features-grid,
    .features-cards,
    .fitscore-content {
        padding: 0 18px;
        gap: 28px;
    }

    .phone-center .phone-mockup,
    .fitscore-phone .phone-mockup {
        width: 260px;
    }

    .feature-card,
    .feature-large-card {
        max-width: 340px;
        padding: 20px 18px;
    }

    .feature-card h3,
    .feature-large-card h3 {
        font-size: 18px;
    }

    .feature-card p,
    .feature-large-card p {
        font-size: 14px;
    }

    /* Download section */
    .download-section {
        padding: 75px 0 80px;
    }

    .download-section::before {
        left: 16px;
        right: 16px;
        top: 16px;
        bottom: 16px;
    }

    .download-phones {
        margin-top: 45px;
        margin-bottom: 30px;
        padding: 0 18px;
        order: 2;
        z-index: 1;
    }

    .download-phone-img {
        max-width: 180px;
        padding: 10px;
        border-radius: 10px;
    }

    .download-content {
        padding: 0 18px;
        order: 1;
        z-index: 3;
    }

    .download-text {
        z-index: 3;
    }

    .download-text h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .download-description {
        font-size: 16px;
        max-width: 310px;
        margin-bottom: 25px;
    }

    .download-buttons {
        z-index: 3;
    }

    .app-store-btn,
    .google-play-btn,
    .download-buttons .app-store-btn,
    .download-buttons .google-play-btn {
        width: 135px;
        height: auto;
    }

    /* Testimonials */
    .testimonials {
        padding: 65px 0 70px;
    }

    .testimonials h2 {
        padding: 0 18px;
        margin-bottom: 40px;
    }

    .testimonial-content {
        padding: 0 18px;
        gap: 32px;
    }

    .testimonial-card {
        max-width: 340px;
        padding: 26px 20px;
    }

    .testimonial-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    /* Coming soon and footer */
    .coming-soon {
        padding: 65px 18px;
    }

    .coming-soon-features {
        max-width: 340px;
        gap: 32px;
    }

    .coming-feature {
        padding: 26px 20px;
        gap: 16px;
    }

    .coming-feature h3 {
        font-size: 22px;
    }

    .coming-feature p {
        font-size: 15px;
    }

    .footer-content {
        padding: 50px 18px 35px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}