@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --srvd-teal: #1DAF9E;
  --srvd-dark: #0B0B0D;
  --srvd-light: #F6F7F9;
  --srvd-muted: #E8F0EF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--srvd-light);
  color: var(--srvd-dark);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Typography */
.font-display { font-family: 'IBM Plex Sans', system-ui, sans-serif; }
.font-serif { font-family: 'IBM Plex Sans', system-ui, sans-serif; }
.font-mono { font-family: 'IBM Plex Sans', system-ui, sans-serif; }

.headline-xl {
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.headline-lg {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.headline-md {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 700;
}

.body-text {
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
}

.ui-label {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Image treatment */
.img-bw {
  filter: grayscale(100%) contrast(1.15);
}

/* Colors */
.bg-dark { background-color: var(--srvd-dark); }
.bg-light { background-color: var(--srvd-light); }
.text-teal { color: var(--srvd-teal); }
.text-light { color: var(--srvd-light); }
.text-dark { color: var(--srvd-dark); }

/* Teal underline */
.teal-underline {
  position: relative;
  display: inline-block;
}

.teal-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--srvd-teal);
  transition: width 0.3s ease;
}

.teal-underline:hover::after {
  width: 100%;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(246, 247, 249, 0.95);
  backdrop-filter: blur(10px);
}

/* Dark navigation for subpages with dark heroes */
.nav.nav--dark,
.nav.nav--dark.scrolled {
  background: rgba(11, 11, 13, 1);
  backdrop-filter: blur(10px);
}

.nav.nav--dark .nav-logo,
.nav.nav--dark .nav-link,
.nav.nav--dark.scrolled .nav-logo,
.nav.nav--dark.scrolled .nav-link {
  color: var(--srvd-light);
}

.nav.nav--dark .mobile-menu-btn span {
  background: var(--srvd-light) !important;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--srvd-light);
  transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
  color: var(--srvd-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: rgba(246, 247, 249, 0.7);
  position: relative;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-link {
  color: rgba(11, 11, 13, 0.7);
}

.nav-link:hover {
  color: var(--srvd-teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--srvd-teal);
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--srvd-light);
}

.nav.scrolled .nav-link.active {
  color: var(--srvd-dark);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(11, 11, 13, 0.1);
  height: 100%;
}

.lang-link {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(11, 11, 13, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
}

.lang-link:hover,
.lang-link.active {
  color: var(--srvd-teal);
}

.nav.scrolled .language-switcher {
  border-left-color: rgba(11, 11, 13, 0.1);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--srvd-light);
  transition: all 0.3s ease;
}

.nav.scrolled .mobile-menu-btn span {
  background: var(--srvd-dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--srvd-light);
  z-index: 60;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--srvd-dark);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-link {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--srvd-dark);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--srvd-teal);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 175, 158, 0.1);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(246, 247, 249, 0.08);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--srvd-light);
  mix-blend-mode: difference;
  line-height: 0.9;
}

.hero-tagline {
  margin-top: 1.5rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(246, 247, 249, 0.8);
  max-width: 600px;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(246, 247, 249, 0.25);
  overflow: hidden;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--srvd-light);
  animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

.hero-email {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-style: italic;
  color: rgba(246, 247, 249, 0.7);
  text-decoration: none;
  z-index: 4;
  transition: color 0.3s ease;
}

.hero-email:hover {
  color: var(--srvd-teal);
}

/* Sections */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  color: var(--srvd-teal);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(11, 11, 13, 0.7);
  max-width: 600px;
}

/* Cards */
.card {
  padding: 2rem;
  border: 1px solid rgba(11, 11, 13, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(29, 175, 158, 0.3);
}

.card-dark {
  background: var(--srvd-dark);
  color: var(--srvd-light);
}

.card-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--srvd-teal);
  opacity: 0.3;
  line-height: 1;
}

/* Quote block */
.quote-block {
  background: var(--srvd-dark);
  padding: 4rem 2rem;
  margin: 4rem -2rem;
}

.quote-block blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  color: rgba(246, 247, 249, 0.9);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--srvd-teal);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  transition: transform 0.7s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 175, 158, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.gallery-caption {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-style: italic;
  color: var(--srvd-light);
}

/* Coach profile */
.coach-profile {
  position: relative;
}

.coach-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.coach-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  transition: transform 0.7s ease;
}

.coach-profile:hover .coach-image img {
  transform: scale(1.05);
}

.coach-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.8), transparent);
}

.coach-name {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--srvd-light);
  line-height: 1;
}

.coach-title {
  color: var(--srvd-teal);
  margin-top: 0.5rem;
}

.coach-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coach-credential {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(11, 11, 13, 0.05);
  font-size: 0.75rem;
  color: rgba(11, 11, 13, 0.7);
}

.coach-credential svg {
  width: 14px;
  height: 14px;
  color: var(--srvd-teal);
}

.coach-quote {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-style: italic;
  color: rgba(11, 11, 13, 0.8);
  padding-left: 1rem;
  border-left: 2px solid var(--srvd-teal);
  margin-bottom: 1rem;
}

.coach-focus {
  margin-bottom: 1rem;
}

.coach-focus-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(11, 11, 13, 0.5);
  margin-bottom: 0.5rem;
}

.coach-focus-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.coach-focus-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(11, 11, 13, 0.7);
}

.coach-focus-item svg {
  width: 12px;
  height: 12px;
  color: var(--srvd-teal);
}

.coach-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--srvd-teal);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.coach-email:hover {
  color: var(--srvd-dark);
}

.coach-email svg {
  width: 16px;
  height: 16px;
}

/* Connector line */
.connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 8rem;
  background: var(--srvd-teal);
}

/* Location block */
.location-block {
  background: var(--srvd-light);
  padding: 3rem 2rem;
  margin: 4rem -2rem -6rem;
}

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

