/* ================================================
   ConceptFit50 — Full Premium Stylesheet
   ================================================ */
:root {
    --bg: #080808;
    --bg2: #0c0c0c;
    --accent: #C8FF00;
    --accent-dim: rgba(200, 255, 0, 0.12);
    --accent-glow: rgba(200, 255, 0, 0.35);
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.07);
    --font-d: 'Bebas Neue', sans-serif;
    --font-b: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h: 78px;
    --r: 14px;
}

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

html {
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ====== CURSOR ====== */
#csr,
#csr2 {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
}

#csr {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

#csr2 {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(200, 255, 0, 0.4);
    transition: width .3s, height .3s, opacity .3s;
}

body:has(a:hover) #csr2,
body:has(button:hover) #csr2 {
    width: 60px;
    height: 60px;
    opacity: .5;
}

/* ====== PRELOADER ====== */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-inner {
    text-align: center;
    width: 360px;
}

.pl-logo {
    font-family: var(--font-d);
    font-size: clamp(3rem, 8vw, 5.5rem);
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 2rem;
}

.pl-logo span {
    color: var(--accent);
}

.pl-logo em {
    font-style: normal;
    color: rgba(200, 255, 0, 0.6);
}

.pl-bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: .8rem;
    border-radius: 2px;
    overflow: hidden;
}

.pl-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent);
}

.pl-pct {
    font-family: var(--font-d);
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--accent);
}

/* ====== NAV ====== */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: background .5s var(--ease), backdrop-filter .5s;
}

#nav.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    /* siyah logo → koyu arka planda beyaz */
    filter: invert(1) brightness(10);
    transition: filter 0.3s, transform 0.3s var(--ease);
}

.nav-logo-img:hover {
    filter: invert(1) brightness(10) sepia(1) saturate(5) hue-rotate(30deg);
    transform: scale(1.04);
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

#nav ul a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .3s;
    position: relative;
}

#nav ul a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

#nav ul a:hover {
    color: #fff;
}

#nav ul a:hover::after {
    transform: scaleX(1);
}

.nav-btn {
    padding: .6rem 1.6rem;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    transition: transform .3s var(--ease), box-shadow .3s;
}

.nav-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 24px var(--accent-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: .5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform .3s, opacity .3s;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(4, 4, 4, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    z-index: 999;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mm-link {
    font-family: var(--font-d);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--muted);
    transition: color .3s;
}

.mm-link:hover {
    color: #fff;
}

.mt {
    margin-top: 1rem;
}

/* ====== BUTTONS ====== */
.btn-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: #000;
    font-family: var(--font-d);
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: var(--r);
    border: none;
    cursor: none;
    transition: transform .3s var(--ease), box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left .6s;
}

.btn-glow:hover::after {
    left: 160%;
}

.btn-glow:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 30px var(--accent-glow), 0 16px 40px rgba(0, 0, 0, .4);
}

.btn-glow.large {
    font-size: 1.3rem;
    padding: 1.2rem 3.5rem;
}

.btn-glow.full {
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--muted);
    font-size: .9rem;
    letter-spacing: .5px;
    border-radius: var(--r);
    transition: border-color .3s, color .3s;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.btn-outline.light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline.light:hover {
    border-color: #fff;
}

/* ====== CONTAINER ====== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ====== SECTION COMMONS ====== */
section {
    padding: 9rem 0;
}

.dark-section {
    background: var(--bg2);
}

.sec-tag {
    font-size: .72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.sec-header {
    margin-bottom: 5rem;
}

.sec-header.center {
    text-align: center;
}

h2 {
    font-family: var(--font-d);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: .95;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

h2 span {
    color: var(--accent);
}

.sec-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====== HERO ====== */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 5rem) 5% 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Sol metin alanı için güçlü karartma, sağda atlet için şeffaf */
    background:
        linear-gradient(to right, rgba(8, 8, 8, 0.96) 35%, rgba(8, 8, 8, 0.5) 60%, rgba(8, 8, 8, 0.12) 100%),
        linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, transparent 55%);
}

/* Z-index katman sırası */
.hero-athletes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}


.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: .3;
    animation: scan-move 8s linear infinite;
}

