/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0B0B0B;
    --surface: #161616;
    --surface-2: #202020;
    --accent: #C8FF00;
    --accent-dim: rgba(200, 255, 0, 0.12);
    --accent-dim-2: rgba(200, 255, 0, 0.06);
    --text: #EBEBEB;
    --text-muted: #666666;
    --text-faint: #333333;
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.14);
    --radius-sm: 4px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dot grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Utility ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SVG Icons ===== */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
.icon--lg { width: 48px; height: 48px; }

/* ===== Entrance animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
}
.nav__logo-icon .icon { width: 18px; height: 18px; stroke-width: 2.5; }
.nav__logo-text {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
    text-transform: uppercase;
}
.nav__logo-text span { color: var(--accent); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav__link {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}
.nav__link:hover { color: var(--text); }
.nav__cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s, transform 0.2s;
}
.nav__cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.nav__mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(11, 11, 11, 0.96);
    border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--text); }
.nav__mobile .nav__cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
    color: var(--bg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
    z-index: 1;
}

/* Decorative accent blob */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content { position: relative; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--accent-dim-2);
    border: 1px solid rgba(200, 255, 0, 0.2);
    margin-bottom: 40px;
}
.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
    50% { opacity: 0.6; box-shadow: 0 0 4px var(--accent); }
}
.hero__badge-text {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.hero__title {
    font-size: clamp(60px, 8.5vw, 112px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: var(--text);
    margin-bottom: 36px;
    text-transform: uppercase;
}
.hero__title .gray { color: var(--text-faint); }

.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    font-weight: 500;
    margin-bottom: 40px;
}

.hero__actions { margin-bottom: 40px; }

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.hero__btn--primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 0 0 rgba(200, 255, 0, 0.3);
}
.hero__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}
.hero__btn--primary .icon { transition: transform 0.2s; }
.hero__btn--primary:hover .icon { transform: translateX(4px); }

