/* --- CUSTOM THEME VARIABLES (Joint Care / Prevention context) --- */
:root {
  --joint-deep-bg: #090d16;
  --joint-surface-card: rgba(20, 26, 41, 0.65);
  --joint-glow-border: rgba(2, 228, 230, 0.15);
  --joint-glow-cyan: #02f4f8;
  --joint-glow-accent: #9d4edd;
  --joint-ink-bright: #f8fafc;
  --joint-ink-dimmed: #94a3b8;
  --joint-gradient-cyan-purple: linear-gradient(135deg, #02f4f8 0%, #7f00ff 100%);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- BASE STYLES & OVERALL SCROLL ANIMATION SUPPORT --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.joint-dark-theme {
  background-color: var(--joint-deep-bg);
  color: var(--joint-ink-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* --- PURE CSS SCROLL ANIMATION WORKFLOW --- */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.joint-scroll-reveal {
  animation: slide-up 0.8s ease-out both;
}

@supports (animation-range: entry 10% entry 40%) {
  .joint-scroll-reveal {
    animation-timeline: view();
    animation-range: entry 10% entry 40%;
  }
}

/* --- SCROLL PROGRESS BAR (Header) --- */
@keyframes progress-grow {
  to { width: 100%; }
}

.joint-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--joint-gradient-cyan-purple);
  animation: progress-grow linear;
}

@supports (animation-timeline: scroll()) {
  .joint-scroll-indicator {
    animation-timeline: scroll();
  }
}

/* --- HEADER BAR (Preset D Style) --- */
.joint-header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.joint-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.joint-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.joint-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--joint-glow-cyan);
  filter: drop-shadow(0 0 6px rgba(2, 244, 248, 0.4));
}

.joint-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--joint-gradient-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

/* Mobile responsive hamburger (CSS Only) */
.joint-menu-checkbox {
  display: none;
}

.joint-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.joint-hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--joint-ink-bright);
  transition: all 0.3s ease;
}

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

.joint-nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--joint-ink-dimmed);
  transition: color 0.3s;
}

.joint-nav-link:hover,
.joint-active-link {
  color: var(--joint-glow-cyan);
  text-shadow: 0 0 10px rgba(2, 244, 248, 0.3);
}

.joint-nav-cta {
  background: transparent;
  border: 1px solid var(--joint-glow-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 12px; /* Soft structure */
  color: var(--joint-glow-cyan);
  transition: all 0.3s ease;
}

.joint-nav-cta:hover {
  background: var(--joint-gradient-cyan-purple);
  color: var(--joint-ink-bright);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(2, 244, 248, 0.3);
}

/* --- HERO SEGMENT (Preset D Immersive style) --- */
.joint-main-intro {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  padding: 2rem;
}

.joint-hero-glass-core {
  max-width: 750px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px; /* Soft */
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(9, 13, 22, 0.6);
}

.joint-primary-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--joint-ink-bright);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.joint-primary-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--joint-ink-dimmed);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.joint-badge-accent-glow {
  display: inline-block;
  background: rgba(2, 244, 248, 0.1);
  border: 1px solid var(--joint-glow-cyan);
  color: var(--joint-glow-cyan);
  padding: 0.4rem 1rem;
  font-family: var(--font-display);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.joint-action-dock {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.joint-solid-action {
  background: var(--joint-gradient-cyan-purple);
  color: var(--joint-ink-bright);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(2, 244, 248, 0.2);
}

.joint-solid-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 244, 248, 0.4);
}

.joint-ghost-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--joint-ink-bright);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  transition: all 0.2s;
}

.joint-ghost-action:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--joint-ink-bright);
}

/* --- CONTENT ZIGZAG SECTION (Preset D - Left Media / Right Text) --- */
.joint-content-split {
  display: flex;
  min-height: 550px;
  background: #0d1321;
}

.joint-split-media {
  flex: 1;
  background-position: center;
  background-size: cover;
  min-height: 350px;
}

.joint-split-narrative {
  flex: 1;
  padding: 6dvh 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.joint-secondary-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--joint-ink-bright);
  margin-bottom: 1.5rem;
  position: relative;
}

.joint-secondary-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--joint-gradient-cyan-purple);
  margin-top: 0.75rem;
}

.joint-body-prose {
  color: var(--joint-ink-dimmed);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.joint-bullet-index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.joint-bullet-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.joint-dot-accent {
  width: 10px;
  height: 10px;
  background: var(--joint-glow-cyan);
  border-radius: 50%;
  margin-top: 0.45rem;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--joint-glow-cyan);
}

