/* NEUMORPHIC LIGHT STYLE - THEMATIC CSS VARIABLES */
:root {
  --stavy-canvas: #f0f3f6;
  --stavy-surface: #f1f3f6;
  --stavy-glow-high: #ffffff;
  --stavy-glow-low: #d1d9e6;
  --stavy-ink: #2c3e50;
  --stavy-ink-muted: #7f8c8d;
  --stavy-highlight-warm: #0ea5e9;
  --stavy-highlight-warm-hover: #0284c7;
  --stavy-accent-soft: #e0f2fe;
  
  --stavy-font-display: 'Oswald', sans-serif;
  --stavy-font-body: 'Poppins', sans-serif;
  
  --stavy-radius-soft: 24px;
  --stavy-radius-pill: 999px;
  
  --stavy-padding-space: 10dvh;
}

/* Base Restets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.stavy-body-canvas {
  background-color: var(--stavy-canvas);
  color: var(--stavy-ink);
  font-family: var(--stavy-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress indicator */
.stavy-scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--stavy-highlight-warm);
  width: 0%;
  z-index: 99999;
  animation: stavy-grow-progress linear;
  animation-timeline: scroll();
}
@keyframes stavy-grow-progress {
  to { width: 100%; }
}

/* Common Container */
.stavy-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Logo styling */
.stavy-header-outer {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--stavy-surface);
  box-shadow: 4px 4px 10px var(--stavy-glow-low), -4px -4px 10px var(--stavy-glow-high);
}

.stavy-header-interior {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stavy-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--stavy-ink);
}

.stavy-logo-svg {
  width: 36px;
  height: 36px;
  color: var(--stavy-highlight-warm);
}

.stavy-brand-txt {
  font-family: var(--stavy-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Navigation Links */
.stavy-navigation-bar {
  display: flex;
  align-items: center;
}

.stavy-navigation-list {
  display: flex;
  list-style: none;
  gap: 25px;
}

.stavy-navigation-link {
  text-decoration: none;
  color: var(--stavy-ink);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--stavy-radius-pill);
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px transparent, -2px -2px 5px transparent;
}

.stavy-navigation-link:hover, 
.stavy-navigation-link.stavy-active-state {
  color: var(--stavy-highlight-warm);
  box-shadow: inset 3px 3px 6px var(--stavy-glow-low), inset -3px -3px 6px var(--stavy-glow-high);
}

/* Hamburger Menu (CSS only) */
.stavy-hamburger-trigger {
  display: none;
}

.stavy-hamburger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px var(--stavy-glow-low), -3px -3px 6px var(--stavy-glow-high);
}

.stavy-hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--stavy-ink);
  transition: all 0.3s ease;
}

/* Section Common Meta */
.stavy-section-meta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.stavy-section-heading {
  font-family: var(--stavy-font-display);
  font-size: 2.22rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--stavy-ink);
}

.stavy-section-subheading {
  font-size: 1.05rem;
  color: var(--stavy-ink-muted);
}

/* Typography styles */
.stavy-main-heading {
  font-family: var(--stavy-font-display);
  font-size: 3.5rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--stavy-ink);
  margin-bottom: 20px;
}

.stavy-lead-paragraph {
  font-size: 1.15rem;
  color: var(--stavy-ink-muted);
  margin-bottom: 30px;
}

/* Neumorphic buttons */
.stavy-custom-button {
  display: inline-block;
  font-family: var(--stavy-font-body);
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--stavy-radius-pill);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  text-align: center;
}

.stavy-primary-btn {
  background: var(--stavy-surface);
  color: var(--stavy-highlight-warm);
  box-shadow: 6px 6px 12px var(--stavy-glow-low), -6px -6px 12px var(--stavy-glow-high);
}

.stavy-primary-btn:hover {
  box-shadow: inset 4px 4px 8px var(--stavy-glow-low), inset -4px -4px 8px var(--stavy-glow-high);
  transform: translateY(1px);
}

.stavy-accent-btn {
  background: var(--stavy-highlight-warm);
  color: #fff;
  box-shadow: 4px 4px 10px rgba(14, 165, 233, 0.4);
}

.stavy-accent-btn:hover {
  background: var(--stavy-highlight-warm-hover);
}

/* Hero Panel (Preset G: Split-screen hero) */
.stavy-hero-panel {
  padding: var(--stavy-padding-space) 0;
}

.stavy-hero-grid-2col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.stavy-hero-textual-zone {
  position: relative;
}

