/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #111;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.main-header {
  background: #000;
  border-bottom: 1px solid #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
}
.logo-link {
  color: inherit;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
}
.cta-buttons .btn {
  margin-left: 1rem;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.22rem;
  z-index: 1001;
}
.nav-toggle-label span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn.primary {
  background: #ff4a4a;
  color: #fff;
}
.btn.primary:hover {
  background: #e03f3f;
}
.btn.secondary {
  background: #222;
  color: #fff;
}
.btn.secondary:hover {
  background: #000;
}
.btn.dark {
  background: #111;
  color: #fff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("public/landing.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero .accent {
  color: #ff4a4a;
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.hero .buttons .btn {
  margin: 0;
  flex: 0 0 auto;
  width: auto;
}

/* Split Hero Sections */
.hero-split {
  padding: 3rem 2rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-split:nth-of-type(even) {
  background: #fff;
}
.hero-split.reverse,
.hero-split.reverse .hero-split-inner {
  flex-direction: row-reverse;
}
.hero-split-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 3;
}
.hero-split-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-split-text .accent {
  color: #ff4a4a;
}
.hero-split-text p {
  margin-bottom: 0;
}
.hero-split-media {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  z-index: 1;
}
.hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease-out;
}
.hero-split:hover .hero-image {
  transform: scale(1.08);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0.4s ease-out;
}
.hero-split:hover .hero-image {
  transform: scale(1.08);
}
.hero-form {
  align-items: center;
}
.form-panel {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 1.5rem;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #222;
}
.form-grid label span {
  font-weight: 600;
}
.form-grid .full-width {
  grid-column: 1 / -1;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fdfdfd;
  font-size: 1rem;
  color: #111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  border-radius: 24px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff4a4a;
  box-shadow: 0 0 0 3px rgba(255, 74, 74, 0.15);
}
.contact-form button {
  align-self: flex-start;
}

