/* =========================================================================
   Gym Fest / GYMOS — Landing Page Styles
   Reuses the exact app design system tokens so the marketing site and the
   product feel like one brand.
   ========================================================================= */
:root {
    --gf-bg: #080706;
    --gf-card: #141413;
    --gf-elevated: #212120;
    --gf-orange: #F86605;
    --gf-orange-dark: #BC4800;
    --gf-text: #F8F7F6;
    --gf-text-soft: #A3A19F;
    --gf-border: #343433;

    --gf-radius-lg: 20px;
    --gf-radius-md: 12px;
    --gf-radius-sm: 8px;

    --gf-font-display: 'Bebas Neue', 'Inter', sans-serif;
    --gf-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    --gf-nav-h: 76px;
    --gf-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { height: 100%; max-width: 100%; }

body.gf-body {
    margin: 0;
    background: var(--gf-bg);
    color: var(--gf-text);
    font-family: var(--gf-font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

:focus-visible {
    outline: 2px solid var(--gf-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.gf-container {
    width: 100%;
    max-width: var(--gf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.gf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gf-orange);
    background: rgba(248, 102, 5, 0.1);
    border: 1px solid rgba(248, 102, 5, 0.3);
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
}

.gf-eyebrow i { font-size: 14px; }

.gf-section-head {
    max-width: 640px;
    margin: 0 0 48px;
}

.gf-section-head.gf-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gf-section-head h2 {
    font-family: var(--gf-font-display);
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 48px);
    letter-spacing: 0.4px;
    line-height: 1.08;
    margin: 14px 0 12px;
}

.gf-section-head p {
    color: var(--gf-text-soft);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.gf-orange { color: var(--gf-orange); }

section { position: relative; overflow-x: hidden; }

/* Reveal-on-scroll base state: visible by default (no-JS safe). JS only
   hides + animates elements in once GSAP has confirmed it's loaded. */
.gf-reveal { opacity: 1; }

/* =========================================================================
   Buttons
   ========================================================================= */
.gf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 26px;
    border-radius: var(--gf-radius-sm);
    font-family: var(--gf-font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.gf-btn:active { transform: translateY(1px); }

.gf-btn-primary {
    background: linear-gradient(120deg, var(--gf-orange), var(--gf-orange-dark));
    color: var(--gf-text);
}

.gf-btn-primary:hover { filter: brightness(1.07); }

.gf-btn-ghost {
    background: transparent;
    border-color: var(--gf-border);
    color: var(--gf-text);
}

.gf-btn-ghost:hover { border-color: var(--gf-orange); color: var(--gf-orange); }

.gf-btn-block { width: 100%; }

/* =========================================================================
   Navbar
   ========================================================================= */
.gf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: var(--gf-nav-h);
    display: flex;
    align-items: center;
    background: rgba(8, 7, 6, 0.55);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, height 0.3s ease;
}

.gf-nav.is-scrolled {
    height: 64px;
    background: rgba(8, 7, 6, 0.86);
    border-bottom-color: var(--gf-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.gf-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.gf-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gf-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--gf-orange), var(--gf-orange-dark));
    font-family: var(--gf-font-display);
    font-size: 16px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.gf-brand-word {
    font-family: var(--gf-font-display);
    font-size: 21px;
    letter-spacing: 1.5px;
}

.gf-brand-word em {
    font-style: normal;
    color: var(--gf-orange);
}

.gf-brand-suffix {
    display: none;
    font-size: 11px;
    color: var(--gf-text-soft);
    letter-spacing: 0.3px;
    border-left: 1px solid var(--gf-border);
    padding-left: 10px;
    margin-left: 2px;
}

.gf-nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.gf-nav__links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gf-text-soft);
    transition: color 0.2s ease;
}

.gf-nav__links a:hover { color: var(--gf-text); }

.gf-nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gf-nav__cta { min-height: 42px; padding: 0 20px; font-size: 14px; }

.gf-nav__burger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    color: var(--gf-text);
    cursor: pointer;
    font-size: 18px;
}

/* ---------------------------------------------------------------------
   Mobile off-canvas drawer
   --------------------------------------------------------------------- */
.gf-nav__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gf-nav__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gf-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: var(--gf-card);
    border-left: 1px solid var(--gf-border);
    z-index: 601;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.gf-drawer.is-open { transform: translateX(0); }

.gf-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.gf-drawer__close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    color: var(--gf-text);
    cursor: pointer;
    font-size: 17px;
}

.gf-drawer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gf-drawer__links a {
    display: block;
    padding: 14px 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--gf-text);
    border-bottom: 1px solid var(--gf-border);
}

