

:root {
  
  --color-primary: #00BFA5; 
  --color-secondary: #1976D2; 
  --color-accent: #FF5722; 
  --color-neutral: #424242; 
  --color-white: #FFFFFF;
  --color-light-grey: #F5F5F5;
  --color-dark-grey: #212121;
  --color-success: #4CAF50;
  --color-warning: #FF9800;
  --color-error: #F44336;

  --font-family-headings: 'Montserrat', 'Poppins', sans-serif;
  --font-family-body: 'Lato', 'Open Sans', sans-serif;
  --font-size-xs: 0.875rem; 
  --font-size-sm: 1rem; 
  --font-size-base: 1.125rem; 
  --font-size-lg: 1.25rem; 
  --font-size-xl: 1.375rem; 
  --font-size-2xl: 1.5rem; 
  --font-size-3xl: 1.875rem; 
  --font-size-4xl: 2.25rem; 
  --font-size-5xl: 3rem; 
  --line-height-base: 1.6;
  --line-height-heading: 1.3;

  --space-xs: 0.25rem; 
  --space-sm: 0.5rem; 
  --space-md: 1rem; 
  --space-lg: 1.5rem; 
  --space-xl: 2rem; 
  --space-2xl: 3rem; 
  --space-3xl: 4rem; 

  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-full: 50%;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-white: #1a1a1a;
    --color-light-grey: #2a2a2a;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #152338;
  background-color: #f6f8fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  font-weight: 500;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-family-headings);
  font-weight: 700;
  line-height: var(--line-height-heading);
}

p {
  margin: 0 0 var(--space-md);
  text-align: left;
  max-width: 75ch;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
}

h2 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
}

h4 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

h5 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

h6 {
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.lead {
  font-size: var(--font-size-lg);
  font-weight: 300;
  line-height: 1.4;
}

.body-text {
  font-weight: 500;
}

.container-pl {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding,
.main-section {
  padding: var(--space-xl) 0;
  margin-bottom: var(--space-2xl);
}

.content-section {
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .section-padding,
  .main-section {
    padding: var(--space-2xl) 0;
  }
  .content-section {
    margin-bottom: var(--space-3xl);
  }
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.pl-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 1024px) {
  .pl-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

.btn-pl,
.btn-primary,
.btn-secondary,
.btn-accent,
.get-started-btn,
.sign-up-btn,
.explore-btn,
.free-trial-btn,
.start-assessment-btn,
.browse-classes-btn,
.join-community-btn,
.generate-plan-btn,
.view-all-btn,
.celebrate-milestone-btn,
.set-goal-btn,
.get-started-now-btn,
.sign-up-free-btn {
  display: inline-block;
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  min-height: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.btn-pl:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-accent:hover,
.get-started-btn:hover,
.sign-up-btn:hover,
.explore-btn:hover,
.free-trial-btn:hover,
.start-assessment-btn:hover,
.browse-classes-btn:hover,
.join-community-btn:hover,
.generate-plan-btn:hover,
.view-all-btn:hover,
.celebrate-milestone-btn:hover,
.set-goal-btn:hover,
.get-started-now-btn:hover,
.sign-up-free-btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.card-pl,
.gamelift-card,
.sf-product-card,
.event-card,
.beyond-gym-card,
.journey-step-card {
  background: #1c3d5a;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  color: #f6f8fb;
}

.card-pl:hover,
.gamelift-card:hover,
.sf-product-card:hover,
.event-card:hover,
.beyond-gym-card:hover,
.journey-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body-pl {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: inherit;
}

.card-title-pl {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  color: #ffffff;
}

.card-text-pl {
  color: #f5f7fa;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.row[class*='g-'] > [class*='col-']:has([class*='card'], .gamelift-card, .sf-product-card) {
  display: flex !important;
  flex-direction: column !important;
}

.filter-item.is-hidden {
  display: none !important;
}

.observe-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.observe-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[class*='card'],
.gamelift-card,
.sf-product-card,
.event-card,
.beyond-gym-card,
.journey-step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img-top,
.gamelift-card img,
.sf-product-card img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .card-img-top,
  .gamelift-card img,
  .sf-product-card img {
    min-height: 280px;
  }
}

@media (min-width: 1200px) {
  .card-img-top,
  .gamelift-card img,
  .sf-product-card img {
    min-height: 300px;
  }
}

.form-group-pl,
.form-group {
  margin-bottom: var(--space-md);
}

.form-label-pl,
.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--color-neutral);
}

.form-control-pl,
.form-control,
.search-input,
.fitness-goal-dropdown,
email-input,
.password-input,
.set-goal-input {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast);
  box-sizing: border-box;
}

