@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --vista-boreal-bg: #fdfdfd;
  --vista-boreal-surface: #ffffff;
  --vista-boreal-surface-dark: #121824;
  --vista-boreal-ink: #1e2530;
  --vista-boreal-ink-light: #ffffff;
  --vista-boreal-muted: #626e82;
  
  /* Preset C Focus: Bright Accent Theme */
  --vista-boreal-accent: #0f8b8d;
  --vista-boreal-accent-hover: #0b6d6f;
  --vista-boreal-vibrant: #ec9a29;
  --vista-boreal-vibrant-hover: #d3831b;
  --vista-boreal-gradient: linear-gradient(135deg, #0f8b8d 0%, #ec9a29 100%);
  --vista-boreal-gradient-dark: linear-gradient(135deg, #121824 0%, #1c2638 100%);
  --vista-boreal-gradient-soft: linear-gradient(135deg, rgba(15, 139, 141, 0.08) 0%, rgba(236, 154, 41, 0.08) 100%);
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --vista-boreal-radius-soft: 16px;
  --vista-boreal-shadow-raised: 0 10px 30px rgba(15, 139, 141, 0.12);
  --vista-boreal-shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.15);
  
  --vista-boreal-padding-spacious: 16dvh;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--vista-boreal-ink);
  background-color: var(--vista-boreal-bg);
}

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

/* Typography styles matching Preset C: uppercase headings, bold presentation */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Animations using scroll-driven APIs or fallback custom animation frames */
@keyframes vista-slide-up-frame {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Header style for Preset C: Accent background, white text/links */
.vista-header-bar {
  background: var(--vista-boreal-accent);
  color: var(--vista-boreal-ink-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--vista-boreal-shadow-raised);
}

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

.vista-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vista-brand-badge svg {
  stroke: var(--vista-boreal-ink-light);
}

.vista-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Mobile navigation checkbox mechanism */
.vista-menu-checkbox {
  display: none;
}

.vista-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.vista-hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--vista-boreal-ink-light);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.vista-link-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.vista-nav-item {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
}

.vista-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vista-boreal-vibrant);
  transition: width 0.3s ease;
}

.vista-nav-item:hover {
  color: var(--vista-boreal-vibrant);
}

.vista-nav-item:hover::after {
  width: 100%;
}

/* Progress-bar at top of the header */
.vista-scroll-progress {
  height: 4px;
  width: 0;
  background: var(--vista-boreal-vibrant);
  animation: vista-grow-bar linear;
  animation-timeline: scroll();
}

/* Index.html Hero for Preset C: Fullscreen gradient, massive background numbers */
.vista-jumbo-welcome {
  min-height: 90vh;
  position: relative;
  background: var(--vista-boreal-gradient);
  color: var(--vista-boreal-ink-light);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.vista-jumbo-welcome::before {
  content: '20/20';
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 24rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--vista-boreal-ink-light);
  opacity: 0.08;
  pointer-events: none;
  line-height: 1;
}

/* Decorative SVG shapes on the right */
.vista-decorative-shapes {
  position: absolute;
  right: 5%;
  top: 20%;
  width: 40%;
  height: 60%;
  pointer-events: none;
}

.vista-decorative-circle {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  top: 10%;
  right: 20%;
}

.vista-decorative-rect {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
}

.vista-jumbo-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 5;
}

.vista-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-hero-text-block h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.vista-hero-text-block p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  font-weight: 300;
}

/* Action button component (pill-button) */
.vista-action-button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background-color: var(--vista-boreal-vibrant);
  color: var(--vista-boreal-ink-light);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(236, 154, 41, 0.4);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vista-action-button-pill:hover {
  background-color: var(--vista-boreal-vibrant-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(236, 154, 41, 0.5);
}

/* Content block with bg2.webp and diagonal polygon borders (Preset C) */
.vista-diagonal-vision-banner {
  margin: var(--vista-boreal-padding-spacious) 0;
  position: relative;
  background: url('img/bg2.webp') no-repeat center center/cover;
  background-attachment: fixed;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: 12rem 2rem;
}

.vista-diagonal-vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 24, 36, 0.75);
  z-index: 1;
}