.gf-drawer__foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.gf-drawer__foot p {
    color: var(--gf-text-soft);
    font-size: 12.5px;
    text-align: center;
    margin: 0;
}

/* =========================================================================
   Hero
   ========================================================================= */
.gf-hero {
    position: relative;
    padding: calc(var(--gf-nav-h) + 64px) 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 78% 8%, rgba(248, 102, 5, 0.16), transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(248, 102, 5, 0.08), transparent 60%),
        var(--gf-bg);
}

.gf-hero__stripes {
    position: absolute;
    inset: -10% -10%;
    background: repeating-linear-gradient(
        124deg,
        rgba(248, 102, 5, 0.05) 0px,
        rgba(248, 102, 5, 0.05) 2px,
        transparent 2px,
        transparent 60px
    );
    pointer-events: none;
    z-index: 0;
}

.gf-floating-icons {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.gf-floating-icons .gf-fi {
    position: absolute;
    color: var(--gf-orange);
    opacity: 0.14;
    will-change: transform;
}

.gf-hero__grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.gf-hero__copy { flex: 1 1 54%; min-width: 0; }
.gf-hero__visual { flex: 1 1 46%; min-width: 0; }

.gf-hero__copy h1 {
    font-family: var(--gf-font-display);
    font-weight: 400;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: 0.3px;
    margin: 18px 0 20px;
}

.gf-hero__copy p.gf-lede {
    max-width: 520px;
    color: var(--gf-text-soft);
    font-size: 17.5px;
    line-height: 1.7;
    margin: 0 0 30px;
}

.gf-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.gf-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.gf-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    color: var(--gf-text-soft);
}

.gf-hero__chips i { color: var(--gf-orange); font-size: 14px; }

/* ---------------------------------------------------------------------
   Hero phone mockup
   --------------------------------------------------------------------- */
.gf-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-phone {
    position: relative;
    width: min(300px, 74vw);
    aspect-ratio: 9 / 18.7;
    background: linear-gradient(155deg, #1c1b1a, #0d0c0c);
    border: 1px solid var(--gf-border);
    border-radius: 42px;
    padding: 14px;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transform: rotate(3deg);
}

.gf-phone__notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 20px;
    background: #0d0c0c;
    border-radius: 999px;
    z-index: 3;
}

.gf-phone__screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gf-card);
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gf-phone__brandrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gf-phone__brandrow .gf-mini-mark {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(145deg, var(--gf-orange), var(--gf-orange-dark));
    font-family: var(--gf-font-display);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-phone__brandrow span {
    font-size: 11px;
    color: var(--gf-text-soft);
}

.gf-streak-card {
    background: linear-gradient(135deg, rgba(248, 102, 5, 0.22), rgba(188, 72, 0, 0.08));
    border: 1px solid rgba(248, 102, 5, 0.3);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gf-streak-card i { font-size: 26px; color: var(--gf-orange); }

.gf-streak-card strong {
    display: block;
    font-family: var(--gf-font-display);
    font-size: 22px;
    letter-spacing: 0.4px;
    line-height: 1;
}

.gf-streak-card small {
    color: var(--gf-text-soft);
    font-size: 10.5px;
}

.gf-phone__section-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--gf-text-soft);
    margin-top: 2px;
}