.form-control-pl:focus,
.form-control:focus,
.search-input:focus,
.fitness-goal-dropdown:focus,
email-input:focus,
.password-input:focus,
.set-goal-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 191, 165, 0.25);
}

.sub-heading {
  display: block;
  margin-bottom: var(--space-sm);
}

.navbar-pl {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-pl .container-pl {
  position: relative;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-toggle-pl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(25, 118, 210, 0.3);
  background: rgba(25, 118, 210, 0.08);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav-toggle-pl span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-neutral);
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle-pl[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle-pl[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-pl[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle-pl:hover,
.nav-toggle-pl:focus {
  background: rgba(0, 191, 165, 0.15);
  border-color: rgba(0, 191, 165, 0.4);
}

.nav-menu-container {
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  position: absolute;
  top: calc(100% + var(--space-sm));
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-menu-container.active {
  display: flex;
}

.nav-menu-pl {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item-pl {
  margin: 0;
}

.nav-link-pl {
  display: block;
  color: var(--color-neutral);
  font-weight: 500;
  font-size: var(--font-size-lg);
  padding: var(--space-sm) var(--space-md);
  transition: background var(--transition-fast), color var(--transition-fast);
  border-radius: var(--border-radius-sm);
  text-decoration: none;
}

.nav-link-pl:hover,
.nav-link-pl:focus,
.nav-link-pl[aria-current="page"] {
  color: var(--color-primary);
  background-color: rgba(0, 191, 165, 0.12);
}

.nav-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-sm);
}

.nav-cta-button {
  width: 100%;
}

.header-contact,
.phone-number {
  align-self: flex-start;
  color: var(--color-neutral);
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-toggle-pl {
    display: none;
  }

  .nav-menu-container {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: var(--space-xl);
  }

  .nav-menu-pl {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }

  .nav-link-pl {
    padding: var(--space-sm) var(--space-lg);
    white-space: nowrap;
  }

  .nav-cta {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    border-top: none;
    padding-top: 0;
  }

  .nav-cta-button {
    width: auto;
  }

  .header-contact {
    margin-left: 0;
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .navbar-inner {
    align-items: center;
  }
}

.hero-pl,
.error-hero,
.cookie-hero,
.signup-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-pl .hero-content,
.error-hero .hero-content,
.cookie-hero .hero-content,
.signup-hero .hero-content {
  text-align: center;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-overlay > *,
.hero-overlay .container-pl,
.hero-overlay .hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.hero-overlay h1,
.hero-overlay h2,
.hero-overlay p,
.hero-overlay .lead {
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.hero-light {
  background: var(--color-light-grey);
  color: var(--color-dark-grey);
}

.hero-light h1,
.hero-light h2,
.hero-light p {
  color: inherit;
}

.oops-section {
  padding-top: var(--space-md);
}

.hero-pl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.1;
}

.testimonial-pl {
  text-align: center;
  padding: var(--space-xl);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
}

.dashboard-chart {
  background: var(--color-light-grey);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 576px) {
  :root {
    --font-size-5xl: 3.5rem;
  }
}

@media (min-width: 768px) {
  .hero-pl,
  .error-hero,
  .cookie-hero,
  .signup-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .pl-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .search-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .hero-pl,
  .error-hero,
  .cookie-hero,
  .signup-hero {
    padding: var(--space-2xl) 0;
  }

  .pl-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 1200px) {
  .container-pl {
    max-width: 1140px;
  }
}

* {
  transition: all var(--transition-fast);
}

.btn-pl,
.card-pl,
.gamelift-card,
.sf-product-card,
.nav-link-pl {
  transition: all var(--transition-normal);
}

.card-pl:hover,
.gamelift-card:hover,
.sf-product-card:hover,
.btn-pl:hover {
  transform: translateY(-2px);
}

*:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-dark {
  background-color: #0f1f2f !important;
  color: #f5f7fa !important;
}

.bg-secondary {
  background-color: #1c3d5a !important;
  color: #f5f7fa !important;
}

.text-dark {
  color: #1b2636 !important;
}

.text-muted {
  color: #637182 !important;
}

.btn-dark {
  background-color: #1c3d5a !important;
  border-color: #1c3d5a !important;
  color: #f5f7fa !important;
}

.btn-dark:hover,
.btn-dark:focus {
  background-color: #13283c !important;
  border-color: #13283c !important;
  color: #f5f7fa !important;
}

.navbar-dark {
  background-color: #0f1f2f !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #f5f7fa !important;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: var(--color-primary) !important;
}

.card,
.dropdown-menu,
.list-group-item {
  background-color: #ffffff;
  color: #1b2636;
}

.modal-content {
  background-color: #ffffff;
  color: #1b2636;
}

.bg-light,
.navbar-light,
.bg-white {
  color: var(--color-dark-grey);
}

.navbar-light .nav-link {
  color: var(--color-dark-grey);
}

.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

img[data-src] {
  opacity: 0;
  transition: opacity 0.3s;
}

img.lazy-loaded {
  opacity: 1;
}

.footer-pl {
  background: var(--color-neutral);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: left;
}

.footer-pl a,
.footer-links a,
.quick-links a,
.social-links a,
.legal-links a,
.footer-link {
  color: var(--color-white) !important;
  font-size: var(--font-size-sm);
  text-decoration: underline;
  margin-right: var(--space-md);
  display: inline-block;
}

.footer-pl a:hover,
.footer-links a:hover,
.quick-links a:hover,
.social-links a:hover,
.legal-links a:hover,
.footer-link:hover {
  color: var(--color-primary);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.social-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

.social-links a {
  margin-right: 0;
  white-space: nowrap;
}

.copyright {
  font-size: var(--font-size-sm);
  text-align: center;
  margin-top: var(--space-lg);
  width: 100%;
}

.search-for-next-move {
  padding: var(--space-xl) 0;
}

.search-container input {
  width: 100%;
  max-width: 100%;
}

.beyond-the-gym,
.your-journey-in-motion,
.experience-fitness-scene,
.why-playziri,
.craft-workout,
.why-choose-builder,
.fitness-goals,
.every-sweat-counts,
.workout-history,
.define-next-peak,
.how-signup-works,
.ready-sign-up {
  margin-bottom: var(--space-2xl);
  padding-top: var(--space-xl);
}

.beyond-the-gym .pl-grid,
.your-journey-in-motion .pl-grid,
.experience-fitness-scene .row {
  align-items: stretch;
}

.step-circle {
  display: block;
  margin: 0 auto var(--space-md) auto;
  text-align: center;
}

.fitness-goal-section {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.every-sweat-counts .d-flex {
  align-items: flex-start;
}

.workout-history .d-flex {
  align-items: center;
  justify-content: flex-start;
}

.define-next-peak .d-flex {
  align-items: flex-start;
}

.why-choose-playziri p,
.why-playziri p {
  max-width: 65ch;
  margin: 0 auto;
  text-align: left;
}

.ready-sign-up .form-group {
  margin-top: var(--space-sm);
}

.legal-text {
  font-size: var(--font-size-sm);
  text-align: center;
  margin-top: var(--space-md);
}

.understanding-rights h2,
.terms-section h2,
.terms-section h3 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  font-size: var(--font-size-2xl);
}

.terms-section {
  margin-bottom: var(--space-xl);
}

.terms-section h2,
.terms-section h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.view-here-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.footer-quick-links,
.footer-connect {
  text-align: left;
}

.footer-quick-links ul,
.footer-connect ul {
  list-style: none;
  padding: 0;
}

.footer-quick-links li,
.footer-connect li {
  margin-bottom: var(--space-sm);
  text-align: left;
}

#plan-builder .row {
  align-items: flex-start;
}

#plan-builder .col-lg-8 {
  display: flex;
  flex-direction: column;
}

#plan-builder .col-lg-4 {
  display: flex;
  flex-direction: column;
}

.every-sweat-counts .row {
  align-items: stretch;
}

.define-next-peak .row {
  align-items: flex-start;
}

.footer-pl .col-md-4 ul {
  padding-left: 0;
  margin: 0;
}

.footer-pl .col-md-4 ul li {
  margin-bottom: var(--space-sm);
  padding-left: 0;
  text-align: left;
}

.card-body-pl p,
.card-body-pl ul {
  text-align: left;
}

.section-padding {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.navbar-pl .navbar-inner nav {
  flex-grow: 1;
}

.col img:only-child,
.col > img {
  display: block;
}

.row > [class*="col-"]:not(:has([class*="card"], .gamelift-card, .sf-product-card)) {
  display: block;
}