/* --- FEATURES DECK (Preset D - Row of 3 Glassmorphism Cards) --- */
.joint-feature-deck {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.joint-deck-introduction {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.joint-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 3px solid var(--joint-glow-cyan);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px; /* Soft */
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.joint-glass-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--joint-glow-accent);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 15px 30px rgba(157, 78, 221, 0.15);
}

.joint-card-header-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(2, 244, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.joint-feature-svg {
  width: 26px;
  height: 26px;
  color: var(--joint-glow-cyan);
}

.joint-card-title {
  font-size: 1.25rem;
  color: var(--joint-ink-bright);
  margin-bottom: 1rem;
}

/* --- HOW IT WORKS (Preset D - Left Vertical Timeline) --- */
.joint-timeline-layout {
  background: #0d1321;
  padding: 10dvh 2rem;
}

.joint-timeline-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.joint-timeline-track {
  position: relative;
  margin-top: 3.5rem;
  padding-left: 3rem;
}

.joint-timeline-axis {
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--joint-gradient-cyan-purple);
  box-shadow: 0 0 10px rgba(2, 244, 248, 0.3);
}

.joint-timeline-step {
  position: relative;
  margin-bottom: 3rem;
}

.joint-timeline-step:last-of-type {
  margin-bottom: 0;
}

.joint-timeline-marker {
  position: absolute;
  left: -44px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--joint-deep-bg);
  border: 3px solid var(--joint-glow-cyan);
  color: var(--joint-glow-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(2, 244, 248, 0.5);
}