.gf-leader-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: 10px;
    padding: 8px 10px;
}

.gf-leader-row .gf-rank {
    width: 18px;
    font-family: var(--gf-font-display);
    font-size: 13px;
    color: var(--gf-orange);
}

.gf-leader-row .gf-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gf-border);
    flex-shrink: 0;
}

.gf-leader-row .gf-name {
    flex: 1;
    font-size: 11.5px;
    font-weight: 600;
}

.gf-leader-row .gf-days {
    font-size: 10.5px;
    color: var(--gf-text-soft);
}

.gf-leader-row.is-you {
    background: rgba(248, 102, 5, 0.12);
    border-color: rgba(248, 102, 5, 0.35);
}

.gf-phone__float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.gf-phone__float-badge i { color: var(--gf-orange); font-size: 14px; }

.gf-phone__float-badge--left { left: -8%; top: 2%; }
.gf-phone__float-badge--right { right: -14%; bottom: 8%; }

/* =========================================================================
   Feature overview grid
   ========================================================================= */
.gf-section { padding: 100px 0; }
.gf-section--tight { padding: 80px 0; }

.gf-feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gf-feature-card {
    flex: 1 1 calc(25% - 15px);
    min-width: 240px;
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-md);
    padding: 26px 22px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.gf-feature-card:hover {
    border-color: var(--gf-orange);
    transform: translateY(-3px);
}

.gf-feature-card .gf-fc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(248, 102, 5, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-orange);
    font-size: 20px;
    margin-bottom: 18px;
}

.gf-feature-card h3 {
    font-family: var(--gf-font-body);
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 8px;
}

.gf-feature-card p {
    color: var(--gf-text-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================================
   Split feature sections (Members / Owners)
   ========================================================================= */
.gf-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.gf-split__copy { flex: 1 1 45%; min-width: 0; }
.gf-split__visual { flex: 1 1 55%; min-width: 0; }

.gf-split.gf-split--reverse .gf-split__visual { order: 2; }
.gf-split.gf-split--reverse .gf-split__copy { order: 1; }

.gf-split__copy .gf-section-head { margin-bottom: 30px; }

.gf-detail-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.gf-detail-item {
    display: flex;
    gap: 16px;
}

.gf-detail-item .gf-di-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-orange);
    font-size: 18px;
}

.gf-detail-item h4 {
    font-size: 15.5px;
    font-weight: 700;
    margin: 0 0 4px;
}

.gf-detail-item p {
    color: var(--gf-text-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.gf-split__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-visual-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-lg);
    padding: 30px;
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}

.gf-visual-card__glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 30% 20%, rgba(248, 102, 5, 0.18), transparent 60%);
    z-index: -1;
}

/* Leaderboard illustration */
.gf-lb-list { display: flex; flex-direction: column; gap: 10px; }

.gf-lb-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
}

.gf-lb-row.is-first { background: linear-gradient(120deg, rgba(248, 102, 5, 0.2), rgba(188, 72, 0, 0.08)); border-color: rgba(248, 102, 5, 0.35); }

.gf-lb-row .gf-rank {
    width: 22px;
    text-align: center;
    font-family: var(--gf-font-display);
    font-size: 15px;
    color: var(--gf-orange);
}

.gf-lb-row .gf-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--gf-border); }
.gf-lb-row .gf-name { flex: 1; font-size: 13.5px; font-weight: 600; }
.gf-lb-row .gf-streakval { font-size: 12.5px; color: var(--gf-text-soft); display: flex; align-items: center; gap: 5px; }
.gf-lb-row .gf-streakval i { color: var(--gf-orange); }

/* Owner dashboard illustration */
.gf-dash-stats { display: flex; gap: 12px; margin-bottom: 18px; }
.gf-dash-stats .gf-dash-stat { flex: 1 1 50%; }

.gf-dash-stat {
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: 12px;
    padding: 14px;
}

