/* --- CUSTOM THEMATIC VARIABLES --- */
:root {
  --vis-deep-ocean: #090d16;
  --vis-aurora-bg: #f8fafc;
  --vis-slate-ink: #1e293b;
  --vis-clean-white: #ffffff;
  
  /* Brand gradients & actions */
  --vis-electric-sky: #0284c7;
  --vis-sunset-amber: #f59e0b;
  --vis-spectrum-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --vis-surface-gray: #f1f5f9;
  
  /* Layout settings */
  --vis-radius-soft: 16px;
  --vis-radius-pill: 999px;
  --vis-shadow-raised: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --vis-shadow-deep: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
  
  /* Typography */
  --vis-font-heading: 'Montserrat', sans-serif;
  --vis-font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--vis-font-body);
  color: var(--vis-slate-ink);
  background-color: var(--vis-aurora-bg);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vis-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vis-deep-ocean);
}

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

/* --- LAYOUT SHELL --- */
.vis-layout-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SCROLL PROGRESS --- */
@keyframes progress-grow {
  to { width: 100%; }
}
.vis-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vis-sunset-amber);
  width: 0%;
  z-index: 10001;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* --- HEADER SYSTEM (Preset F Gradient) --- */
.vis-top-navigation {
  background: var(--vis-spectrum-gradient);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--vis-shadow-raised);
}

.vis-navigation-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vis-brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vis-clean-white);
}

.vis-brand-icon {
  width: 32px;
  height: 32px;
}

.vis-brand-text {
  font-family: var(--vis-font-heading);
  font-weight: 950;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Navigation items */
.vis-nav-anchors {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vis-nav-item {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}

.vis-nav-item:hover,
.vis-active-link {
  color: var(--vis-clean-white);
}

.vis-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--vis-sunset-amber);
  transition: width 0.3s ease;
}

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

/* Hamburger menu (CSS-Only) */
.vis-menu-checkbox {
  display: none;
}

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

.vis-hamburger-button span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vis-clean-white);
  transition: all 0.3s ease;
}

/* --- HERO SHOWCASE (Preset F Centered + Stats) --- */
.vis-main-showcase {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12dvh 0 16dvh;
  text-align: center;
  color: var(--vis-clean-white);
}

.vis-showcase-inner {
  max-width: 850px;
  margin: 0 auto;
}