.joint-timeline-content {
  background: var(--joint-surface-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
}

.joint-step-headline {
  font-size: 1.25rem;
  color: var(--joint-ink-bright);
  margin-bottom: 0.75rem;
}

/* --- CTA STRIP (Preset D - Ghost Button Plain Strip) --- */
.joint-cta-strip {
  background: #090d16;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 8dvh 2rem;
  text-align: center;
}

.joint-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.joint-ghost-action-bright {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--joint-glow-cyan);
  color: var(--joint-glow-cyan);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px; /* Pill override */
  transition: all 0.3s;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.joint-ghost-action-bright:hover {
  background: var(--joint-glow-cyan);
  color: var(--joint-deep-bg);
  box-shadow: 0 0 25px rgba(2, 244, 248, 0.4);
}

/* --- EXPERT PAGE LEAD (Preset D - Dark Lead) --- */
.joint-expert-lead {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  padding: 2rem;
  text-align: center;
}

/* --- ACCORDION STACK (Preset D Approaches) --- */
.joint-approach-deck {
  padding: 10dvh 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.joint-approach-container {
  display: flex;
  flex-direction: column;
}

.joint-accordion-stack {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-accordion-item {
  background: var(--joint-surface-card);
  border-left: 4px solid var(--joint-glow-cyan);
  border-radius: 0 16px 16px 0;
  padding: 2rem;
}

.joint-accordion-trigger {
  font-size: 1.25rem;
  color: var(--joint-ink-bright);
  margin-bottom: 0.75rem;
}

.joint-accordion-content {
  color: var(--joint-ink-dimmed);
}

/* --- PANORAMIC VIEWPORT IMAGE & OVERLAY (bg3.webp) --- */
.joint-landscape-banner {
  height: 60vh;
  min-height: 450px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.joint-landscape-content {
  max-width: 650px;
  background: rgba(9, 13, 22, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  margin-left: auto;
  margin-right: auto;
}

.joint-solid-action-inline {
  display: inline-block;
  background: var(--joint-gradient-cyan-purple);
  color: var(--joint-ink-bright);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  margin-top: 1rem;
}

/* --- METRICS STRIP --- */
.joint-metrics-deck {
  padding: 8dvh 2rem;
  background: #0d1321;
}

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

.joint-metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.joint-metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--joint-glow-cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(2, 244, 248, 0.3);
}

.joint-metric-desc {
  font-size: 0.9rem;
  color: var(--joint-ink-dimmed);
}

/* --- BOOKING LAYOUT & INTEGRATED FORM (Preset D Hero Form) --- */
.joint-booking-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  padding: 6rem 2rem 4rem;
}

.joint-booking-layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.joint-booking-info-block {
  display: flex;
  flex-direction: column;
}

.joint-vertical-info-stack {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.joint-step-point {
  display: flex;
  gap: 1.5rem;
}

.joint-number-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--joint-glow-cyan);
  color: var(--joint-deep-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(2, 244, 248, 0.5);
}

.joint-email-address {
  font-style: normal;
  margin-top: 0.5rem;
}

.joint-text-link {
  color: var(--joint-glow-cyan);
  text-decoration: underline;
  transition: color 0.3s;
}

.joint-text-link:hover {
  color: var(--joint-glow-accent);
}

/* Form block */
.joint-registration-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.joint-card-accent-title {
  font-size: 1.6rem;
  color: var(--joint-ink-bright);
  margin-bottom: 1rem;
}

.joint-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.joint-field-label {
  font-size: 0.85rem;
  color: var(--joint-ink-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.joint-styled-input,
.joint-styled-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--joint-ink-bright);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.joint-styled-input:focus,
.joint-styled-textarea:focus {
  outline: none;
  border-color: var(--joint-glow-cyan);
  box-shadow: 0 0 10px rgba(2, 244, 248, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.joint-consent-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.joint-styled-checkbox {
  margin-top: 0.25rem;
  accent-color: var(--joint-glow-cyan);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.joint-consent-label {
  font-size: 0.8rem;
  color: var(--joint-ink-dimmed);
  line-height: 1.4;
}

.joint-solid-submit-btn {
  background: var(--joint-gradient-cyan-purple);
  color: var(--joint-ink-bright);
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.joint-solid-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 244, 248, 0.4);
}

/* --- FAQ ACCORDION --- */
.joint-faq-section {
  padding: 10dvh 2rem;
  background: #0d1321;
}

.joint-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.joint-faq-accordion {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.joint-faq-item {
  background: var(--joint-surface-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.joint-faq-header {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--joint-ink-bright);
  padding: 1.5rem;
  cursor: pointer;
  user-select: none;
  background: rgba(255, 255, 255, 0.02);
  outline: none;
  transition: background 0.3s;
}

.joint-faq-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.joint-faq-body {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- UTILITY PAGES (Privacy Policy & Terms) --- */
.joint-utility-layout {
  padding: 8rem 2rem 6rem;
}

.joint-legal-contain {
  max-width: 800px;
  margin: 0 auto;
}

.joint-legal-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- FOOTER --- */
.joint-footer {
  background: #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 2rem 3rem;
}

.joint-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.joint-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.joint-footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.joint-footer-links a {
  font-size: 0.9rem;
  color: var(--joint-ink-dimmed);
  transition: color 0.3s;
}

.joint-footer-links a:hover {
  color: var(--joint-glow-cyan);
}

.joint-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
}

.joint-disclaimer {
  font-size: 0.8rem;
  color: var(--joint-ink-dimmed);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.joint-copyright {
  font-size: 0.85rem;
  color: var(--joint-ink-dimmed);
}

/* --- COOKIE BANNER OVERLAY --- */
.joint-cookie-overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.5rem;
}

.joint-cookie-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(14, 21, 37, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(2, 244, 248, 0.3);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.joint-cookie-text {
  font-size: 0.85rem;
  color: var(--joint-ink-dimmed);
  line-height: 1.4;
}

.joint-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.joint-cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.joint-cookie-btn-accept {
  background: var(--joint-glow-cyan);
  color: var(--joint-deep-bg);
}

.joint-cookie-btn-accept:hover {
  box-shadow: 0 0 15px rgba(2, 244, 248, 0.4);
}

.joint-cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--joint-ink-bright);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.joint-cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* --- RESPONSIVEL LAYOUTS (Media Queries) --- */
@media (max-width: 992px) {
  .joint-content-split {
    flex-direction: column;
  }
  
  .joint-split-media {
    min-height: 300px;
    height: 40vh;
  }
  
  .joint-deck-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .joint-booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .joint-booking-hero {
    padding-top: 8rem;
  }
}

@media (max-width: 768px) {
  /* Hamburger trigger display */
  .joint-hamburger-button {
    display: flex;
  }

  .joint-nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .joint-menu-checkbox:checked ~ .joint-nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Hamburger transform animation */
  .joint-menu-checkbox:checked + .joint-hamburger-button .joint-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .joint-menu-checkbox:checked + .joint-hamburger-button .joint-hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .joint-menu-checkbox:checked + .joint-hamburger-button .joint-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .joint-hero-glass-core {
    padding: 2rem;
  }

  .joint-timeline-track {
    padding-left: 2rem;
  }

  .joint-timeline-axis {
    left: 9px;
  }

  .joint-timeline-marker {
    left: -32px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .joint-landscape-content {
    padding: 1.5rem;
  }

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

  .joint-registration-card {
    padding: 1.5rem;
  }

  .joint-footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .joint-footer-links {
    justify-content: center;
  }

  .joint-cookie-box {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}