.gf-dash-stat span {
    display: block;
    font-size: 11px;
    color: var(--gf-text-soft);
    margin-bottom: 6px;
}

.gf-dash-stat strong {
    font-family: var(--gf-font-display);
    font-size: 22px;
    letter-spacing: 0.3px;
}

.gf-dash-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--gf-border);
    font-size: 13px;
}

.gf-dash-row:first-of-type { border-top: none; }
.gf-dash-row .gf-dr-name { font-weight: 600; }
.gf-dash-row .gf-dr-sub { color: var(--gf-text-soft); font-size: 11.5px; }
.gf-dash-badge { font-size: 10.5px; padding: 4px 9px; border-radius: 999px; font-weight: 700; letter-spacing: 0.3px; }
.gf-dash-badge.is-active { background: rgba(52, 199, 89, 0.15); color: #34c759; }
.gf-dash-badge.is-soon { background: rgba(248, 102, 5, 0.15); color: var(--gf-orange); }

/* =========================================================================
   Image break section
   ========================================================================= */
.gf-imagebreak {
    position: relative;
    padding: 130px 0;
    text-align: center;
    overflow: hidden;
}

.gf-imagebreak__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background-image: url('assets/img/gym-workout.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.16;
    z-index: 0;
}

.gf-imagebreak__scrim {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background:
        linear-gradient(180deg, var(--gf-bg) 0%, rgba(8, 7, 6, 0.75) 30%, rgba(8, 7, 6, 0.75) 70%, var(--gf-bg) 100%);
    z-index: 1;
}

.gf-imagebreak__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.gf-imagebreak__content h2 {
    font-family: var(--gf-font-display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
    margin: 16px 0 18px;
}

.gf-imagebreak__content p {
    color: var(--gf-text-soft);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 30px;
}

/* =========================================================================
   Pricing
   ========================================================================= */
.gf-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}

.gf-price-card { flex: 1 1 calc(33.333% - 16px); min-width: 260px; }

.gf-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-lg);
    padding: 32px 26px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.gf-price-card:hover { transform: translateY(-4px); }

.gf-price-card--highlight {
    background: linear-gradient(165deg, #1c1310, var(--gf-card) 40%);
    border-color: var(--gf-orange);
    transform: scale(1.035);
    box-shadow: 0 30px 70px -30px rgba(248, 102, 5, 0.35);
}

.gf-price-card--highlight:hover { transform: scale(1.035) translateY(-4px); }

.gf-price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, var(--gf-orange), var(--gf-orange-dark));
    color: var(--gf-text);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.gf-price-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0 6px;
}

.gf-price-card .gf-price-desc {
    color: var(--gf-text-soft);
    font-size: 13px;
    margin: 0 0 22px;
    min-height: 34px;
}

.gf-price-amount {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 24px;
}

.gf-price-amount .gf-currency {
    font-size: 20px;
    color: var(--gf-text-soft);
    align-self: flex-start;
    margin-top: 6px;
}

.gf-price-amount strong {
    font-family: var(--gf-font-display);
    font-size: 52px;
    letter-spacing: 0.3px;
    line-height: 1;
}

.gf-price-amount span {
    color: var(--gf-text-soft);
    font-size: 14px;
}

.gf-price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 26px;
    flex: 1;
}

.gf-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gf-text-soft);
}

.gf-price-features li i {
    color: var(--gf-orange);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.gf-price-features li strong { color: var(--gf-text); font-weight: 600; }

.gf-pricing-note {
    text-align: center;
    color: var(--gf-text-soft);
    font-size: 13.5px;
    margin-top: 36px;
}

.gf-pricing-note a { color: var(--gf-orange); font-weight: 600; }
.gf-pricing-note a:hover { text-decoration: underline; }

/* =========================================================================
   Contact
   ========================================================================= */
.gf-contact-grid {
    display: flex;
    gap: 50px;
}

.gf-contact-info { flex: 1 1 42%; min-width: 0; }
.gf-contact-form { flex: 1 1 58%; min-width: 0; }

.gf-contact-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.gf-contact-info .gf-section-head { margin-bottom: 6px; }

.gf-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gf-contact-row .gf-ci-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gf-orange);
    font-size: 17px;
}

