@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0a0a0a;
  --bg-mid: #111111;
  --bg-light: #1a1a1a;
  --accent: #c8102e;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --font-heading: 'Bebas Neue', display, sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif !important;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.bebas {
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.section {
  padding: 100px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-main);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background-color: #e01335;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* Animations & Reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom-color: var(--accent);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 42px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: #000;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.92) 45%, rgba(10, 10, 10, 0.3) 75%, rgba(10, 10, 10, 0.15)),
    url('../photos/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-polygon {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: var(--bg-mid);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 6rem;
  line-height: 0.9;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Call Button Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: flex;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: var(--bg-mid);
  min-width: 220px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown.active .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  padding: 16px 20px;
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Inter', sans-serif !important;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: rgba(200, 16, 46, 0.1);
}

.dropdown-item span.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 4px;
}

.dropdown-item span.number {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: right;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  opacity: 0.7;
}

.scroll-hint::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--text-main);
}

/* About Preview */
.about-preview {
  position: relative;
  border-left: 4px solid var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Trainer / Meet the Founder */
.trainer-section {
  position: relative;
  background-color: var(--bg-color);
}

.trainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trainer-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.6s ease;
  background-color: var(--bg-mid);
}

.trainer-image-wrapper:hover {
  transform: scale(1.02);
}

.trainer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.trainer-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(10, 10, 10, 0.0) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  box-shadow: inset 0 0 40px rgba(10, 10, 10, 0.6);
  pointer-events: none;
}

.trainer-content .label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

.trainer-content h2 {
  font-size: 3.5rem;
  margin-bottom: 8px;
  line-height: 1.1;
}

.trainer-content h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 32px;
  font-weight: 400;
  opacity: 0.9;
}

.trainer-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.6s ease;
  background-color: var(--bg-mid);
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

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

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.4) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
  box-shadow: inset 0 0 40px rgba(10, 10, 10, 0.8);
  pointer-events: none;
}

.about-content .label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

.about-content h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Services Preview & Page */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background-color: rgba(200, 16, 46, 0.2);
  /* red-tinted gaps */
  border: 1.5px solid rgba(200, 16, 46, 0.2);
}

.service-card {
  background-color: var(--bg-color);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.service-card:hover {
  background-color: var(--bg-mid);
}

.service-card-num {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  z-index: 0;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  transition: left 0.4s ease;
}

.service-card:hover::after {
  left: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 4rem;
}

/* Contact Bar */
.contact-bar {
  background-color: var(--accent);
  padding: 60px 0;
}

.contact-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.contact-bar h2 {
  font-size: 3rem;
  margin: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.info-item .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.info-item .value {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--bg-light);
  padding: 60px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links h4 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Membership Page */
.membership-bg {
  position: relative;
  overflow: hidden;
}

.membership-bg::before {
  content: 'MEMBERSHIP';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-size: 20vw;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background-color: var(--bg-mid);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.popular-banner {
  position: absolute;
  top: 0;
  right: 40px;
  background-color: var(--accent);
  color: var(--text-main);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tier-label {
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.price {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  line-height: 1;
}

.price span {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  min-height: 48px;
}

.feature-list {
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--accent);
}

.pricing-card .btn {
  width: 100%;
}

/* Free Trial Lead Capture */
.trial-section {
  background-color: var(--bg-light);
}

.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trial-content h2 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.trial-content .subheading {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.trial-bullets li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.trial-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
}

.form-card {
  background-color: var(--bg-mid);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-submit-btn {
  width: 100%;
}

.form-submit-btn.success {
  background-color: #2e7d32;
}

/* Results / Testimonials Page */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--bg-mid);
  padding: 40px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-size: 8rem;
  color: rgba(200, 16, 46, 0.1);
  line-height: 1;
  pointer-events: none;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  color: var(--text-main);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reviewer-info h4 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.stars {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-color);
  /* Dark background */
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
}

.gallery-item {
  position: relative;
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  break-inside: avoid;
  display: block;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* safari rounding fix */
  mask-image: radial-gradient(white, black);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: transparent;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-view-text {
  font-family: 'Bebas Neue', display, sans-serif !important;
  font-size: 1.5rem;
  color: var(--text-main);
  letter-spacing: 2px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  text-transform: uppercase;
}

.gallery-item:hover .gallery-view-text {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 10px;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

@media (max-width: 1024px) {
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-close { top: 20px; right: 20px; z-index: 10; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 5rem;
  }

  .about-grid,
  .trial-grid,
  .contact-bar-grid {
    gap: 40px;
  }

  .pricing-grid {
    gap: 20px;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 2rem;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .nav-cta {
    display: none;
  }

  .logo img {
    height: 36px;
    max-height: 36px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-text {
    margin: 0 auto;
  }

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

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }

  .hero-polygon {
    display: none;
  }

  .trainer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trainer-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-bar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trial-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 0;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }
}