:root {
  /* Thematic CSS Variables - Mediterranean/Chilean Valley Theme */
  --valley-slate: #0b0f17;
  --valley-deep-emerald: #091a13;
  --valley-soft-mint: #2ee59d;
  --valley-glow-teal: #10b981;
  --valley-leaf-shadow: rgba(16, 185, 129, 0.25);
  --valley-surface-glass: rgba(15, 23, 42, 0.75);
  --valley-border-glass: rgba(255, 255, 255, 0.08);
  --valley-ink-pure: #ffffff;
  --valley-ink-muted: #94a3b8;
  --valley-ink-warm: #f1f5f9;
  --valley-accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --valley-dark-gradient: linear-gradient(180deg, #0b0f17 0%, #05080c 100%);
  
  /* Visual Settings */
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --med-border-radius: 16px;
  --section-space: 16dvh;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--valley-slate);
  color: var(--valley-ink-warm);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--valley-ink-pure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

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

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

/* Scroll Progress Tracker */
.med-scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--valley-soft-mint);
  width: 0%;
  z-index: 10000;
  animation: med-progress linear;
  animation-timeline: scroll();
}

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

/* CSS Scroll-Driven Reveal Action */
.med-reveal-node {
  animation: med-fade-up 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

@keyframes med-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layout Header & Navigation */
.med-nav-shell {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--valley-border-glass);
}

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

.med-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--valley-ink-pure);
}

.med-logo-link svg {
  filter: drop-shadow(0 0 8px var(--valley-soft-mint));
}

.med-menu-toggle {
  display: none;
}

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

.med-hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--valley-ink-pure);
  transition: 0.3s;
}

.med-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.med-nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.med-nav-list a:hover {
  color: var(--valley-soft-mint);
}

.med-nav-cta {
  background: var(--valley-accent-gradient);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--valley-leaf-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.med-nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Preset D: Fullscreen Dark Immersive Hero & Glassmorphism Card */
.med-immersive-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.med-hero-backstage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(11, 15, 23, 0.4) 0%, rgba(5, 8, 12, 0.95) 100%);
  z-index: 1;
}

.med-glass-hero-panel {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: var(--valley-surface-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--valley-shadow-glow);
  text-align: center;
}

.med-hero-tag {
  color: var(--valley-soft-mint);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: inline-block;
}

