﻿:root {
    --otf-orange: #EF5A28;
    --otf-orange-dark: #c94a1e;
    --otf-dark: #111111;
    --otf-dark2: #1c1c1c;
    --otf-gray: #f5f5f5;
    --otf-text: #222222;
    --otf-muted: #666666;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--otf-text);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── NAVBAR ─── */
.otf-navbar {
    background: var(--otf-dark);
    padding: 14px 0;
}

    .otf-navbar .navbar-brand img {
        height: 36px;
    }

    .otf-navbar .navbar-brand span {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--otf-orange);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .otf-navbar .nav-link {
        color: rgba(255,255,255,0.8) !important;
        font-weight: 500;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }

/* ─── HERO ─── */
.hero-section {
    position: relative;
    min-height: 92vh;
    background: url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.78) 40%, rgba(239,90,40,0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--otf-orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 22px;
}

.hero-section h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 18px;
}

    .hero-section h1 span {
        color: var(--otf-orange);
    }

.hero-section p.lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 32px;
}

.btn-otf {
    background: var(--otf-orange);
    color: #fff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 38px;
    border: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    text-decoration: none !important;
}

    .btn-otf:hover {
        background: var(--otf-orange-dark);
        transform: translateY(-1px);
    }

.hero-micro {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    margin-top: 14px;
}

/* ─── WHY COMMITMENT ─── */
.why-section {
    background: var(--otf-dark2);
    color: #fff;
    padding: 80px 0 70px;
}

    .why-section .section-label {
        display: block;
        color: var(--otf-orange);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .why-section h2 {
        color: #fff;
        font-size: 2.6rem;
        margin-bottom: 48px;
    }

.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 36px 28px;
    height: 100%;
    transition: border-color 0.2s;
}

    .why-card:hover {
        border-color: var(--otf-orange);
    }

    .why-card .why-icon {
        width: 52px;
        height: 52px;
        background: var(--otf-orange);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.4rem;
        color: #fff;
    }

    .why-card h5 {
        color: #fff;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .why-card p {
        color: rgba(255,255,255,0.6);
        font-size: 0.95rem;
        margin: 0;
    }

.why-supporting {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

/* ─── PRICING ─── */
.pricing-section {
    background: var(--otf-gray);
    padding: 90px 0 80px;
}

    .pricing-section .section-label {
        display: block;
        color: var(--otf-orange);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .pricing-section h2 {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

.pricing-card {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .pricing-card:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,0.10);
        transform: translateY(-4px);
    }

    .pricing-card.popular {
        border: 2.5px solid var(--otf-orange);
        transform: scale(1.03);
        box-shadow: 0 16px 50px rgba(239,90,40,0.18);
        z-index: 2;
    }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-4px);
        }

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--otf-orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 2px;
    white-space: nowrap;
}

.pricing-card .plan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--otf-muted);
    margin-bottom: 6px;
}

.pricing-card .price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--otf-dark);
    line-height: 1;
}

    .pricing-card .price-amount span {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--otf-muted);
    }

.pricing-card .price-note {
    font-size: 0.78rem;
    color: var(--otf-muted);
    margin-bottom: 24px;
}