@keyframes scan-move {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-tag {
    font-size: .74rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

#hero h1 {
    font-family: var(--font-d);
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: .88;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
}

.hl {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-desc strong {
    color: #fff;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-numbers {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Reduced from 2rem to fit 4 items */
    opacity: 0;
    transform: translateY(20px);
}

.hn-val {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.hn-val-multi {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-d);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    line-height: 1.1;
    color: #fff;
    white-space: nowrap;
}

.hn-lbl {
    font-size: .72rem;
    letter-spacing: 1px;
    color: var(--muted);
    margin-top: 6px;
}

.hn-div {
    width: 1px;
    height: 45px;
    background: var(--border);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 2;
    opacity: .5;
}

.scroll-arrow {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: sa-pulse 2s ease-in-out infinite;
}

@keyframes sa-pulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(1)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2)
    }
}

.hero-scroll-hint span {
    font-size: .65rem;
    letter-spacing: 4px;
}

/* ====== HERO GEOMETRIC DECORATORS ====== */

/* Dönen kesikli halka — kadın atletin arkası */
.hg-orbit {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(260px, 34vw, 480px);
    height: auto;
    pointer-events: none;
    animation: hg-orbit-spin 30s linear infinite;
    will-change: transform;
}

@keyframes hg-orbit-spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Küçük dolu neon daire — 2 adet */
.hg-dot-sm {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hg-dot-1 {
    /* neon sarı — kadın omuz hizası */
    right: 38%;
    top: 18%;
    width: clamp(18px, 2.2vw, 30px);
    height: clamp(18px, 2.2vw, 30px);
    background: #C8FF00;
    opacity: 0.8;
    box-shadow: 0 0 20px #C8FF00, 0 0 50px rgba(200, 255, 0, 0.4);
    animation: hg-dot-pulse 3s ease-in-out infinite;
}

.hg-dot-2 {
    /* mavi — erkek atlet sol-üst */
    right: 8%;
    top: 22%;
    width: clamp(12px, 1.5vw, 20px);
    height: clamp(12px, 1.5vw, 20px);
    background: #50b4ff;
    opacity: 0.75;
    box-shadow: 0 0 16px #50b4ff, 0 0 40px rgba(80, 180, 255, 0.35);
    animation: hg-dot-pulse 4s ease-in-out infinite reverse;
}

@keyframes hg-dot-pulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.82);
    }
}

/* Çeyrek yay — sol alt köşe, neon sarı */
.hg-arc-bl {
    position: absolute;
    left: 36%;
    bottom: -4%;
    width: clamp(90px, 12vw, 170px);
    height: auto;
    pointer-events: none;
    opacity: 0.8;
    animation: hg-arc-breathe 5s ease-in-out infinite;
}

@keyframes hg-arc-breathe {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.45;
    }
}

/* Çapraz şerit bandı — sağ üst, erkek atlet yanı */
.hg-stripes-r {
    position: absolute;
    right: 0%;
    top: 10%;
    width: clamp(60px, 8vw, 110px);
    height: auto;
    pointer-events: none;
}

/* Çarpı işaretleri */
.hg-x {
    position: absolute;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    animation: hg-x-blink 3.5s ease-in-out infinite;
    user-select: none;
}

.hg-x-1 {
    /* sarı — kadın üst-sağ */
    right: 42%;
    top: 10%;
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    color: #C8FF00;
    opacity: 0.7;
    animation-delay: 0s;
}

.hg-x-2 {
    /* mavi — erkek üst */
    right: 6%;
    top: 8%;
    font-size: clamp(.8rem, 1.2vw, 1.2rem);
    color: #50b4ff;
    opacity: 0.65;
    animation-delay: 1.2s;
}

.hg-x-3 {
    /* sarı — orta-sağ */
    right: 14%;
    bottom: 28%;
    font-size: clamp(.7rem, 1vw, 1rem);
    color: #C8FF00;
    opacity: 0.5;
    animation-delay: 2.4s;
}

@keyframes hg-x-blink {

    0%,
    100% {
        opacity: inherit;
    }

    50% {
        opacity: 0.15;
    }
}