.med-hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.med-hero-subtitle {
  font-size: 1.15rem;
  color: var(--valley-ink-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.med-main-action-pill {
  display: inline-block;
  background: var(--valley-accent-gradient);
  color: var(--valley-ink-pure);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px var(--valley-leaf-shadow);
  transition: all 0.3s ease;
}

.med-main-action-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

/* Content Split Section: Image Left / Text Right */
.med-split-wrapper {
  background: var(--valley-dark-gradient);
  padding: var(--section-space) 2rem;
}

.med-split-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.med-split-visual {
  position: relative;
  border-radius: var(--med-border-radius);
  overflow: hidden;
  height: 500px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.med-split-text-block {
  padding: 1rem 0;
}

.med-split-pre {
  color: var(--valley-soft-mint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.med-split-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.med-split-p {
  color: var(--valley-ink-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.med-split-list {
  list-style: none;
}

.med-split-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--valley-ink-warm);
}

.med-split-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--valley-soft-mint);
  border-radius: 50%;
  margin-top: 0.6rem;
  box-shadow: 0 0 10px var(--valley-soft-mint);
  flex-shrink: 0;
}

/* Features Block: 3 Glassmorphism Cards */
.med-features-strip {
  background: var(--valley-slate);
  padding: var(--section-space) 2rem;
  position: relative;
}

.med-features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.med-features-lead {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.med-features-sub {
  color: var(--valley-ink-muted);
  font-size: 1.1rem;
}

.med-cards-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.med-glass-box {
  background: var(--valley-surface-glass);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--valley-glow-teal);
  border-left: 1px solid var(--valley-border-glass);
  border-right: 1px solid var(--valley-border-glass);
  border-bottom: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.med-glass-box:hover {
  transform: translateY(-8px);
  border-top-color: var(--valley-soft-mint);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.med-icon-shield {
  width: 56px;
  height: 56px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--valley-soft-mint);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.med-box-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.med-box-desc {
  color: var(--valley-ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline: "How it Works" (Vertical Progress Path) */
.med-process-area {
  background: var(--valley-dark-gradient);
  padding: var(--section-space) 2rem;
}

.med-process-inner {
  max-width: 800px;
  margin: 0 auto;
}

.med-process-title-group {
  text-align: center;
  margin-bottom: 6rem;
}

.med-vertical-spine {
  position: relative;
  padding-left: 3.5rem;
}

.med-vertical-spine::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--valley-glow-teal);
  box-shadow: 0 0 12px var(--valley-soft-mint);
}

.med-spine-node {
  position: relative;
  margin-bottom: 4.5rem;
}

.med-spine-node:last-child {
  margin-bottom: 0;
}

.med-spine-badge {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 33px;
  height: 33px;
  background: var(--valley-slate);
  border: 2px solid var(--valley-soft-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--valley-soft-mint);
  font-size: 0.9rem;
  box-shadow: 0 0 10px var(--valley-leaf-shadow);
  transform: translateX(-1px);
}

.med-spine-body {
  background: var(--valley-surface-glass);
  padding: 2rem;
  border-radius: var(--med-border-radius);
  border: 1px solid var(--valley-border-glass);
}

.med-spine-header {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.med-spine-details {
  color: var(--valley-ink-muted);
  font-size: 0.95rem;
}

/* CTA strip: Dark section, ghost button, big H2, no photo */
.med-ghost-cta-strip {
  background: radial-gradient(circle at top right, #0d1a15 0%, #06090e 100%);
  padding: var(--section-space) 2rem;
  border-top: 1px solid var(--valley-border-glass);
  border-bottom: 1px solid var(--valley-border-glass);
  text-align: center;
}

.med-ghost-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.med-ghost-h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.med-ghost-lead-text {
  color: var(--valley-ink-muted);
  font-size: 1.15rem;
  margin-bottom: 3rem;
}

.med-ghost-action-link {
  display: inline-block;
  background: transparent;
  color: var(--valley-soft-mint);
  border: 2px solid var(--valley-soft-mint);
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.med-ghost-action-link:hover {
  background: rgba(46, 229, 157, 0.1);
  box-shadow: 0 0 20px rgba(46, 229, 157, 0.2);
}

/* Expert / Physician Page Specific Styles */
.med-physician-focus {
  padding: 4rem 2rem;
  background: var(--valley-dark-gradient);
}

.med-physician-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 12fr;
  gap: 3rem;
}

.med-accordion-section {
  background: var(--valley-slate);
  padding: var(--section-space) 2rem;
}

.med-accordion-box {
  max-width: 800px;
  margin: 0 auto;
}

.med-accordion-item {
  background: var(--valley-surface-glass);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.med-accordion-item::before {
  content: "0" attr(data-index);
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.05);
  font-weight: bold;
}

.med-accordion-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--valley-soft-mint);
}

.med-accordion-text {
  color: var(--valley-ink-muted);
  font-size: 0.95rem;
}

/* Stats grid on expert page */
.med-counter-zone {
  background: var(--valley-slate);
  padding: 6dvh 2rem;
  border-bottom: 1px solid var(--valley-border-glass);
}

.med-counter-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.med-counter-card {
  background: var(--valley-surface-glass);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.med-counter-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--valley-soft-mint);
  margin-bottom: 0.5rem;
}

.med-counter-caption {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--valley-ink-muted);
  letter-spacing: 0.1em;
}

/* Full Width Image with Text Overlay (Expert Page) */
.med-backdrop-strip {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 2rem;
}

.med-backdrop-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 15, 23, 0.8);
}

.med-backdrop-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.med-backdrop-h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.med-backdrop-p {
  color: var(--valley-ink-muted);
  font-size: 1.1rem;
}

/* Reserve Page Specific Styles (Form & Info Cards) */
.med-reserve-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  padding: var(--section-space) 2rem;
  align-items: start;
}

.med-info-deck {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.med-info-anchor {
  background: var(--valley-surface-glass);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 2.5rem;
}

.med-info-header {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.med-info-bullet-list {
  list-style: none;
  margin-top: 1.5rem;
}

.med-info-bullet-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.med-bullet-circle {
  width: 24px;
  height: 24px;
  background: var(--valley-soft-mint);
  border-radius: 50%;
  color: var(--valley-slate);
  font-weight: bold;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.med-immersive-form-container {
  background: var(--valley-surface-glass);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4), var(--valley-shadow-glow);
}

.med-reserve-form-title {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.med-input-group {
  margin-bottom: 1.5rem;
}

.med-input-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--valley-ink-muted);
}

.med-input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--valley-border-glass);
  border-radius: 8px;
  padding: 1rem;
  color: var(--valley-ink-pure);
  font-family: var(--font-body);
  transition: all 0.3s;
}