.vista-diagonal-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4rem 3rem;
  border-radius: var(--vista-boreal-radius-soft);
  color: var(--vista-boreal-ink-light);
}

.vista-diagonal-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--vista-boreal-vibrant);
}

.vista-diagonal-container p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Features block for Preset C: 3-column grid, giant numbers and no borders */
.vista-showcase-grid-panel {
  max-width: 1200px;
  margin: var(--vista-boreal-padding-spacious) auto;
  padding: 0 2rem;
}

.vista-section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.vista-section-header-centered h2 {
  font-size: 2.5rem;
  color: var(--vista-boreal-accent);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.vista-section-header-centered h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--vista-boreal-vibrant);
  margin: 0.75rem auto 0 auto;
  border-radius: 2px;
}

.vista-section-header-centered p {
  color: var(--vista-boreal-muted);
  font-size: 1.05rem;
}

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

.vista-feature-item-capsule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.vista-feature-item-capsule:hover {
  transform: translateY(-5px);
}

.vista-feature-big-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--vista-boreal-vibrant);
}

.vista-feature-item-capsule h3 {
  font-size: 1.3rem;
  color: var(--vista-boreal-accent);
}

.vista-feature-item-capsule p {
  color: var(--vista-boreal-muted);
  font-size: 0.95rem;
}

/* How It Works: Horizontal steps connected by solid color line (Preset C) */
.vista-step-by-step-track {
  background-color: var(--vista-boreal-gradient-soft);
  padding: var(--vista-boreal-padding-spacious) 2rem;
}

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

.vista-horiz-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
  gap: 2rem;
}

/* Horizontal line connector for steps */
.vista-horiz-steps-row::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--vista-boreal-accent);
  z-index: 1;
}

.vista-step-card-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

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

/* Alternating circle styles (filled/outline) as required by Preset C */
.vista-step-card-node:nth-child(odd) .vista-node-circle {
  background-color: var(--vista-boreal-accent);
  color: var(--vista-boreal-ink-light);
  border: 4px solid var(--vista-boreal-accent);
}

.vista-step-card-node:nth-child(even) .vista-node-circle {
  background-color: var(--vista-boreal-bg);
  color: var(--vista-boreal-accent);
  border: 4px solid var(--vista-boreal-accent);
}

.vista-step-card-node h4 {
  font-size: 1.15rem;
  color: var(--vista-boreal-ink);
}

.vista-step-card-node p {
  color: var(--vista-boreal-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

/* CTA Strip for Preset C: Dark background, large bold heading left + pill button right (flex-row, space-between) */
.vista-final-warning-strip {
  background: var(--vista-boreal-surface-dark);
  color: var(--vista-boreal-ink-light);
  padding: 6rem 2rem;
}

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

.vista-strip-flex-container h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  flex: 1;
}

.vista-strip-flex-container .vista-action-button-pill {
  flex-shrink: 0;
  align-self: center;
}

/* Expert Page Layout (Preset C) */
/* Hero section for inner pages */
.vista-inner-hero-panel {
  background: var(--vista-boreal-gradient);
  color: var(--vista-boreal-ink-light);
  padding: 8rem 2rem 5rem 2rem;
  text-align: center;
}

.vista-inner-hero-panel h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.vista-inner-hero-panel p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Content block: left block (55% text) + right block (45% image with bg2.webp) */
.vista-expert-split-segment {
  max-width: 1200px;
  margin: var(--vista-boreal-padding-spacious) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.vista-expert-bio-unit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-expert-bio-unit h2 {
  color: var(--vista-boreal-accent);
  font-size: 2.2rem;
}

.vista-expert-bio-unit p {
  color: var(--vista-boreal-muted);
  line-height: 1.8;
}

.vista-expert-bio-unit ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.vista-expert-bio-unit li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--vista-boreal-ink);
  font-weight: 600;
}

