:root {
  --primary: #E1FF00;
  --secondary: #243FF7;
  --background: #0C0C0C;
  --background-light: #F7F7F7;
  --background-secondary: #1A1A1A;
  --background-third: #181818;
  --border: #333333;
  --text: #F5F6FC;
  --text-secondary: #B0BEC5;
  --text-gray: #888;
  --surface: #1A1A1A;
  --accent: #F56427;
  --white: #ffffff;
  --black: #000000;
  --black-60: rgba(0, 0, 0, 0.6);
  --border-secondary: #3F3F46;
}

.uppercase {
  text-transform: uppercase !important;
}

.text-primary {
  color: var(--primary);
}

.text-primary-important {
  color: var(--primary) !important;
}

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

.text-secondary {
  color: var(--secondary);
}

.text-black {
  color: var(--black);
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Archivo Black', sans-serif;
}

.img-responsive {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .img-responsive {
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .img-responsive {
    max-width: 300px;
  }
}

.m-auto {
  margin: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.gap-4 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.grid-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grid-col-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

@media (max-width: 1280px) {
  .grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-col-2 {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .grid-col-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container> :not(:last-child) {
  margin-bottom: 4rem;
}

/* Navigation */
.navbar {
  margin: 0 auto;
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-text {
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: var(--primary);
}

.nav-actions-container {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.btn-link {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
}

.bounced-link {
  transition: all 0.3s ease;
}

.bounced-link:hover {
  transform: translateY(-2px);
}

.btn-link.active {
  color: var(--text);
}

.btn-link:hover {
  transform: scale(1.05);
  color: var(--white);
}

.btn-border-primary {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
}

.btn-border {
  background-color: var(--background-secondary);
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-border:hover,
.btn-border-primary:hover {
  transform: translateY(-2px);
}

.btn-border svg,
.btn-border-primary svg {
  margin-left: 0.5rem;
}

.btn-signin {
  background-color: var(--primary);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-signin:hover {
  background-color: var(--white);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* Main Sections */
.main-wrapper {
  background-color: var(--background-light);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-black {
  background-color: var(--black);
}

.bg-hero-section {
  background: linear-gradient(140deg, rgba(25, 30, 2, 1) 0%, rgba(10, 10, 10, 0) 100%),
    url("data:image/svg+xml,%3Csvg%20width%3D%221822%22%20height%3D%22562%22%20viewBox%3D%220%200%201822%20562%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Crect%20width%3D%221822%22%20height%3D%22562%22%20rx%3D%2232%22%20fill%3D%22url(%23a)%22%20fill-opacity%3D%22.03%22%2F%3E%3Cdefs%3E%3Cpattern%20id%3D%22a%22%20patternUnits%3D%22userSpaceOnUse%22%20patternTransform%3D%22matrix(79.4%200%200%2039.7%20-.662%20-.662)%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%22-0.167%20-0.167%2020%2010%22%20width%3D%221%22%20height%3D%221%22%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(0%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20)%22%2F%3E%3Cpath%20d%3D%22M0%2010%2010%200l10%2010%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20id%3D%22b%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%3C%2Fsvg%3E"),
    var(--background);
  background-attachment: fixed;
  overflow: visible;
}

.right-img {
  width: 200%;
  max-width: none;
  border: 1px solid var(--border);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
  margin-right: -40%;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-section-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0%;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.625;
  font-weight: 400;
}

.hero-section-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}

.section-2 {
  background-color: #F7F7F7;
  padding: 4rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.section-2.download {
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-2 .section-title,
.story-title {
  color: var(--black);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Problem Section */
.section-problem {
  background-color: var(--primary);
  padding: 4rem 0;
  color: var(--black);
}

.problem-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: center;
}

.problem-img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-text {
  font-size: 1.75rem;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.25;
}

.problem-cta {
  font-size: 1.75rem;
  font-weight: 600;
}

.card {
  padding: 1.25rem;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card.white {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--black);
  margin-bottom: 2rem;
}

.circle-icon.primary {
  background-color: var(--primary);
}

.how-it-works-desktop {
  display: block;
}

.how-it-works-mobile {
  display: none;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  align-items: center;
  gap: 1rem;
}

.how-it-works-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  height: 100%;
}

.step-card {
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 320px;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-card-number {
  flex-basis: 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.step-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
}

.step-card-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

.phone-mockup-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.phone-mockup-container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(225, 255, 0, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.phone-mockup {
  width: 280px;
  height: auto;
  position: relative;
  z-index: 1;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-card-title-2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.feature-card-description {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.badge {
  border: 1px solid #0000001A;
  border-radius: 1.25rem;
  padding: 0.25rem 0.75rem;
  width: fit-content;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;

}

.upcoming-meet {
  background-color: var(--background);
  background: linear-gradient(-90deg, rgba(25, 30, 2, 1) 0%, rgba(10, 10, 10, 0) 100%),
    url("data:image/svg+xml,%3Csvg%20width%3D%221822%22%20height%3D%22562%22%20viewBox%3D%220%200%201822%20562%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Crect%20width%3D%221822%22%20height%3D%22562%22%20rx%3D%2232%22%20fill%3D%22url(%23a)%22%20fill-opacity%3D%22.03%22%2F%3E%3Cdefs%3E%3Cpattern%20id%3D%22a%22%20patternUnits%3D%22userSpaceOnUse%22%20patternTransform%3D%22matrix(79.4%200%200%2039.7%20-.662%20-.662)%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%22-0.167%20-0.167%2020%2010%22%20width%3D%221%22%20height%3D%221%22%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(0%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20)%22%2F%3E%3Cpath%20d%3D%22M0%2010%2010%200l10%2010%22%20stroke%3D%22%23fff%22%20stroke-width%3D%22.333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20id%3D%22b%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%3C%2Fsvg%3E"),
    var(--background);
  padding: 6rem 1rem;
  border-radius: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

@media (max-width: 768px) {
  .upcoming-meet {
    padding: 3rem 1rem;
  }

  .upcoming-meet-title {
    font-size: 2rem !important;
  }
}

.upcoming-meet-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  font-style: italic;
}

.upcoming-meets-table-wrapper {
  width: 100%;
  max-width: 1000px;
  overflow-x: auto;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
}

.upcoming-meets-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.upcoming-meets-table th {
  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
  padding-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.upcoming-meets-table td {
  padding: 1rem 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-open {
  background: rgba(212, 255, 0, 0.2);
  color: var(--primary);
}

.status-starting {
  background: rgba(255, 165, 0, 0.2);
  color: orange;
}

.status-closed {
  background: rgba(128, 128, 128, 0.2);
  color: #aaa;
}

.view-details {
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: flex-end;
}

/* Platform Access & Gear Sections */
.feature-section {
  padding: 4rem 1rem;
  background-color: var(--white);
  color: var(--black);
}

.feature-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
}

.footer-main {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr repeat(2, 1fr);
  gap: 2rem;
}

.feature-title-large {
  color: var(--black);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0px !important;
}

@media (max-width: 1024px) {

  .section-2 .section-title,
  .story-title {
    font-size: 2rem;
  }

  .step-card-title {
    font-size: 1.25rem;
  }

  .step-card-description {
    font-size: 1rem;
  }

  .phone-mockup-container::before {
    width: 300px;
    height: 300px;
  }

  .how-it-works-desktop {
    display: none;
  }

  .how-it-works-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    text-align: center;
  }

  .phone-mockup-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .phone-mockup-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: rgba(225, 255, 0, 0.15);
    border-radius: 50%;
    z-index: 0;
  }

  .steps-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  .how-it-works-mobile .step-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
    max-width: 500px;
    width: 100%;
    text-align: center;
    height: 100%;
  }

  .how-it-works-mobile .step-card-number {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991px) {
  .stats-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .feature-text-col {
    align-items: center;
  }

  .feature-title-large {
    font-size: 2.75rem !important;
  }

  .hero-section-actions {
    justify-content: center;
  }
}

.feature-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-image-col {
  flex: 1;
  margin-bottom: 0px !important;
}

.feature-image-col img {
  width: 500px;
  height: auto;
  border-radius: 1.5rem;
}


.feature-description-med {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}

.section-3 {
  padding: 2.5rem 1rem;
  background: linear-gradient(35deg, rgba(25, 30, 2, 1) 0%, rgba(10, 10, 10, 0) 100%),
    var(--background);
}

/* Testimonial Section */
.testimonial-section {
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-align: center;
}

.testimonial-container {
  max-width: 800px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.testimonial-badge {
  color: var(--primary);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: opacity 0.3s ease;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.author-role {
  display: block;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.test-adaptive {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://humanlifting.com/strengthos/images/hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 2rem;
  padding: 5rem;
  margin: 4rem auto;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.test-nav-btn {
  width: 48px;
  height: 40px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.test-nav-btn.prev {
  background: var(--primary);
  color: var(--black);
}

.test-nav-btn.next {
  background: var(--primary);
  color: var(--black);
}

.test-nav-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.test-profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.testimonial-slide {
  transition: opacity 0.4s ease;
}

.testimonial-slide.fade-out {
  opacity: 0;
}

.testimonial-nav {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn.active {
  background: var(--primary);
  color: var(--black);
}

.stats-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: capitalize;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 2rem;
}

/* Modern Footer */
.modern-footer {
  background: #050505;
  padding: 4rem 1rem;
  color: var(--white);
}


.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-desc {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-contact {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  color: var(--primary);
  transition: opacity 0.3s;
}

.social-link:hover {
  opacity: 0.7;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-bottom div {
  max-width: 80rem;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  padding: .5rem 1rem;
}

@media (max-width: 480px) {
  .gear-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

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

.gear-left-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.gear-right-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 480px) {
  .gear-right-col {
    flex-direction: column-reverse;
  }
}

.recommended-badge {
  background: var(--background);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: start;
  gap: 1rem;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .recommended-badge {
    padding: 1rem;
  }
}

.thumb-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .thumb-circle {
    width: 40px;
    height: 40px;
  }

  .thumb-circle svg {
    width: 20px;
    height: 20px;
  }
}

.gear-img-small {
  object-fit: cover;
  border-radius: 1rem;
  flex-grow: 1;
}

.gear-img-tall {
  object-fit: cover;
  border-radius: 1rem;
}

@media (max-width: 1280px) {
  .hero-title {
    font-size: 3rem;
  }

  .btn-signin,
  .btn-border,
  .btn-border-primary {
    padding: 0.5rem 1rem;
    font-weight: 500;
  }
}

@media (max-width: 1024px) {
  .phone-mockup-container::before {
    width: 300px;
    height: 300px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .how-it-works-column {
    height: 100%;
    gap: 2rem;
  }

  .feature-text-col {
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .navbar-inner .nav-actions-container {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 991px) {

  .testimonial-quote {
    font-size: 1.75rem;
  }

  .section-2,
  .section-3 {
    padding: 2rem 0;
  }

  .section-2.download {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .mobile-only-acts {
    display: flex !important;
    margin-top: 1rem;
  }

  .desktop-only-acts {
    display: none !important;
  }

  .navbar-inner.active .nav-actions-container:not(.desktop-only-acts) {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    background-color: #0d0d0d !important;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    z-index: 1000 !important;
    align-items: center;
    width: auto;
    height: auto;
    border-radius: 1.5rem;
    border: 1px solid rgba(225, 255, 0, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }

  .navbar-inner.active .nav-actions-container .btn-link {
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    text-transform: none;
  }

  .navbar-inner.active .nav-actions-container .btn-link.active {
    color: var(--primary);
  }

  .navbar-inner.active .mobile-only-acts {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(225, 255, 0, 0.1);
  }

  .navbar-inner.active .mobile-only-acts .btn-border-primary,
  .navbar-inner.active .mobile-only-acts .btn-signin {
    flex: 1;
    justify-content: center;
    padding: .5rem;
    font-size: 1rem;
    border-radius: 999px;
  }

  /* Close Button Square Style */
  .navbar-inner.active .mobile-menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    border: 1px solid rgba(225, 255, 0, 0.5) !important;
    border-radius: 6px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001 !important;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;

    &.reverse {
      flex-direction: column-reverse;
    }
  }

  .hero-section .right-img {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .hero-section img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .hero-section-text {
    align-items: center;
  }

  .hero-section-actions .btn-signin,
  .hero-section-actions .btn-border {
    justify-content: center;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem 0 0 0;
  }

  .feature-row {
    flex-direction: column;
    gap: 1rem 3rem;
  }

  .feature-row .feature-text-col:first-child {
    order: 2;
  }

  .feature-section {
    padding: 2rem 1rem !important;
  }

  .feature-title-large {
    font-size: 2rem !important;
  }

  .feature-text-col {
    align-items: center;
    width: 100%;
  }

  .feature-image-col img {
    max-width: 400px;
  }

  /* Upcoming Meets - Table to Cards */
  .upcoming-meets-table thead {
    display: none;
  }

  .upcoming-meets-table-wrapper {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
  }

  .upcoming-meets-table,
  .upcoming-meets-table tbody {
    display: block;
    width: 100%;
  }

  @media (max-width: 1024px) {

    .problem-text,
    .problem-cta {
      font-size: 1.25rem;
    }
  }

  .upcoming-meets-table tr {
    display: block;
    width: 100%;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* @media (min-width: 640px) {
    .upcoming-meets-table tr {
      margin-bottom: 0;
    }
  } */

  .upcoming-meets-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .upcoming-meets-table td:first-child {
    border-top: none;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
  }

  .upcoming-meets-table td:before {
    content: attr(data-label);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: left;
  }

  .upcoming-meets-table td:first-child:before {
    display: none;
  }

  .upcoming-meets-table td:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    justify-content: center;
    text-align: center;
  }

  .view-details {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.875rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
  }

  .view-details:after {
    content: 'View Details';
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 992px) {
  .mobile-only-acts {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .feature-image-col img {
    max-width: 280px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .problem-img {
    margin: 0 auto;
    max-width: 200px;
  }
}

.upcoming-meet-title {
  font-size: 1.5rem !important;
}

.gear-img-tall,
.gear-img-small {
  width: 100% !important;
  max-width: 400px;
  height: 100% !important;
}

@media (max-width: 768px) {

  .gear-img-tall,
  .gear-img-small {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
    max-height: 300px;
  }
}


@media (max-width: 480px) {
  .hero-section-actions {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }
}

.download-banner-container,
.testimonial-role-container,
.faq-section {
  padding: 0rem 2rem;
  width: 100%;
}

@media (max-width: 1280px) {

  .download-banner-container,
  .testimonial-role-container,
  .faq-section {
    padding: 0rem 1rem;
  }
}

.download-banner {
  background: url("data:image/svg+xml,%3Csvg%20width%3D%221822%22%20height%3D%22562%22%20viewBox%3D%220%200%201822%20562%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Crect%20width%3D%221822%22%20height%3D%22562%22%20rx%3D%2232%22%20fill%3D%22url(%23a)%22%20fill-opacity%3D%22.03%22%2F%3E%3Cdefs%3E%3Cpattern%20id%3D%22a%22%20patternUnits%3D%22userSpaceOnUse%22%20patternTransform%3D%22matrix(79.4%200%200%2039.7%20-.662%20-.662)%22%20preserveAspectRatio%3D%22none%22%20viewBox%3D%22-0.167%20-0.167%2020%2010%22%20width%3D%221%22%20height%3D%221%22%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(0%20-10)%22%2F%3E%3Cuse%20xlink%3Ahref%3D%22%23b%22%20transform%3D%22translate(-20)%22%2F%3E%3Cpath%20d%3D%22M0%2010%2010%200l10%2010%22%20stroke%3D%22%23000%22%20stroke-width%3D%22.333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20id%3D%22b%22%2F%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%3C%2Fsvg%3E"),
    linear-gradient(90deg, rgb(221, 250, 9) 0%, rgb(181, 204, 12) 100%);
  border-radius: 2rem;
  width: 100%;
  padding: 2rem;
}

.athlete-banner {
  background-image: url('https://humanlifting.com/strengthos/images/mobile-app.png'), linear-gradient(90deg, rgb(221, 250, 9) 0%, rgb(181, 204, 12) 100%);
  background-size: 400px;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  max-width: 400px;
  width: 100%;
  padding: .25rem;
  position: relative;
  height: 500px;
}

.athlete-badge {
  background: var(--background);
  color: var(--white);
  padding: 1rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: start;
  gap: 1rem;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
}

.faq-banner {
  background-color: #ffffff;
  border-radius: 2rem;
  width: 100%;
  padding: 2rem;
}


.download-image {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
}

.download-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 350px;
}

.download-banner-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0 !important;
}

.download-banner-text .link-section {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: start;
}

@media (max-width: 991px) {
  .download-banner-text .link-section {
    justify-content: center;
  }
}

.download-title {
  color: var(--black);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.download-subtitle {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 500;
}

.download-subtitle-2 {
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 480px) {
  .download-title {
    font-size: 2rem;
  }

  .download-subtitle {
    font-size: 1rem;
  }

  .download-subtitle-2 {
    font-size: 0.8rem;
  }
}

.btn-web-app {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  border: 1.5px solid var(--black);
  border-radius: 12px;
  color: var(--black);
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
  min-width: 170px;
  height: 50px;
}

.btn-web-app .btn-text-split {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-web-app .btn-small {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-web-app .btn-large {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-web-app:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 991px) {

  .download-banner,
  .faq-banner {
    padding: 2rem 0;
  }

  .watermark-full {
    display: none;
  }
}

.watermark-full {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.section-2 .container {
  position: relative;
  z-index: 1;
}

/* Adaptive Athletes Specific Styles */
.hero-adaptive {
  position: relative;
  background-image: url('https://humanlifting.com/strengthos/images/hero.jpg');
  background-size: cover;
  background-position: center right 10%;
  background-repeat: no-repeat;
}

.hero-adaptive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, #0f1301aa 0%, rgba(15, 19, 1, 0.7) 45%, rgba(212, 255, 0, 0.1) 100%);
  z-index: 0;
}

.hero-adaptive-text {
  flex-basis: 55%;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-adaptive-text {
    flex-basis: 100% !important;
    text-align: center;
    align-items: center !important;
  }
}

.story-section {
  padding: 6rem 1rem;
  background: #fff;
  color: var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 4rem;
}

.story-text-right {
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 0.6);
}

.story-images {
  position: relative;
  display: flex;
  gap: 1rem;
}

.story-img {
  width: calc(50% - .5rem);
  border-radius: 1.5rem;
  object-fit: cover;
  height: 400px;
}

.story-popup {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--primary);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
  z-index: 2;
}

.story-card {
  background: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.features-grid-adaptive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.features-grid-adaptive .card {
  align-items: flex-start;
  text-align: left;
}

.features-grid-adaptive .card .circle-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 1.5rem 0;
}

.hiw-dark {
  background: #090909;
  color: #fff;
  padding: 8rem 2rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 991px) {
  .hiw-dark {
    width: auto;
    margin: 0 -1rem;
    padding: 4rem 1rem;
    left: auto;
    right: auto;
    transform: none;
    border-radius: 0;
  }
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  .hiw-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.hiw-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(225, 255, 0, 0.15);
  border-radius: 2rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-align: left;
  overflow: visible;
  min-height: 280px;
}

.hiw-step.wide {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .hiw-step.wide {
    grid-column: span 1;
  }

  .hiw-step {
    padding: 1.5rem;
    min-height: auto;
  }
}

.hiw-step:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
}

.hiw-number {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--black);
  background: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: none;
  flex-shrink: 0;
}

.hiw-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: 'Archivo Black', sans-serif;
}

.hiw-description {
  color: #999;
  font-size: 1.125rem;
  line-height: 1.6;
  padding: 0 !important;
}


.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 1279px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-weight: 400;
  font-size: 1.125rem;
  color: #00000099;
  text-align: left;
}

.check-item:nth-child(7) {
  grid-column: 1 / -1;
}

.check-icon {
  background: var(--primary);
  color: var(--black);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.image-stack {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.img-big {
  width: 80%;
  height: 420px !important;
  border-radius: 1.5rem;
  object-fit: cover;
}

.img-small {
  position: absolute;
  height: 45% !important;
  width: 45% !important;
  bottom: -6px;
  right: -12px;
  border-radius: 1.5rem;
  border: 12px solid #ffffff;
}

.pricing-section {
  padding: 4rem 0;
  background: #f9f9f9;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 4rem auto 0;
}

.pricing-card {
  background: #fff;
  padding: 3rem 3rem;
  border-radius: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
}

.pricing-card.pro {
  border: 3px solid #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.plan-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.plan-desc {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.4;
}

.pricing-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: #000;
}

.price-mo {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-gray);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #666;
}

.check-circle {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-pricing {
  background: #1a1a1a;
  color: var(--primary);
  text-decoration: none;
  padding: 1.25rem;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.btn-pricing:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: #000;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.find-competitions-section {
  padding: 2rem 1rem;
  background: #fff;
}

.comp-grid {
  display: flex;
  align-items: center;
  gap: 0rem;
}

.comp-images {
  flex: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.comp-img-wrapper {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-img-wrapper.large {
  width: 50%;
  height: 544px;
}

.comp-img-wrapper.small {
  width: 50%;
  height: 412px;
  position: relative;
  margin-top: 5rem;
}

.comp-badge-v2 {
  background-color: #0A0A0A;
  padding: 1.75rem 2rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 108px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.badge-star {
  background: var(--primary);
  color: #000;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-star svg {
  width: 38px;
  height: 38px;
}

.badge-text-group .count {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.875rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.badge-text-group .label {
  font-size: 1 rem;
  color: #fff;
  font-weight: 500;
  margin-top: 4px;
}

.comp-content {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comp-title {
  font-size: 2.875rem;
  color: #000;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.comp-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 500px;
}

.btn-comp-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #E1FF00;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  width: fit-content;
  transition: all 0.3s ease;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn-comp-action svg {
  color: var(--primary);
}

.btn-comp-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.download-banner-section {
  padding: 6rem 1rem;
}

.download-banner-card {
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.19 60.52 12 50 12c-10.528 0-15.888 1.19-25.371 4.928-3.415 1.347-6.193 2.314-8.812 3.072h5.367zm-10.928 0c5.33-1.307 10.37-3.285 17.207-6.014C37.384 10.01 42.744 9 50 9c7.256 0 12.616 1.01 22.537 4.986 6.836 2.729 11.877 4.707 17.207 6.014h9.773c-4.945-.494-9.372-1.64-15.353-4.028C74.203 12.01 68.843 11 50 11c-18.843 0-24.203 1.01-34.164 4.972C9.855 18.36 5.429 19.506.484 20h9.772zm-4.89 0c.357-.13.72-.264 1.088-.402l1.768-.661C17.744 15.347 23.751 14 34.104 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C49.992 13.19 44.624 12 34.104 12c-10.528 0-15.888 1.19-25.371 4.928-3.415 1.347-6.193 2.314-8.812 3.072h5.367zm-10.928 0c5.33-1.307 10.37-3.285 17.207-6.014C21.488 10.01 26.848 9 34.104 9c7.256 0 12.616 1.01 22.537 4.986 6.836 2.729 11.877 4.707 17.207 6.014h9.773c-4.945-.494-9.372-1.64-15.353-4.028C58.307 12.01 52.947 11 34.104 11c-18.843 0-24.203 1.01-34.164 4.972C-5.041 18.36-9.467 19.506-14.412 20h9.772z' fill='%23000' fill-opacity='.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem;
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.banner-content {
  flex: 1;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4.5rem;
  color: #000;
  line-height: 0.95;
  margin: 0;
  text-transform: none;
  letter-spacing: -0.04em;
}

.banner-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.banner-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .banner-buttons {
    max-width: 80%;
    margin: auto;
  }
}



.store-link img {
  height: 52px;
  display: block;
}

.btn-web-app-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  height: 52px;
  background: #000;
  transition: all 0.2s ease;
}

.btn-web-app-v2 span {
  font-size: 0.7rem;
  line-height: 1.2;
  opacity: 0.8;
}

.btn-web-app-v2 strong {
  font-size: 1.1rem;
  font-weight: 900;
  display: block;
}

.btn-web-app-v2:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.banner-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.banner-image img {
  width: 140%;
  position: absolute;
  right: -6rem;
  bottom: -6rem;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}

.faq-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 4rem;
  align-items: center;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 0px !important;
}

.faq-image {
  position: relative;
  height: 100%;
  display: flex;
}

.faq-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .faq-image {
    display: none;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: transparent;
  padding: 1.25rem 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: var(--black);
  border: none;
  transition: all 0.3s;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #E5E5E5;
}

.faq-item:hover {
  opacity: 0.8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  width: 100%;
}

.faq-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(90deg);
}

.testimonial-banner {
  background: linear-gradient(rgba(16, 16, 16, 1), rgba(16, 16, 16, 0)), url('https://humanlifting.com/strengthos/images/testimonials.jpg'), #ffffff;
  background-size: cover;
  background-position: center;
  border-radius: 2.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .testimonial-banner {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-banner {
    padding: 1rem !important;
  }
}



.test-box {
  background: rgba(224, 224, 224, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  width: 100%;
}

@media (max-width: 768px) {
  .test-box {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .test-box {
    padding: 1rem !important;
  }
}

.test-nav-container {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.testimonial-title {
  color: var(--white);
  font-weight: 900;
  font-size: 1.25rem;
}

.testimonial-content {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  min-height: 120px;
}

.test-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.test-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .test-action {
    flex-direction: column;
    gap: 1rem;
  }
}

.testimonial-fade {
  transition: opacity 0.3s ease-in-out;
}

.testimonial-fade.hide {
  opacity: 0;
}


@media (max-width: 991px) {

  .story-grid,
  .features-grid-adaptive,
  .checklist,
  .pricing-grid,
  .faq-grid,
  .grid-col-2,
  .grid-col-3,
  .grid-col-4 {
    grid-template-columns: 1fr !important;
  }

  .hiw-step::after {
    display: none;
  }

  .pricing-grid {
    max-width: 500px;
  }

  .download-banner-section {
    padding: 3rem 1rem;
  }

  .download-banner-card {
    flex-direction: column;
    padding: 4rem 2rem 0 2rem;
    text-align: center;
    min-height: auto;
    gap: 4rem;
  }

  .banner-content {
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .banner-title {
    font-size: 3rem;
    max-width: 100%;
  }

  .banner-buttons {
    justify-content: center;
  }

  .banner-image {
    width: 100%;
    justify-content: center;
    height: 340px;
    margin-top: 2rem;
  }

  .banner-image img {
    width: 130%;
    position: absolute;
    bottom: -4rem;
    right: 50%;
    transform: translateX(50%);
    max-width: 500px;
  }

  .comp-grid {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }

  .comp-images {
    width: 100%;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto;
  }

  .comp-content {
    align-items: center;
  }

  .comp-title {
    font-size: 3rem;
  }

  .comp-badge-v2 {
    padding: 1rem 1.25rem;
    gap: 1rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }

  .badge-star {
    width: 45px;
    height: 45px;
  }

  .badge-star svg {
    width: 24px;
    height: 24px;
  }

  .badge-text-group .count {
    font-size: 2rem;
  }

  .badge-text-group .label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
  }

  .plan-title {
    font-size: 2rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }

  .pricing-section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 2.25rem;
  }

  .banner-subtitle {
    font-size: 1.25rem;
  }

  .banner-image {
    height: 280px;
  }

  .comp-title {
    font-size: 2.25rem;
  }

  .comp-description {
    font-size: 1.125rem;
  }

  .comp-img-wrapper.large {
    height: 350px;
  }

  .comp-img-wrapper.small {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .steps-grid-mobile {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
}

.price-card {
  border: 3px solid var(--black);
}

/* Three Column Grid Utility */
.grid-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .pricing-grid-v2 {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 1rem;
    padding: 2rem 0 !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
  }
}

@media (max-width: 991px) {
  .grid-col-3 {
    grid-template-columns: 1fr !important;
    max-width: 500px;
  }

  .pricing-grid-v2 .pricing-card-v2 {
    height: auto;
  }
}

.pricing-grid-v2.tap-2 {
  display: grid;
  grid-template-columns: 350px 350px;
  justify-content: start;
  gap: 1rem;
  width: fit-content;
  margin: 3rem auto 0 auto;
}

.pricing-grid-v2.tap-3 {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  justify-content: start;
  gap: 1rem;
  width: fit-content;
  margin: 3rem auto 0 auto;
}

/* Pricing Card V2 Styles (Moved from coaches.html) */
.pricing-card-v2 {
  background: #fff;
  border-radius: 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border: 2px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  min-width: 288px;
  max-width: 350px;
  width: 100%;
}

.pricing-card-v2.highlight {
  border-color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-v2.active {
  border-color: #000;
  border-width: 3px;
}

.popular-badge-v2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  z-index: 2;
  width: max-content;
}

.plan-header {
  text-align: left;
  margin-bottom: 1rem;
}

.plan-title-v2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  color: #000;
  margin: 0;
}

.plan-desc-v2 {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.plan-price-v2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  color: #000;
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
}

.plan-period-v2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-gray);
  margin-left: 0.25rem;
}

.plan-features-v2 {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.plan-features-v2 li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.4;
}

.check-icon-v2 {
  color: var(--primary);
  font-weight: bold;
  background: #000;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-plan-v2 {
  background: #1a1a1a;
  color: var(--primary);
  text-decoration: none;
  padding: 1.25rem;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  width: 100%;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-plan-v2:hover {
  background: #000;
  opacity: 0.9;
}

.btn-plan-v2.primary {
  background: #000;
}

.coach-build-str {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coach-build-str li {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.coach-build-img {
  position: relative;
}

@media (max-width: 768px) {
  #built-for-strength-sports-coaching {
    order: 2
  }
}

.testimonial-fade {
  transition: opacity 0.3s ease;
}

.testimonial-fade.hide {
  opacity: 0;
}


/* pdpa */
.policy-container {
  padding: 4rem 1.5rem 0 1.5rem;
}

.policy-content h1 {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1;
}

.version-info {
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.policy-content h2 {
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  color: var(--text-secondary);
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--background-secondary);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.policy-content th,
.policy-content td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.policy-content th {
  background: var(--surface);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.policy-content hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 4rem 0 1.25rem 0;
}

.policy-content strong {
  color: var(--white);
}

.contact-card {
  background: var(--background-secondary);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.right-card {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}

.right-title {
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.glossary-item {
  margin-bottom: 1rem;
}

.glossary-term {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* 404 Error Page */
.error-404-section {
  min-height: calc(100vh - 80px - 400px);
  /* Adjust based on nav/footer height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.error-404-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(225, 255, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.error-code {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(8rem, 20vw, 15rem);
  line-height: .8;
  color: var(--black);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.error-code error-number {
  font-size: clamp(84rem, 10vw, 7.5rem);
  color: var(--primary);
}

.error-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.error-title span {
  color: var(--primary);
}

.error-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.plate-icon:last-child {
  transform: rotate(180deg);
}

.plate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.plate-icon svg {
  height: clamp(80px, 15vw, 154px);
  width: auto;
}

.plate-icon::after {
  content: "";
  display: none;
  /* Hide the old circle aesthetic as we use SVG now */
}

@media (max-width: 768px) {
  .error-404-section {
    padding: 3rem 1rem;
    min-height: calc(100vh - 70px - 400px);
  }

  .error-code {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .error-title {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }

  .error-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .error-code {
    font-size: 6rem;
  }

  .plate-icon svg {
    height: 70px;
  }

  .error-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .error-actions .btn-signin,
  .error-actions .btn-border {
    width: 100%;
  }
}