/* FITNESS CENTER - Static Site Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --radius: 0.625rem;
  --background: #ffffff;
  --foreground: #171717;
  --card: #ffffff;
  --card-foreground: #171717;
  --primary: #1a1a1a;
  --primary-foreground: #fafafa;
  --secondary: #f5f5f5;
  --secondary-foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --accent: #f5f5f5;
  --accent-foreground: #1a1a1a;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #a3a3a3;
  --destructive: #dc2626;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, textarea {
  font: inherit;
}

/* Container */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 229, 229, 0.4);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 4rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header__logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--foreground);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--background);
}

.header__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.header__logo-text span {
  color: var(--muted-foreground);
  font-weight: 500;
  margin-left: 0.25rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.375rem;
  transition: color 0.2s, background-color 0.2s;
}

.header__nav-link:hover {
  color: var(--foreground);
  background: var(--accent);
}

.header__cta {
  margin-left: 1rem;
}

.header__mobile-btn {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.header__mobile-btn:hover {
  background: var(--accent);
}

.header__mobile-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  color: var(--foreground);
  background: var(--accent);
}

.mobile-nav .separator {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  height: 2.25rem;
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--lg {
  height: 2.75rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9375rem;
}

.btn--outline {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  height: 2.25rem;
}

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

.btn--outline.btn--lg {
  height: 2.75rem;
  padding: 0.625rem 1.5rem;
}

.btn--full {
  width: 100%;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--background);
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent) 0%, transparent 50%);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
}

.hero__content {
  max-width: 48rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--muted-foreground);
}

.hero__subtitle {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.7;
}

.hero__buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stats {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero__stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.separator-v {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

.separator-h {
  height: 1px;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
}

.section--muted {
  background: rgba(245, 245, 245, 0.4);
}

.section--border-b {
  border-bottom: 1px solid var(--border);
}

.section__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about__text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.about__values {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.about__value {
  display: flex;
  gap: 1rem;
}

.about__value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about__value-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.about__value-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.about__card {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--secondary);
  border-radius: 1rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about__card-icon {
  width: 5rem;
  height: 5rem;
  background: var(--foreground);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about__card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--background);
}

.about__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.about__card-city {
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.about__card-address {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 200px;
}

.about__card-separator {
  width: 6rem;
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.about__card-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--foreground);
  color: var(--background);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about__card-badge-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.about__card-badge-label {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-card__icon {
  background: var(--foreground);
  color: var(--background);
}

.service-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card__title {
  font-weight: 600;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ===== SCHEDULE ===== */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  background: var(--muted);
  padding: 0.25rem;
  border-radius: var(--radius);
  width: fit-content;
}

.tabs__trigger {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted-foreground);
  transition: all 0.2s;
  background: transparent;
}

.tabs__trigger:hover {
  color: var(--foreground);
}

.tabs__trigger.active {
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tabs__content {
  display: none;
}

.tabs__content.active {
  display: block;
}

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

.schedule__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.schedule__time {
  font-size: 0.875rem;
  font-family: ui-monospace, monospace;
  color: var(--muted-foreground);
  width: 3rem;
  flex-shrink: 0;
}

.schedule__separator {
  width: 1px;
  height: 1.5rem;
  background: var(--border);
}

.schedule__name {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pricing-card--featured {
  border-color: var(--foreground);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card__name {
  font-weight: 600;
}

.pricing-card__price {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card__price-value {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.pricing-card__price-unit {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.pricing-card__separator {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pricing-card__features {
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.pricing-card__feature svg {
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  fill: currentColor;
}

.pricing-card__btn {
  margin-top: 2rem;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact__info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 1rem;
  height: 1rem;
}

.contact__info-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.contact__info-value {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.contact__form-card {
  background: var(--card);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact__form-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form__input,
.form__textarea {
  display: flex;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--input);
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form__input {
  height: 2.25rem;
}

.form__textarea {
  min-height: 5rem;
  resize: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 1px var(--ring);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--muted-foreground);
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(245, 245, 245, 0.3);
  padding: 4rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 1rem;
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__links li {
  margin-bottom: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--foreground);
}

.footer__hours {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.footer__separator {
  height: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer__company {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: right;
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.legal__content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.legal__back:hover {
  color: var(--foreground);
}

.legal__back svg {
  width: 1rem;
  height: 1rem;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.legal__date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal ul li {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 0.25rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

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

.legal table th {
  background: var(--muted);
  font-weight: 600;
}

.legal table td {
  color: var(--muted-foreground);
}

.legal h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__mobile-btn {
    display: flex;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .hero__stat-value {
    font-size: 1.5rem;
  }

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

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

  .tabs__list {
    width: 100%;
  }

  .tabs__trigger {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.5rem;
    font-size: 0.8125rem;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__company {
    text-align: left;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .about__card {
    aspect-ratio: auto;
    padding: 3rem 2rem;
  }
}