.vis-hero-heading-main {
  color: var(--vis-clean-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.vis-hero-sub-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 700px;
  margin-inline: auto;
}

/* Action Triggers */
.vis-action-holder {
  margin-bottom: 64px;
}

.vis-action-trigger {
  display: inline-block;
  background-color: var(--vis-sunset-amber);
  color: var(--vis-deep-ocean);
  font-family: var(--vis-font-heading);
  font-weight: 900;
  padding: 18px 48px;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vis-action-trigger:hover {
  background-color: #f5b02b;
  transform: translateY(-3px);
  box-shadow: var(--vis-shadow-deep);
}

/* Animated Counters Block */
.vis-stat-counters-holder {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vis-counter-slot {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 24px 40px;
  border-radius: var(--vis-radius-soft);
  min-width: 220px;
  border: 1px rgba(255, 255, 255, 0.15) solid;
  box-shadow: var(--vis-shadow-raised);
}

.vis-counter-num {
  display: block;
  font-family: var(--vis-font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--vis-sunset-amber);
  margin-bottom: 6px;
}

.vis-counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* Trust list */
.vis-trust-strip {
  border-top: 1px rgba(255, 255, 255, 0.15) solid;
  padding-top: 32px;
  margin-top: 64px;
}

.vis-trust-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.vis-trust-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: var(--vis-font-heading);
  font-weight: 700;
}

.vis-trust-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.vis-trust-logo-item {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- SECTION GENERAL STYLES --- */
.vis-section-title-main {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.vis-section-subtitle-main {
  text-align: center;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
}

/* --- HORIZONTAL TRACK MOBILE / DESKTOP (Preset F Content) --- */
.vis-journal-editorial {
  background-size: cover;
  background-position: center;
  padding: 10dvh 0;
  color: var(--vis-clean-white);
}

.vis-journal-editorial .vis-section-title-main {
  color: var(--vis-clean-white);
}

.vis-journal-editorial .vis-section-subtitle-main {
  color: rgba(255, 255, 255, 0.7);
}

.vis-horizontal-scroller {
  display: flex;
  gap: 24px;
}

.vis-editorial-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: var(--vis-radius-soft);
  border: 1px rgba(255, 255, 255, 0.1) solid;
  transition: all 0.3s ease;
  box-shadow: var(--vis-shadow-raised);
}

.vis-editorial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.vis-card-num-indicator {
  font-family: var(--vis-font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--vis-sunset-amber);
  opacity: 0.85;
  margin-bottom: 20px;
}

.vis-card-title-item {
  color: var(--vis-clean-white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.vis-card-desc-item {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- FEATURES GRID (Preset F 2x3 Grid with color-flip) --- */
.vis-bento-grid-features {
  padding: 10dvh 0;
  background-color: var(--vis-aurora-bg);
}

.vis-grid-features-structure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vis-feature-item-grid {
  background: var(--vis-clean-white);
  padding: 40px;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
  border-left: 5px solid var(--vis-electric-sky);
  transition: transform 0.3s ease, background-color 0.4s ease, color 0.4s ease;
}

.vis-feature-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vis-spectrum-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--vis-shadow-raised);
  transition: transform 0.3s ease;
}

.vis-svg-icon-shape {
  width: 32px;
  height: 32px;
}

.vis-feature-item-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.vis-feature-item-text {
  font-size: 1rem;
  color: #475569;
  transition: color 0.4s ease;
}

/* FEATURE HOVER COLOR FLIP EFFECT */
.vis-feature-item-grid:hover {
  background: var(--vis-spectrum-gradient);
  transform: translateY(-4px);
  border-left-color: var(--vis-sunset-amber);
}

.vis-feature-item-grid:hover .vis-feature-item-title {
  color: var(--vis-clean-white);
}

.vis-feature-item-grid:hover .vis-feature-item-text {
  color: rgba(255, 255, 255, 0.9);
}

.vis-feature-item-grid:hover .vis-feature-icon-circle {
  transform: rotate(360deg);
  background: var(--vis-clean-white);
}

.vis-feature-item-grid:hover .vis-svg-icon-shape {
  stroke: var(--vis-electric-sky);
}

/* --- STEPPER PROCESS SECTION --- */
.vis-stepper-process-section {
  padding: 10dvh 0;
  background-color: var(--vis-surface-gray);
}

.vis-stepper-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

/* Cross-connector line for steps */
.vis-stepper-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: rgba(99, 102, 241, 0.2);
  z-index: 1;
}

.vis-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vis-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--vis-clean-white);
  border: 4px solid var(--vis-electric-sky);
  color: var(--vis-electric-sky);
  font-family: var(--vis-font-heading);
  font-weight: 900;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--vis-shadow-raised);
}

.vis-step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vis-step-desc {
  font-size: 0.95rem;
  color: #475569;
  max-width: 280px;
  margin: 0 auto;
}

/* --- CTA BANNER (Preset F Flex Split) --- */
.vis-banner-cta-gradient {
  background: var(--vis-spectrum-gradient);
  padding: 8dvh 0;
  color: var(--vis-clean-white);
  box-shadow: var(--vis-shadow-deep);
}

.vis-cta-elements-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.vis-cta-text-side {
  flex: 1;
  min-width: 300px;
}