.gf-contact-row strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.gf-contact-row span, .gf-contact-row a { color: var(--gf-text-soft); font-size: 13.5px; }
.gf-contact-row a:hover { color: var(--gf-orange); }

.gf-social-row { display: flex; gap: 10px; margin-top: 6px; }

.gf-social-row a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--gf-text);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.gf-social-row a:hover { border-color: var(--gf-orange); color: var(--gf-orange); }

.gf-contact-form {
    background: var(--gf-card);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-lg);
    padding: 32px;
}

.gf-form-row { display: flex; flex-wrap: wrap; gap: 16px; }
.gf-form-row .gf-field { flex: 1 1 200px; }

.gf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.gf-label { font-size: 13px; font-weight: 600; color: var(--gf-text-soft); }

.gf-input, .gf-textarea {
    width: 100%;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius-sm);
    color: var(--gf-text);
    font-family: var(--gf-font-body);
    font-size: 14.5px;
    padding: 13px 14px;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gf-textarea { min-height: 110px; resize: vertical; }

.gf-input::placeholder, .gf-textarea::placeholder { color: #6f6d6b; }

.gf-input:focus, .gf-textarea:focus {
    outline: none;
    border-color: var(--gf-orange);
    box-shadow: 0 0 0 3px rgba(248, 102, 5, 0.18);
}

.gf-form-note { font-size: 12px; color: var(--gf-text-soft); margin-top: 12px; text-align: center; }

/* =========================================================================
   Footer
   ========================================================================= */
.gf-footer {
    border-top: 1px solid var(--gf-border);
    padding: 64px 0 28px;
    background: var(--gf-card);
}

.gf-footer__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
}

.gf-footer__brand { flex: 1 1 260px; }
.gf-footer__grid > div:not(.gf-footer__brand) { flex: 1 1 140px; }

.gf-footer__brand p {
    color: var(--gf-text-soft);
    font-size: 13.5px;
    line-height: 1.7;
    margin: 14px 0 18px;
    max-width: 320px;
}

.gf-footer h5 {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gf-text-soft);
    margin: 0 0 16px;
}

.gf-footer__links { display: flex; flex-direction: column; gap: 11px; }
.gf-footer__links a { font-size: 13.5px; color: var(--gf-text); }
.gf-footer__links a:hover { color: var(--gf-orange); }

.gf-footer__pay { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.gf-footer__pay span {
    font-size: 11.5px;
    color: var(--gf-text-soft);
    border: 1px solid var(--gf-border);
    border-radius: 6px;
    padding: 5px 9px;
}

.gf-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--gf-border);
    font-size: 12.5px;
    color: var(--gf-text-soft);
}

.gf-footer__bottom a { color: var(--gf-text-soft); }
.gf-footer__bottom a:hover { color: var(--gf-orange); }

.gf-footer__legal { display: flex; gap: 18px; }

/* =========================================================================
   Scroll-to-top button
   ========================================================================= */
