/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.12);
    padding: 14px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

.highlight {
    color: #FF6B35;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF6B35;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s ease;
}

.btn-primary {
    background: #FF6B35;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #e85d2c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-gradient {
    background: linear-gradient(135deg, #FF6B35, #6A1B9A);
    color: #fff;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(ellipse at 30% 50%, rgba(106, 27, 154, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        #0d0d0d;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35, #FF3CAC, #6A1B9A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 19px;
    color: #999;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-logo-showcase {
    flex-shrink: 0;
    max-width: 280px;
}

.hero-app-icon {
    width: 280px;
    height: 280px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 60px;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.25),
        0 0 120px rgba(106, 27, 154, 0.15);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===== ICON STRIP ===== */
.icon-strip {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.icon-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.icon-strip img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.icon-strip img:hover {
    opacity: 1;
    transform: scale(1.2) translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.04);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(106, 27, 154, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box img {
    width: 32px;
    height: 32px;
}

.feature-icon {
    font-size: 28px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    color: #888;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== TRAINER SECTION ===== */
.trainer-highlight {
    padding: 100px 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(106, 27, 154, 0.08) 0%, transparent 60%);
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trainer-image {
    text-align: center;
}

.glass-float {
    width: 200px;
    height: 200px;
    border-radius: 44px;
    box-shadow: 0 20px 60px rgba(106, 27, 154, 0.25);
    animation: float 4s ease-in-out infinite;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #6A1B9A, #FF6B35);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trainer-text h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.trainer-text p {
    color: #999;
    font-size: 16px;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: #ccc;
    font-size: 15px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 700;
    font-size: 16px;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 53, 0.04) 50%, transparent 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 28px;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}

.cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta p {
    color: #999;
    font-size: 18px;
    margin-bottom: 36px;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 180px;
}

.store-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.store-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 12px;
    opacity: 0.7;
}

footer p {
    color: #666;
    font-size: 14px;
}

.footer-sub {
    margin-top: 4px;
    font-size: 13px !important;
    color: #555 !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 28px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-app-icon {
        width: 180px;
        height: 180px;
        border-radius: 40px;
    }

    .trainer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .check-list li {
        text-align: left;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links li:not(:last-child) {
        display: none;
    }

    .icon-strip-inner {
        gap: 24px;
    }

    .icon-strip img {
        width: 48px;
        height: 48px;
    }
}