.location-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-label svg {
  width: 20px;
  height: 20px;
  color: var(--srvd-teal);
}

.location-label span {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--srvd-teal);
}

.location-address {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--srvd-dark);
  margin-bottom: 0.5rem;
}

.location-city {
  color: rgba(11, 11, 13, 0.7);
}

.location-note {
  color: rgba(11, 11, 13, 0.6);
  font-size: 0.875rem;
}

/* Contact page */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.contact-content {
  max-width: 700px;
  text-align: center;
}

.contact-email-large {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-style: italic;
  color: var(--srvd-teal);
  text-decoration: none;
  margin: 2rem 0 3rem;
  display: inline-block;
}

.contact-email-large:hover {
  color: var(--srvd-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(11, 11, 13, 0.1);
  border-bottom: 1px solid rgba(11, 11, 13, 0.1);
  margin-bottom: 2rem;
  text-align: left;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(11, 11, 13, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: var(--srvd-teal);
}

.contact-social svg {
  width: 16px;
  height: 16px;
}

/* Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11, 11, 13, 0.2);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--srvd-dark);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--srvd-teal);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(11, 11, 13, 0.4);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srvd-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.form-submit:hover {
  color: var(--srvd-teal);
}

.form-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

/* CTA button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--srvd-dark);
  color: var(--srvd-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--srvd-teal);
}

.cta-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(4px);
}

/* Unified Button System */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  width: fit-content;
}

.btn::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--srvd-teal);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(29, 175, 158, 0.6);
}

.btn--primary {
  background: var(--srvd-dark);
  color: var(--srvd-light);
  border-color: var(--srvd-dark);
}

.btn--primary:hover {
  background: var(--srvd-teal);
  border-color: var(--srvd-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(29, 175, 158, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--srvd-dark);
  border-color: var(--srvd-dark);
}

.btn--outline:hover {
  background: var(--srvd-dark);
  color: var(--srvd-light);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--srvd-light);
  border-color: var(--srvd-light);
}

.btn--outline-light:hover {
  background: var(--srvd-light);
  color: var(--srvd-dark);
  transform: translateY(-2px);
}

.btn--teal {
  background: var(--srvd-teal);
  color: var(--srvd-light);
  border-color: var(--srvd-teal);
}

.btn--teal:hover {
  background: var(--srvd-light);
  color: var(--srvd-dark);
  border-color: var(--srvd-light);
  transform: translateY(-2px);
}

.btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

/* Footer Banner */
.footer-banner {
  padding: 2rem 1.5rem;
  background: var(--srvd-dark);
  overflow: hidden;
}

.footer-banner-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-banner-logo {
  font-size: clamp(60px, 18vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--srvd-light);
  margin: 0;
  text-transform: lowercase;
  text-align: center;
  width: 100%;
}

/* Footer */
.footer {
  background: var(--srvd-dark);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--srvd-light);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(246, 247, 249, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--srvd-teal);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 247, 249, 0.2);
  color: rgba(246, 247, 249, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--srvd-teal);
  color: var(--srvd-teal);
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 247, 249, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(246, 247, 249, 0.4);
  font-size: 0.875rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .connector {
    display: none;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .hero-email {
    display: none;
  }
}

/* Marquee Banner */
.marquee-banner {
  background: var(--srvd-teal);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srvd-dark);
  white-space: nowrap;
}

.marquee-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-banner:hover .marquee-track {
  animation-play-state: paused;
}

/* Welcome Section */
.welcome-section {
  padding: 8rem 2rem;
  background: var(--srvd-light);
}

.welcome-container {
  max-width: 1400px;
  margin: 0 auto;
}

.welcome-header {
  margin-bottom: 4rem;
}

.welcome-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.welcome-label {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: var(--srvd-teal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.welcome-brand {
  position: relative;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 700;
  color: var(--srvd-dark);
  letter-spacing: -0.03em;
  display: inline-block;
}

.welcome-swoosh {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: visible;
}

.swoosh-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawSwoosh 1.5s ease-out forwards 0.5s;
}

@keyframes drawSwoosh {
  to {
    stroke-dashoffset: 0;
  }
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.welcome-image {
  position: relative;
}

.welcome-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
}

.welcome-image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--srvd-teal);
  z-index: -1;
  opacity: 0.3;
}

.welcome-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

/* Club Vibes Intro */
.welcome-club {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.welcome-club-name {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--srvd-dark);
  margin: 0;
  line-height: 0.95;
}

.welcome-club-tagline {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--srvd-teal);
  margin: 0;
  line-height: 1.2;
}