.gf-scrolltop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--gf-orange), var(--gf-orange-dark));
    color: var(--gf-text);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 400;
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.gf-scrolltop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gf-scrolltop:hover { filter: brightness(1.08); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1199.98px) {
    .gf-feature-card { flex-basis: calc(50% - 10px); }
}

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

    .gf-hero__grid { flex-direction: column; align-items: stretch; }
    .gf-hero__copy, .gf-hero__visual { flex: none; width: 100%; }
    .gf-hero__visual { margin-top: 20px; }
    .gf-hero__copy p.gf-lede { max-width: 100%; }

    .gf-split, .gf-split.gf-split--reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    .gf-split__copy, .gf-split__visual { flex: none; width: 100%; }
    .gf-split .gf-split__visual,
    .gf-split.gf-split--reverse .gf-split__visual,
    .gf-split .gf-split__copy,
    .gf-split.gf-split--reverse .gf-split__copy { order: 0; }

    .gf-pricing-grid { max-width: 420px; margin: 0 auto; }
    .gf-price-card { flex-basis: 100%; }
    .gf-price-card--highlight { transform: none; }
    .gf-price-card--highlight:hover { transform: translateY(-4px); }

    .gf-contact-grid { flex-direction: column; align-items: stretch; }
    .gf-contact-info, .gf-contact-form { flex: none; width: 100%; }

    .gf-footer__grid { gap: 32px; }
    .gf-footer__brand { flex-basis: 100%; }
    .gf-footer__grid > div:not(.gf-footer__brand) { flex-basis: calc(50% - 16px); }
}

@media (max-width: 767.98px) {
    .gf-feature-card { flex-basis: 100%; }
    .gf-section { padding: 72px 0; }
    .gf-hero { padding-top: calc(var(--gf-nav-h) + 40px); padding-bottom: 70px; }
    .gf-form-row .gf-field { flex-basis: 100%; }
    .gf-footer__grid { gap: 30px; }
    .gf-footer__grid > div:not(.gf-footer__brand) { flex-basis: 100%; }
    .gf-footer__bottom { flex-direction: column; align-items: flex-start; }
    .gf-imagebreak { padding: 90px 0; }
}

@media (max-width: 575.98px) {
    .gf-hero__ctas .gf-btn { flex: 1 1 100%; }
    .gf-scrolltop { right: 14px; bottom: 14px; width: 42px; height: 42px; }

    .gf-phone { transform: rotate(0deg); }
    .gf-phone__float-badge {
        font-size: 10px;
        padding: 6px 9px;
        gap: 5px;
    }
    .gf-phone__float-badge i { font-size: 12px; }
    .gf-phone__float-badge--left { left: 0; top: -4%; }
    .gf-phone__float-badge--right { right: 0; bottom: 6%; }
}

@media (min-width: 992px) {
    .gf-brand-suffix { display: block; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .gf-floating-icons { display: none; }
}


/* =========================================================================
   Preloader (merged in — self-contained, namespaced under #gf-preloader-root)
   ========================================================================= */

/* =========================================================================
   Gym Fest — Preloader Styles
   All rules are scoped under #gf-preloader-root so this file can never
   bleed into, or be affected by, the host page's styles.
   ========================================================================= */

#gf-preloader-root {
    --gf-bg: #080706;
    --gf-card: #141413;
    --gf-elevated: #212120;
    --gf-orange: #F86605;
    --gf-orange-dark: #BC4800;
    --gf-text: #F8F7F6;
    --gf-text-soft: #A3A19F;
    --gf-border: #343433;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gf-bg);
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

#gf-preloader-root * {
    box-sizing: border-box;
}

#gf-preloader-root.gf-preloader--done {
    pointer-events: none;
}

/* Subtle ambient background texture — radial glow + diagonal speed lines */
#gf-preloader-root .gf-preloader__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(248, 102, 5, 0.16), transparent 60%),
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 46px
        );
}

#gf-preloader-root .gf-preloader__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 24px;
}

/* ---------------------------------------------------------------------
   Ambient glow behind the dumbbell
   --------------------------------------------------------------------- */
#gf-preloader-root .gf-preloader__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 102, 5, 0.35) 0%, transparent 72%);
    animation: gf-glow-pulse 1.8s ease-in-out infinite;
    z-index: 0;
}

@keyframes gf-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

#gf-preloader-root.gf-preloader--gsap-active .gf-preloader__glow {
    animation: none;
}

/* ---------------------------------------------------------------------
   Dumbbell — a single element so it can rotate as one rigid body with
   one transform-origin. This is what keeps the motion smooth: no nested
   SVG groups, no competing transform-origins, no layout thrash.
   --------------------------------------------------------------------- */
