/* THEMATIC VARIABLE SET UP - Bold Accent Concept (Colorful) */
:root {
  --tempo-bg-base: #0B132B;
  --tempo-bg-pure: #FFFFFF;
  --tempo-bg-soft: #F4F7F6;
  --tempo-accent-prime: #FF4D6D;
  --tempo-accent-deep: #E01E5A;
  --tempo-accent-light: #FF85A2;
  --tempo-tone-sec: #2A9D8F;
  --tempo-ink-dark: #1D242B;
  --tempo-ink-gray: #6C7A89;
  --tempo-ink-pale: #E4E7EB;
  --tempo-ink-light: #FFFFFF;
  
  --tempo-gradient-bold: linear-gradient(135deg, #FF4D6D 0%, #E01E5A 100%);
  --tempo-gradient-dark: linear-gradient(135deg, #0B132B 0%, #1C2541 100%);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --radius-soft: 16px;
  --radius-pill: 999px;
  --box-shadow-raised: 0 10px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-deep: 0 15px 45px rgba(224, 30, 90, 0.15);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--tempo-ink-dark);
  background-color: var(--tempo-bg-pure);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Scroll Progress Tracker */
.vital-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--tempo-accent-prime);
  width: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes progress-grow {
  to { width: 100%; }
}

/* Header Styles - Accent background (Bold Accent Preset C) */
.pulse-site-header {
  background: var(--tempo-gradient-bold);
  color: var(--tempo-ink-light);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--box-shadow-raised);
}

.pulse-header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-logo-svg {
  width: 32px;
  height: 32px;
  color: var(--tempo-ink-light);
}

.pulse-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.pulse-menu-checkbox {
  display: none;
}

.pulse-burger-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.pulse-burger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--tempo-ink-light);
  transition: all 0.3s ease;
}

.pulse-main-nav {
  display: block;
}

.pulse-nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.pulse-nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.pulse-nav-link:hover, .pulse-link-active {
  color: var(--tempo-ink-light);
  border-bottom: 2px solid var(--tempo-ink-light);
}

/* Buttons */
.vital-accent-pill-button {
  display: inline-block;
  background-color: var(--tempo-ink-light);
  color: var(--tempo-accent-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  border: 2px solid var(--tempo-ink-light);
  box-shadow: var(--box-shadow-raised);
  text-align: center;
  cursor: pointer;
}

.vital-accent-pill-button:hover {
  background-color: transparent;
  color: var(--tempo-ink-light);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-deep);
}

.vital-light-pill-button {
  display: inline-block;
  background-color: var(--tempo-accent-prime);
  color: var(--tempo-ink-light);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  border: 2px solid var(--tempo-accent-prime);
  text-align: center;
  cursor: pointer;
}

.vital-light-pill-button:hover {
  background-color: transparent;
  color: var(--tempo-accent-prime);
  transform: translateY(-3px);
}

/* HERO SECTION - Preset C: Fullscreen gradient, giant background numbers, abstract shapes */
.vital-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--tempo-gradient-dark);
  color: var(--tempo-ink-light);
  padding: 10dvh 2rem;
  overflow: hidden;
}

.vital-hero-bg-number {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 20rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--tempo-ink-light);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
}

.vital-hero-bg-number.font-small {
  font-size: 15rem;
}

.vital-hero-shape-one {
  position: absolute;
  right: 15%;
  top: 15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--tempo-accent-prime);
  opacity: 0.15;
  filter: blur(50px);
  pointer-events: none;
}

.vital-hero-shape-two {
  position: absolute;
  right: 5%;
  bottom: 25%;
  width: 200px;
  height: 200px;
  background-color: var(--tempo-tone-sec);
  opacity: 0.1;
  filter: blur(40px);
  transform: rotate(45deg);
  pointer-events: none;
}

.vital-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 10;
}

.vital-hero-text-block {
  max-width: 700px;
}

.vital-hero-main-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.vital-hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--tempo-ink-pale);
  font-weight: 300;
}

