:root {
  --valle-base-bg: #ecefec;
  --valle-card-bg: #ecefec;
  --valle-shadow-dark: #cfd6cf;
  --valle-shadow-light: #ffffff;
  --valle-olive: #3f663f;
  --valle-olive-light: #edf2ed;
  --valle-terracotta: #bf603b;
  --valle-rose-soft: #f4e3e3;
  --valle-rose-shadow: #e2cece;
  --valle-text-dark: #222b22;
  --valle-text-muted: #576357;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --valle-radius-soft: 20px;
  --valle-radius-pill: 999px;
  --valle-padding-normal: 10dvh;
}

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

body {
  background-color: var(--valle-base-bg);
  color: var(--valle-text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--valle-text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

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

/* Scroll Progress Bar */
.valle-scroll-prog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--valle-terracotta);
  transform-origin: 0 50%;
  animation: valleScaleProgress auto linear;
  animation-timeline: scroll();
  z-index: 10001;
}

@keyframes valleScaleProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Container Limit */
.valle-wrap-max {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.valle-hdr-outer {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--valle-base-bg);
  box-shadow: 4px 4px 15px var(--valle-shadow-dark), -4px -4px 15px var(--valle-shadow-light);
  padding: 1.2rem 0;
}

.valle-hdr-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.valle-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--valle-olive);
}

.valle-logo-wrap svg {
  fill: none;
  stroke: var(--valle-olive);
  stroke-width: 2;
}

.valle-navigation-bar {
  display: flex;
  align-items: center;
}

.valle-nav-checkbox {
  display: none;
}

.valle-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.valle-hamburger-btn span {
  width: 25px;
  height: 3px;
  background: var(--valle-olive);
  border-radius: 2px;
  transition: 0.3s ease;
}

.valle-menu-items {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.valle-menu-link {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.2rem;
  position: relative;
  color: var(--valle-text-muted);
}

.valle-menu-link:hover,
.valle-menu-link.active {
  color: var(--valle-olive);
}

.valle-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--valle-olive);
  transition: width 0.3s ease;
}

.valle-menu-link:hover::after,
.valle-menu-link.active::after {
  width: 100%;
}

/* Sections Viewport Animation */
.valle-reveal-section {
  padding: var(--valle-padding-normal) 0;
  animation: valleFadeIn auto linear;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

@keyframes valleFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Neumorphic Common Styles */
.valle-elevated {
  box-shadow: 9px 9px 18px var(--valle-shadow-dark), -9px -9px 18px var(--valle-shadow-light);
  border-radius: var(--valle-radius-soft);
  background-color: var(--valle-card-bg);
}

.valle-sunken {
  box-shadow: inset 6px 6px 12px var(--valle-shadow-dark), inset -6px -6px 12px var(--valle-shadow-light);
  border-radius: var(--valle-radius-soft);
  background-color: var(--valle-card-bg);
}

/* Neumorphic Interactive Button */
.valle-action-trigger {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: var(--valle-radius-pill);
  color: var(--valle-olive);
  background-color: var(--valle-base-bg);
  box-shadow: 6px 6px 12px var(--valle-shadow-dark), -6px -6px 12px var(--valle-shadow-light);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.valle-action-trigger:hover {
  box-shadow: inset 4px 4px 8px var(--valle-shadow-dark), inset -4px -4px 8px var(--valle-shadow-light);
  transform: scale(0.98);
  color: var(--valle-terracotta);
}

.valle-action-trigger-solid {
  background-color: var(--valle-olive);
  color: var(--valle-base-bg);
  box-shadow: 6px 6px 15px var(--valle-shadow-dark);
}

.valle-action-trigger-solid:hover {
  background-color: var(--valle-terracotta);
  color: var(--valle-base-bg);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* index.html Hero split layout */
.valle-hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.valle-hero-content {
  position: relative;
  padding-right: 2rem;
}

.valle-hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--valle-olive);
}

.valle-hero-sub {
  font-size: 1.1rem;
  color: var(--valle-text-muted);
  margin-bottom: 2rem;
}

/* Floating Neumorphic Badge */
.valle-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background-color: var(--valle-card-bg);
  border-radius: var(--valle-radius-soft);
  box-shadow: 8px 8px 16px var(--valle-shadow-dark), -8px -8px 16px var(--valle-shadow-light);
  border: 1px solid rgba(255,255,255,0.6);
  z-index: 10;
}