.med-input-field:focus {
  outline: none;
  border-color: var(--valley-soft-mint);
  background: rgba(255, 255, 255, 0.08);
}

.med-checkbox-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--valley-ink-muted);
}

.med-checkbox-wrap input {
  margin-top: 0.2rem;
}

.med-submit-btn {
  width: 100%;
  background: var(--valley-accent-gradient);
  border: none;
  padding: 1.1rem;
  border-radius: 999px;
  color: var(--valley-ink-pure);
  font-family: var(--font-body);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--valley-leaf-shadow);
  transition: all 0.3s;
}

.med-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
}

.med-mailto-box {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--valley-ink-muted);
}

.med-mailto-box a {
  color: var(--valley-soft-mint);
  font-weight: bold;
}

/* FAQs block beneath form */
.med-faq-section {
  max-width: 800px;
  margin: 6rem auto 0;
  padding: 0 2rem;
}

.med-faq-h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.med-faq-mesh {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.med-faq-capsule {
  background: var(--valley-surface-glass);
  border: 1px solid var(--valley-border-glass);
  border-radius: var(--med-border-radius);
  padding: 2rem;
}

.med-faq-q {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--valley-soft-mint);
}

.med-faq-a {
  color: var(--valley-ink-muted);
  font-size: 0.95rem;
}

/* Global Footer Area */
.med-footer-system {
  background: #05080c;
  padding: 6rem 2rem 3rem;
  border-top: 1px solid var(--valley-border-glass);
}

.med-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.med-footer-manifesto {
  max-width: 450px;
}

.med-footer-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--valley-ink-pure);
  margin-bottom: 1.5rem;
}

.med-footer-tagline {
  color: var(--valley-ink-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.med-footer-disclaimer {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.med-footer-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.med-sub-menu {
  list-style: none;
}

.med-sub-menu li {
  margin-bottom: 0.75rem;
}

.med-sub-menu a {
  color: var(--valley-ink-muted);
  font-size: 0.9rem;
}

.med-sub-menu a:hover {
  color: var(--valley-soft-mint);
}

.med-copysign-strip {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Cookie Consent Bar */
.med-cookie-banner-deck {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 23, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--valley-border-glass);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
}

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

.med-cookie-banner-text {
  font-size: 0.9rem;
  color: var(--valley-ink-warm);
}

.med-cookie-actions {
  display: flex;
  gap: 1rem;
}

.med-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

.med-cookie-btn-accept {
  background: var(--valley-accent-gradient);
  color: var(--valley-ink-pure);
}

.med-cookie-btn-decline {
  background: transparent;
  color: var(--valley-ink-muted);
  border: 1px solid var(--valley-border-glass);
}

/* Static Page Structure Styles (Privacy/Terms) */
.med-doc-content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.med-doc-h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--valley-border-glass);
  padding-bottom: 1rem;
}

.med-doc-sec {
  margin-bottom: 2.5rem;
}

.med-doc-h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--valley-soft-mint);
}

.med-doc-p {
  color: var(--valley-ink-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Toast/Thank Screen Frame */
.med-thank-frame {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

/* Adaptive Layout System */
@media (max-width: 991px) {
  .med-cards-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .med-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .med-split-visual {
    height: 350px;
  }
  
  .med-reserve-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .med-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .med-hamburger-btn {
    display: flex;
  }
  
  .med-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(11, 15, 23, 0.98);
    border-bottom: 1px solid var(--valley-border-glass);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
  }
  
  .med-menu-toggle:checked ~ .med-nav-list {
    display: flex;
  }
  
  .med-menu-toggle:checked ~ .med-hamburger-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .med-menu-toggle:checked ~ .med-hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .med-menu-toggle:checked ~ .med-hamburger-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .med-hero-title {
    font-size: 2rem;
  }
  
  .med-glass-hero-panel {
    padding: 2rem;
  }
  
  .med-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .med-cookie-banner-body {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .med-counter-grid {
    grid-template-columns: 1fr;
  }
}