.welcome-club-offer {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  color: rgba(11, 11, 13, 0.85);
  margin: 0;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.welcome-club-trainers {
  font-size: 14px;
  font-weight: 400;
  color: rgba(11, 11, 13, 0.45);
  margin: 0;
  line-height: 1.4;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

/* Buzzwords */
.welcome-buzzwords {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.buzzword {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srvd-dark);
}

.buzzword-separator {
  color: var(--srvd-teal);
  font-size: 16px;
  font-weight: 700;
}

/* Tagline */
.welcome-tagline {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(11, 11, 13, 0.7);
}

.welcome-tagline strong {
  color: var(--srvd-dark);
  font-weight: 600;
}

.welcome-divider {
  width: 60px;
  height: 1px;
  background: rgba(11, 11, 13, 0.15);
}

.welcome-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: var(--srvd-dark);
  color: var(--srvd-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.welcome-cta:hover {
  background: var(--srvd-teal);
}

.welcome-cta svg {
  transition: transform 0.3s ease;
}

.welcome-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .welcome-section {
    padding: 5rem 1.5rem;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .welcome-image-frame {
    display: none;
  }

  .welcome-content {
    padding-top: 0;
    gap: 2rem;
  }

  .welcome-header {
    margin-bottom: 2.5rem;
  }
}

/* Welcome Section - Light Split */
.welcome-section-dark {
  min-height: 100vh;
  background: var(--srvd-light);
  display: flex;
  align-items: center;
}

.welcome-dark-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

/* Left Content */
.welcome-dark-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  gap: 1.25rem;
}

.welcome-dark-name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--srvd-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.welcome-dark-tagline {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  color: var(--srvd-teal);
  margin: 0;
}

.welcome-dark-body {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(11, 11, 13, 0.7);
  line-height: 1.6;
  margin: 0;
}

.welcome-dark-trainers {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin: 0;
  padding: 0.75rem 0;
  border-left: 3px solid var(--srvd-teal);
  padding-left: 1rem;
  margin-left: -1.15rem;
}

.welcome-dark-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid var(--srvd-dark);
  color: var(--srvd-dark);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 1rem;
}

.welcome-dark-cta:hover {
  background: var(--srvd-dark);
  color: var(--srvd-light);
}

/* Right Image */
.welcome-dark-image {
  position: relative;
  overflow: hidden;
}

.welcome-dark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-dark-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, var(--srvd-light), transparent);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .welcome-dark-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .welcome-dark-text {
    padding: 5rem 1.5rem;
    order: 1;
  }

  .welcome-dark-image {
    order: 2;
    min-height: 50vh;
  }

  .welcome-dark-gradient {
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--srvd-light), transparent);
  }
}

/* Services Section */
.services-section {
  padding: 8rem 1.5rem;
  background: var(--srvd-light);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(11, 11, 13, 0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(11, 11, 13, 0.1);
}

.service-item:hover {
  padding-left: 1rem;
  background: rgba(29, 175, 158, 0.05);
}

.service-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--srvd-teal);
  font-weight: 500;
}

.service-name {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--srvd-dark);
}

.service-arrow {
  font-size: 1.25rem;
  color: rgba(11, 11, 13, 0.3);
  transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
  color: var(--srvd-teal);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .services-section {
    padding: 5rem 1.5rem;
  }

  .service-item {
    grid-template-columns: 40px 1fr auto;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .service-name {
    font-size: 1.1rem;
  }
}

/* Stats Bar - Light Style */
.stats-bar {
  padding: 2rem 1.5rem;
  background: var(--srvd-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--srvd-teal);
}

.stat-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--srvd-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--srvd-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  font-weight: 500;
}

.stat-divider {
  display: none;
}

@media (max-width: 768px) {
  .stats-container {
    gap: 1.25rem;
  }

  .stat-item {
    min-width: 120px;
    max-width: 160px;
    gap: 0.5rem;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
  }

  .stat-number {
    font-size: 0.85rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* Programs Section - Accordion Cards */
.programs-section {
  padding: 6rem 1.5rem;
  background: var(--srvd-light);
}

.programs-container {
  max-width: 1400px;
  margin: 0 auto;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.programs-header .section-title {
  margin: 0;
}

.programs-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--srvd-dark);
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border: 2px solid var(--srvd-teal);
  border-radius: 100px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  box-shadow: 0 2px 8px rgba(29, 175, 158, 0.15);
}

.programs-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.programs-link:hover {
  background: var(--srvd-teal);
  color: var(--srvd-light);
  box-shadow: 0 4px 16px rgba(29, 175, 158, 0.35);
  transform: translateY(-2px);
}

.programs-link:hover::after {
  transform: translateX(4px);
}

.accordion-cards {
  display: flex;
  gap: 0.75rem;
  height: 520px;
}

.accordion-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.1);
  cursor: pointer;
  text-decoration: none;
}

.accordion-card::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.accordion-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.accordion-card:hover {
  box-shadow: 0 8px 30px rgba(11, 11, 13, 0.2);
  transform: translateY(-4px);
}

.accordion-card:hover {
  /* Hover expansion handled by JS active class only */
}

.accordion-bg {
  position: absolute;
  inset: 0;
}

.accordion-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.accordion-card.active .accordion-bg img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1.05);
}

/* Video grayscale effect - grey when not playing, color on hover */
.accordion-bg video {
  filter: grayscale(100%) contrast(1.15);
  transition: filter 0.5s ease;
}

.accordion-card:hover .accordion-bg video,
.accordion-card.active .accordion-bg video {
  filter: grayscale(0%) contrast(1.05);
}

/* Grey/Teal overlay for poster images - like hero section */
.accordion-grey-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 175, 158, 0.15);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.accordion-card:hover .accordion-grey-overlay,
.accordion-card.active .accordion-grey-overlay {
  opacity: 0;
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(11, 11, 13, 0.85) 0%, rgba(11, 11, 13, 0.4) 50%, rgba(11, 11, 13, 0.2) 100%),
    linear-gradient(135deg, rgba(29, 175, 158, 0.25) 0%, rgba(11, 11, 13, 0.5) 100%);
  mix-blend-mode: multiply;
  transition: opacity 0.4s ease, background 0.4s ease;
}

.accordion-card:hover .accordion-overlay,
.accordion-card.active .accordion-overlay {
  opacity: 0.6;
  background:
    linear-gradient(to top, rgba(11, 11, 13, 0.7) 0%, rgba(11, 11, 13, 0.2) 60%, rgba(11, 11, 13, 0.05) 100%),
    linear-gradient(135deg, rgba(29, 175, 158, 0.1) 0%, rgba(11, 11, 13, 0.2) 100%);
}

.accordion-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  color: var(--srvd-light);
  width: 100%;
}

.accordion-number {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--srvd-teal);
  margin-bottom: 0.75rem;
  transition: font-size 0.4s ease;
}

/* Number size increase handled by active class only */

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
  transition: all 0.4s ease;
  display: none;
}

/* Title expansion handled by active class only */