/* İnce yatay aksan çizgisi */
.hg-hline {
    position: absolute;
    right: 30%;
    bottom: 30%;
    width: clamp(40px, 5vw, 70px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #C8FF00, transparent);
    pointer-events: none;
    opacity: 0.6;
}

/* Mobilde azalt */
@media (max-width: 768px) {

    .hg-orbit,
    .hg-arc-bl,
    .hg-stripes-r {
        display: none;
    }

    .hg-dot-sm {
        transform: scale(0.7);
    }
}

/* ====== HERO ATHLETE CUTOUT LAYERS ====== */
.hero-athletes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Female cutout — primary, right-center */
.ha-female {
    position: absolute;
    bottom: 0;
    right: 24%;
    height: clamp(70%, 80vh, 95%);
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: screen;
    /* siyah bg görünmez; atlet net */
    will-change: transform;
    transform-origin: bottom center;
    animation: ha-enter-f 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.9s;
}

/* Male cutout — secondary, far right */
.ha-male {
    position: absolute;
    bottom: 0;
    right: 1%;
    height: clamp(52%, 62vh, 76%);
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    mix-blend-mode: screen;
    /* siyah bg görünmez */
    opacity: 0.82;
    will-change: transform;
    transform-origin: bottom center;
    animation: ha-enter-m 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 1.1s;
}

/* Glow blob behind athletes */
.ha-glow-blob {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 45%;
    height: 80%;
    background: radial-gradient(ellipse at 60% 80%,
            rgba(200, 255, 0, 0.1) 0%,
            rgba(80, 180, 255, 0.06) 45%,
            transparent 75%);
    pointer-events: none;
    will-change: transform;
    animation: ha-glow-breathe 6s ease-in-out infinite;
}

@keyframes ha-enter-f {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ha-enter-m {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.97);
    }

    to {
        opacity: 0.75;
        transform: translateX(0) scale(1);
    }
}

@keyframes ha-glow-breathe {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.06);
    }
}

/* Hide secondary male on smaller screens to avoid crowding */
@media (max-width: 1100px) {
    .ha-male {
        display: none;
    }

    .ha-female {
        right: 2%;
        height: clamp(55%, 65vh, 85%);
    }
}

@media (max-width: 768px) {
    .ha-female {
        right: -5%;
        height: 50%;
        opacity: 0.35;
        filter: drop-shadow(0 0 20px rgba(200, 255, 0, 0.1));
    }

    .ha-glow-blob {
        display: none;
    }
}

/* ====== TICKER ====== */
.ticker {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    background: rgba(200, 255, 0, 0.02);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: ticker-move 22s linear infinite;
}

.ticker-track span {
    font-family: var(--font-d);
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--muted);
}

.ticker-track b {
    color: var(--accent);
    font-size: .6rem;
}

@keyframes ticker-move {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ====== ABOUT ====== */
.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-img {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
}

.split-img img {
    width: 100%;
    height: 100%;
    filter: brightness(.9) contrast(1.05);
    transition: transform .7s var(--ease);
}

.split-img:hover img {
    transform: scale(1.04);
}

.img-badge {
    position: absolute;
    bottom: 1.8rem;
    right: 1.8rem;
    background: var(--accent);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ib-num {
    font-family: var(--font-d);
    font-size: 2rem;
    color: #000;
    line-height: 1;
}

.ib-txt {
    font-size: .42rem;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, .6);
    text-align: center;
}

.split-text h2 {
    margin-bottom: 1.5rem;
}

.split-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.split-text p strong {
    color: #fff;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 2rem 0;
}

.chip {
    padding: .4rem 1rem;
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 100px;
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: .5px;
}

/* ====== WHY ====== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2.5rem 2rem;
    transition: border-color .4s, transform .4s var(--ease), background .4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wc-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    filter: grayscale(100%) brightness(0.6);
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
    pointer-events: none;
}

.wc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card:hover .wc-bg {
    transform: scale(1.1);
    opacity: 0.18;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.04), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.why-card:hover {
    border-color: rgba(200, 255, 0, 0.25);
    transform: translateY(-6px);
    background: rgba(200, 255, 0, 0.03);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card.featured {
    grid-column: 1 / -1;
    border-color: rgba(200, 255, 0, 0.3);
    background: rgba(200, 255, 0, 0.04);
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 2rem;
    align-items: start;
}

.wc-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(200, 255, 0, 0.4));
    transition: transform .4s var(--ease), filter .4s var(--ease), color .4s var(--ease);
}

.wc-icon svg {
    width: 100%;
    height: 100%;
}

.why-card:hover .wc-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(200, 255, 0, 0.7));
    color: #fff;
}

.why-card.featured .wc-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    margin-top: .4rem;
}

/* SVG Stroke Animation if needed */
.wc-icon svg path,
.wc-icon svg circle,
.wc-icon svg rect {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: wc-draw 1.5s ease-out forwards;
}

@keyframes wc-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.why-card h3 {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: .8rem;
    line-height: 1.1;
}

.why-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.75;
}