.vista-expert-bio-unit li svg {
  color: var(--vista-boreal-vibrant);
  flex-shrink: 0;
  margin-top: 3px;
}

.vista-expert-media-shield {
  background: url('img/bg2.webp') no-repeat center center/cover;
  min-height: 450px;
  border-radius: var(--vista-boreal-radius-soft);
  box-shadow: var(--vista-boreal-shadow-deep);
}

/* Row of 4 stats (Preset C) */
.vista-stat-strip {
  background-color: var(--vista-boreal-surface-dark);
  color: var(--vista-boreal-ink-light);
  padding: 5rem 2rem;
  text-align: center;
}

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

.vista-stat-capsule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vista-stat-capsule .vista-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vista-boreal-vibrant);
  line-height: 1;
}

.vista-stat-capsule .vista-stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Final Expert Section with bg3.webp */
.vista-expert-showcase-segment {
  max-width: 1200px;
  margin: var(--vista-boreal-padding-spacious) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.vista-expert-bg3-box {
  background: url('img/bg3.webp') no-repeat center center/cover;
  min-height: 400px;
  border-radius: var(--vista-boreal-radius-soft);
  box-shadow: var(--vista-boreal-shadow-deep);
}

/* Reserve Page Layout (Preset C) */
/* Columns layout: Left 60% Form / Right 40% Info cards */
.vista-reserve-grid-block {
  max-width: 1200px;
  margin: var(--vista-boreal-padding-spacious) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.vista-form-container-box {
  background-color: var(--vista-boreal-surface);
  border-radius: var(--vista-boreal-radius-soft);
  padding: 3rem;
  box-shadow: var(--vista-boreal-shadow-deep);
  border-top: 6px solid var(--vista-boreal-accent);
}

.vista-form-container-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--vista-boreal-accent);
}

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

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

.vista-form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--vista-boreal-ink);
}

.vista-form-input, .vista-form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e6eb;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background-color: #fafbfc;
}

.vista-form-input:focus, .vista-form-textarea:focus {
  outline: none;
  border-color: var(--vista-boreal-accent);
  background-color: var(--vista-boreal-surface);
}

.vista-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.vista-checkbox-group input {
  margin-top: 4px;
}

.vista-checkbox-label {
  font-size: 0.85rem;
  color: var(--vista-boreal-muted);
  line-height: 1.4;
}

.vista-checkbox-label a {
  color: var(--vista-boreal-accent);
  text-decoration: underline;
}

.vista-info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-inform-capsule {
  background-color: var(--vista-boreal-surface);
  padding: 2rem;
  border-radius: var(--vista-boreal-radius-soft);
  box-shadow: var(--vista-boreal-shadow-raised);
  border-left: 4px solid var(--vista-boreal-vibrant);
}

.vista-inform-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--vista-boreal-accent);
}

.vista-inform-header h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.vista-inform-capsule p {
  color: var(--vista-boreal-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.vista-numbered-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vista-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.vista-bullet-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--vista-boreal-vibrant);
  color: var(--vista-boreal-ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 900;
}

/* FAQ Accordion (CSS only, all initially open/unfolded view layout) */
.vista-faq-section-block {
  max-width: 900px;
  margin: var(--vista-boreal-padding-spacious) auto;
  padding: 0 2rem;
}

.vista-faq-details-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.vista-accordion-item {
  background-color: var(--vista-boreal-surface);
  border-radius: var(--vista-boreal-radius-soft);
  box-shadow: var(--vista-boreal-shadow-raised);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--vista-boreal-accent);
}

.vista-accordion-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--vista-boreal-accent);
  margin-bottom: 0.75rem;
}