.accordion-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(246, 247, 249, 0.75);
  max-width: 320px;
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: none;
}

.accordion-card:hover .accordion-desc {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.accordion-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #E8DCC4;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

/* CTA visibility handled by active class only */

.accordion-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}

.accordion-card.active .accordion-cta::after {
  transform: translateX(4px);
}

/* Active state - applied via JS on hover */
.accordion-card.active {
  flex: 4;
}

.accordion-card.active .accordion-title {
  display: block;
  writing-mode: horizontal-tb;
  transform: rotate(0);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-card.active .accordion-number {
  font-size: 2rem;
}

.accordion-card.active .accordion-desc,
.accordion-card.active .accordion-cta {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.accordion-card.active .accordion-bg img {
  filter: grayscale(0%) contrast(1.05);
}

/* Accordion Video Hover Effect */
.accordion-bg .accordion-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: opacity 0.3s ease, filter 0.4s ease;
}

.accordion-bg .accordion-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-card:hover .accordion-bg .accordion-poster,
.accordion-card.active .accordion-bg .accordion-poster {
  opacity: 0;
}

.accordion-card:hover .accordion-bg .accordion-video,
.accordion-card.active .accordion-bg .accordion-video {
  opacity: 1;
}

.accordion-card.active .accordion-bg .accordion-poster {
  filter: grayscale(0%) contrast(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .accordion-cards {
    height: 400px;
  }

  .accordion-title {
    font-size: 0.9rem;
  }

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

  .accordion-content {
    padding: 1.25rem;
  }

  .accordion-desc {
    font-size: 0.85rem;
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .programs-section {
    padding: 4rem 1rem;
  }

  .accordion-cards {
    flex-direction: column;
    height: auto;
    gap: 0.5rem;
  }

  .accordion-card {
    min-height: 80px;
    flex: none !important;
  }

  .accordion-card.active {
    min-height: 280px;
  }

  .accordion-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.1rem;
    display: none;
  }

  .accordion-card.active .accordion-title {
    display: block;
  }

  .accordion-number {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .accordion-desc {
    display: none;
  }

  .accordion-card.active .accordion-desc {
    display: block;
  }
}

/* Final CTA */
.final-cta {
  padding: 4rem 1.5rem;
  background: var(--srvd-dark);
  text-align: center;
}

.final-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--srvd-light);
  margin: 0 0 1.5rem;
}

/* ==========================================================================
   SRVD LAB - Racket Stringing & Tuning
   ========================================================================== */

/* Hero Section */
.lab-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lab-hero-bg {
  position: absolute;
  inset: 0;
}

.lab-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
}

.lab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.7) 50%, rgba(11, 11, 13, 0.4) 100%);
}

.lab-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
}

.lab-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--srvd-light);
  line-height: 1.1;
  margin: 1rem 0;
}

.lab-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(246, 247, 249, 0.7);
  margin-bottom: 2rem;
}

/* Lab Services Grid */
.lab-services {
  padding: 6rem 2rem;
  background: var(--srvd-light);
}

.lab-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.lab-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 11, 13, 0.12);
}

.lab-service-icon {
  width: 56px;
  height: 56px;
  background: var(--srvd-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.lab-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin-bottom: 0.75rem;
}

.lab-service-desc {
  font-size: 0.95rem;
  color: rgba(11, 11, 13, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.lab-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lab-service-list li {
  font-size: 0.875rem;
  color: rgba(11, 11, 13, 0.6);
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.lab-service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--srvd-teal);
}

/* Pricing Section */
.lab-pricing {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

.lab-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--srvd-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.lab-section-title--light {
  color: var(--srvd-light);
}

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

.lab-pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.06);
  position: relative;
}

.lab-pricing-card--featured {
  border: 2px solid var(--srvd-teal);
  transform: scale(1.05);
}

.lab-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--srvd-teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lab-pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin-bottom: 0.5rem;
}

.lab-pricing-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--srvd-teal);
  margin-bottom: 0.5rem;
}

.lab-pricing-desc {
  font-size: 0.875rem;
  color: rgba(11, 11, 13, 0.5);
  margin-bottom: 1.5rem;
}

.lab-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.lab-pricing-features li {
  font-size: 0.9rem;
  color: rgba(11, 11, 13, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.lab-pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--srvd-teal);
  font-weight: 700;
}

/* Pricing Extras */
.lab-pricing-extras {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.06);
}

.lab-pricing-extras-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--srvd-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.lab-pricing-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
  font-size: 0.95rem;
}

.lab-pricing-extra-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  color: var(--srvd-teal);
}

/* Info Section */
.lab-info {
  background: var(--srvd-light);
}

.lab-info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.lab-info-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lab-info-location h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin-bottom: 0.5rem;
}