/* CONTENT SECTION - Preset C: Clip-path diagonal edges on bg2.webp */
.diagonal-promo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 14dvh 2rem;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagonal-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 19, 43, 0.85);
  z-index: 1;
}

.diagonal-promo-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  color: var(--tempo-ink-light);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagonal-promo-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--tempo-accent-prime);
}

.diagonal-promo-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--tempo-ink-pale);
}

/* FEATURES SECTION - Preset C: 3-column grid with big numbers, no border */
.nums-grid-layout {
  padding: 10dvh 2rem;
  background-color: var(--tempo-bg-soft);
}

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

.nums-grid-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nums-grid-main-title {
  font-size: 2.5rem;
  color: var(--tempo-bg-base);
  margin-bottom: 1rem;
}

.nums-grid-subtitle {
  font-size: 1.1rem;
  color: var(--tempo-ink-gray);
}

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

.nums-grid-item {
  background-color: var(--tempo-bg-pure);
  padding: 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--box-shadow-raised);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nums-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.nums-grid-big-digit {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--tempo-accent-prime);
  line-height: 1;
  margin-bottom: 1rem;
}

.nums-grid-item-title {
  font-size: 1.25rem;
  color: var(--tempo-bg-base);
  margin-bottom: 1rem;
}

.nums-grid-item-desc {
  font-size: 0.95rem;
  color: var(--tempo-ink-gray);
}

/* HOW IT WORKS SECTION - Preset C: Horizontal steps with solid connector, alternating circles */
.timeline-steps-track {
  padding: 10dvh 2rem;
  background-color: var(--tempo-bg-pure);
}

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

.timeline-steps-main-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--tempo-bg-base);
}

.timeline-steps-intro-text {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 5rem;
  color: var(--tempo-ink-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-steps-flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* Connective Line */
.timeline-steps-flex::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--tempo-accent-prime);
  z-index: 1;
}

.timeline-step-point {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.timeline-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.timeline-circle-filled {
  background-color: var(--tempo-accent-prime);
  color: var(--tempo-ink-light);
  border: 4px solid var(--tempo-bg-pure);
}

.timeline-circle-outline {
  background-color: var(--tempo-bg-pure);
  color: var(--tempo-accent-deep);
  border: 4px solid var(--tempo-accent-prime);
}

.timeline-step-title {
  font-size: 1.2rem;
  color: var(--tempo-bg-base);
  margin-bottom: 0.5rem;
}

.timeline-step-desc {
  font-size: 0.9rem;
  color: var(--tempo-ink-gray);
}

/* CTA STRIP - Preset C: Dark BG, large bold H2 left, pill button right */
.cta-action-strip {
  background: var(--tempo-gradient-dark);
  color: var(--tempo-ink-light);
  padding: 5rem 2rem;
}

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

.cta-strip-title {
  font-size: 2.2rem;
  font-weight: 900;
  max-width: 700px;
}

.cta-strip-title.font-medium-size {
  font-size: 1.8rem;
}

/* EXPERT PAGE SPLIT CONTENT - Preset C: bg2.webp right 45% + text left 55% */
.expert-split-section {
  padding: 10dvh 2rem;
  background-color: var(--tempo-bg-pure);
}

.expert-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.expert-split-text {
  flex: 0 0 55%;
}

.expert-split-image-box {
  flex: 0 0 45%;
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-soft);
  box-shadow: var(--box-shadow-raised);
}

.expert-split-heading {
  font-size: 2.2rem;
  color: var(--tempo-bg-base);
  margin-bottom: 1.5rem;
}

.expert-split-paragraph {
  font-size: 1.05rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 1.25rem;
}

/* STATS ROW SECTION - Preset C: 4 stats vertical blocks in a row */
.stats-row-section {
  background-color: var(--tempo-bg-soft);
  padding: 6rem 2rem;
}

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

.stat-card {
  background-color: var(--tempo-bg-pure);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-soft);
  text-align: center;
  box-shadow: var(--box-shadow-raised);
  border-top: 4px solid var(--tempo-accent-prime);
}