.vis-cta-main-title {
  color: var(--vis-clean-white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.vis-cta-sub-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.vis-action-trigger-dark {
  display: inline-block;
  background-color: var(--vis-deep-ocean);
  color: var(--vis-clean-white);
  font-family: var(--vis-font-heading);
  font-weight: 900;
  padding: 18px 48px;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vis-action-trigger-dark:hover {
  background-color: #1a2536;
  transform: translateY(-3px);
  box-shadow: var(--vis-shadow-deep);
}

/* --- SPECIFIC PAGES SUB HERO --- */
.vis-sub-hero-gradient {
  background: var(--vis-spectrum-gradient);
  padding: 8dvh 0;
  color: var(--vis-clean-white);
  text-align: center;
}

.vis-sub-hero-gradient .vis-hero-heading-main {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* --- EXPERT COMPONENT (Preset F 40/60 Layout) --- */
.vis-expert-layout-split {
  padding: 10dvh 0;
}

.vis-expert-row-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
}

.vis-expert-image-figure {
  flex: 2;
  border-radius: var(--vis-radius-soft);
  overflow: hidden;
  box-shadow: var(--vis-shadow-deep);
}

.vis-expert-pic {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.vis-expert-info-details {
  flex: 3;
}

.vis-expert-name-headline {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.vis-expert-role-badge {
  font-weight: 700;
  color: var(--vis-electric-sky);
  margin-bottom: 24px;
}

.vis-expert-story-paragraph {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.vis-expert-subheading {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.vis-expert-list-specs {
  list-style: none;
}

.vis-expert-list-specs li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 600;
}

.vis-expert-list-specs li::before {
  content: "✓";
  color: var(--vis-sunset-amber);
  font-weight: 950;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.vis-expert-metrics-strip {
  padding: 6dvh 0;
  background-color: var(--vis-surface-gray);
}

/* --- BOOKING RESERVATION COMPONENT --- */
.vis-booking-split-section {
  padding: 10dvh 0;
}

.vis-booking-flex-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.vis-booking-aside-info {
  flex: 2;
}

.vis-sticky-aside-content {
  position: sticky;
  top: 120px;
}

.vis-aside-main-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.vis-aside-summary {
  color: #64748b;
  margin-bottom: 32px;
}

.vis-aside-feature-strip {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.vis-aside-num-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--vis-surface-gray);
  color: var(--vis-slate-ink);
  font-weight: 900;
  font-family: var(--vis-font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vis-aside-title-small {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.vis-aside-desc-small {
  font-size: 0.9rem;
  color: #64748b;
}

.vis-aside-contact-direct {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px #e2e8f0 solid;
  font-weight: 700;
}

.vis-aside-mail-link {
  color: var(--vis-electric-sky);
}

.vis-booking-form-wrapper {
  flex: 3;
  background-color: var(--vis-clean-white);
  padding: 48px;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-deep);
  border: 1px #e2e8f0 solid;
}

.vis-form-title-h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.vis-form-intro-p {
  color: #64748b;
  margin-bottom: 32px;
}

/* Actual inputs details */
.vis-actual-form-element {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vis-form-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vis-form-label-tag {
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.vis-form-text-input,
.vis-form-text-area-input {
  width: 100%;
  padding: 16px;
  border: 2px #e2e8f0 solid;
  border-radius: var(--vis-radius-soft);
  font-family: var(--vis-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vis-form-text-input:focus,
.vis-form-text-area-input:focus {
  outline: none;
  border-color: var(--vis-electric-sky);
}

.vis-form-checkbox-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.vis-form-checkbox-control {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.vis-form-checkbox-label {
  font-size: 0.85rem;
  color: #475569;
}

.vis-embedded-link {
  color: var(--vis-electric-sky);
  font-weight: 700;
}

.vis-form-submit-trigger {
  width: 100%;
  background-color: var(--vis-sunset-amber);
  color: var(--vis-deep-ocean);
  border: none;
  padding: 18px;
  border-radius: var(--vis-radius-soft);
  font-family: var(--vis-font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--vis-shadow-raised);
  transition: all 0.3s ease;
}

.vis-form-submit-trigger:hover {
  background-color: #f5b02b;
  box-shadow: var(--vis-shadow-deep);
}

/* --- FAQ ACCORDION COMPONENT --- */
.vis-faq-accordion-section {
  padding: 10dvh 0;
  background-color: var(--vis-surface-gray);
}

.vis-faq-list-holder {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vis-faq-details-item {
  background-color: var(--vis-clean-white);
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
  overflow: hidden;
}

.vis-faq-summary-heading {
  padding: 24px;
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}

.vis-faq-expanded-content {
  padding: 0 24px 24px 24px;
  color: #475569;
  font-size: 0.95rem;
  border-top: 1px #f1f5f9 solid;
}

/* --- LEGAL AND STATIC PAGE COMPONENT --- */
.vis-static-legal-page {
  padding: 8dvh 0;
}

.vis-legal-content-box {
  background-color: var(--vis-clean-white);
  padding: 56px;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-raised);
  border: 1px #e2e8f0 solid;
}

.vis-legal-main-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.vis-legal-updated-label {
  color: #64748b;
  margin-bottom: 40px;
}

.vis-legal-section-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.vis-legal-paragraphs-wrap-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vis-legal-p-item {
  margin-bottom: 20px;
  color: #475569;
  font-size: 1.05rem;
}

.vis-legal-divider {
  border: 0;
  height: 1px;
  background-color: #cbd5e1;
  margin: 48px auto;
}

/* --- THANKS PAGE SPECIFICS --- */
.vis-thanks-page-container {
  min-height: calc(100vh - 80px);
}

.vis-thanks-hero {
  background-size: cover;
  background-position: center;
  padding: 12dvh 0;
  color: var(--vis-clean-white);
  text-align: center;
}

.vis-thanks-content-wrap {
  max-width: 750px;
  margin: 0 auto;
}

.vis-success-badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--vis-sunset-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: var(--vis-shadow-deep);
}

.vis-check-icon {
  width: 48px;
  height: 48px;
  stroke: var(--vis-deep-ocean);
}

.vis-thanks-sub-message {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.vis-brief-instructions {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: var(--vis-radius-soft);
  border: 1px rgba(255, 255, 255, 0.15) solid;
  text-align: left;
  margin-bottom: 48px;
}

.vis-inst-header-text {
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vis-inst-bullets-list {
  list-style: none;
}

.vis-inst-bullets-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.vis-inst-bullets-list li::before {
  content: "✔";
  color: var(--vis-sunset-amber);
  position: absolute;
  left: 0;
}

/* --- FOOTER GLOBAL --- */
.vis-footer-global {
  background-color: var(--vis-deep-ocean);
  color: var(--vis-clean-white);
  padding: 80px 0 32px;
  border-top: 5px solid var(--vis-sunset-amber);
}

.vis-footer-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.vis-footer-brand-column .vis-brand-identity {
  margin-bottom: 24px;
}

.vis-footer-brand-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  font-size: 0.95rem;
}

.vis-footer-heading-column {
  color: var(--vis-sunset-amber);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.vis-footer-link-item {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.vis-footer-link-item:hover {
  color: var(--vis-sunset-amber);
  padding-left: 6px;
}

.vis-footer-disclaimer-bar {
  border-top: 1px rgba(255, 255, 255, 0.1) solid;
  padding-top: 32px;
}

.vis-disclaimer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.vis-copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- COOKIE CONSENT BANNER --- */
.vis-cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--vis-deep-ocean);
  color: var(--vis-clean-white);
  border-top: 3px solid var(--vis-sunset-amber);
  padding: 24px 0;
  z-index: 10000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}

.vis-cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
  flex-wrap: wrap;
}

.vis-cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.vis-cookie-buttons-layout {
  display: flex;
  gap: 16px;
}

.vis-cookie-btn-action {
  padding: 12px 28px;
  border-radius: var(--vis-radius-soft);
  font-family: var(--vis-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

.vis-cookie-accept {
  background-color: var(--vis-sunset-amber);
  color: var(--vis-deep-ocean);
}

.vis-cookie-decline {
  background-color: rgba(255,255,255,0.15);
  color: var(--vis-clean-white);
}

.vis-cookie-btn-action:hover {
  opacity: 0.9;
}

/* --- ADAPTIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
  .vis-navigation-shell {
    height: 72px;
  }
  
  .vis-hamburger-button {
    display: flex;
    z-index: 1001;
  }
  
  .vis-nav-anchors {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 72px);
    background-color: var(--vis-deep-ocean);
    flex-direction: column;
    padding: 48px;
    gap: 32px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  }
  
  .vis-menu-checkbox:checked ~ .vis-nav-anchors {
    right: 0;
  }
  
  .vis-menu-checkbox:checked ~ .vis-hamburger-button span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .vis-menu-checkbox:checked ~ .vis-hamburger-button span:nth-child(2) {
    opacity: 0;
  }
  
  .vis-menu-checkbox:checked ~ .vis-hamburger-button span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .vis-grid-features-structure {
    grid-template-columns: 1fr;
  }
  
  .vis-stepper-row {
    flex-direction: column;
    gap: 48px;
  }
  
  .vis-stepper-row::before {
    display: none;
  }
  
  .vis-expert-row-wrap {
    flex-direction: column;
  }
  
  .vis-booking-flex-wrap {
    flex-direction: column;
  }
  
  .vis-booking-aside-info,
  .vis-booking-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .vis-horizontal-scroller {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
  }
  
  .vis-editorial-card {
    min-width: 290px;
    scroll-snap-align: start;
  }
  
  .vis-footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vis-legal-content-box {
    padding: 32px 24px;
  }
}