.valle-badge-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--valle-base-bg);
  box-shadow: inset 3px 3px 6px var(--valle-shadow-dark), inset -3px -3px 6px var(--valle-shadow-light);
}

.valle-badge-icon-wrap svg {
  stroke: var(--valle-terracotta);
  stroke-width: 2.5;
  fill: none;
}

.valle-badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--valle-olive);
  line-height: 1;
}

.valle-badge-lbl {
  font-size: 0.75rem;
  color: var(--valle-text-muted);
  font-weight: 600;
}

.valle-hero-frame {
  border-radius: 32px;
  box-shadow: 12px 12px 24px var(--valle-shadow-dark), -12px -12px 24px var(--valle-shadow-light);
  overflow: hidden;
  padding: 1rem;
  background-color: var(--valle-card-bg);
}

.valle-hero-frame img {
  border-radius: 24px;
  box-shadow: inset 4px 4px 8px var(--valle-shadow-dark), inset -4px -4px 8px var(--valle-shadow-light);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Problem & Solution Layout */
.valle-prob-sol-section {
  padding: var(--valle-padding-normal) 0;
}

.valle-prob-sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.valle-prob-column {
  background-color: var(--valle-rose-soft);
  border-radius: var(--valle-radius-soft);
  box-shadow: 9px 9px 18px var(--valle-rose-shadow), -9px -9px 18px rgba(255,255,255,0.9);
  padding: 2.5rem;
}

.valle-prob-column h3 {
  color: #a04030;
  border-bottom: 2px solid rgba(160, 64, 48, 0.15);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.valle-sol-column {
  background-color: var(--valle-olive-light);
  border-radius: var(--valle-radius-soft);
  box-shadow: 9px 9px 18px var(--valle-shadow-dark), -9px -9px 18px var(--valle-shadow-light);
  padding: 2.5rem;
}

.valle-sol-column h3 {
  color: var(--valle-olive);
  border-bottom: 2px solid rgba(63, 102, 63, 0.15);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.valle-bullet-list {
  list-style: none;
}

.valle-bullet-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.valle-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.valle-prob-column .valle-bullet-list li::before {
  background-color: var(--valle-terracotta);
  box-shadow: 2px 2px 5px rgba(160, 64, 48, 0.3);
}

.valle-sol-column .valle-bullet-list li::before {
  background-color: var(--valle-olive);
  box-shadow: 2px 2px 5px rgba(63, 102, 63, 0.3);
}

.valle-overlay-strip-wrap {
  position: relative;
  height: 40vh;
  border-radius: var(--valle-radius-soft);
  overflow: hidden;
  box-shadow: 9px 9px 18px var(--valle-shadow-dark), -9px -9px 18px var(--valle-shadow-light);
}

.valle-overlay-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.valle-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--valle-shadow-light);
  width: 90%;
  max-width: 800px;
}

.valle-overlay-content h3 {
  color: var(--valle-shadow-light);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* Features Grid */
.valle-features-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.valle-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.valle-feature-card {
  padding: 2.5rem var(--valle-radius-soft);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.valle-feat-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: var(--valle-base-bg);
  box-shadow: 4px 4px 8px var(--valle-shadow-dark), -4px -4px 8px var(--valle-shadow-light);
}

.valle-feature-card:hover .valle-feat-icon-container {
  box-shadow: inset 3px 3px 6px var(--valle-shadow-dark), inset -3px -3px 6px var(--valle-shadow-light);
}

.valle-feat-icon-container svg {
  stroke: var(--valle-olive);
  stroke-width: 2;
  fill: none;
}

.valle-feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--valle-olive);
  transition: color 0.3s;
}