/* ====== SERVICES ====== */
#services .sec-header {
    margin-bottom: 1.2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.svc-item {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.svc-item.reverse {
    direction: rtl;
}

.svc-item.reverse>* {
    direction: ltr;
}

.svc-img {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

.svc-img img {
    width: 100%;
    height: 100%;
    filter: brightness(.85) contrast(1.1) saturate(.9);
    transition: transform .8s var(--ease), filter .4s;
}

.svc-item:hover .svc-img img {
    transform: scale(1.06);
    filter: brightness(.9) contrast(1.1) saturate(1);
}

.svc-num {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-family: var(--font-d);
    font-size: 4rem;
    color: rgba(200, 255, 0, 0.15);
    line-height: 1;
    pointer-events: none;
}

.svc-body h3 {
    font-family: var(--font-d);
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.svc-body p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.svc-tags span {
    padding: .35rem .9rem;
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: 100px;
    font-size: .75rem;
    color: var(--accent);
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.inline-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

/* ====== GALLERY ====== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: 15px;
    padding: 0 5%;
    margin-top: 4rem;
}

.g-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: none;
    transition: transform 0.4s var(--ease);
}

.g-item.tall {
    grid-row: span 2;
}

.g-item.wide {
    grid-column: span 2;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-orientation: from-image;
    /* Ensure EXIF is respected */
    filter: brightness(.7) saturate(.8) contrast(1.1);
    transition: transform .7s var(--ease), filter .5s;
}

.g-item:hover img {
    transform: scale(1.08);
    filter: brightness(.85) saturate(1.1) contrast(1.05);
}

.g-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem .8rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
    font-family: var(--font-d);
    font-size: .8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .7);
    transform: translateY(4px);
    opacity: 0;
    transition: opacity .3s, transform .3s;
}

.g-item:hover .g-cap {
    opacity: 1;
    transform: translateY(0);
}

/* ====== SHOW MORE NEON CARD ====== */
.show-more-card {
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(200, 255, 0, 0.1);
    transition: all 0.4s var(--ease);
    min-height: 220px;
    opacity: 1 !important; /* Force visibility against GSAP bugs */
    visibility: visible !important;
}

.show-more-card:hover {
    background: rgba(200, 255, 0, 0.05);
    border-color: var(--accent);
    box-shadow: inset 0 0 20px rgba(200, 255, 0, 0.1), 0 0 20px rgba(200, 255, 0, 0.2);
}

.show-more-card .smc-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.smc-icon {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    font-weight: 300;
    transition: transform 0.4s var(--ease);
}

.show-more-card:hover .smc-icon {
    transform: scale(1.2) rotate(90deg);
}

.smc-text {
    font-family: var(--font-d);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(200, 255, 0, 0.3);
}

.smc-count {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 1px;
}

/* ====== LIGHTBOX ====== */
#lb-wrap {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.lb-bg {
    position: absolute;
    inset: 0;
}

.lb-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#lb-img {
    max-width: 100%;
    max-height: 75vh;
    /* Limit height to leave room for caption */
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 40px var(--accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lb-cap {
    font-family: var(--font-d);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.lb-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
    z-index: 10;
}

.lb-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--accent);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
    padding: 2rem;
    z-index: 5;
}

.lb-nav:hover {
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lb-prev {
    left: 1rem;
}

.lb-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .lb-nav {
        display: none;
    }

    #lb-img {
        max-height: 60vh;
    }
}

/* ====== BIG CTA ====== */
.big-cta {
    position: relative;
    padding: 10rem 5%;
    text-align: center;
    overflow: hidden;
}

.bcta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bcta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.35) saturate(.6);
}

.bcta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(8, 8, 8, .4) 0%, rgba(8, 8, 8, .85) 100%);
}

.bcta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.bcta-content h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
}

.bcta-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.bcta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== HOURS ====== */
.hours-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.h-col p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
}

.hl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--muted);
}

.hl-row.last {
    border-bottom: none;
}

.hl-time {
    font-family: var(--font-d);
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
}

