:root {
  --visio-bg-base: #0B0F19;
  --visio-bg-surface: #131B2E;
  --visio-bg-card: #1C273E;
  --visio-light-zone: #F4F7FA;
  --visio-light-card: #FFFFFF;
  --visio-brand-glow: #00E5FF;
  --visio-accent-teal: #00B4D8;
  --visio-accent-hover: #0096C7;
  --visio-text-bright: #FFFFFF;
  --visio-text-subtle: #94A3B8;
  --visio-text-dark: #0F172A;
  --visio-text-muted: #475569;
  --visio-border-glow: rgba(0, 229, 255, 0.25);
  --visio-border-light: #E2E8F0;
  --visio-main-gradient: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
  --visio-hero-overlay: linear-gradient(180deg, rgba(11, 15, 25, 0.75) 0%, rgba(11, 15, 25, 0.95) 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* RESET & GENERAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body.vis-body-dark {
  background-color: var(--visio-bg-base);
  color: var(--visio-text-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* SCROLL PROGRESS BAR */
.vis-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--visio-brand-glow);
  width: 100%;
  transform-origin: 0 50%;
  z-index: 10000;
}

@supports (animation-timeline: scroll()) {
  .vis-scroll-progress {
    animation: visProgress linear;
    animation-timeline: scroll();
  }
  @keyframes visProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
}

/* SCROLL FADE ANIMATION */
@supports (animation-timeline: view()) {
  .vis-scroll-fade {
    animation: visFadeIn auto linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 25%;
  }
  @keyframes visFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* HEADER PRESET A (DARK & STICKY) */
.vis-site-hdr {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--visio-bg-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.vis-hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--visio-text-bright);
}

.vis-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--visio-brand-glow);
}

.vis-brand-txt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.vis-nav-check {
  display: none;
}

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

.vis-hamburger-btn span {
  width: 24px;
  height: 2px;
  background-color: var(--visio-text-bright);
  transition: all 0.3s ease;
}

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

.vis-nav-link {
  color: var(--visio-text-subtle);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.vis-nav-link:hover,
.vis-nav-link.vis-active {
  color: var(--visio-brand-glow);
}

.vis-nav-cta {
  background: var(--visio-main-gradient);
  color: var(--visio-text-bright) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vis-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* HERO SECTION (PRESET A: FULLSCREEN + OVERLAY + FLOATING STAT BAR) */
.vis-hero-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6dvh 1.5rem 100px 1.5rem;
}

.vis-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vis-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-hero-shade {
  position: absolute;
  inset: 0;
  background: var(--visio-hero-overlay);
}

.vis-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.vis-tag-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--visio-border-glow);
  color: var(--visio-brand-glow);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.vis-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--visio-text-bright);
  margin-bottom: 1.25rem;
}

.vis-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--visio-text-subtle);
  margin-bottom: 2.2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.vis-btn-primary {
  display: inline-block;
  background: var(--visio-main-gradient);
  color: var(--visio-text-bright);
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vis-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.5);
}

/* FLOATING STAT BAR (PRESET A: -60px MARGIN-TOP, RELATIVE) */
.vis-stat-float-bar {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  width: 100%;
  margin: -60px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 0 1.5rem;
}

.vis-stat-float-item {
  background-color: var(--visio-bg-card);
  border: 1px solid var(--visio-border-glow);
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.vis-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--visio-brand-glow);
  margin-bottom: 0.25rem;
}

.vis-stat-lbl {
  font-size: 0.85rem;
  color: var(--visio-text-subtle);
  line-height: 1.3;
}

/* HERO MINIMAL FOR SUBPAGES */
.vis-hero-mini {
  position: relative;
  padding: 8dvh 1.5rem;
  text-align: center;
}