.lab-info-location p {
  font-size: 1rem;
  color: rgba(11, 11, 13, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lab-info-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lab-info-day {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: rgba(11, 11, 13, 0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(11, 11, 13, 0.1);
}

.lab-info-day--note {
  color: var(--srvd-teal);
  font-weight: 500;
  border-bottom: none;
  margin-top: 0.5rem;
}

.lab-info-image {
  position: relative;
  overflow: hidden;
}

.lab-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Booking CTA */
.lab-booking {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--srvd-teal) 0%, #158a7d 100%);
  text-align: center;
}

.lab-booking-content {
  max-width: 600px;
  margin: 0 auto;
}

.lab-booking-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.lab-booking-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.lab-booking-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lab Responsive */
@media (max-width: 900px) {
  .lab-services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .lab-info-image {
    min-height: 300px;
  }

  .lab-info-text {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .lab-hero {
    min-height: 60vh;
  }

  .lab-services {
    padding: 4rem 1rem;
  }

  .lab-service-card {
    padding: 1.5rem;
  }

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

  .lab-booking {
    padding: 4rem 1rem;
  }

  .lab-booking-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Responsive - Smartphones */
@media (max-width: 480px) {
  /* Hero Section */
  .hero {
    height: 100svh;
  }

  .hero-title {
    font-size: clamp(60px, 20vw, 100px);
  }

  .hero-tagline {
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .hero-scroll {
    bottom: 2rem;
  }

  /* Welcome Section */
  .welcome-section-dark {
    min-height: auto;
  }

  .welcome-dark-text {
    padding: 3rem 1.5rem;
  }

  .welcome-dark-name {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Stats Bar */
  .stats-bar {
    padding: 1.5rem 1rem;
  }

  .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-item {
    flex: 1;
    min-width: 80px;
    gap: 0.4rem;
  }

  .stat-icon {
    width: 24px;
    height: 24px;
  }

  .stat-number {
    font-size: 0.8rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Programs Section */
  .programs-section {
    padding: 3rem 1rem;
  }

  .programs-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .programs-header .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .accordion-cards {
    gap: 0.5rem;
  }

  .accordion-card {
    min-height: 70px;
    border-radius: 12px;
  }

  .accordion-card.active {
    min-height: 200px;
  }

  .accordion-content {
    padding: 1rem;
  }

  .accordion-number {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .accordion-card.active .accordion-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .accordion-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Final CTA */
  .final-cta {
    padding: 3rem 1rem;
  }

  .final-cta-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  /* Footer Banner */
  .footer-banner {
    padding: 1.5rem 1rem;
  }

  .footer-banner-logo {
    font-size: clamp(40px, 15vw, 100px);
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-link {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1.5rem;
  }

  /* Contact Section */
  .contact-hero {
    padding: 6rem 1rem 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  /* Section Headers */
  .section {
    padding: 4rem 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  /* Coach Profiles */
  .coach-profile {
    padding: 1.5rem;
  }

  .coach-name {
    font-size: 1.75rem;
  }

  .coach-credentials {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .coach-credential {
    font-size: 0.75rem;
  }

  /* Quote Block */
  .quote-block {
    padding: 2rem 1.5rem;
  }

  .quote-text {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  /* Gallery */
  .gallery {
    gap: 0.5rem;
  }

  .gallery-item {
    border-radius: 8px;
  }

  .gallery-caption {
    font-size: 0.8rem;
  }

  /* Location Block */
  .location-block {
    padding: 2rem 1.5rem;
  }

  .location-grid {
    gap: 1.5rem;
  }

  .location-address {
    font-size: 1.25rem;
  }

  /* Programs Cards */
  .card {
    padding: 1.5rem;
  }

  .card-number {
    font-size: 0.875rem;
  }

  .card h3 {
    font-size: 1.5rem !important;
  }

  /* Navigation */
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  /* Mobile Menu */
  .mobile-menu-links {
    padding: 2rem;
    gap: 1rem;
  }

  .mobile-menu-link {
    font-size: 1.5rem;
  }

  /* Form Elements */
  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.75rem 1rem;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Headlines */
  .headline-xl {
    font-size: clamp(36px, 12vw, 60px);
  }

  .headline-lg {
    font-size: clamp(28px, 8vw, 44px);
  }

  .headline-md {
    font-size: clamp(24px, 6vw, 36px);
  }

  /* Body Text */
  .body-text {
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 48px;
  }

  .welcome-dark-name {
    font-size: 2rem;
  }

  .stats-container {
    gap: 0.75rem;
  }

  .stat-item {
    min-width: 60px;
  }

  .stat-icon {
    width: 18px;
    height: 18px;
  }

  .stat-number {
    font-size: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .accordion-card {
    min-height: 60px;
  }

  .accordion-card.active {
    min-height: 180px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Coach Sections - Split Design */
.coach-section-dark {
  min-height: 100vh;
  background: var(--srvd-dark);
  display: flex;
}

.coach-dark-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.coach-dark-text {
  padding: 8rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--srvd-light);
}

.coach-dark-name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--srvd-light);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.coach-dark-tagline {
  font-size: 1.25rem;
  color: var(--srvd-teal);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.coach-dark-body {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(246, 247, 249, 0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.coach-quote-dark {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(246, 247, 249, 0.8);
  border-left: 3px solid var(--srvd-teal);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.coach-credentials-dark {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.coach-credential-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(246, 247, 249, 0.9);
}

.coach-dark-image {
  position: relative;
  overflow: hidden;
}

.coach-dark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.coach-dark-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, var(--srvd-dark), transparent);
}

/* Coach Light Section */
.coach-section-light {
  min-height: 100vh;
  background: var(--srvd-light);
  display: flex;
}

.coach-light-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.coach-light-text {
  padding: 8rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--srvd-dark);
}

.coach-light-name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--srvd-dark);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.coach-light-tagline {
  font-size: 1.25rem;
  color: var(--srvd-teal);
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.coach-light-body {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(11, 11, 13, 0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.coach-quote-light {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(11, 11, 13, 0.8);
  border-left: 3px solid var(--srvd-teal);
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.coach-credentials-light {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.coach-credential-light {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(11, 11, 13, 0.9);
}

.coach-light-image {
  position: relative;
  overflow: hidden;
}

.coach-light-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
}

.coach-light-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, var(--srvd-light), transparent);
}

/* Coach Sections Mobile */
@media (max-width: 900px) {
  .coach-dark-content,
  .coach-light-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .coach-dark-text,
  .coach-light-text {
    padding: 3rem 1.5rem;
    order: 1;
  }

  .coach-dark-image,
  .coach-light-image {
    order: 2;
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }

  .coach-dark-image img,
  .coach-light-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .coach-dark-gradient {
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--srvd-dark), transparent);
    top: auto;
    bottom: 0;
  }

  .coach-light-gradient {
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--srvd-light), transparent);
    top: auto;
    bottom: 0;
  }

  .coach-dark-name,
  .coach-light-name {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

@media (max-width: 640px) {
  .coach-dark-image,
  .coach-light-image {
    height: 50vh;
    min-height: 350px;
    max-height: 400px;
  }

  .coach-dark-image img,
  .coach-light-image img {
    object-position: center 20%;
  }
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   SRVD LAB V2 - Phase 1 Redesign
   ========================================================================== */

/* Hero V2 - Technical Workshop Style */
.lab-hero-v2 {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--srvd-dark);
  overflow: hidden;
}

.lab-hero-v2-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B0B0D 0%, #1a1a1f 50%, #0B0B0D 100%);
}

.lab-hero-v2-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(29, 175, 158, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 175, 158, 0.5) 1px, transparent 1px);
  background-size: 50px 50px;
}

.lab-hero-v2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
}

.lab-hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246, 247, 249, 0.6);
  margin-bottom: 2rem;
  width: fit-content;
}

.lab-hero-v2-badge svg {
  color: var(--srvd-teal);
}

.lab-hero-v2-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lab-hero-v2-label {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 247, 249, 0.5);
}

.lab-hero-v2-lab {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--srvd-light);
  line-height: 1;
}

.lab-hero-v2-line {
  width: 80px;
  height: 3px;
  background: var(--srvd-teal);
  margin-bottom: 2rem;
}

.lab-hero-v2-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(246, 247, 249, 0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.lab-hero-v2-cta {
  width: fit-content;
}

.lab-hero-v2-visual {
  position: relative;
  overflow: hidden;
}

.lab-hero-v2-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
}

.lab-hero-v2-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--srvd-dark) 0%, transparent 30%);
}

/* Trust Bar */
.lab-trust {
  background: var(--srvd-dark);
  border-top: 1px solid rgba(246, 247, 249, 0.1);
  border-bottom: 1px solid rgba(246, 247, 249, 0.1);
  padding: 2rem;
}

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

.lab-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.lab-trust-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--srvd-teal);
  background: rgba(29, 175, 158, 0.1);
  border-radius: 10px;
}

.lab-trust-text {
  font-size: 0.875rem;
  color: rgba(246, 247, 249, 0.7);
}

.lab-trust-text strong {
  color: var(--srvd-light);
  font-weight: 600;
}

/* Services V2 */
.lab-services-v2 {
  padding: 6rem 2rem;
  background: var(--srvd-light);
}

.lab-section-title-v2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--srvd-dark);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lab-services-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lab-service-v2-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(11, 11, 13, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.lab-service-v2-card:hover {
  border-color: var(--srvd-teal);
  box-shadow: 0 10px 40px rgba(29, 175, 158, 0.1);
}

.lab-service-v2-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(11, 11, 13, 0.2);
}