.stavy-hero-actions-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Floating badge */
.stavy-badge-float {
  position: absolute;
  bottom: -40px;
  right: 15px;
  background: var(--stavy-surface);
  padding: 12px 24px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: 8px 8px 16px var(--stavy-glow-low), -8px -8px 16px var(--stavy-glow-high);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stavy-badge-num {
  font-family: var(--stavy-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--stavy-highlight-warm);
}

.stavy-badge-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stavy-ink);
  line-height: 1.2;
}

.stavy-photo-neumorphic-frame {
  background: var(--stavy-surface);
  padding: 15px;
  border-radius: 32px;
  box-shadow: 12px 12px 24px var(--stavy-glow-low), -12px -12px 24px var(--stavy-glow-high);
}

.stavy-hero-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Section Reveal on Scroll (CSS only) */
.stavy-reveal-element {
  animation: stavy-fade-in-scroll linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 30%;
}

@keyframes stavy-fade-in-scroll {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Problem / Solution layout (Preset G Content Section) */
.stavy-issue-resolutions-panel {
  padding: var(--stavy-padding-space) 0;
}

.stavy-two-column-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stavy-perspective-card {
  background: var(--stavy-surface);
  padding: 40px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: 8px 8px 16px var(--stavy-glow-low), -8px -8px 16px var(--stavy-glow-high);
}

.stavy-box-title {
  font-family: var(--stavy-font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--stavy-ink);
}

.stavy-bullet-complex-list {
  list-style: none;
}

.stavy-bullet-complex-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: 500;
}

.stavy-bullet-complex-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.stavy-negative-card .stavy-bullet-complex-list li::before {
  background: #f87171;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

.stavy-positive-card .stavy-bullet-complex-list li::before {
  background: var(--stavy-highlight-warm);
  box-shadow: 1px 1px 3px rgba(14,165,233,0.3);
}

/* Landscape block with bg2.webp */
.stavy-middle-landscape {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 40vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stavy-middle-landscape-overlay {
  background: rgba(44, 62, 80, 0.7);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.stavy-landscape-title {
  font-family: var(--stavy-font-display);
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stavy-landscape-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 25px;
}

/* Features Grid (Preset G: 3-column neumorphic grid with sunken effects) */
.stavy-habits-grid-section {
  padding: var(--stavy-padding-space) 0;
}

.stavy-habits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stavy-habit-plate {
  background: var(--stavy-surface);
  padding: 45px 30px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: inset 6px 6px 12px var(--stavy-glow-low), inset -6px -6px 12px var(--stavy-glow-high);
  text-align: center;
  transition: all 0.3s ease;
}

.stavy-habit-plate:hover {
  box-shadow: 8px 8px 16px var(--stavy-glow-low), -8px -8px 16px var(--stavy-glow-high);
}

.stavy-neumorphic-icon-circle {
  width: 64px;
  height: 64px;
  background: var(--stavy-surface);
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 8px var(--stavy-glow-low), -4px -4px 8px var(--stavy-glow-high);
  color: var(--stavy-highlight-warm);
}

.stavy-habit-svg {
  width: 28px;
  height: 28px;
}

.stavy-habit-heading {
  font-family: var(--stavy-font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--stavy-ink);
}

.stavy-habit-body-text {
  font-size: 0.9rem;
  color: var(--stavy-ink-muted);
}

/* How it works: stepper (Preset G stepper) */
.stavy-timeline-tracker {
  padding: var(--stavy-padding-space) 0;
}

.stavy-stepper-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.stavy-stepper-pill {
  background: var(--stavy-surface);
  padding: 10px 24px;
  border-radius: var(--stavy-radius-pill);
  box-shadow: 5px 5px 10px var(--stavy-glow-low), -5px -5px 10px var(--stavy-glow-high);
  display: flex;
  align-items: center;
  gap: 10px;
}

.stavy-step-number {
  font-family: var(--stavy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--stavy-highlight-warm);
}

.stavy-step-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--stavy-ink);
}

.stavy-stepper-divider {
  flex-grow: 1;
  height: 2px;
  border-top: 2px dashed var(--stavy-glow-low);
  margin: 0 15px;
}

.stavy-stepper-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stavy-step-detail-card {
  text-align: center;
  padding: 20px;
}

.stavy-step-detail-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--stavy-ink);
}

.stavy-step-detail-card p {
  font-size: 0.88rem;
  color: var(--stavy-ink-muted);
}

/* CTA Strip Centered Card (Preset G) */
.stavy-direct-action-panel {
  padding: var(--stavy-padding-space) 0;
}

.stavy-action-plate {
  max-width: 700px;
  margin: 0 auto;
  background: var(--stavy-surface);
  border-radius: var(--stavy-radius-soft);
  box-shadow: 8px 8px 20px var(--stavy-glow-low), -8px -8px 20px var(--stavy-glow-high);
  padding: 50px 30px;
  text-align: center;
}