.vis-hero-mini-body {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

/* ZIGZAG SECTION */
.vis-zigzag-section {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.vis-zigzag-row {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.vis-zigzag-reverse {
  flex-direction: row-reverse;
}

.vis-zigzag-media {
  flex: 0 0 45%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.vis-zigzag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-clip-right img {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.vis-clip-left img {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.vis-zigzag-text {
  flex: 1;
}

.vis-section-kicker {
  color: var(--visio-brand-glow);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}

.vis-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.vis-paragraph {
  color: var(--visio-text-subtle);
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* FEATURES SECTION PRESET A (2-ROW GRID, BORDER-LEFT ACCENT) */
.vis-feat-section {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vis-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.vis-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.vis-feat-card {
  background-color: var(--visio-bg-card);
  border-left: 4px solid var(--visio-brand-glow);
  padding: 2rem;
  border-radius: 0 16px 16px 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vis-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.15);
}

.vis-feat-icon-wrap {
  width: 46px;
  height: 46px;
  color: var(--visio-brand-glow);
  margin-bottom: 1.25rem;
}

.vis-feat-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.vis-feat-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--visio-text-bright);
}

.vis-feat-desc {
  color: var(--visio-text-subtle);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* TIMELINE HOW IT WORKS (PRESET A: VERTICAL TIMELINE) */
.vis-timeline-section {
  padding: 10dvh 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vis-timeline-wrap {
  position: relative;
  margin-top: 3rem;
}

.vis-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--visio-border-glow);
  transform: translateX(-50%);
}

.vis-timeline-step {
  position: relative;
  display: flex;
  margin-bottom: 3.5rem;
  width: 100%;
}

.vis-step-left {
  justify-content: flex-end;
  padding-right: 50%;
}

.vis-step-right {
  justify-content: flex-start;
  padding-left: 50%;
}

.vis-timeline-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--visio-main-gradient);
  color: var(--visio-text-bright);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.vis-timeline-card {
  background-color: var(--visio-bg-card);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 85%;
}

.vis-step-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* CTA PARALLAX STRIP */
.vis-cta-parallax {
  position: relative;
  padding: 10dvh 1.5rem;
  text-align: center;
  overflow: hidden;
}

.vis-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.vis-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.85);
  z-index: 2;
}

.vis-cta-box {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}

.vis-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.vis-cta-desc {
  color: var(--visio-text-subtle);
  margin-bottom: 2rem;
}

/* EXPERT PAGE LIGHT WRAPPER */
.vis-light-wrapper {
  background-color: var(--visio-light-zone);
  color: var(--visio-text-dark);
  padding: 8dvh 1.5rem;
}

.vis-light-wrapper .vis-section-heading {
  color: var(--visio-text-dark);
}

.vis-light-wrapper .vis-paragraph {
  color: var(--visio-text-muted);
}

.vis-stats-row {
  max-width: 1100px;
  margin: 0 auto 5rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.vis-stat-box {
  background: var(--visio-light-card);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.vis-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--visio-accent-teal);
  margin-bottom: 0.25rem;
}

.vis-split-section {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.vis-split-img-holder {
  flex: 0 0 50%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vis-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-split-info {
  flex: 1;
}

.vis-bullet-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--visio-text-dark);
}

.vis-bullet-item svg {
  width: 20px;
  height: 20px;
  color: var(--visio-accent-teal);
  flex-shrink: 0;
}

.vis-cta-section {
  padding: 8dvh 1.5rem;
  text-align: center;
}

.vis-cta-inner-card {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--visio-bg-card);
  padding: 3.5rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--visio-border-glow);
}

.vis-bg2-feature-zone {
  position: relative;
  padding: 10dvh 1.5rem;
  text-align: center;
}

.vis-bg2-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.vis-bg2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.88);
}

.vis-bg2-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