.lab-service-v2-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--srvd-teal);
  margin-bottom: 1.5rem;
}

.lab-service-v2-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.lab-service-v2-desc {
  font-size: 0.9rem;
  color: rgba(11, 11, 13, 0.6);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.lab-service-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lab-service-v2-list li {
  font-size: 0.85rem;
  color: rgba(11, 11, 13, 0.5);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.lab-service-v2-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--srvd-teal);
  border-radius: 50%;
}

/* String Showcase */
.lab-strings {
  padding: 5rem 2rem;
  background: #f8f9fa;
}

.lab-strings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lab-string-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-string-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 11, 13, 0.12);
}

.lab-string-color {
  height: 100px;
  position: relative;
}

.lab-string-color::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
}

.lab-string-info {
  padding: 1.25rem;
}

.lab-string-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--srvd-dark);
  margin-bottom: 0.25rem;
}

.lab-string-type {
  font-size: 0.85rem;
  color: rgba(11, 11, 13, 0.5);
  margin-bottom: 0.75rem;
}

.lab-string-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--srvd-teal);
  background: rgba(29, 175, 158, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

/* Process Section */
.lab-process {
  padding: 5rem 2rem;
  background: var(--srvd-light);
}

.lab-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.lab-process-step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 11, 13, 0.06);
  position: relative;
}

.lab-process-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  background: var(--srvd-teal);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.lab-process-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--srvd-teal);
  background: rgba(29, 175, 158, 0.08);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.lab-process-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--srvd-dark);
  margin-bottom: 0.5rem;
}

.lab-process-desc {
  font-size: 0.9rem;
  color: rgba(11, 11, 13, 0.6);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.lab-process-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--srvd-teal);
  background: rgba(29, 175, 158, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.lab-process-arrow {
  color: rgba(11, 11, 13, 0.2);
  flex-shrink: 0;
}

/* Lab V2 Responsive */
@media (max-width: 900px) {
  .lab-hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lab-hero-v2-content {
    padding: 4rem 1.5rem;
    order: 1;
  }

  .lab-hero-v2-visual {
    min-height: 300px;
    order: 2;
  }

  .lab-hero-v2-visual::after {
    background: linear-gradient(to top, var(--srvd-dark) 0%, transparent 50%);
  }

  .lab-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

@media (max-width: 600px) {
  .lab-trust-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lab-trust-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lab-service-v2-card {
    padding: 1.5rem;
  }

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

  .lab-process-steps {
    flex-direction: column;
  }

  .lab-process-arrow {
    transform: rotate(90deg);
  }

  .lab-process-step {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .lab-strings-grid {
    grid-template-columns: 1fr;
  }
}

/* Location Section V2 */
.lab-location {
  background: var(--srvd-light);
}

.lab-location-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 500px;
}

.lab-location-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lab-location-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--srvd-dark);
  margin-bottom: 2rem;
}

.lab-location-address {
  display: flex;
  gap: 1rem;
  color: rgba(11, 11, 13, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lab-location-address svg {
  color: var(--srvd-teal);
  flex-shrink: 0;
}

.lab-location-address strong {
  color: var(--srvd-dark);
  font-weight: 600;
}

.lab-location-hours-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srvd-teal);
  margin-bottom: 1rem;
}