/* ====== CONTACT ====== */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-left h2 {
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cinfo-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.ci-ic {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.ci-lbl {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .35rem;
}

.ci-val {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.65;
}

.ci-val.link {
    transition: color .3s;
}

.ci-val.link:hover {
    color: #fff;
}

/* WhatsApp Contact Card */
.wa-contact-card {
    background: rgba(255, 255, 0, 0.05);
    /* Very slight tint */
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
    height: 100%;
    justify-content: center;
}

.wa-contact-card:hover {
    border-color: rgba(200, 255, 0, 0.3);
    transform: translateY(-5px);
}

.wa-badge {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.wa-card-header h3 {
    font-family: var(--font-d);
    font-size: 2.2rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.wa-card-header h3 span {
    color: var(--accent);
}

.wa-contact-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wa-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wa-f-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted);
}

.wa-f-item svg {
    color: var(--accent);
}

/* Lightweight Instagram Card */
.ig-light-card {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.08), rgba(200, 255, 0, 0.02));
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.ig-light-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.ig-light-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 255, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(200, 255, 0, 0.15);
}

.ig-light-card:hover::before {
    opacity: 1;
}

.ig-lc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 255, 0, 0.1);
    color: var(--accent);
    box-shadow: inset 0 0 15px rgba(200, 255, 0, 0.2);
}

.ig-lc-icon svg {
    width: 24px;
    height: 24px;
}

.ig-lc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ig-lc-text h4 {
    font-family: var(--font-d);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

.ig-lc-text span {
    font-size: 0.8rem;
    color: var(--muted);
}

.ig-lc-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    background: #20ba59;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.wa-footer {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
}

/* ====== SECTION DIVIDERS (Logo Drawing Path) ====== */
.section-divider {
    position: relative;
    width: 100%;
    height: 60px;
    /* Logo çizimi için biraz dikey alan */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    overflow: hidden;
    z-index: 5;
}

.logo-separator-svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.ls-path-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 1;
}

.ls-path-draw {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px var(--accent-glow));

    /* Patika uzunluğu detaylı logo için çok daha yüksek (yaklaşık 20000) */
    stroke-dasharray: 20000;
    stroke-dashoffset: 20000;
    animation: ls-draw 7s ease-in-out infinite;
}

@keyframes ls-draw {
    0% {
        stroke-dashoffset: 20000;
    }

    30%,
    70% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -20000;
    }
}

/* ====== FOOTER ====== */
footer {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 5rem 5% 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

    margin-bottom: 1rem;
    transition: filter 0.3s, transform 0.3s;
    display: block;
}

.footer-logo-img:hover {
    filter: invert(1) brightness(10) sepia(1) saturate(5) hue-rotate(30deg);
    transform: scale(1.03);
}

.footer-brand p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4 {
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    color: var(--muted);
    font-size: .9rem;
    transition: color .3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bar {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: 1px;
}

/* ====== ANIMATIONS ====== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
}

/* ====== RESPONSIVE ====== */
@media (max-width:1100px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card.featured {
        grid-template-columns: 60px 1fr;
    }

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

    .g-item.tall {
        grid-row: span 1;
    }
}

@media (max-width:900px) {

    #nav ul,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero h1 {
        font-size: clamp(4rem, 15vw, 8rem);
    }

    .split-row,
    .about-grid,
    .hours-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .svc-item.reverse {
        direction: ltr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    section {
        padding: 6rem 0;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .g-item.wide {
        grid-column: span 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bar {
        flex-direction: column;
        gap: .8rem;
        text-align: center;
    }

    .hero-numbers {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
        justify-content: center;
    }

    .hero-numbers .hn-div {
        display: none;
        /* Hide dividers on mobile for better grid layout */
    }

    .hn-item {
        text-align: center;
        min-width: 120px;
    }
}

/* ================================================
   PERSONAL TRAINER SECTION
   ================================================ */

/* ---- Section wrapper ---- */
.pt-section {
    position: relative;
    overflow: hidden;
}

.pt-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Lottie Animation Band ---- */
.pt-anim-band {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0 5rem;
    position: relative;
}

.pt-anim-band::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.3), transparent);
}

/* ---- Each side panel ---- */
.pt-anim-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.pt-anim-label {
    font-family: var(--font-d);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--accent);
    text-align: center;
}