/* RESERVE PAGE MODULE CARDS & FORM */
.vis-modules-grid {
  max-width: 1100px;
  margin: 0 auto 4rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vis-module-card {
  background: var(--visio-light-card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.vis-module-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.vis-module-icon {
  width: 28px;
  height: 28px;
  color: var(--visio-accent-teal);
}

.vis-module-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--visio-text-dark);
}

.vis-module-desc {
  color: var(--visio-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.vis-num-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vis-num-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--visio-text-dark);
}

.vis-num-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--visio-accent-teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FORM CONTAINER MAX-WIDTH 600PX */
.vis-form-container {
  max-width: 600px;
  margin: 0 auto 5rem auto;
  background: var(--visio-light-card);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.vis-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vis-field-group {
  margin-bottom: 1.25rem;
}

.vis-field-lbl {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--visio-text-dark);
}

.vis-input-ctrl {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--visio-border-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #F8FAFC;
  transition: border-color 0.25s ease;
}

.vis-input-ctrl:focus {
  outline: none;
  border-color: var(--visio-accent-teal);
  background-color: #FFFFFF;
}

.vis-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vis-check-ctrl {
  margin-top: 0.2rem;
}

.vis-check-lbl {
  font-size: 0.85rem;
  color: var(--visio-text-muted);
}

.vis-check-lbl a {
  color: var(--visio-accent-teal);
  text-decoration: underline;
}

.vis-btn-block {
  width: 100%;
  text-align: center;
}

.vis-contact-direct {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--visio-text-muted);
}

.vis-mail-link {
  color: var(--visio-accent-teal);
  font-weight: 600;
  text-decoration: none;
}

/* FAQ ACCORDION (CSS ONLY) */
.vis-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.vis-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-faq-item {
  background: var(--visio-light-card);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.vis-faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--visio-text-dark);
  cursor: pointer;
}

.vis-faq-answer {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--visio-text-muted);
}

/* THANK YOU PAGE */
.vis-thank-wrapper {
  padding: 10dvh 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vis-thank-card {
  background-color: var(--visio-bg-card);
  border: 1px solid var(--visio-border-glow);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vis-thank-media {
  height: 260px;
}

.vis-thank-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-thank-body {
  padding: 3rem 2rem;
  text-align: center;
}

.vis-check-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--visio-main-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.vis-check-circle svg {
  width: 32px;
  height: 32px;
}

/* POLICY PAGES */
.vis-policy-layout {
  padding: 8dvh 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vis-policy-card {
  background-color: var(--visio-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  min-height: 60vh;
}

.vis-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

/* FOOTER PRESET A (DARK FOOTER) */
.vis-site-ftr {
  background-color: var(--visio-bg-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.5rem 2rem 1.5rem;
  color: var(--visio-text-subtle);
  font-size: 0.9rem;
}

.vis-ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vis-ftr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vis-ftr-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vis-ftr-links a {
  color: var(--visio-text-subtle);
  text-decoration: none;
  transition: color 0.25s ease;
}

.vis-ftr-links a:hover {
  color: var(--visio-brand-glow);
}

.vis-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.vis-ftr-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* COOKIE BANNER FIXED */
.vis-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0F172A;
  border-top: 2px solid var(--visio-brand-glow);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

.vis-cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vis-cookie-content p {
  font-size: 0.9rem;
  color: var(--visio-text-subtle);
  flex: 1;
  min-width: 280px;
}

.vis-cookie-btns {
  display: flex;
  gap: 0.75rem;
}

.vis-cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}

.vis-cookie-accept {
  background: var(--visio-brand-glow);
  color: var(--visio-bg-base);
}

.vis-cookie-decline {
  background: transparent;
  color: var(--visio-text-subtle);
  border: 1px solid var(--visio-text-subtle);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .vis-zigzag-row,
  .vis-zigzag-reverse,
  .vis-split-section {
    flex-direction: column;
  }

  .vis-zigzag-media,
  .vis-split-img-holder {
    width: 100%;
    flex: none;
    height: 280px;
  }

  .vis-clip-right img,
  .vis-clip-left img {
    clip-path: none;
  }

  .vis-timeline-line {
    left: 20px;
  }

  .vis-timeline-badge {
    left: 20px;
  }

  .vis-step-left,
  .vis-step-right {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .vis-timeline-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .vis-hamburger-btn {
    display: flex;
  }

  .vis-nav-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--visio-bg-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .vis-nav-check:checked ~ .vis-nav-items {
    display: flex;
  }

  .vis-stat-float-bar {
    margin-top: -30px;
  }
}