#gf-preloader-root .gf-dumbbell {
    position: relative;
    z-index: 1;
    width: 156px;
    height: 56px;
    will-change: transform;
    transform-origin: 50% 50%;
    animation: gf-dumbbell-swing 1.3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

#gf-preloader-root.gf-preloader--gsap-active .gf-dumbbell {
    animation: none;
}

@keyframes gf-dumbbell-swing {
    0%, 100% { transform: rotate(-16deg) translateY(0); }
    50%      { transform: rotate(16deg) translateY(-6px); }
}

#gf-preloader-root .gf-dumbbell__bar {
    position: absolute;
    top: 50%;
    left: 38px;
    right: 38px;
    height: 8px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #4a4846, #232221 60%, #131211);
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

#gf-preloader-root .gf-dumbbell__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 16px;
    transform: translate(-50%, -50%);
    background: var(--gf-elevated);
    border: 1px solid var(--gf-orange);
    border-radius: 4px;
}

#gf-preloader-root .gf-dumbbell__plate {
    position: absolute;
    top: 50%;
    border-radius: 10px;
    background: linear-gradient(155deg, var(--gf-elevated), #0f0f0e);
    border: 2px solid var(--gf-orange);
    box-shadow: 0 0 14px rgba(248, 102, 5, 0.35);
}

#gf-preloader-root .gf-dumbbell__plate--l-out,
#gf-preloader-root .gf-dumbbell__plate--r-out {
    width: 20px;
    height: 56px;
    transform: translateY(-50%);
}

#gf-preloader-root .gf-dumbbell__plate--l-in,
#gf-preloader-root .gf-dumbbell__plate--r-in {
    width: 14px;
    height: 42px;
    transform: translateY(-50%);
}

#gf-preloader-root .gf-dumbbell__plate--l-out { left: 0; }
#gf-preloader-root .gf-dumbbell__plate--l-in  { left: 22px; }
#gf-preloader-root .gf-dumbbell__plate--r-in  { right: 22px; }
#gf-preloader-root .gf-dumbbell__plate--r-out { right: 0; }

/* ---------------------------------------------------------------------
   Wordmark
   --------------------------------------------------------------------- */
#gf-preloader-root .gf-preloader__wordmark {
    display: flex;
    gap: 10px;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: clamp(28px, 6vw, 40px);
    letter-spacing: 4px;
    line-height: 1;
}

#gf-preloader-root .gf-word--gym {
    color: var(--gf-text);
}

#gf-preloader-root .gf-word--fest {
    color: var(--gf-orange);
}

/* ---------------------------------------------------------------------
   Loading bar
   --------------------------------------------------------------------- */
#gf-preloader-root .gf-preloader__bar {
    width: min(220px, 60vw);
    height: 4px;
    border-radius: 999px;
    background: var(--gf-elevated);
    border: 1px solid var(--gf-border);
    overflow: hidden;
}

#gf-preloader-root .gf-preloader__bar-fill {
    height: 100%;
    width: 30%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gf-orange-dark), var(--gf-orange));
    animation: gf-bar-sweep 1.4s ease-in-out infinite;
}

@keyframes gf-bar-sweep {
    0%   { transform: translateX(-110%); }
    50%  { transform: translateX(60%); }
    100% { transform: translateX(260%); }
}

#gf-preloader-root .gf-preloader__label {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--gf-text-soft);
    letter-spacing: 0.3px;
}

/* Reduced motion: keep it simple and static-ish */
@media (prefers-reduced-motion: reduce) {
    #gf-preloader-root .gf-dumbbell,
    #gf-preloader-root .gf-preloader__glow {
        animation: none;
    }
    #gf-preloader-root .gf-preloader__bar-fill {
        animation: none;
        width: 60%;
    }
}

/* =========================================================
   Scroll reveal
   Independent from GSAP / ScrollTrigger
   ========================================================= */

.gf-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.gf-reveal.gf-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .gf-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}