.vista-accordion-content {
  color: var(--vista-boreal-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Policy and Terms content layout */
.vista-legal-wrapper {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.vista-legal-title {
  font-size: 2.5rem;
  color: var(--vista-boreal-accent);
  margin-bottom: 2rem;
  text-align: center;
}

.vista-legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--vista-boreal-muted);
  line-height: 1.8;
}

.vista-legal-content h2 {
  color: var(--vista-boreal-ink);
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

/* Thank you Page */
.vista-thank-you-frame {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--vista-boreal-gradient-soft);
}

.vista-thank-you-card {
  max-width: 600px;
  background-color: var(--vista-boreal-surface);
  border-radius: var(--vista-boreal-radius-soft);
  box-shadow: var(--vista-boreal-shadow-deep);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.vista-thank-you-image {
  width: 100%;
  height: 220px;
  background: url('img/bg3.webp') no-repeat center center/cover;
  border-radius: var(--vista-boreal-radius-soft);
}

.vista-thank-you-card h1 {
  font-size: 2.2rem;
  color: var(--vista-boreal-accent);
}

.vista-thank-you-card p {
  color: var(--vista-boreal-muted);
  font-size: 1.05rem;
}

/* Footer structure */
.vista-footer-bar {
  background-color: var(--vista-boreal-surface-dark);
  color: var(--vista-boreal-ink-light);
  padding: 5rem 2rem 2rem 2rem;
}

.vista-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  align-items: start;
}

.vista-company-desc {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-footer-links-row {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.vista-footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vista-footer-link-group h5 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--vista-boreal-vibrant);
}

.vista-footer-single-link {
  font-size: 0.85rem;
  opacity: 0.8;
}

.vista-footer-single-link:hover {
  opacity: 1;
  color: var(--vista-boreal-vibrant);
}

.vista-footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-disclaimer-paragraph {
  font-size: 0.8rem;
  opacity: 0.6;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.vista-copyright-row {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Cookie banner style */
.vista-cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vista-boreal-surface-dark);
  color: var(--vista-boreal-ink-light);
  z-index: 9999;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vista-cookie-banner-wrapper.is-activated {
  transform: translateY(0);
}

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

.vista-cookie-text-box {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 800px;
}

.vista-cookie-buttons-bundle {
  display: flex;
  gap: 1rem;
}

.vista-cookie-primary-btn {
  background-color: var(--vista-boreal-vibrant);
  color: var(--vista-boreal-ink-light);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.vista-cookie-primary-btn:hover {
  background-color: var(--vista-boreal-vibrant-hover);
}

.vista-cookie-secondary-btn {
  background-color: transparent;
  color: var(--vista-boreal-ink-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.vista-cookie-secondary-btn:hover {
  border-color: var(--vista-boreal-ink-light);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .vista-jumbo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .vista-hero-text-block {
    align-items: center;
  }
  
  .vista-action-button-pill {
    align-self: center;
  }
  
  .vista-grid-three-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .vista-horiz-steps-row {
    flex-direction: column;
    gap: 3rem;
  }
  
  .vista-horiz-steps-row::before {
    display: none;
  }
  
  .vista-strip-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .vista-expert-split-segment {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vista-stat-strip-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .vista-expert-showcase-segment {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vista-reserve-grid-block {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vista-footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .vista-brand-badge {
    justify-content: center;
  }
  
  .vista-footer-links-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .vista-cookie-banner-layout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .vista-hamburger-btn {
    display: flex;
  }
  
  .vista-link-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vista-boreal-accent);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
    pointer-events: none;
  }
  
  .vista-menu-checkbox:checked ~ .vista-link-list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .vista-menu-checkbox:checked ~ .vista-hamburger-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vista-menu-checkbox:checked ~ .vista-hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .vista-menu-checkbox:checked ~ .vista-hamburger-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .vista-form-container-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .vista-stat-strip-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}