.valle-feature-card p {
  font-size: 0.9rem;
  color: var(--valle-text-muted);
}

.valle-feature-card:hover h4 {
  color: var(--valle-terracotta);
}

/* How It Works Stepper */
.valle-stepper-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.valle-stepper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.valle-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.valle-stepper-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--valle-shadow-dark);
  z-index: 1;
  transform: translateY(-50%);
}

.valle-step-pill {
  position: relative;
  z-index: 2;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  background-color: var(--valle-card-bg);
  color: var(--valle-olive);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.valle-step-pill span {
  width: 24px;
  height: 24px;
  background-color: var(--valle-olive);
  color: var(--valle-base-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.valle-stepper-descriptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.valle-step-info-card {
  text-align: center;
  padding: 1.5rem;
}

.valle-step-info-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--valle-olive);
}

.valle-step-info-card p {
  font-size: 0.9rem;
  color: var(--valle-text-muted);
}

/* CTA Strip Centered Card */
.valle-cta-strip {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.valle-cta-strip h2 {
  font-size: 2rem;
  color: var(--valle-olive);
  margin-bottom: 1.2rem;
}

.valle-cta-strip p {
  color: var(--valle-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Expert Page Layout */
.valle-expert-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.valle-expert-hero h1 {
  font-size: 2.6rem;
  color: var(--valle-olive);
}

.valle-expert-image-container {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  padding: 1rem;
}

.valle-expert-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--valle-radius-soft);
  box-shadow: inset 4px 4px 10px var(--valle-shadow-dark);
}

.valle-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.valle-stat-card {
  padding: 2rem 1rem;
  text-align: center;
}

.valle-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--valle-terracotta);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.valle-stat-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--valle-olive);
}

.valle-text-alternating {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}

.valle-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.valle-text-row:nth-child(even) {
  direction: rtl;
}

.valle-text-row:nth-child(even) .valle-text-col {
  direction: ltr;
}

.valle-text-col h3 {
  color: var(--valle-olive);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.valle-text-col p {
  color: var(--valle-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Reservation Page Layout */
.valle-reserve-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
  padding: 2rem 0;
}

.valle-reserve-form-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem;
}

.valle-reserve-form-card h2 {
  color: var(--valle-olive);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.valle-reserve-intro {
  font-size: 0.95rem;
  color: var(--valle-text-muted);
  margin-bottom: 2rem;
}

.valle-form-group {
  margin-bottom: 1.8rem;
}

.valle-form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--valle-olive);
  text-transform: uppercase;
}

.valle-form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  background-color: var(--valle-base-bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--valle-text-dark);
  transition: all 0.3s;
}

.valle-form-input:focus {
  outline: none;
  box-shadow: 4px 4px 10px var(--valle-shadow-dark), -4px -4px 10px var(--valle-shadow-light);
}

.valle-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--valle-text-muted);
}

.valle-checkbox-container input {
  margin-top: 0.2rem;
}

.valle-form-email-lnk {
  display: block;
  margin-top: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--valle-terracotta);
}

.valle-form-email-lnk:hover {
  color: var(--valle-olive);
}

/* Info Cards & Checkpoints */
.valle-info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.valle-info-card {
  padding: 2rem;
}

.valle-info-card h3 {
  color: var(--valle-olive);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.valle-info-card h3 svg {
  stroke: var(--valle-terracotta);
  stroke-width: 2;
  fill: none;
}

.valle-info-card p {
  font-size: 0.9rem;
  color: var(--valle-text-muted);
  margin-bottom: 1.5rem;
}

.valle-icon-num-list {
  list-style: none;
}

.valle-icon-num-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.valle-round-num-badge {
  width: 28px;
  height: 28px;
  background-color: var(--valle-olive);
  color: var(--valle-base-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* FAQ Accordion Section */
.valle-faq-section {
  margin-top: 5rem;
}

.valle-faq-title {
  text-align: center;
  margin-bottom: 3rem;
}

.valle-faq-stack {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.valle-faq-item summary {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--valle-olive);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  border-radius: var(--valle-radius-soft);
}

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

.valle-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--valle-terracotta);
  transition: transform 0.3s;
}

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

.valle-faq-text {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--valle-text-muted);
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 0.2rem;
}