.pricing-card hr {
    border-color: #ebebeb;
    margin: 22px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .pricing-card ul li {
        font-size: 0.92rem;
        padding: 6px 0;
        color: #444;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pricing-card ul li i {
            color: var(--otf-orange);
            font-size: 0.8rem;
        }

.pricing-disclosure {
    font-size: 0.78rem;
    color: var(--otf-muted);
    max-width: 700px;
    margin: 36px auto 0;
    text-align: center;
    line-height: 1.6;
}

/* ─── SPECIALTY ─── */
.specialty-section {
    background: #fff;
    padding: 90px 0 80px;
}

    .specialty-section .section-label {
        display: block;
        color: var(--otf-orange);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .specialty-section h2 {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

.specialty-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 32px 28px;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .specialty-card:hover {
        border-color: var(--otf-orange);
        box-shadow: 0 8px 28px rgba(239,90,40,0.10);
    }

    .specialty-card .card-type {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--otf-orange);
        margin-bottom: 8px;
    }

    .specialty-card h4 {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .specialty-card .specialty-desc {
        font-size: 0.9rem;
        color: var(--otf-muted);
        margin-bottom: 20px;
    }

    .specialty-card .specialty-price {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--otf-dark);
    }

        .specialty-card .specialty-price span {
            font-size: 1rem;
            color: var(--otf-muted);
        }

    .specialty-card .specialty-note {
        font-size: 0.8rem;
        color: var(--otf-muted);
        margin-top: 6px;
    }

.hyrox-options {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.hyrox-option {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

    .hyrox-option:hover, .hyrox-option.active {
        border-color: var(--otf-orange);
        background: rgba(239,90,40,0.05);
    }

    .hyrox-option .hw {
        font-weight: 700;
        font-size: 0.9rem;
    }

    .hyrox-option .hp {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--otf-orange);
    }

/* ─── TRUST ─── */
.trust-section {
    background: var(--otf-dark);
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
}

    .trust-section h2 {
        color: #fff;
        font-size: 2rem;
        margin-bottom: 48px;
    }

.trust-item .trust-icon {
    width: 60px;
    height: 60px;
    background: rgba(239,90,40,0.15);
    border: 1.5px solid rgba(239,90,40,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--otf-orange);
}

.trust-item h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.trust-tagline {
    margin-top: 48px;
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── CHECKOUT MODAL ─── */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    background: var(--otf-dark);
    color: #fff;
    border: none;
    padding: 22px 28px;
}

    .modal-header .modal-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .modal-header .close {
        color: #fff;
        opacity: 0.7;
        font-size: 1.5rem;
    }

.modal-body {
    padding: 28px;
}

.summary-box {
    background: var(--otf-gray);
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 24px;
}

    .summary-box .summary-label {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--otf-muted);
        margin-bottom: 14px;
    }

    .summary-box .summary-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

        .summary-box .summary-row strong {
            font-weight: 700;
        }

        .summary-box .summary-row.highlight {
            color: var(--otf-orange);
            font-weight: 700;
            font-size: 1.05rem;
        }

.payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pay-method {
    flex: 1;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
}

    .pay-method:hover, .pay-method.active {
        border-color: var(--otf-orange);
        background: rgba(239,90,40,0.05);
    }

    .pay-method i {
        display: block;
        font-size: 1.3rem;
        margin-bottom: 4px;
    }

.recurring-note {
    font-size: 0.8rem;
    color: var(--otf-muted);
    margin-bottom: 20px;
}

.modal-body .form-check-label {
    font-size: 0.88rem;
}

.modal-footer {
    border: none;
    padding: 0 28px 28px;
    flex-direction: column;
    align-items: stretch;
}

.checkout-notice {
    font-size: 0.78rem;
    color: var(--otf-muted);
    text-align: center;
    margin-bottom: 14px;
}

.btn-otf-lg {
    width: 100%;
    background: var(--otf-orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-otf-lg:hover {
        background: var(--otf-orange-dark);
    }

/* ─── CONFIRMATION MODAL ─── */
#confirmModal .modal-header {
    background: linear-gradient(135deg, var(--otf-orange), #c94a1e);
}

.confirm-icon {
    font-size: 3.5rem;
    color: var(--otf-orange);
    margin-bottom: 16px;
}

.confirm-box {
    background: var(--otf-gray);
    border-radius: 6px;
    padding: 22px;
    margin-bottom: 20px;
}

.studio-contact {
    font-size: 0.88rem;
    color: var(--otf-muted);
}

/* ─── FOOTER ─── */
.otf-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.4);
    padding: 40px 0 28px;
    font-size: 0.82rem;
}

    .otf-footer .brand {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--otf-orange);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

/* ─── STICKY CTA (MOBILE) ─── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--otf-orange);
    padding: 14px 20px;
    z-index: 1000;
    text-align: center;
}

    .sticky-cta a {
        color: #fff;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 800;
        font-size: 1.1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
    }

.pricing-card ul li:before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--otf-orange);
    margin-right: 8px;
}

.paymentgateway {
    list-style: none;
    margin: 0px;
    width: 100%;
    padding: 0px;
}

    .paymentgateway tbody tr {
        height: 50px;
        vertical-align: middle;
        padding: 10px;
        border: 1px solid #000;
        border-radius: 13px;
        color: #000;
        margin-bottom: 10px;
        display: block;
    }

    .paymentgateway tr img {
        height: 30px !important;
        display: inline-table !important;
        right: 31px !important;
        /* float: right; */
        position: absolute !important;
        margin-top: 0px !important;
    }

    .paymentgateway input[type=radio] {
        opacity: 0;
    }

.paymentgateway-checked, .paymentgateway-checked span {
    background-color: #FCB017;
    color: #fff !important;
}



@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }

    .pricing-card.popular {
        transform: none;
    }

    .hero-section {
        min-height: 85vh;
    }
}