.lab-location-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lab-hours-row {
  display: flex;
  justify-content: space-between;
  color: rgba(11, 11, 13, 0.8);
  font-size: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(11, 11, 13, 0.1);
}

.lab-hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--srvd-teal);
  font-weight: 500;
}

.lab-location-map {
  position: relative;
  min-height: 400px;
}

.lab-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%) contrast(1.1);
}

/* CTA Section V2 */
.lab-cta-v2 {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--srvd-teal) 0%, #158a7d 100%);
  overflow: hidden;
}

.lab-cta-v2-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 60px 60px;
}

.lab-cta-v2-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lab-cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.lab-cta-v2-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lab-cta-v2-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lab-cta-v2-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lab-cta-v2-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lab-cta-v2-buttons .btn--primary {
  background: var(--srvd-dark);
  color: var(--srvd-light);
  border-color: var(--srvd-dark);
}

.lab-cta-v2-buttons .btn--primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.lab-cta-v2-buttons .btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.lab-cta-v2-buttons .btn--outline:hover {
  background: white;
  color: var(--srvd-teal);
  border-color: white;
}

.lab-cta-v2-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lab-cta-v2-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lab-cta-v2-whatsapp a:hover {
  opacity: 0.8;
}

.lab-cta-v2-whatsapp svg {
  color: #25d366;
}

/* ==========================================================================
   SRVD LAB - COMPACT VERSION
   ========================================================================== */

/* Hero Compact */
.lab-hero-compact {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--srvd-dark);
  overflow: hidden;
}

.lab-hero-compact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B0B0D 0%, #1a1a1f 100%);
}

.lab-hero-compact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(29, 175, 158, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 175, 158, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.lab-hero-compact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.lab-hero-compact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(246, 247, 249, 0.4);
  margin-bottom: 0.5rem;
}

.lab-hero-compact-title {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--srvd-light);
  line-height: 0.9;
  margin-bottom: 1rem;
}

.lab-hero-compact-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(246, 247, 249, 0.6);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* Trust Bar Compact */
.lab-trust-compact {
  background: var(--srvd-dark);
  border-top: 1px solid rgba(246, 247, 249, 0.1);
  padding: 1.5rem 2rem;
}

.lab-trust-compact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lab-trust-compact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.lab-trust-compact-value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
  color: var(--srvd-light);
}

.lab-trust-compact-label-small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246, 247, 249, 0.4);
}

.lab-trust-compact-divider {
  color: rgba(246, 247, 249, 0.2);
  font-size: 0.5rem;
}

/* Services Compact */
.lab-services-compact {
  padding: 4rem 2rem;
  background: var(--srvd-light);
}

.lab-container-compact {
  max-width: 900px;
  margin: 0 auto;
}

.lab-section-compact-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(11, 11, 13, 0.4);
  text-align: center;
  margin-bottom: 2rem;
}

.lab-services-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lab-service-compact {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  background: transparent;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.lab-service-compact:hover {
  border-color: var(--srvd-teal);
  background: rgba(29, 175, 158, 0.02);
  transform: translateY(-2px);
}

.lab-service-compact-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--srvd-dark);
  letter-spacing: 0.05em;
  margin: 0;
}

.lab-service-compact-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--srvd-teal);
  margin-bottom: 0.5rem;
}

.lab-service-compact-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--srvd-dark);
  letter-spacing: 0.05em;
}

/* Pricing Compact */
.lab-pricing-compact {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.lab-pricing-compact-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lab-pricing-compact-item {
  text-align: center;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 100px;
  border: 1px solid rgba(11, 11, 13, 0.08);
  min-width: 140px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.lab-pricing-compact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11, 11, 13, 0.1);
}

.lab-pricing-compact-item--featured {
  border-color: var(--srvd-teal);
  box-shadow: 0 4px 20px rgba(29, 175, 158, 0.1);
}

.lab-pricing-compact-item--featured:hover {
  box-shadow: 0 8px 25px rgba(29, 175, 158, 0.2);
}

.lab-pricing-compact-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(11, 11, 13, 0.5);
  margin-bottom: 0.5rem;
}

.lab-pricing-compact-price {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--srvd-dark);
}

.lab-pricing-compact-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(11, 11, 13, 0.4);
  letter-spacing: 0.05em;
}

/* CTA Compact */
.lab-cta-compact {
  background: var(--srvd-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.lab-cta-compact-content {
  max-width: 600px;
  margin: 0 auto;
}

.lab-cta-compact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--srvd-light);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.lab-cta-compact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lab-cta-compact-location {
  font-size: 0.8rem;
  color: rgba(246, 247, 249, 0.5);
  letter-spacing: 0.02em;
}

/* Lab Modals */
.lab-modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lab-modal.active {
  opacity: 1;
  visibility: visible;
}

.lab-modal-content {
  background: var(--srvd-light);
  border-radius: 8px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.lab-modal.active .lab-modal-content {
  transform: translateY(0);
}

.lab-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--srvd-dark);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-modal-close:hover {
  background: rgba(11, 11, 13, 0.05);
}

.lab-modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--srvd-teal);
}

.lab-modal-icon svg {
  width: 100%;
  height: 100%;
}

.lab-modal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--srvd-teal);
  border: 1px solid var(--srvd-teal);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.lab-modal-badge--featured {
  background: var(--srvd-teal);
  color: white;
}

.lab-modal-badge--express {
  background: var(--srvd-dark);
  color: white;
  border-color: var(--srvd-dark);
}

.lab-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--srvd-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}

.lab-modal-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--srvd-teal);
  text-align: center;
  margin-bottom: 1rem;
}