.stavy-action-heading {
  font-family: var(--stavy-font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.stavy-action-text {
  font-size: 1.05rem;
  color: var(--stavy-ink-muted);
  margin-bottom: 25px;
}

.stavy-action-buttons {
  display: flex;
  justify-content: center;
}

/* Expert bio specific components */
.stavy-expert-profile-view {
  padding: 2dvh 0;
}

.stavy-expert-profile-frame {
  max-width: 600px;
  margin: 0 auto;
  background: var(--stavy-surface);
  padding: 20px;
  border-radius: 32px;
  box-shadow: 10px 10px 20px var(--stavy-glow-low), -10px -10px 20px var(--stavy-glow-high);
}

.stavy-expert-portrait {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.stavy-metrics-table {
  padding: var(--stavy-padding-space) 0;
}

.stavy-stats-2x2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.stavy-metric-item {
  background: var(--stavy-surface);
  padding: 30px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: 6px 6px 12px var(--stavy-glow-low), -6px -6px 12px var(--stavy-glow-high);
  text-align: center;
}

.stavy-metric-value {
  display: block;
  font-family: var(--stavy-font-display);
  font-size: 2.8rem;
  color: var(--stavy-highlight-warm);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.stavy-metric-label {
  font-size: 0.92rem;
  color: var(--stavy-ink-muted);
  font-weight: 500;
}

.stavy-biography-narrative {
  padding: var(--stavy-padding-space) 0;
}

.stavy-bio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stavy-bio-column-text h4 {
  font-family: var(--stavy-font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--stavy-ink);
}

.stavy-bio-column-text p {
  font-size: 0.95rem;
  color: var(--stavy-ink-muted);
  margin-bottom: 15px;
}

/* Registration Page specific styles */
.stavy-registration-main-block {
  padding-bottom: var(--stavy-padding-space);
}

.stavy-form-showcase-section {
  padding: 4dvh 0;
}

.stavy-form-layout-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.stavy-info-cards-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.stavy-info-item-neumorphic {
  background: var(--stavy-surface);
  padding: 25px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: 6px 6px 12px var(--stavy-glow-low), -6px -6px 12px var(--stavy-glow-high);
  display: flex;
  gap: 20px;
  align-items: center;
}

.stavy-info-icon-badge {
  width: 48px;
  height: 48px;
  background: var(--stavy-surface);
  border-radius: 50%;
  display: flex;
  box-shadow: inset 3px 3px 6px var(--stavy-glow-low), inset -3px -3px 6px var(--stavy-glow-high);
  align-items: center;
  justify-content: center;
  font-family: var(--stavy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--stavy-highlight-warm);
  flex-shrink: 0;
}

.stavy-info-text-content h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stavy-ink);
  margin-bottom: 5px;
}

.stavy-info-text-content p {
  font-size: 0.88rem;
  color: var(--stavy-ink-muted);
}

.stavy-email-link {
  color: var(--stavy-highlight-warm);
  text-decoration: none;
  font-weight: 600;
}

/* Neumorphic Form */
.stavy-neumorphic-form-container {
  background: var(--stavy-surface);
  padding: 40px;
  border-radius: var(--stavy-radius-soft);
  box-shadow: 10px 10px 20px var(--stavy-glow-low), -10px -10px 20px var(--stavy-glow-high);
}

.stavy-form-title {
  font-family: var(--stavy-font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
  color: var(--stavy-ink);
}

.stavy-field-group {
  margin-bottom: 25px;
}

.stavy-input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stavy-ink);
  margin-bottom: 8px;
}

.stavy-text-input, .stavy-textarea-input {
  width: 100%;
  padding: 14px 20px;
  border: none;
  background: var(--stavy-surface);
  color: var(--stavy-ink);
  font-family: var(--stavy-font-body);
  font-size: 0.92rem;
  border-radius: 12px;
  box-shadow: inset 4px 4px 8px var(--stavy-glow-low), inset -4px -4px 8px var(--stavy-glow-high);
  outline: none;
  transition: all 0.3s ease;
}

.stavy-text-input:focus, .stavy-textarea-input:focus {
  box-shadow: inset 2px 2px 4px var(--stavy-glow-low), inset -2px -2px 4px var(--stavy-glow-high);
}

.stavy-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.stavy-native-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--stavy-highlight-warm);
}

.stavy-checkbox-label {
  font-size: 0.8rem;
  color: var(--stavy-ink-muted);
  line-height: 1.4;
}

.stavy-policy-link {
  color: var(--stavy-highlight-warm);
  text-decoration: underline;
}