/* Membership Page */
.membership-hero {
  text-align: center;
  padding: 4rem 2rem 3rem;
  height: 33.33vh;
  min-height: 33.33vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url("public/membership.jpeg");
  background-size: cover;
  background-position: center center;
  background-position-x: center;
  background-position-y: center;
  color: #fff;
}
.membership-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.membership-hero.pt-hero {
  background:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
  url("public/pt.jpeg");
  background-position: center center;
  background-position-x: center;
  background-position-y: center;
}
.membership-hero.classes-hero {
  background:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
  url("public/classes.jpeg");
  background-position: center center;
  background-position-x: center;
  background-position-y: center;
}
.membership-hero.gyms-hero {
  background:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)),
  url("public/gyms.jpeg");
  background-position: center center;
  background-position-x: center;
  background-position-y: center;
}
.membership-hero.testimonials-hero {
  background:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
  url("public/testimonials.jpeg");
  background-position: center center;
  background-position-x: center;
  background-position-y: center;
}
.membership-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: #777;
}
.membership-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.membership-hero .accent {
  color: #ff4a4a;
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.membership-tagline {
  font-size: 1.05rem;
}
.membership-subcopy {
  font-size: 0.98rem;
}
.membership-hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.plans-section {
  padding: 4rem 2rem 4rem;
  background: #fff;
}
.plans-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.plans-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.plans-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.plans-header p {
  color: #444;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 1.75rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}
.plan-card.plan-gold {
  position: relative;
  border-color: #ff4a4a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #fff8e1, #ffffff);
}
.plan-card.plan-silver {
  background: linear-gradient(145deg, #f5f7fa, #ffffff);
  border-color: #dde3ed;
}
.plan-card.plan-bronze {
  background: linear-gradient(145deg, #fff3e6, #ffffff);
  border-color: #f0b892;
}
.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  background: #ff4a4a;
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.plan-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666;
}
.plan-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff4a4a;
}
.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.price-unit {
  font-size: 0.9rem;
  color: #444;
}
.plan-join-fee {
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
}
.plan-features {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  list-style: disc;
  font-size: 0.9rem;
  color: #444;
}
.plan-features li + li {
  margin-top: 0.25rem;
}
.plan-cta {
  margin-top: 1rem;
  align-self: flex-start;
}
.membership-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.membership-cta-section {
  padding: 3rem 2rem;
  background: #f5f5f5;
}
.membership-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.membership-pt {
  background: #111;
  color: #fff;
}
.membership-pt .accent {
  color: #ff4a4a;
}
.membership-pt .btn.dark {
  background: #fff;
  color: #111;
}
.membership-referral {
  background: #fff;
}
.membership-referral .membership-footnote {
  font-size: 0.8rem;
  color: #777;
}
.membership-trial {
  background: #f9f9f9;
}

.membership-contact {
  padding: 3.5rem 2rem 4rem;
  background: #ffffff;
}
.membership-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}
.membership-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.membership-contact-copy h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.membership-contact-copy .accent {
  color: #ff4a4a;
}
.membership-contact-copy p {
  color: #444;
}
.membership-contact-form {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}

/* Personal Training Page */
.pt-benefits,
.pt-pricing,
.pt-fit {
  padding: 3rem 2rem;
}
.pt-benefits-inner,
.pt-pricing-inner,
.pt-fit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.pt-benefits {
  background: #ffffff;
}
.pt-pricing {
  background: #f5f5f5;
}
.pt-fit {
  background: #ffffff;
}
.pt-benefits h2,
.pt-pricing h2,
.pt-fit h2 {
  font-size: 2rem;
  text-align: center;
}
.pt-benefits-grid,
.pt-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.pt-benefit,
.pt-fit-item {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.pt-benefit::before,
.pt-fit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4a4a, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}
.pt-benefit:hover,
.pt-fit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #ff4a4a;
}
.pt-benefit:hover::before,
.pt-fit-item:hover::before {
  transform: scaleX(1);
}
.pt-benefit {
  padding: 1.5rem 1.4rem;
  gap: 0.6rem;
}
.pt-benefit-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: #ff4a4a;
  opacity: 0.15;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: -0.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pt-benefit:hover .pt-benefit-number {
  opacity: 0.25;
  transform: scale(1.05);
}
.pt-fit-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}
.pt-fit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pt-fit-item:hover .pt-fit-image img {
  transform: scale(1.08);
}
.pt-fit-item h3,
.pt-benefit h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0;
  color: #111;
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.4rem 0.5rem;
}
.pt-fit-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  padding: 0 1.4rem 1.5rem;
  margin: 0;
}
.pt-benefit h3 {
  margin-top: 0.5rem;
  padding: 0;
}
.pt-benefit p {
  padding: 0;
  margin: 0;
}
.pt-pricing-inner > p {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: #444;
}
.pt-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  margin-top: 0.75rem;
  border-radius: 20px;
  border: 2px solid #ff4a4a;
  padding: 2rem 2rem 2.25rem;
  background: linear-gradient(145deg, #fff, #fff8f5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 8px 24px rgba(255, 74, 74, 0.15);
  overflow: hidden;
}
.pt-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff4a4a, #ff6b6b, #ff4a4a);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pt-pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #ff4a4a;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(255, 74, 74, 0.3);
}
.pt-pricing-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-weight: 600;
  margin-top: 0.5rem;
}
.pt-pricing-comparison {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0;
}
.pt-pricing-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff4a4a;
}
.pt-pricing-savings {
  background: linear-gradient(135deg, #ff4a4a, #ff6b6b);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pt-pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #111;
  line-height: 1;
  margin: 0.25rem 0;
}
.pt-pricing-price .price-amount {
  color: #ff4a4a;
}
.pt-pricing-price .price-unit {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
.pt-pricing-note {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.pt-pricing-card .btn {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Classes Page */
.classes-section,
.classes-pricing {
  padding: 3rem 2rem;
}
.classes-section {
  background: #ffffff;
  padding: 3rem 0;
  overflow-x: hidden;
}
.classes-pricing {
  background: #f5f5f5;
}
.classes-inner,
.classes-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.classes-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.classes-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.classes-header p {
  color: #444;
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.class-card {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 1.5rem 1.4rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.class-card h3 {
  font-size: 1.05rem;
}
.class-card p {
  font-size: 0.95rem;
  color: #444;
}
.classes-diagonal {
  position: relative;
  width: 100vw;
  height: 500px;
  margin: 3rem 0;
  margin-left: calc(-50vw + 50%);
  display: flex;
  overflow: hidden;
}
.class-card-diagonal {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 40px 100%);
}
.class-card-diagonal:first-child {
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}
.class-card-diagonal:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
}
.class-card-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
  transition: background 0.4s ease;
}
.class-card-diagonal:hover::before {
  background: linear-gradient(135deg, rgba(255, 74, 74, 0.3), rgba(0, 0, 0, 0.5));
}
.class-card-diagonal::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-8deg);
  z-index: 3;
}
.class-card-diagonal:last-child::after {
  display: none;
}
.class-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  transition: transform 0.6s ease;
  z-index: 0;
}
.class-card-diagonal:hover .class-card-bg {
  transform: scale(1.2);
}
.class-card-diagonal h3 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  padding: 0 2rem;
}
.class-card-diagonal:hover h3 {
  transform: scale(1.15);
  color: #ff4a4a;
  text-shadow: 0 0 25px rgba(255, 74, 74, 0.9), 2px 2px 12px rgba(0, 0, 0, 0.7);
}
.class-1 .class-card-bg {
  background-image: url("public/hyrox.jpeg");
}
.class-2 .class-card-bg {
  background-image: url("public/hiit.jpeg");
}
.class-3 .class-card-bg {
  background-image: url("public/yoga.jpeg");
}
.class-4 .class-card-bg {
  background-image: url("public/reformer.jpeg");
}
.class-5 .class-card-bg {
  background-image: url("public/mat.jpeg");
}
.classes-pricing h2 {
  font-size: 2rem;
  text-align: center;
}
.classes-pricing-inner > p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #444;
}
.classes-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.classes-pricing-card {
  border-radius: 20px;
  border: 2px solid #ff4a4a;
  padding: 2rem 2rem 2.25rem;
  background: linear-gradient(145deg, #fff, #fff8f5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  align-items: flex-start;
  position: relative;
  box-shadow: 0 8px 24px rgba(255, 74, 74, 0.15);
  overflow: hidden;
}
.classes-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff4a4a, #ff6b6b, #ff4a4a);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.classes-pricing-card.classes-coming-soon {
  border-color: #ccc;
  background: linear-gradient(145deg, #f9f9f9, #ffffff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.classes-pricing-card.classes-coming-soon::before {
  background: linear-gradient(90deg, #ccc, #ddd, #ccc);
  animation: none;
}
.classes-pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #ff4a4a;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(255, 74, 74, 0.3);
}
.classes-pricing-badge.classes-badge-coming {
  background: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.classes-pricing-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-weight: 600;
  margin-top: 0.5rem;
}
.classes-pricing-comparison {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.25rem 0;
}
.classes-pricing-original {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff4a4a;
}
.classes-pricing-savings {
  background: linear-gradient(135deg, #ff4a4a, #ff6b6b);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.classes-pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #111;
  line-height: 1;
  margin: 0.25rem 0;
}
.classes-pricing-price .price-amount {
  color: #ff4a4a;
}
.classes-pricing-price .price-unit {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
.classes-pricing-note {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}
.classes-pricing-card .btn {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}
.classes-coming-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Nav active state */
.nav-links a.active {
  color: #ff4a4a;
}

/* Sample sections for nav tabs */
.sample-section {
  padding: 4rem 2rem;
  background: #ffffff;
}
.sample-section.alt {
  background: #f5f5f5;
}
.sample-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sample-inner h2 {
  font-size: 2rem;
}
.sample-inner p {
  max-width: 640px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card {
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-align: left;
  font-size: 0.95rem;
}
.testimonial-card .name {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: #333;
}
.testimonials-wall {
  padding: 4rem 2rem;
  background: #f5f5f5;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
  min-height: 600px;
}
.testimonials-wall-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.post-it-wall {
  position: relative;
  min-height: 700px;
  padding: 2rem 0 4rem;
}
.post-it {
  position: absolute;
  width: 280px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.post-it:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.post-it.tapped {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-it p {
  margin: 0 0 1rem 0;
  color: #111;
  font-weight: 500;
}
.post-it .name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-top: 0.5rem;
  font-style: italic;
}
.post-it-yellow {
  background: #ffeb3b;
  transform: rotate(-2deg);
}
.post-it-pink {
  background: #f48fb1;
  transform: rotate(3deg);
  color: #fff;
}
.post-it-pink p,
.post-it-pink .name {
  color: #fff;
}
.post-it-blue {
  background: #90caf9;
  transform: rotate(-1.5deg);
}
.post-it-green {
  background: #a5d6a7;
  transform: rotate(2.5deg);
}
.post-it-orange {
  background: #ffb74d;
  transform: rotate(-3deg);
}
.post-it-1 {
  top: 20px;
  left: 5%;
}
.post-it-2 {
  top: 80px;
  left: 35%;
  transform: rotate(3deg);
}
.post-it-3 {
  top: 40px;
  left: 65%;
  transform: rotate(-1.5deg);
}
.post-it-4 {
  top: 280px;
  left: 10%;
  transform: rotate(2.5deg);
}
.post-it-5 {
  top: 320px;
  left: 45%;
  transform: rotate(-2deg);
}
.post-it-6 {
  top: 240px;
  left: 70%;
  transform: rotate(-3deg);
}
.post-it-7 {
  top: 500px;
  left: 20%;
  transform: rotate(1.5deg);
}
.post-it-8 {
  top: 540px;
  left: 55%;
  transform: rotate(-2.5deg);
}
.hero-image-1 {
  background-image: url("public/landing-1.jpeg");
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-image-2 {
  background-image: url("public/landing-2.jpeg");
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.hero-image-3 {
  background-image: url("public/landing-3.jpeg");
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Layouts */
@media (max-width: 900px) {
  .main-header {
    padding: 0.75rem 1.25rem;
  }
  .navbar {
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
  }
  .logo {
    flex: 0 0 auto;
    font-size: 1.4rem;
  }
  .nav-toggle-label {
    display: flex;
  }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    z-index: 998;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: #111;
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 1.75rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 999;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 0.95rem;
  }
  .nav-links a {
    color: #fff;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .cta-buttons .btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .nav-toggle:checked ~ .nav-menu {
    transform: translateX(0);
  }
  .nav-toggle:checked ~ .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-split {
    padding: 2.5rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .post-it {
    width: 240px;
  }
  .post-it-1 {
    left: 2%;
  }
  .post-it-2 {
    left: 38%;
  }
  .post-it-3 {
    left: 68%;
  }
  .post-it-4 {
    left: 8%;
  }
  .post-it-5 {
    left: 48%;
  }
  .post-it-6 {
    left: 72%;
  }
  .post-it-7 {
    left: 18%;
  }
  .post-it-8 {
    left: 58%;
  }
  .membership-contact-inner {
    grid-template-columns: 1fr;
  }
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .classes-grid,
  .pt-benefits-grid,
  .pt-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .classes-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .classes-diagonal {
    height: 400px;
    flex-direction: column;
  }
  .class-card-diagonal {
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 40px 100%);
    height: 20%;
  }
  .class-card-diagonal:first-child {
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
  }
  .class-card-diagonal:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%);
  }
  .class-card-diagonal::after {
    display: none;
  }
  .class-card-diagonal h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-split,
  .hero-split.reverse,
  .hero-split-inner,
  .hero-split.reverse .hero-split-inner {
    flex-direction: column !important;
  }
  .hero-split-text,
  .hero-split-media {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-split-media {
    order: -1 !important;
    min-height: 220px;
    overflow: hidden;
  }
  .hero-split.reverse .hero-split-media {
    order: -1 !important;
  }
  .hero-form .hero-split-text {
    order: -1;
  }
  .hero-form .hero-split-media {
    order: 0;
  }
  .hero-form .hero-split-text,
  .hero-form .hero-split-media {
    flex: 1 1 100%;
    width: 100%;
  }
  .hero-image {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
  }
  .form-panel {
    width: 100%;
    max-width: 100%;
  }
  .hero-image,
  .hero-image-1,
  .hero-image-2,
  .hero-image-3 {
    clip-path: none;
  }
  .membership-hero {
    padding: 3rem 1.5rem 2.75rem;
    background-size: cover;
    background-position: center center;
    background-position-x: center;
    background-position-y: center;
    height: 33.33vh;
    min-height: 33.33vh;
  }
  .membership-hero-inner {
    width: 100%;
  }
  .membership-hero h1 {
    font-size: 2.1rem;
  }
  .membership-contact {
    padding: 3rem 1.5rem 3.25rem;
  }
  .membership-contact-form {
    padding: 1.5rem 1.25rem;
  }
  .plans-section {
    padding: 3rem 1.5rem 3rem;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .classes-grid,
  .pt-benefits-grid,
  .pt-fit-grid {
    grid-template-columns: 1fr;
  }
  .classes-pricing-grid {
    grid-template-columns: 1fr;
  }
  .classes-pricing-card {
    padding: 1.75rem 1.5rem 2rem;
  }
  .classes-pricing-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
  .classes-pricing-price {
    font-size: 2rem;
  }
  .classes-diagonal {
    height: 600px;
    flex-direction: column;
  }
  .class-card-diagonal {
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 30px 100%);
    height: 20%;
  }
  .class-card-diagonal:first-child {
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  }
  .class-card-diagonal:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%);
  }
  .class-card-diagonal::after {
    display: none;
  }
  .class-card-diagonal h3 {
    font-size: 1.25rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-wall {
    padding: 2rem 1rem;
    min-height: auto;
    overflow-x: hidden;
  }
  .testimonials-wall-inner {
    transform: scale(0.7);
    transform-origin: top center;
    width: 142.857%;
    margin-left: -21.4285%;
  }
  .post-it-wall {
    min-height: 500px;
    padding: 1rem 0 2rem;
    position: relative;
  }
  .post-it {
    width: 200px !important;
    padding: 1rem 0.9rem;
    font-size: 0.8rem;
  }
  .post-it-1 {
    top: 10px !important;
    left: 2% !important;
  }
  .post-it-2 {
    top: 60px !important;
    left: 30% !important;
  }
  .post-it-3 {
    top: 30px !important;
    left: 60% !important;
  }
  .post-it-4 {
    top: 200px !important;
    left: 5% !important;
  }
  .post-it-5 {
    top: 230px !important;
    left: 40% !important;
  }
  .post-it-6 {
    top: 170px !important;
    left: 65% !important;
  }
  .post-it-7 {
    top: 350px !important;
    left: 15% !important;
  }
  .post-it-8 {
    top: 380px !important;
    left: 50% !important;
  }
  .post-it:hover {
    transform: scale(1.05) rotate(0deg) !important;
  }
  .pt-pricing-card {
    padding: 1.75rem 1.5rem 2rem;
    max-width: 100%;
  }
  .pt-pricing-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
  .pt-pricing-price {
    font-size: 2rem;
  }
}
