:root {
  --orange: #cff85e;
  --orange-dark: #cff85e;
  --bg: #0d0800;
  --bg2: #100e00;
  --bg3: #1a1200;
  --card-bg: #130f00;
  --border: #2a2000;
  --text: #ffffff;
  --muted: #a8a090;
  --muted2: #6b6358;
        --gradient-fire: linear-gradient(135deg, #cff85e, #f8c44d);

}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
.row>*{
  margin-top: 0;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(13, 8, 0, 0.95) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.navbar-brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
  color: #fff !important;
}

.btn-nav-cta {
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  text-transform: uppercase;

}

.btn-nav-cta:hover {
  background: var(--orange-dark);
  color: #000;
  transform: scale(1.05);
}

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, rgba(200, 80, 0, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 30%, rgba(180, 60, 0, 0.15) 0%, transparent 55%),
    var(--bg);
  padding: 80px 0 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url(../images/gym-hero-ZLCnv6Qc.jpg);
  background-size: cover;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
      letter-spacing: 3px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
}

p , span, li{  font-family: "Inter", sans-serif; }

.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1 .highlight {
  color: var(--orange);
  display: block;
   font-family: "Anton", sans-serif;
}

.hero-sub {
    font-size: 19px;
    color: #bcbcbc;
    line-height: 25px;
    margin-bottom: 28px;
    max-width: 100%;
}

p b {
  color: #fff;
}

.btn-cta-main {
     background: var(--orange);
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .1s;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    column-gap: 10px;
}
.btn-cta-main img{
  max-width: 25px;
}

.btn-audit p{
  color: #aea298;
  font-size: 16px;
  margin: 0;
}

.btn-cta-main:hover {
  background: var(--orange-dark);
  color: #000;
  transform: scale(1.05);
}

.hero-footnote {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 10px;
}

/* hero right panel */
.hero-right-label {
     font-size: 22px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 16px;
     font-family: "Anton", sans-serif;
}

.leak-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 10px;
}

.leak-item i {
  color: var(--orange);
  font-size: 16px;
}

.loss-badge {
  margin-top: 18px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

.loss-badge .loss-label {
    font-size: 14px;
    color: #969696;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 15px;
}
.loss-badge .loss-num {
  font-size: 36px;
  font-weight: 400;
    font-family: "Anton", sans-serif;
  color: var(--orange);
}

.loss-badge .loss-sub {
  font-size: 12px;
  color: var(--muted2);
}

/* stats row */
.stats-row {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
}

.stat-item .stat-num {
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
    font-family: "Anton", sans-serif;
}

.stat-item .stat-lbl {
    font-size: 16px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 10px;
}

/* ── SECTION HELPERS ── */
.sec {
  padding: 80px 0;
}

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

.sec-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-title {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.sec-title .hl {
  color: var(--orange);
}

.sec-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── HARD TRUTH ── */
.truth-intro {
    font-size: 19px;
    color: var(--muted);
    line-height: 25px;
    max-width: 100%;
    margin-bottom: 8px;
}
.truth-quote {
    color: #e4e4e7;
    font-size: 28px;
    margin: 30px 0 28px;
    font-weight: 500;
}

.truth-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 22px 22px;
  min-height: 180px;
  margin-top: 40px;
}

.truth-card h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.truth-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 20px;
  margin: 0;
}

.truth-card i {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

/* ── COST ── */
.cost-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  height: 100%;
}

.cost-card{
  text-align: left;
}

.cost-card h3{
  font-size: 20px;
  margin-bottom: 10px;
}

.cost-num {
     font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 10px;
    text-align: left;
    padding: 20px 0;
}

.cost-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 20px;
  margin: 0;
}

.txtmuted{
    color: var(--muted);
}

.cost-summary-box p span{
  font-weight: normal;
}

.cost-summary-box {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 32px;
}

.cost-summary-box p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
      color: var(--muted);
}


.cost-summary-box h3 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 6px;
}

.cost-summary-box span {
  font-size: 36px;
}

/* ── AUDIT GET ── */
.audit-note {
  font-size: 12px;
  color: var(--orange);
  font-style: italic;
  text-align: center;
  margin-bottom: 28px;
}

.get-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 00px 0;
  min-height: 100%;
  align-items: flex-start;
}

.get-icon {
  width: 45px;
  height: 45px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f15a24, #f8c24d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
}

.get-card h5 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.get-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.get-icon img{
  max-height: 27px;
}

/* ── WHO ── */
.who-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  flex-direction: ;
  gap: 10px;
}

.who-card img {
    max-width: 25px;
    position: relative;
    top: 6px;
}