/* Privacy & Terms Policy Styling */
.valle-policy-outer {
  padding: 4rem 0;
  min-height: 100vh;
}

.valle-policy-title {
  color: var(--valle-olive);
  margin-bottom: 2.5rem;
}

.valle-policy-text-block {
  padding: 3rem;
  margin-bottom: 3rem;
}

.valle-policy-text-block h2 {
  color: var(--valle-olive);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.valle-policy-text-block p {
  font-size: 0.95rem;
  color: var(--valle-text-muted);
  margin-bottom: 1.5rem;
}

.valle-policy-text-block ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.valle-policy-text-block li {
  margin-bottom: 0.5rem;
  color: var(--valle-text-muted);
}

/* Thank You Page Styling */
.valle-thank-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 4rem 0;
}

.valle-thank-card {
  max-width: 700px;
  text-align: center;
  padding: 4rem 3rem;
}

.valle-thank-card h1 {
  color: var(--valle-olive);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.valle-thank-card p {
  color: var(--valle-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.valle-thank-img-wrap {
  width: 100%;
  height: 300px;
  border-radius: var(--valle-radius-soft);
  overflow: hidden;
  margin-bottom: 3rem;
}

.valle-thank-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cookie Banner styling */
.valle-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--valle-base-bg);
  box-shadow: -10px -10px 30px var(--valle-shadow-dark);
  z-index: 9999;
  padding: 1.5rem 0;
  display: none;
}

.valle-cookie-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.valle-cookie-text {
  font-size: 0.9rem;
  color: var(--valle-text-muted);
}

.valle-cookie-btns {
  display: flex;
  gap: 1rem;
}

.valle-cookie-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Footer Styling */
.valle-ftr-outer {
  background-color: var(--valle-base-bg);
  box-shadow: inset 6px 6px 15px var(--valle-shadow-dark), 0 -4px 15px var(--valle-shadow-light);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
}

.valle-ftr-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 2.5rem;
}

.valle-ftr-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.valle-ftr-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--valle-text-muted);
}

.valle-ftr-link:hover {
  color: var(--valle-olive);
}

.valle-ftr-disclaimer {
  font-size: 0.8rem;
  color: var(--valle-text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
}

.valle-ftr-copyright {
  font-size: 0.75rem;
  color: var(--valle-text-muted);
  text-align: center;
  font-weight: 550;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .valle-hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .valle-hero-content {
    padding-right: 0;
  }
  .valle-floating-badge {
    right: 5%;
    bottom: -10px;
  }
  .valle-hero-frame img {
    height: 350px;
  }
  .valle-prob-sol-row {
    grid-template-columns: 1fr;
  }
  .valle-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .valle-text-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .valle-text-row:nth-child(even) {
    direction: ltr;
  }
  .valle-reserve-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .valle-hamburger-btn {
    display: flex;
  }
  
  .valle-menu-items {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--valle-base-bg);
    padding: 1.5rem;
    box-shadow: 4px 10px 15px var(--valle-shadow-dark);
    border-radius: var(--valle-radius-soft);
    gap: 1.2rem;
    text-align: center;
    z-index: 1002;
  }
  
  .valle-nav-checkbox:checked ~ .valle-menu-items {
    display: flex;
  }
  
  .valle-nav-checkbox:checked ~ .valle-hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .valle-nav-checkbox:checked ~ .valle-hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  .valle-nav-checkbox:checked ~ .valle-hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .valle-stepper-row {
    flex-direction: column;
    gap: 2rem;
  }
  .valle-stepper-row::before {
    display: none;
  }
  .valle-stepper-descriptions {
    grid-template-columns: 1fr;
  }
  .valle-cookie-flex {
    flex-direction: column;
    text-align: center;
  }
  .valle-ftr-top {
    flex-direction: column;
    gap: 2rem;
  }
  .valle-ftr-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}