.lab-modal-desc {
  font-size: 0.95rem;
  color: rgba(11, 11, 13, 0.6);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.lab-modal-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lab-modal-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--srvd-dark);
}

.lab-modal-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lab-modal-btn {
  width: 100%;
  text-align: center;
}

/* Lab Compact Responsive */
@media (max-width: 768px) {
  .lab-services-compact-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .lab-pricing-compact-row {
    flex-direction: column;
    align-items: center;
  }

  .lab-pricing-compact-item {
    width: 100%;
    max-width: 200px;
  }

  .lab-cta-compact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lab-cta-compact-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .lab-modal-content {
    padding: 2rem 1.5rem;
  }
}

/* Subpage Hero - Unified Design (Light) */
.subpage-hero {
  min-height: 50vh;
  min-height: clamp(400px, 50vh, 500px);
  background: var(--srvd-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.subpage-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 175, 158, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 175, 158, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.subpage-hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(29, 175, 158, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 175, 158, 0.1) 0%, transparent 40%);
}

.subpage-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.subpage-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--srvd-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.subpage-hero-tagline {
  font-size: 1.125rem;
  color: rgba(11, 11, 13, 0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Subpage Hero with Image */
.subpage-hero--image {
  background-size: cover;
  background-position: center;
}

.subpage-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.7);
  z-index: 1;
}

/* Lab Location Responsive */
@media (max-width: 900px) {
  .lab-location-grid {
    grid-template-columns: 1fr;
  }

  .lab-location-info {
    padding: 3rem 1.5rem;
  }

  .lab-location-map {
    min-height: 300px;
  }

  .lab-cta-v2-buttons {
    flex-direction: column;
    align-items: center;
  }

  .lab-cta-v2-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .subpage-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .subpage-hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

/* ============================================
   RESPONSIVE FIXES - Comprehensive
   ============================================ */

/* Extra Small Devices (phones, 360px and up) */
@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .footer-link {
    font-size: 10px;
  }
}

/* Small Devices (phones, 480px and up) */
@media (max-width: 480px) {
  /* Hero adjustments */
  .hero {
    min-height: 100vh;
    padding: 6rem 1rem 4rem;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
    letter-spacing: -0.03em;
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }

  /* Navigation */
  .nav {
    padding: 1rem;
  }

  .nav-logo {
    font-size: 1.35rem;
  }

  /* Mobile menu */
  .mobile-menu-links {
    padding: 2rem 1.5rem;
  }

  .mobile-menu-link {
    font-size: 1.5rem;
    padding: 0.75rem 0;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .footer-link {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .footer-social {
    gap: 0.75rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.7rem;
    position: relative;
  }

  .footer-bottom > div {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    order: -1;
  }

  .footer-bottom > a:last-child {
    margin-left: 0 !important;
  }

  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
    width: 100%;
    max-width: 300px;
  }

  /* Section spacing */
  .section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  /* Cards */
  .service-card,
  .lab-service-card,
  .lab-pricing-card {
    padding: 1.5rem;
  }

  /* Stats bar */
  .stats-bar {
    padding: 1.25rem 1rem;
  }

  .stats-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-item {
    flex: 1;
    min-width: 70px;
  }

  .stat-icon {
    width: 20px;
    height: 20px;
  }

  .stat-number {
    font-size: 0.7rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  /* Marquee */
  .marquee-item {
    font-size: 12px;
  }

  /* Lab page specific */
  .lab-hero {
    padding: 6rem 1rem 3rem;
  }

  .lab-hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .lab-trust-grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .lab-trust-item {
    flex: 1 1 40%;
    min-width: 120px;
  }

  .lab-trust-divider {
    display: none;
  }

  .lab-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .lab-tab {
    width: 100%;
    max-width: 200px;
  }

  /* Programs/Services page */
  .services-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* Community page */
  .coach-dark-content,
  .coach-light-content {
    grid-template-columns: 1fr;
  }

  .coach-dark-image,
  .coach-light-image {
    height: 250px;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Trainers page */
  .coach-section-dark,
  .coach-section-light {
    padding: 2rem 1rem;
  }

  .coach-dark-name,
  .coach-light-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-title {
    font-size: clamp(4rem, 12vw, 6rem);
  }

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

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Large Devices (desktops, 1024px and up) */
@media (min-width: 1025px) {
  /* Ensure desktop nav is visible */
  .nav-links {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }
}

/* Fix horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Touch target size for mobile */
@media (max-width: 768px) {
  .nav-link,
  .footer-link,
  .mobile-menu-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-social a {
    min-width: 44px;
    min-height: 44px;
  }

  /* Better touch targets for service cards */
  .service-card,
  .lab-service-card,
  .lab-pricing-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Form inputs */
  input,
  textarea,
  select,
  button {
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Legal pages padding adjustments */
  .legal-content,
  .legal-section,
  [style*="max-width: 800px"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Reduce padding on small cards */
  .legal-card,
  [style*="border-radius: 12px"][style*="padding: 2rem"] {
    padding: 1.5rem !important;
  }
}

/* Extra small devices - further adjustments */
@media (max-width: 480px) {
  /* Legal pages - even smaller padding */
  .legal-card,
  [style*="border-radius: 12px"][style*="padding: 2rem"] {
    padding: 1.25rem !important;
    border-radius: 8px !important;
  }

  /* Contact cards on mobile */
  .contact-card,
  [style*="background: var(--srvd-dark)"][style*="padding: 2.5rem"] {
    padding: 1.5rem !important;
  }

  /* Reduce margin in content sections */
  .content-section,
  [style*="margin-bottom: 2rem"] {
    margin-bottom: 1.5rem !important;
  }
}

/* Print styles */
@media print {
  .nav,
  .mobile-menu-btn,
  .mobile-menu,
  .footer-banner,
  .grain-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}