.stat-card-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--tempo-accent-deep);
  margin-bottom: 0.5rem;
}

.stat-card-label {
  font-size: 0.95rem;
  color: var(--tempo-ink-gray);
  font-weight: 600;
}

/* FINAL EXPERT PROMO SECTION - bg3.webp with overlay and text */
.final-expert-promo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 12dvh 2rem;
  color: var(--tempo-ink-light);
  text-align: center;
}

.final-expert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 19, 43, 0.85);
  z-index: 1;
}

.final-expert-content-box {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.final-expert-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.final-expert-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--tempo-ink-pale);
}

/* RESERVE PAGE - Preset C: 2 columns - left 60% Form / right 40% Info-cards */
.booking-layout-section {
  padding: 10dvh 2rem;
  background-color: var(--tempo-bg-soft);
}

.booking-layout-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
}

.booking-form-column {
  flex: 0 0 60%;
  background-color: var(--tempo-bg-pure);
  padding: 3.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--box-shadow-raised);
}

.booking-info-column {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-form-title {
  font-size: 2.2rem;
  color: var(--tempo-bg-base);
  margin-bottom: 1rem;
}

.booking-form-subtext {
  font-size: 1rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 2.5rem;
}

.booking-native-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--tempo-bg-base);
}

.booking-form-input, .booking-form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--tempo-ink-pale);
  border-radius: var(--radius-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.booking-form-input:focus, .booking-form-textarea:focus {
  border-color: var(--tempo-accent-prime);
}

.booking-form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.booking-custom-checkbox {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.booking-checkbox-label {
  font-size: 0.85rem;
  color: var(--tempo-ink-gray);
}

.booking-checkbox-label a {
  color: var(--tempo-accent-deep);
  text-decoration: underline;
}

.booking-support-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tempo-ink-pale);
  font-size: 0.9rem;
  color: var(--tempo-ink-gray);
}

.booking-mail-link {
  color: var(--tempo-accent-deep);
  font-weight: 600;
}

/* Info Cards styling */
.booking-info-card {
  background-color: var(--tempo-bg-pure);
  padding: 2.5rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--box-shadow-raised);
}

.booking-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-card-icon {
  font-size: 1.75rem;
}

.booking-card-title {
  font-size: 1.25rem;
  color: var(--tempo-bg-base);
}

.booking-card-description {
  font-size: 0.95rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 1.5rem;
}

.booking-card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-card-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--tempo-ink-dark);
}

.booking-card-bullets li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--tempo-accent-prime);
  color: var(--tempo-ink-light);
  font-size: 0.75rem;
  font-weight: 700;
}

/* FAQ SECTION - CSS Only Accordion with Details */
.faq-accordion-section {
  padding: 8rem 2rem;
  background-color: var(--tempo-bg-pure);
}

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

.faq-section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--tempo-bg-base);
  margin-bottom: 0.5rem;
}

.faq-section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--tempo-ink-gray);
  margin-bottom: 4rem;
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-details-item {
  background-color: var(--tempo-bg-soft);
  border-radius: var(--radius-soft);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--tempo-ink-pale);
}

.faq-summary-title {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
  user-select: none;
  color: var(--tempo-bg-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-summary-title::-webkit-details-marker {
  display: none;
}

.faq-summary-title::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--tempo-accent-prime);
  transition: transform 0.3s ease;
}

.faq-details-item[open] .faq-summary-title::after {
  transform: rotate(45deg);
}

.faq-content-pane {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--tempo-ink-gray);
  font-size: 0.95rem;
}

/* LEGIBILITY/TEXTUAL PAGES (Privacy & Terms) */
.textual-layout-main {
  background-color: var(--tempo-bg-soft);
  padding: 6rem 2rem;
  min-height: 100vh;
}

.textual-layout-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--tempo-bg-pure);
  padding: 4rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--box-shadow-raised);
}

.textual-layout-title {
  font-size: 2.5rem;
  color: var(--tempo-bg-base);
  margin-bottom: 0.5rem;
}

.textual-layout-date {
  font-size: 0.9rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--tempo-ink-pale);
  padding-bottom: 1rem;
}