.who-card i {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.who-card h3{
  margin-bottom: 0;
  text-transform: inherit;
}

.who-card span {
  font-size: 22px;
  text-transform: inherit;
  font-weight: 400;
  font-family: "Anton", sans-serif;
}
.who-card p{
  font-size: 16px;
  color: var(--muted2);
  margin-bottom: 0;
}

/* ── STEPS ── */
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
}

.step-num {
  font-size: 70px;
  font-weight: 400;
  color: rgba(249, 115, 22, .18);
  line-height: 1;
  margin-bottom: 18px;
}

.step-card h4 {
  font-size: 26px;
  font-weight: 40;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 20px;
  margin: 0;
}

/* ── WHY STALL ── */

.stall-box .col-lg-6{
  padding: 0px;
}


.stall-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0px;
  padding: 20px;
  height: 100%;
}

.stall-card h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.stall-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 20px;
  margin: 0;
}

.stall-card i {
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
  font-size: 18px;
}

/* ── MEET ── */
.meet-left h2 {
  font-size: 45px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
/*  letter-spacing: -.02em;*/
}

.meet-left h2 .hl {
  color: var(--orange);
  display: block;
}

.meet-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.meet-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(249, 115, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
}

.meet-card h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.meet-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.meet-card img{
  max-height: 25px;
}

/* ── CTA SECTION ── */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(180, 70, 0, 0.18) 0%, transparent 70%),
    var(--bg2);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.cta-section h2 .hl {
  color: var(--orange);
}

.cta-section .sec-sub {

  margin: 16px auto 32px;
  font-size: 18px;
}

.cta-pills {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cta-pill {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-pill i {
  color: var(--orange);
}

.cta-pill img{
max-height: 13px;
}

/* ── FAQ ── */
.faq-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card-bg) !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
}

.accordion-item:last-child {
  border-bottom: none !important;
}

.accordion-button {
  background: var(--card-bg) !important;
  color: #fff !important;
  font-weight: 400;
  font-size: 18px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--orange) !important;
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
}

.accordion-body {
  background: var(--card-bg) !important;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(180, 70, 0, 0.15) 0%, transparent 70%),
    var(--bg);
}

.final-cta h2 {
  font-size: 70px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.final-cta h2 .hl {
  color: var(--orange);
  display: block;
}

.final-cta p {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 32px;
}

.final-note {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 14px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 36px 0;
  text-align: center;
  color: var(--muted2);
  font-size: 16px;
}

footer .foot-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 8px;
}
footer p{
  font-size: 14px;
}

/* ── SECTION CENTER BTN ── */
.sec-cta {
  margin-top: 36px;
  text-align: center;
}

/* responsive tweaks */
@media(max-width:768px) {
  .who-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0 40px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }
}

.hero-right{
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 30px;
}

.text-gradient-fire {
    background: var(--gradient-fire);
    color: #0000;
    -webkit-background-clip: text;
    background-clip: text;
     font-family: "Anton", sans-serif;
}
.color-muted{
  color: #aea298;
}

ul{
  padding: 0;
  margin: 30px 0;
  padding-left: 15px;
}
ul li{
  margin: 15px 0
}
.inset-0 {
    inset: calc(var(--spacing) * 0);
}
.bg-gradient-fire {
    background: var(--gradient-fire);
}

.hero-badge-2{
    text-transform: inherit;
    letter-spacing: 0;
    font-size: 16px;
}

.bg-gr{
  background: linear-gradient(135deg, #f15a24, #f8c24d);
}

.cta-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 100px;
    border: 1px solid #5a3a0c;
    border-radius: 30px;
}

.smallicon{ 
    max-width: 40px;
}

.sec-eyebrow{
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}
.sec-eyebrow img{
  max-width: 14px;
}
.heroBanner .hero-badge img{
  max-width: 14px;
}
.truth-card img{
  max-width: 30px;
  margin-bottom: 15px;
}

.row-g-3{
  row-gap: 30px;
}
.stall-card{
  padding-left: 50px;
}
.stall-card h5{
  position: relative;
}
.stall-card h5:before{
      content: '';
    position: absolute;
    height: 7px;
    width: 7px;
    background: #d6f05c;
    border-radius: 100px;
    top: 5px;
    left: -25px;
}

.color-muted li{
  font-size: 14px;
}

@media only screen and (max-width: 992px){
  .btn-audit {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .stats-row{
    margin-top: 0 !important;
    text-align: center;
    margin-bottom: 30px;
  }
  .cta-wrapper{
    padding: 40px 20px;
  }
  .btn-cta-main{
    line-height: 20px;
  }
  .final-cta h2{
    font-size: 45px;
  }
  .foot-logo img{
    margin-bottom: 20px;
    max-width: 250px;
  }
}