/* ---- Lottie / SVG container ---- */
.lottie-box {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: rgba(200, 255, 0, 0.03);
    border: 1px solid rgba(200, 255, 0, 0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.4s, transform 0.4s var(--ease);
}

.lottie-box:hover {
    border-color: rgba(200, 255, 0, 0.35);
    transform: scale(1.04);
}

/* Inner SVG fallback animations */
.lottie-box svg {
    width: 100%;
    height: 100%;
}

/* ---- Glow spots behind each figure ---- */
.pt-anim-glow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.female-glow {
    background: rgba(255, 80, 180, 0.25);
}

.male-glow {
    background: rgba(80, 180, 255, 0.25);
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scaleX(1);
    }

    50% {
        opacity: 0.9;
        transform: translateX(-50%) scaleX(1.3);
    }
}

/* ---- Center panel ---- */
.pt-anim-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0 1rem;
}

.pt-vs-badge {
    font-family: var(--font-d);
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--accent);
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vs-spin 8s linear infinite;
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.25), inset 0 0 30px rgba(200, 255, 0, 0.05);
}

@keyframes vs-spin {
    from {
        box-shadow: 0 0 30px rgba(200, 255, 0, 0.25);
    }

    50% {
        box-shadow: 0 0 60px rgba(200, 255, 0, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(200, 255, 0, 0.25);
    }
}

.pt-center-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.pt-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.pt-stat-num {
    font-family: var(--font-d);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.pt-stat-lbl {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
}

/* Tighten programs section spacing */
#programs {
    padding: 6rem 0 4rem;
}

#programs .sec-header {
    margin-bottom: 3.5rem;
}

/* ---- Trainer Cards grid ---- */
.pt-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Animated top accent line */
.pt-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.pt-card:hover::after {
    transform: scaleX(1);
}

.pt-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 255, 0, 0.25);
    background: rgba(200, 255, 0, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 255, 0, 0.06);
}

.pt-card.featured {
    border-color: rgba(200, 255, 0, 0.3);
    background: rgba(200, 255, 0, 0.05);
    box-shadow: 0 0 40px rgba(200, 255, 0, 0.08);
}

.pt-card.featured::after {
    transform: scaleX(1);
}

.ptc-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(200, 255, 0, 0.4));
    transition: transform 0.3s var(--ease);
}

.ptc-icon svg {
    width: 100%;
    height: 100%;
}

.pt-card:hover .ptc-icon {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(200, 255, 0, 0.6));
}

.pt-card h3 {
    font-family: var(--font-d);
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
}

.pt-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
}

.ptc-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--accent);
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* ---- CTA Strip ---- */
.pt-cta-strip {
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.08), rgba(200, 255, 0, 0.03));
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: var(--r);
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.pt-cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pt-cta-badge {
    font-family: var(--font-d);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
}