.hero__social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 8px;
}
.hero__avatars { display: flex; }
.hero__avatars > * {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    margin-left: -12px;
}
.hero__avatars > *:first-child { margin-left: 0; }
.hero__avatar-1 { background: linear-gradient(135deg, #3a3a3a, #555); }
.hero__avatar-2 { background: linear-gradient(135deg, #2a2a2a, #444); }
.hero__avatar-3 { background: linear-gradient(135deg, #1a1a1a, #333); }
.hero__social-text p:first-child { font-size: 13px; font-weight: 700; color: var(--text); }
.hero__social-text p:last-child { font-size: 12px; font-weight: 500; color: var(--text-muted); }

/* Phone mockup */
.hero__phone-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone {
    position: relative;
    z-index: 20;
    width: 268px;
    aspect-ratio: 9 / 18.5;
    background: #111;
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: #111;
    border-radius: 0 0 14px 14px;
    z-index: 40;
}
.phone__screen {
    width: 100%;
    height: 100%;
    background: #181818;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.phone__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.phone__header .icon { color: #444; width: 18px; height: 18px; }
.phone__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #555);
    border: 2px solid rgba(200,255,0,0.3);
}
.phone__exercise-label {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #555;
}
.phone__exercise-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.phone__image {
    flex: 1;
    background: #111;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.phone__image .icon { width: 44px; height: 44px; color: #2a2a2a; }
.phone__image-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--accent);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bg);
}
.phone__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.phone__stat {
    background: #111;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}
.phone__stat-label {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #444;
}
.phone__stat-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
}
.phone__button {
    background: var(--accent);
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Glass cards */
.glass-card {
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: var(--radius-lg);
    position: absolute;
    z-index: 30;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.glass-card--progress {
    left: -52px;
    top: 40px;
    width: 200px;
    border-left: 3px solid var(--accent);
}
.glass-card--anthro {
    right: -44px;
    top: 24%;
    width: 210px;
    border-left: 3px solid var(--border-strong);
}
.glass-card--endurance {
    bottom: -28px;
    left: 20%;
    width: 180px;
    border-left: 3px solid #333;
}
.glass-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.glass-card__label {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}
.glass-card__value {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
}
.glass-card__icon { color: var(--accent); }
.glass-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}
.glass-card__row:last-child { border-bottom: none; }
.glass-card__row-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.glass-card__row-value { font-size: 12px; font-weight: 900; color: var(--accent); }
.glass-card__bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
}
.glass-card__bars > div { flex: 1; border-radius: 3px; }
.glass-card__bars .b1 { height: 40%; background: #2a2a2a; }
.glass-card__bars .b2 { height: 60%; background: #333; }
.glass-card__bars .b3 { height: 55%; background: #3a3a3a; }
.glass-card__bars .b4 { height: 85%; background: #555; }
.glass-card__bars .b5 { height: 100%; background: var(--accent); }
.chart-line { stroke: var(--accent); }

/* ===== TICKER ===== */
.ticker {
    overflow: hidden;
    background: var(--accent);
    padding: 13px 0;
    position: relative;
    z-index: 1;
}
.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}
.ticker__set {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(0,0,0,0.75);
    white-space: nowrap;
    padding-right: 0;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
.features {
    padding: 128px 0;
    position: relative;
    z-index: 1;
}
.features__header {
    max-width: 640px;
    margin-bottom: 72px;
}
.features__title {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--text);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.features__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
}
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-card__num {
    display: block;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text-faint);
    margin-bottom: 24px;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}
.feature-card:hover .feature-card__num { color: var(--accent); }
.feature-card--accent {
    background: var(--accent);
    color: var(--bg);
}
.feature-card--accent .feature-card__num { color: rgba(0,0,0,0.15); }
.feature-card--accent:hover .feature-card__num { color: rgba(0,0,0,0.4); }
.feature-card--surface {
    background: var(--surface);
    border: 1px solid var(--border);
}
.feature-card--surface:hover { border-color: rgba(200,255,0,0.3); }
.feature-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-card--accent .feature-card__icon {
    background: rgba(0,0,0,0.15);
    color: var(--bg);
}
.feature-card--surface .feature-card__icon {
    background: var(--surface-2);
    color: var(--accent);
    border: 1px solid var(--border);
}
.feature-card__icon .icon { width: 26px; height: 26px; }
.feature-card__title {
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}
.feature-card--accent .feature-card__title { color: var(--bg); }
.feature-card--surface .feature-card__title { color: var(--text); }
.feature-card__text {
    line-height: 1.7;
    font-weight: 500;
    font-size: 15px;
}
.feature-card--accent .feature-card__text { color: rgba(0,0,0,0.65); }
.feature-card--surface .feature-card__text { color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing {
    padding: 128px 0;
    background: var(--surface);
    position: relative;
    z-index: 1;
}
.pricing__header {
    text-align: center;
    margin-bottom: 48px;
}
.pricing__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 12px;
}
.pricing__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Toggle */
.pricing__toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 56px;
    background: var(--bg);
    border-radius: var(--radius-full);
    padding: 4px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border);
}
.pricing__tab {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.pricing__tab--active {
    background: var(--accent);
    color: var(--bg);
}
.pricing__tab:not(.pricing__tab--active):hover {
    color: var(--text);
}

/* Cards */
.pricing__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto 72px;
}
.pricing__card {
    padding: 44px 36px;
    border-radius: var(--radius-xl);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing__card--trial {
    background: var(--bg);
    border: 1px solid var(--border);
}
.pricing__card--paid {
    background: var(--bg);
    border: 2px solid var(--accent);
    box-shadow: 0 0 60px rgba(200, 255, 0, 0.06);
}
.pricing__card-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--surface-2);
    color: var(--text-muted);
    margin-bottom: 20px;
}
.pricing__card-badge--accent {
    background: var(--accent-dim);
    color: var(--accent);
}
.pricing__card-title {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}
.pricing__card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}
.pricing__card-amount {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
}
.pricing__card--paid .pricing__card-amount {
    color: var(--accent);
}
.pricing__card-period {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}
.pricing__card-desc {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Buttons */
.pricing__card-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    margin-bottom: 32px;
}
.pricing__card-btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.pricing__card-btn--outline:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
}
.pricing__card-btn--accent {
    background: var(--accent);
    color: var(--bg);
}
.pricing__card-btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(200, 255, 0, 0.2);
}