.textual-block {
  margin-bottom: 2.5rem;
}

.textual-block-heading {
  font-size: 1.4rem;
  color: var(--tempo-bg-base);
  margin-bottom: 1rem;
}

.textual-subheading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--tempo-accent-deep);
  margin: 1.25rem 0 0.5rem 0;
}

.textual-block p {
  font-size: 1rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 1rem;
}

/* THANK YOU PAGE STYLING */
.thanks-layout-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tempo-bg-soft);
  padding: 4rem 2rem;
}

.thanks-promo-block {
  position: relative;
  max-width: 800px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--box-shadow-deep);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--tempo-ink-light);
}

.thanks-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 19, 43, 0.9);
  z-index: 1;
}

.thanks-promo-content {
  position: relative;
  z-index: 10;
}

.thanks-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--tempo-accent-prime);
  color: var(--tempo-ink-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thanks-promo-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.thanks-promo-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--tempo-ink-pale);
  font-weight: 300;
}

.thanks-promo-secondary-text {
  font-size: 0.95rem;
  color: var(--tempo-ink-gray);
  margin-bottom: 2.5rem;
}

/* Footer Styles */
.pulse-site-footer {
  background-color: var(--tempo-bg-base);
  color: var(--tempo-ink-light);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 4px solid var(--tempo-accent-prime);
}

.pulse-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.pulse-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pulse-footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  line-height: 1.5;
}

.pulse-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.pulse-footer-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-transform: uppercase;
}

.pulse-footer-link:hover {
  color: var(--tempo-accent-prime);
}

.pulse-footer-copy {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Cookie Banner Styles */
.cookie-banner-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--tempo-bg-base);
  color: var(--tempo-ink-light);
  z-index: 9999;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  border-top: 3px solid var(--tempo-accent-prime);
  display: none;
}

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

.cookie-banner-text {
  font-size: 0.9rem;
  color: var(--tempo-ink-pale);
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--tempo-accent-prime);
  color: var(--tempo-ink-light);
}

.cookie-btn-accept:hover {
  background-color: var(--tempo-accent-deep);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--tempo-ink-pale);
  border: 1px solid var(--tempo-ink-pale);
}

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

/* Helper Utilities */
.w-full {
  width: 100%;
}

/* RESPONSIVENESS AND MOBILE ADAPTATION */
@media (max-width: 991px) {
  .pulse-burger-label {
    display: flex;
  }

  .pulse-main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tempo-gradient-bold);
    box-shadow: var(--box-shadow-raised);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .pulse-nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
  }

  .pulse-menu-checkbox:checked ~ .pulse-main-nav {
    max-height: 350px;
  }

  .pulse-menu-checkbox:checked ~ .pulse-burger-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .pulse-menu-checkbox:checked ~ .pulse-burger-label span:nth-child(2) {
    opacity: 0;
  }

  .pulse-menu-checkbox:checked ~ .pulse-burger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .vital-hero-main-title {
    font-size: 2.5rem;
  }

  .nums-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-steps-flex {
    flex-direction: column;
    gap: 3rem;
  }

  .timeline-steps-flex::before {
    display: none;
  }

  .cta-strip-container {
    flex-direction: column;
    text-align: center;
  }

  .expert-split-container {
    flex-direction: column-reverse;
  }

  .expert-split-text, .expert-split-image-box {
    flex: 0 0 100%;
    width: 100%;
  }

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

  .booking-layout-container {
    flex-direction: column;
  }

  .booking-form-column, .booking-info-column {
    flex: 0 0 100%;
    width: 100%;
  }

  .pulse-footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pulse-footer-links {
    align-items: center;
  }

  .pulse-footer-copy {
    grid-column: span 1;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .stats-row-container {
    grid-template-columns: 1fr;
  }

  .textual-layout-card {
    padding: 2rem 1.5rem;
  }

  .textual-layout-title {
    font-size: 2rem;
  }

  .booking-form-column {
    padding: 2rem 1.5rem;
  }
}