/* FAQ Accordion (CSS only) */
.stavy-faq-knowledge-base {
  padding: var(--stavy-padding-space) 0;
}

.stavy-faq-item {
  background: var(--stavy-surface);
  border-radius: 16px;
  box-shadow: 4px 4px 10px var(--stavy-glow-low), -4px -4px 10px var(--stavy-glow-high);
  margin-bottom: 20px;
  overflow: hidden;
}

.stavy-faq-checker {
  display: none;
}

.stavy-faq-header-label {
  display: block;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--stavy-ink);
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.stavy-faq-header-label::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-family: monospace;
  color: var(--stavy-highlight-warm);
  transition: transform 0.3s ease;
}

.stavy-faq-body-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
}

.stavy-faq-body-content p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--stavy-ink-muted);
  line-height: 1.6;
}

.stavy-faq-checker:checked ~ .stavy-faq-header-label::after {
  transform: translateY(-50%) rotate(45deg);
}

.stavy-faq-checker:checked ~ .stavy-faq-body-content {
  max-height: 250px;
}

/* Footer layout */
.stavy-footer-zone {
  background-color: var(--stavy-surface);
  box-shadow: inset 4px 4px 12px var(--stavy-glow-low), inset -4px -4px 12px var(--stavy-glow-high);
  padding: 60px 0 30px;
  margin-top: var(--stavy-padding-space);
}

.stavy-footer-interior {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stavy-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}

.stavy-footer-links-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stavy-footer-link {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--stavy-ink-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stavy-footer-link:hover {
  color: var(--stavy-highlight-warm);
}

.stavy-footer-disclaimer {
  font-size: 0.78rem;
  color: var(--stavy-ink-muted);
  line-height: 1.5;
  border-top: 1px dashed var(--stavy-glow-low);
  padding-top: 25px;
  margin-bottom: 25px;
}

.stavy-footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--stavy-ink-muted);
}

/* Cookie Banner */
.stavy-cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--stavy-surface);
  box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  z-index: 99999;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.stavy-cookie-text {
  font-size: 0.88rem;
  color: var(--stavy-ink);
  max-width: 800px;
}

.stavy-cookie-actions {
  display: flex;
  gap: 10px;
}

.stavy-cookie-btn {
  padding: 8px 18px;
  font-size: 0.82rem;
  border-radius: var(--stavy-radius-pill);
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.stavy-cookie-accept {
  background: var(--stavy-highlight-warm);
  color: #fff;
  box-shadow: 2px 2px 5px rgba(14, 165, 233, 0.25);
}

.stavy-cookie-accept:hover {
  background: var(--stavy-highlight-warm-hover);
}

.stavy-cookie-deny {
  background: var(--stavy-surface);
  color: var(--stavy-ink-muted);
  box-shadow: inset 2px 2px 5px var(--stavy-glow-low);
}

.stavy-cookie-deny:hover {
  box-shadow: 2px 2px 5px var(--stavy-glow-low);
}

/* ---------------------------------------------------- */
/* MEDIA QUERY - MOBILE RESPONSIVENESS (Down to 320px)  */
/* ---------------------------------------------------- */
@media (max-width: 900px) {
  /* Navigation */
  .stavy-hamburger-icon {
    display: flex;
  }

  .stavy-navigation-bar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--stavy-surface);
    padding: 20px;
    box-shadow: 0 10px 15px var(--stavy-glow-low);
  }

  .stavy-navigation-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .stavy-hamburger-trigger:checked ~ .stavy-navigation-bar {
    display: flex;
  }

  .stavy-hamburger-trigger:checked ~ .stavy-hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .stavy-hamburger-trigger:checked ~ .stavy-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .stavy-hamburger-trigger:checked ~ .stavy-hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  /* Layout grids override */
  .stavy-hero-grid-2col {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stavy-hero-image {
    height: 320px;
  }

  .stavy-badge-float {
    position: static;
    margin-top: 25px;
    justify-content: center;
  }

  .stavy-hero-actions-container {
    justify-content: center;
  }

  .stavy-main-heading {
    font-size: 2.2rem;
  }

  .stavy-two-column-contrast {
    grid-template-columns: 1fr;
  }

  .stavy-habits-grid {
    grid-template-columns: 1fr;
  }

  .stavy-stepper-row {
    flex-direction: column;
    gap: 15px;
  }

  .stavy-stepper-divider {
    display: none;
  }

  .stavy-stepper-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stavy-stats-2x2-grid {
    grid-template-columns: 1fr;
  }

  .stavy-bio-row {
    grid-template-columns: 1fr;
  }

  .stavy-form-layout-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .stavy-cookie-notification {
    flex-direction: column;
    text-align: center;
  }
}