.pt-cta-text h3 {
    font-family: var(--font-d);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pt-cta-text p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .pt-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pt-anim-band {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .pt-anim-center {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pt-vs-badge {
        display: none;
    }

    .lottie-box {
        width: 160px;
        height: 160px;
    }

    .pt-cards {
        grid-template-columns: 1fr;
    }

    .pt-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pt-cards {
        grid-template-columns: 1fr;
    }

    .pt-anim-band {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================
   BRANCH SELECTOR + TRAINER STAGE
   ================================================ */

/* ── Branch Selector ── */
/* ── SMART TRAINER NAV ── */
.trainer-nav-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    flex-wrap: wrap; /* Fix mobile overflow */
}

.t-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.t-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.t-nav-item.active {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 20px rgba(200, 255, 0, 0.2);
}

.t-nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
}

.t-nav-icon svg {
    width: 100%;
    height: 100%;
}

.t-nav-item:hover .t-nav-icon {
    transform: scale(1.2) rotate(-5deg);
}

.t-nav-name {
    font-family: var(--font-d);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Trainer Stage ── */
.trainer-stage {
    position: relative;
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 32px;
    min-height: 440px;
    overflow: hidden;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.trainer-stage.female-active {
    border-color: rgba(255, 100, 200, 0.3);
    box-shadow: 0 0 80px rgba(255, 80, 180, 0.08) inset;
}

.trainer-stage.male-active {
    border-color: rgba(80, 180, 255, 0.3);
    box-shadow: 0 0 80px rgba(80, 180, 255, 0.08) inset;
}

/* Active state layout */
.stage-active {
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
    min-height: 380px;
    animation: stageIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stageIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Figure wrap */
.stage-figure-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 380px;
    padding-bottom: 1rem;
}

.stage-glow-ring {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 140px;
    border-radius: 50%;
    filter: blur(40px);
    transition: background 0.5s;
    animation: ring-pulse 2.5s ease-in-out infinite;
}

@keyframes ring-pulse {

    0%,
    100% {
        transform: translateX(-50%) scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scaleX(1.25);
        opacity: 0.9;
    }
}

#trainer-canvas-container {
    position: relative;
    z-index: 2;
    width: 320px;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    margin-top: -40px;
}

.trainer-plane {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trainer-plane img {
    display: none;
}

#curtains-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stage-trainer-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
    display: none;
    pointer-events: none;
    z-index: 10;
}

/* stage-geo-decos container */
.stage-geo-decos {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Common stage decos */
.hg-stage-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: hg-orbit-spin 20s linear infinite;
}

.hg-stage-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.hg-stage-x {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
    opacity: 0.6;
}


.stage-shadow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 1;
}

/* Info section layout */
.stage-info {
    padding: 2.5rem 3.5rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: infoSlide 0.5s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.info-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

/* Glass Gender Switch */
.gender-switch-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.g-toggle {
    background: none;
    border: none;
    color: var(--muted);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.g-toggle:hover {
    color: #fff;
}

.g-toggle.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.stage-gender-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes infoSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stage-gender-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    align-self: flex-start;
}

.stage-gender-badge.female {
    background: rgba(255, 80, 180, 0.15);
    border: 1px solid rgba(255, 80, 180, 0.4);
    color: #ff8fd4;
}

.stage-gender-badge.male {
    background: rgba(80, 180, 255, 0.15);
    border: 1px solid rgba(80, 180, 255, 0.4);
    color: #50b4ff;
}

.stage-branch-title {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.stage-branch-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 420px;
    margin: 0;
}

.stage-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stage-feat-chip {
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(200, 255, 0, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    color: var(--accent);
}

.stage-feat-chip svg {
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

.stage-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
}

/* Particles */
.stage-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.s-particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translateY(-400px) scale(0);
        opacity: 0;
    }
}

/* ── Gender Selector ── */
.gender-selector-wrap {
    margin-top: -0.5rem;
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selector-label {
    font-family: var(--font-d);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.gender-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.gender-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.22rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    min-width: 220px;
}

.g-icon {
    font-size: 1.6rem;
}

.g-label {
    font-weight: 600;
    letter-spacing: 1px;
}

.gender-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

/* Gender active states */
.gender-btn.active[data-gender="female"] {
    background: rgba(255, 80, 180, 0.15);
    border-color: rgba(255, 80, 180, 0.6);
    color: #ff8fd4;
    box-shadow: 0 10px 30px rgba(255, 80, 180, 0.2);
}

.gender-btn.active[data-gender="male"] {
    background: rgba(80, 180, 255, 0.15);
    border-color: rgba(80, 180, 255, 0.6);
    color: #50b4ff;
    box-shadow: 0 10px 30px rgba(80, 180, 255, 0.2);
}

/* Responsive */
@media (max-width: 860px) {
    .stage-active {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .stage-figure-wrap {
        height: 280px;
    }

    .stage-figure {
        width: 200px;
        height: 260px;
    }

    .stage-info {
        padding: 1.5rem 2rem;
        align-items: center;
        text-align: center;
    }

    .stage-gender-badge,
    .stage-cta {
        align-self: center;
    }

    .stage-features {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .trainer-nav-strip {
        gap: 0.7rem;
        border-radius: 16px; /* Switch from pill to box for better wrapping */
    }

    .t-nav-item {
        padding: 0.8rem 1rem;
        min-width: 110px;
        justify-content: center;
    }

    .t-nav-icon {
        font-size: 1.8rem;
    }

    .t-nav-name {
        font-size: 1rem;
    }
}
/* ====== LANG SWITCHER ====== */
.lang-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 2rem;
}

.lang-btn {
    font-family: var(--font-d);
    font-size: 1rem;
    color: var(--muted);
    cursor: auto;
    transition: color 0.3s, text-shadow 0.3s;
    user-select: none;
}

.lang-btn:hover {
    color: #fff;
    cursor: none;
}

.lang-btn.active {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.mm-lang-switcher {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mm-lang-switcher .lang-btn {
    font-size: 1.5rem;
}
@media (max-width: 900px) {
    .lang-switcher {
        display: none;
    }
}