/* Feature list */
.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.pricing__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.4;
}
.pricing__feature .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.pricing__feature--yes .icon {
    color: var(--accent);
}

/* After trial block */
.pricing__after {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
.pricing__after-title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 36px;
}
.pricing__after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing__after-item {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
}
.pricing__after-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}
.pricing__after-icon .icon {
    width: 20px;
    height: 20px;
}
.pricing__after-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
    padding: 128px 0;
    background: var(--surface);
    position: relative;
    z-index: 1;
}
.faq__header {
    text-align: center;
    margin-bottom: 72px;
}
.faq__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.035em;
    color: var(--text);
    margin-bottom: 12px;
}
.faq__subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.faq__item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    user-select: none;
    letter-spacing: -0.02em;
    list-style: none;
    color: var(--text);
    transition: color 0.2s;
    gap: 24px;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }
.faq__question:hover { color: var(--accent); }
.faq__question .faq__chevron {
    color: var(--text-muted);
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}
.faq__item[open] .faq__question { color: var(--accent); }
.faq__item[open] .faq__question .faq__chevron {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq__answer {
    padding: 0 0 28px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.75;
    font-size: 16px;
    max-width: 680px;
}

/* ===== CTA ===== */
.cta {
    padding: 128px 24px;
    position: relative;
    z-index: 1;
}
.cta__card {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    background: var(--accent);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta__card::before {
    content: 'FIT';
    position: absolute;
    right: -40px;
    bottom: -60px;
    font-size: 260px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(0,0,0,0.06);
    line-height: 1;
    pointer-events: none;
    text-transform: uppercase;
}
.cta__inner { position: relative; z-index: 1; }
.cta__eyebrow {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.cta__title {
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--bg);
    margin-bottom: 24px;
}
.cta__text {
    font-size: 18px;
    color: rgba(0,0,0,0.6);
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 500;
    line-height: 1.7;
}
.cta__btn {
    display: inline-block;
    padding: 20px 56px;
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--bg);
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    z-index: 1;
}
.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__logo-icon {
    width: 28px;
    height: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.footer__logo-icon .icon { width: 14px; height: 14px; }
.footer__logo-text {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.footer__links { display: flex; gap: 32px; }
.footer__link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer__link:hover { color: var(--text); }
.footer__copy {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== MOBILE ===== */
@media (max-width: 1023px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero__phone-area { display: none; }
    .hero { padding: 128px 0 80px; }
}

@media (max-width: 767px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }

    .hero { padding: 108px 0 64px; }
    .hero__title { margin-bottom: 20px; }
    .hero__subtitle { font-size: 16px; margin-bottom: 28px; }
    .hero__btn { padding: 16px 28px; font-size: 15px; }

    .features { padding: 80px 0; }
    .features__header { margin-bottom: 48px; }
    .features__grid { grid-template-columns: 1fr; }
    .feature-card { padding: 32px; }
    .feature-card__num { font-size: 56px; margin-bottom: 16px; }

    .pricing { padding: 80px 0; }
    .pricing__cards { grid-template-columns: 1fr; max-width: 440px; }
    .pricing__card { padding: 32px 24px; }
    .pricing__card-amount { font-size: 40px; }
    .pricing__after-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

    .faq { padding: 80px 0; }
    .faq__question { padding: 22px 0; font-size: 16px; }
    .faq__answer { font-size: 15px; }

    .cta { padding: 80px 16px; }
    .cta__card { padding: 48px 28px; border-radius: 28px; }
    .cta__card::before { font-size: 160px; }
    .cta__btn { padding: 16px 40px; font-size: 16px; }

    .footer__inner { flex-direction: column; text-align: center; }
    .footer__links { flex-direction: column; gap: 12px; align-items: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .features__grid > :last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}
