/* ============================================================
   Vexibuor MX - Family Budget App
   Design: Candy Gradient | Organic & Approachable
   ============================================================ */


:root {
  --colorPrimary: #c084fc;
  --colorPrimaryDark: #a855f7;
  --colorSecondary: #f472b6;
  --colorAccent: #38bdf8;
  --colorTeal: #2dd4bf;
  --colorMint: #86efac;

  --gradientHero: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 30%, #e0f2fe 65%, #ccfbf1 100%);
  --gradientPrimary: linear-gradient(135deg, #c084fc 0%, #f472b6 50%, #38bdf8 100%);
  --gradientSecondary: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #0ea5e9 100%);
  --gradientCard: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 100%);
  --gradientText: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #0ea5e9 100%);
  --gradientSubtle: linear-gradient(135deg, #fdf4ff 0%, #f0fdf4 100%);
  --gradientAccent: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);

  --textPrimary: #1e1035;
  --textSecondary: #4c3d6b;
  --textMuted: #7c6fa0;
  --textLight: #b8a9d4;

  --bgBase: #fdfbff;
  --bgSurface: #ffffff;
  --bgMuted: #f9f5ff;
  --bgCard: #ffffff;

  --borderLight: rgba(192, 132, 252, 0.15);
  --borderMedium: rgba(192, 132, 252, 0.3);

  --shadowSm: 0 1px 3px rgba(160, 85, 247, 0.08), 0 1px 2px rgba(160, 85, 247, 0.05);
  --shadowMd: 0 4px 6px rgba(160, 85, 247, 0.07), 0 2px 4px rgba(160, 85, 247, 0.05), 0 0 0 1px rgba(192, 132, 252, 0.06);
  --shadowLg: 0 10px 25px rgba(160, 85, 247, 0.12), 0 4px 10px rgba(160, 85, 247, 0.08), 0 0 0 1px rgba(192, 132, 252, 0.08);
  --shadowXl: 0 20px 50px rgba(160, 85, 247, 0.15), 0 8px 20px rgba(160, 85, 247, 0.1), 0 0 0 1px rgba(192, 132, 252, 0.1);
  --shadowGlow: 0 0 30px rgba(192, 132, 252, 0.25), 0 0 60px rgba(244, 114, 182, 0.1);

  --radiusSm: 8px;
  --radiusMd: 14px;
  --radiusLg: 22px;
  --radiusXl: 32px;
  --radiusFull: 9999px;

  --spacingXs: 0.5rem;
  --spacingSm: 1rem;
  --spacingMd: 1.5rem;
  --spacingLg: 2.5rem;
  --spacingXl: 4rem;
  --spacing2xl: 6rem;

  --transitionFast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transitionMed: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transitionSlow: 450ms cubic-bezier(0.4, 0, 0.2, 1);

  --fontHeading: 'Inter', sans-serif;
  --fontBody: 'Inter', sans-serif;

  --navHeight: 72px;
  --contentMax: 720px;
  --wideMax: 1100px;
}


*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fontBody);
  color: var(--textPrimary);
  background-color: var(--bgBase);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menuOpen {
  overflow: hidden;
}

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

a {
  color: var(--colorPrimaryDark);
  text-decoration: none;
  transition: color var(--transitionFast);
}

a:hover {
  color: var(--colorSecondary);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}


.gradientText {
  background: var(--gradientText);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--wideMax);
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

.containerNarrow {
  width: 100%;
  max-width: var(--contentMax);
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--navHeight);
  background: rgba(253, 251, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borderLight);
  box-shadow: var(--shadowSm);
  transition: box-shadow var(--transitionMed);
}

.siteHeader.scrolled {
  box-shadow: 0 4px 20px rgba(160, 85, 247, 0.1), 0 1px 4px rgba(160, 85, 247, 0.06);
}

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--wideMax);
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

.siteHeader_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.siteHeader_logoImg {
  height: 36px;
  width: auto;
}

.siteHeader_logoText {
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--gradientText);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.siteNav {
  display: flex;
  align-items: center;
  gap: var(--spacingLg);
}

.siteNav_list {
  display: flex;
  align-items: center;
  gap: var(--spacingMd);
}

.siteNav_link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--textSecondary);
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color var(--transitionFast);
}

.siteNav_link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradientPrimary);
  border-radius: var(--radiusFull);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transitionMed);
}

.siteNav_link:hover {
  color: var(--colorPrimaryDark);
}

.siteNav_link:hover::after,
.siteNav_link.active::after {
  transform: scaleX(1);
}

.siteNav_link.active {
  color: var(--colorPrimaryDark);
  font-weight: 600;
}


.langSwitcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bgMuted);
  border: 1px solid var(--borderLight);
  border-radius: var(--radiusFull);
  padding: 3px 6px;
}

.langBtn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--textMuted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radiusFull);
  transition: all var(--transitionFast);
  letter-spacing: 0.04em;
}

.langBtn:hover {
  color: var(--colorPrimaryDark);
}

.langBtn.active {
  background: var(--gradientPrimary);
  color: white;
  -webkit-text-fill-color: white;
}

.langDivider {
  color: var(--borderMedium);
  font-size: 0.75rem;
}


.siteNav_cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--gradientPrimary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radiusFull);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192, 132, 252, 0.35);
  transition: all var(--transitionMed);
  white-space: nowrap;
}

.siteNav_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.45);
  color: white;
}


.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radiusMd);
  transition: background var(--transitionFast);
}

.navToggle:hover {
  background: var(--bgMuted);
}

.navToggle_bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--textPrimary);
  border-radius: var(--radiusFull);
  transition: all var(--transitionMed);
  transform-origin: center;
}

.navToggle.open .navToggle_bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navToggle.open .navToggle_bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navToggle.open .navToggle_bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobileDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bgSurface);
  z-index: 950;
  transform: translateX(100%);
  transition: transform var(--transitionSlow);
  box-shadow: -8px 0 40px rgba(160, 85, 247, 0.15);
  display: flex;
  flex-direction: column;
  padding: var(--spacingXl) var(--spacingMd) var(--spacingMd);
  overflow-y: auto;
}

.mobileDrawer.open {
  transform: translateX(0);
}

.mobileDrawer_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radiusMd);
  color: var(--textMuted);
  transition: all var(--transitionFast);
  font-size: 1.1rem;
}

.mobileDrawer_close:hover {
  background: var(--bgMuted);
  color: var(--textPrimary);
}

.mobileDrawer_logo {
  margin-bottom: var(--spacingLg);
  padding-bottom: var(--spacingMd);
  border-bottom: 1px solid var(--borderLight);
}

.mobileDrawer_nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobileDrawer_link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: var(--radiusMd);
  color: var(--textSecondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transitionFast);
}

.mobileDrawer_link:hover,
.mobileDrawer_link.active {
  background: var(--bgMuted);
  color: var(--colorPrimaryDark);
}

.mobileDrawer_link i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.mobileDrawer_footer {
  margin-top: auto;
  padding-top: var(--spacingMd);
  border-top: 1px solid var(--borderLight);
  display: flex;
  flex-direction: column;
  gap: var(--spacingMd);
}

.mobileDrawer_lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobileDrawer_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  background: var(--gradientPrimary);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radiusFull);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192, 132, 252, 0.3);
  transition: all var(--transitionMed);
}


.pageWrapper {
  transition: transform var(--transitionSlow), scale var(--transitionSlow);
  transform-origin: right center;
}

.pageWrapper.pushed {
  transform: translateX(-280px) scale(0.95);
  border-radius: var(--radiusLg);
  overflow: hidden;
  pointer-events: none;
}

.drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 16, 53, 0.3);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transitionSlow);
}

.drawerOverlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.mainHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradientHero);
  padding-top: var(--navHeight);
}

.mainHero_bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mainHero_blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}

.mainHero_blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c084fc, #f472b6);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.mainHero_blob--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #38bdf8, #2dd4bf);
  bottom: -80px;
  right: -80px;
  animation-delay: -3s;
}

.mainHero_blob--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #f472b6, #fbbf24);
  top: 40%;
  left: 60%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}


.heroMarquee {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.heroMarquee_track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
}

.heroMarquee_text {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(192, 132, 252, 0.18);
  padding-right: 3rem;
  user-select: none;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.mainHero_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--spacingMd);
}

.mainHero_card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radiusXl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadowXl), var(--shadowGlow);
  text-align: center;
}

.mainHero_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--colorPrimaryDark);
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  padding: 5px 14px;
  border-radius: var(--radiusFull);
  margin-bottom: var(--spacingMd);
}

.mainHero_title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--spacingMd);
  color: var(--textPrimary);
}

.mainHero_subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--textSecondary);
  line-height: 1.7;
  margin-bottom: var(--spacingLg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.mainHero_actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacingMd);
  flex-wrap: wrap;
}

.heroBadge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--spacingMd);
  justify-content: center;
  flex-wrap: wrap;
}

.heroBadge_item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--textMuted);
  font-weight: 500;
}

.heroBadge_item i {
  color: var(--colorTeal);
  font-size: 0.9rem;
}

.heroBadge_sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--borderMedium);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gradientPrimary);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radiusFull);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.4);
  transition: all var(--transitionMed);
  border: none;
  cursor: pointer;
}

.btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(192, 132, 252, 0.5);
  color: white;
}

.btnPrimary:active {
  transform: translateY(-1px);
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--colorPrimaryDark);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radiusFull);
  text-decoration: none;
  border: 2px solid rgba(192, 132, 252, 0.4);
  transition: all var(--transitionMed);
}

.btnSecondary:hover {
  background: rgba(192, 132, 252, 0.08);
  border-color: var(--colorPrimary);
  transform: translateY(-2px);
  color: var(--colorPrimaryDark);
}

.btnOutline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: white;
  color: var(--textSecondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radiusFull);
  text-decoration: none;
  border: 1px solid var(--borderMedium);
  transition: all var(--transitionMed);
  box-shadow: var(--shadowSm);
}

.btnOutline:hover {
  border-color: var(--colorPrimary);
  color: var(--colorPrimaryDark);
  box-shadow: var(--shadowMd);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */

.sectionPad {
  padding: var(--spacing2xl) 0;
}

.sectionPadMd {
  padding: var(--spacingXl) 0;
}

.sectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colorPrimaryDark);
  margin-bottom: var(--spacingMd);
}

.sectionLabel_dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  flex-shrink: 0;
}

.sectionTitle {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--textPrimary);
  margin-bottom: var(--spacingMd);
}

.sectionSubtitle {
  font-size: 1.05rem;
  color: var(--textSecondary);
  line-height: 1.7;
  max-width: 580px;
}

.sectionHeader {
  margin-bottom: var(--spacingXl);
}

.sectionHeader--center {
  text-align: center;
}

.sectionHeader--center .sectionSubtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.featuresSection {
  background: var(--bgBase);
}

.featuresGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--borderLight);
  border-radius: var(--radiusLg);
  overflow: hidden;
  box-shadow: var(--shadowMd);
}

.featureItem {
  background: var(--bgSurface);
  padding: var(--spacingLg) var(--spacingMd);
  display: flex;
  align-items: flex-start;
  gap: var(--spacingMd);
  transition: background var(--transitionFast);
  container-type: inline-size;
  container-name: featureCell;
}

.featureItem:hover {
  background: var(--bgMuted);
}

.featureItem_icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radiusMd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadowSm);
  transition: transform var(--transitionMed);
}

.featureItem:hover .featureItem_icon {
  transform: scale(1.1) rotate(-3deg);
}

.featureItem_icon--purple {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
  color: #7c3aed;
}

.featureItem_icon--pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #be185d;
}

.featureItem_icon--blue {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: #0369a1;
}

.featureItem_icon--teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
  color: #0f766e;
}

.featureItem_icon--mint {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #15803d;
}

.featureItem_icon--amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.featureItem_icon--rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
  color: #be123c;
}

.featureItem_icon--indigo {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #3730a3;
}

.featureItem_body {}

.featureItem_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.featureItem_desc {
  font-size: 0.875rem;
  color: var(--textSecondary);
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */

.stepsSection {
  background: var(--gradientSubtle);
}

.stepsList {
  display: flex;
  flex-direction: column;
  gap: var(--spacingLg);
  max-width: var(--contentMax);
  margin: 0 auto;
}

.stepItem {
  display: flex;
  align-items: flex-start;
  gap: var(--spacingMd);
  padding: var(--spacingLg);
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  box-shadow: var(--shadowMd);
  border: 1px solid var(--borderLight);
  transition: all var(--transitionMed);
  position: relative;
  overflow: hidden;
}

.stepItem::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradientPrimary);
  border-radius: 4px 0 0 4px;
}

.stepItem:hover {
  transform: translateX(6px);
  box-shadow: var(--shadowLg);
}

.stepItem_num {
  width: 44px;
  height: 44px;
  border-radius: var(--radiusMd);
  background: var(--gradientPrimary);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.35);
}

.stepItem_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 6px;
}

.stepItem_desc {
  font-size: 0.9rem;
  color: var(--textSecondary);
  line-height: 1.65;
}

/* ============================================================
   IMAGE SECTIONS
   ============================================================ */

.imageSplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: center;
}

.imageSplit--reverse {
  direction: rtl;
}

.imageSplit--reverse > * {
  direction: ltr;
}

.imageSplit_visual {
  border-radius: var(--radiusLg);
  overflow: hidden;
  box-shadow: var(--shadowLg);
  position: relative;
}

.imageSplit_visual img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform var(--transitionSlow);
}

.imageSplit_visual:hover img {
  transform: scale(1.04);
}

.imageSplit_content {}

.imageSplit_text {
  font-size: 0.95rem;
  color: var(--textSecondary);
  line-height: 1.75;
  margin-bottom: var(--spacingMd);
}

/* ============================================================
   CARDS
   ============================================================ */

.cardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--spacingMd);
}

.infoCard {
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingLg);
  border: 1px solid var(--borderLight);
  box-shadow: var(--shadowMd);
  transition: all var(--transitionMed);
  container-type: inline-size;
  container-name: infoCard;
}

.infoCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadowLg);
  border-color: var(--borderMedium);
}

.infoCard_icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radiusMd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--spacingMd);
  box-shadow: var(--shadowSm);
}

.infoCard_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 8px;
}

.infoCard_text {
  font-size: 0.875rem;
  color: var(--textSecondary);
  line-height: 1.65;
}


.highlightCard {
  background: var(--gradientPrimary);
  border-radius: var(--radiusXl);
  padding: var(--spacingXl) var(--spacingLg);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(192, 132, 252, 0.4);
}

.highlightCard::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}

.highlightCard_title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--spacingMd);
  line-height: 1.2;
}

.highlightCard_text {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: var(--spacingLg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btnWhite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: white;
  color: var(--colorPrimaryDark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radiusFull);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all var(--transitionMed);
}

.btnWhite:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  color: var(--colorPrimaryDark);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faqSection {
  background: var(--bgMuted);
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: var(--spacingSm);
  max-width: var(--contentMax);
  margin: 0 auto;
}

.faqItem {
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  border: 1px solid var(--borderLight);
  overflow: hidden;
  box-shadow: var(--shadowSm);
  transition: box-shadow var(--transitionFast);
}

.faqItem:hover {
  box-shadow: var(--shadowMd);
}

.faqItem.open {
  border-color: var(--borderMedium);
  box-shadow: var(--shadowMd);
}

.faqItem_trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacingMd);
  padding: var(--spacingMd) var(--spacingMd);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transitionFast);
}

.faqItem_trigger:hover {
  background: var(--bgMuted);
}

.faqItem_question {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--textPrimary);
  line-height: 1.4;
}

.faqItem_icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bgMuted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorPrimaryDark);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all var(--transitionMed);
}

.faqItem.open .faqItem_icon {
  background: var(--gradientPrimary);
  color: white;
  transform: rotate(45deg);
}

.faqItem_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transitionSlow);
}

.faqItem.open .faqItem_body {
  max-height: 400px;
}

.faqItem_answer {
  padding: 0 var(--spacingMd) var(--spacingMd);
  font-size: 0.9rem;
  color: var(--textSecondary);
  line-height: 1.75;
  border-top: 1px solid var(--borderLight);
  padding-top: var(--spacingMd);
}

/* ============================================================
   SWIPER / CAROUSEL
   ============================================================ */

.swiperSection {
  background: var(--bgBase);
  overflow: hidden;
}

.swiperSection .swiper {
  padding-bottom: 50px !important;
}

.swiperSlide_card {
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingLg);
  border: 1px solid var(--borderLight);
  box-shadow: var(--shadowMd);
  height: auto;
}

.swiperSlide_icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radiusMd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--spacingMd);
}

.swiperSlide_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 8px;
}

.swiperSlide_text {
  font-size: 0.875rem;
  color: var(--textSecondary);
  line-height: 1.65;
}

.swiper-pagination-bullet {
  background: var(--colorPrimary) !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--gradientPrimary) !important;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contactSection {
  background: var(--bgBase);
}

.contactLayout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacingXl);
  align-items: start;
}

.contactInfo {}

.contactInfo_item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacingMd);
  padding: var(--spacingMd) 0;
  border-bottom: 1px solid var(--borderLight);
}

.contactInfo_item:last-child {
  border-bottom: none;
}

.contactInfo_iconWrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radiusMd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contactInfo_label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--textMuted);
  margin-bottom: 3px;
}

.contactInfo_value {
  font-size: 0.95rem;
  color: var(--textPrimary);
  font-weight: 500;
  line-height: 1.5;
}

.contactInfo_value a {
  color: var(--textPrimary);
  text-decoration: none;
}

.contactInfo_value a:hover {
  color: var(--colorPrimaryDark);
}

.contactForm_card {
  background: var(--bgSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingXl);
  box-shadow: var(--shadowLg);
  border: 1px solid var(--borderLight);
}

.formGroup {
  margin-bottom: var(--spacingMd);
}

.formLabel {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--textSecondary);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

.formInput,
.formTextarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bgMuted);
  border: 1.5px solid var(--borderLight);
  border-radius: var(--radiusMd);
  font-size: 0.95rem;
  color: var(--textPrimary);
  transition: all var(--transitionFast);
  outline: none;
  resize: vertical;
}

.formInput:focus,
.formTextarea:focus {
  border-color: var(--colorPrimary);
  background: white;
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.12);
}

.formInput::placeholder,
.formTextarea::placeholder {
  color: var(--textLight);
}

.formTextarea {
  min-height: 130px;
}

.formCheckbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: var(--spacingMd);
}

.formCheckbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--colorPrimaryDark);
  cursor: pointer;
}

.formCheckbox_text {
  font-size: 0.82rem;
  color: var(--textMuted);
  line-height: 1.5;
}

.formCheckbox_text a {
  color: var(--colorPrimaryDark);
  text-decoration: underline;
}

/* ============================================================
   MAP
   ============================================================ */

.mapWrap {
  border-radius: var(--radiusLg);
  overflow: hidden;
  box-shadow: var(--shadowMd);
  border: 1px solid var(--borderLight);
  margin-top: var(--spacingLg);
}

.mapWrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */

.thanksPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradientHero);
  padding: var(--navHeight) var(--spacingMd) var(--spacingXl);
}

.thanksCard {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radiusXl);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadowXl), var(--shadowGlow);
}

.thanksCard_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto var(--spacingLg);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.4);
}

.thanksCard_title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--textPrimary);
  margin-bottom: var(--spacingMd);
  letter-spacing: -0.02em;
}

.thanksCard_text {
  font-size: 0.975rem;
  color: var(--textSecondary);
  line-height: 1.7;
  margin-bottom: var(--spacingLg);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legalPage {
  padding-top: calc(var(--navHeight) + var(--spacingXl));
  padding-bottom: var(--spacing2xl);
}

.legalHeader {
  text-align: center;
  margin-bottom: var(--spacingXl);
  padding-bottom: var(--spacingXl);
  border-bottom: 1px solid var(--borderLight);
}

.legalHeader_date {
  font-size: 0.82rem;
  color: var(--textMuted);
  margin-top: var(--spacingSm);
}

.legalContent {
  font-size: 0.925rem;
  color: var(--textSecondary);
  line-height: 1.8;
}

.legalContent h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-top: var(--spacingLg);
  margin-bottom: var(--spacingSm);
}

.legalContent h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--textPrimary);
  margin-top: var(--spacingMd);
  margin-bottom: 6px;
}

.legalContent p {
  margin-bottom: var(--spacingSm);
}

.legalContent ul,
.legalContent ol {
  margin-bottom: var(--spacingSm);
  padding-left: var(--spacingMd);
}

.legalContent ul li {
  list-style: disc;
  margin-bottom: 4px;
}

.legalContent ol li {
  list-style: decimal;
  margin-bottom: 6px;
}

.legalContent a {
  color: var(--colorPrimaryDark);
  text-decoration: underline;
}

.cookieTable {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacingMd) 0;
  font-size: 0.85rem;
}

.cookieTable th,
.cookieTable td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--borderLight);
}

.cookieTable th {
  background: var(--bgMuted);
  font-weight: 700;
  color: var(--textPrimary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookieTable tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.pageFooter {
  background: var(--textPrimary);
  color: rgba(255,255,255,0.7);
  padding: var(--spacingXl) 0 var(--spacingMd);
}

.pageFooter_grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--spacingXl);
  margin-bottom: var(--spacingXl);
}

.pageFooter_brand {}

.pageFooter_logoWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--spacingMd);
}

.pageFooter_logoImg {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.pageFooter_logoText {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}

.pageFooter_tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: var(--spacingMd);
}

.pageFooter_contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pageFooter_contactItem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transitionFast);
}

.pageFooter_contactItem:hover {
  color: rgba(255,255,255,0.85);
}

.pageFooter_contactItem i {
  width: 14px;
  color: var(--colorPrimary);
  opacity: 0.8;
}

.pageFooter_colTitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--spacingMd);
}

.pageFooter_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pageFooter_link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transitionFast);
  padding: 2px 0;
}

.pageFooter_link:hover {
  color: rgba(255,255,255,0.9);
}

.pageFooter_bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--spacingMd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacingSm);
}

.pageFooter_copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.pageFooter_legal {
  display: flex;
  align-items: center;
  gap: var(--spacingMd);
  flex-wrap: wrap;
}

.pageFooter_legalLink {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transitionFast);
}

.pageFooter_legalLink:hover {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

.cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--borderMedium);
  box-shadow: 0 -8px 32px rgba(160, 85, 247, 0.12);
  transform: translateY(100%);
  transition: transform var(--transitionSlow);
}

.cookieConsent.visible {
  transform: translateY(0);
}

.cookieConsent_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacingMd);
  padding: 14px var(--spacingLg);
  flex-wrap: wrap;
}

.cookieConsent_text {
  font-size: 0.85rem;
  color: var(--textSecondary);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.cookieConsent_text a {
  color: var(--colorPrimaryDark);
  text-decoration: underline;
}

.cookieConsent_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookieBtn {
  padding: 8px 18px;
  border-radius: var(--radiusFull);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transitionFast);
  white-space: nowrap;
}

.cookieBtn--accept {
  background: var(--gradientPrimary);
  color: white;
  box-shadow: 0 3px 10px rgba(192, 132, 252, 0.35);
}

.cookieBtn--accept:hover {
  box-shadow: 0 6px 18px rgba(192, 132, 252, 0.45);
  transform: translateY(-1px);
}

.cookieBtn--reject {
  background: var(--bgMuted);
  color: var(--textMuted);
  border: 1px solid var(--borderLight);
}

.cookieBtn--reject:hover {
  background: #f1f0f5;
  color: var(--textSecondary);
}

.cookieBtn--customize {
  background: transparent;
  color: var(--colorPrimaryDark);
  border: 1px solid var(--borderMedium);
}

.cookieBtn--customize:hover {
  background: rgba(192, 132, 252, 0.06);
}

.cookieConsent_expanded {
  border-top: 1px solid var(--borderLight);
  padding: var(--spacingMd) var(--spacingLg);
  display: none;
}

.cookieConsent_expanded.open {
  display: block;
}

.cookieCategories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacingMd);
  margin-bottom: var(--spacingMd);
}

.cookieCategory {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.cookieCategory_info {}

.cookieCategory_name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--textPrimary);
}

.cookieCategory_desc {
  font-size: 0.78rem;
  color: var(--textMuted);
}

.toggleSwitch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggleSlider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ddd;
  border-radius: var(--radiusFull);
  transition: background var(--transitionFast);
}

.toggleSlider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transitionFast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggleSwitch input:checked + .toggleSlider {
  background: var(--colorPrimaryDark);
}

.toggleSwitch input:checked + .toggleSlider::before {
  transform: translateX(18px);
}

.toggleSwitch input:disabled + .toggleSlider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.innerHero {
  background: var(--gradientHero);
  padding: calc(var(--navHeight) + var(--spacingXl)) 0 var(--spacingXl);
  position: relative;
  overflow: hidden;
}

.innerHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192, 132, 252, 0.15), transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(56, 189, 248, 0.1), transparent 50%);
  pointer-events: none;
}

.innerHero_content {
  position: relative;
  z-index: 1;
  max-width: var(--contentMax);
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

.innerHero_title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--textPrimary);
  margin-bottom: var(--spacingMd);
  line-height: 1.15;
}

.innerHero_subtitle {
  font-size: 1.05rem;
  color: var(--textSecondary);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================================
   ABOUT / COMMITMENT PAGE
   ============================================================ */

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacingMd);
  margin-top: var(--spacingXl);
}

.valueCard {
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingLg);
  border: 1px solid var(--borderLight);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionMed);
  text-align: center;
}

.valueCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadowMd);
}

.valueCard_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto var(--spacingSm);
}

.valueCard_title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 6px;
}

.valueCard_text {
  font-size: 0.82rem;
  color: var(--textMuted);
  line-height: 1.6;
}


.teamBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingMd);
  margin: var(--spacingLg) 0;
}

.teamBlock_img {
  border-radius: var(--radiusLg);
  overflow: hidden;
  box-shadow: var(--shadowMd);
}

.teamBlock_img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transitionSlow);
}

.teamBlock_img:hover img {
  transform: scale(1.05);
}

/* ============================================================
   REGISTRO PAGE
   ============================================================ */

.registroSteps {
  counter-reset: step;
}

.registroStep {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--spacingMd);
  margin-bottom: var(--spacingLg);
  align-items: start;
}

.registroStep_num {
  width: 40px;
  height: 40px;
  background: var(--gradientPrimary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(192, 132, 252, 0.3);
  counter-increment: step;
}

.registroStep_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--textPrimary);
  margin-bottom: 5px;
}

.registroStep_text {
  font-size: 0.875rem;
  color: var(--textSecondary);
  line-height: 1.65;
}

/* ============================================================
   PARA FAMILIAS PAGE
   ============================================================ */

.scenarioBlock {
  background: var(--bgSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingLg);
  border-left: 4px solid;
  border-color: var(--colorPrimary);
  box-shadow: var(--shadowSm);
  margin-bottom: var(--spacingMd);
}

.scenarioBlock--pink { border-color: var(--colorSecondary); }
.scenarioBlock--teal { border-color: var(--colorTeal); }
.scenarioBlock--blue { border-color: var(--colorAccent); }

.scenarioBlock_label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--colorPrimaryDark);
  margin-bottom: 6px;
}

.scenarioBlock--pink .scenarioBlock_label { color: var(--colorSecondary); }
.scenarioBlock--teal .scenarioBlock_label { color: var(--colorTeal); }
.scenarioBlock--blue .scenarioBlock_label { color: var(--colorAccent); }

.scenarioBlock_text {
  font-size: 0.925rem;
  color: var(--textSecondary);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --navHeight: 64px;
  }

  .siteNav {
    display: none;
  }

  .navToggle {
    display: flex;
  }

  .featuresGrid {
    grid-template-columns: 1fr;
  }

  .imageSplit {
    grid-template-columns: 1fr;
  }

  .imageSplit--reverse {
    direction: ltr;
  }

  .contactLayout {
    grid-template-columns: 1fr;
  }

  .pageFooter_grid {
    grid-template-columns: 1fr;
    gap: var(--spacingLg);
  }

  .teamBlock {
    grid-template-columns: 1fr;
  }

  .cookieConsent_main {
    padding: 12px var(--spacingMd);
  }

  .cookieConsent_actions {
    width: 100%;
    justify-content: flex-end;
  }

  .heroMarquee_text {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .mainHero_card {
    padding: 1.75rem;
  }

  .mainHero_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mainHero_actions a,
  .mainHero_actions button {
    text-align: center;
    justify-content: center;
  }

  .sectionPad {
    padding: var(--spacingXl) 0;
  }

  .sectionPadMd {
    padding: var(--spacingLg) 0;
  }

  .valuesGrid {
    grid-template-columns: 1fr 1fr;
  }

  .cardGrid {
    grid-template-columns: 1fr;
  }

  .cookieCategories {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .valuesGrid {
    grid-template-columns: 1fr;
  }

  .pageFooter_bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pageFooter_legal {
    gap: var(--spacingMd);
  }

  .contactForm_card {
    padding: var(--spacingMd);
  }

  .highlightCard {
    padding: var(--spacingLg) var(--spacingMd);
  }

  .cookieConsent_actions {
    gap: 6px;
  }

  .cookieBtn {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}


@container featureCell (max-width: 300px) {
  .featureItem {
    flex-direction: column;
  }
}

@container infoCard (max-width: 220px) {
  .infoCard {
    padding: var(--spacingMd);
  }
  .infoCard_icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}


.pageContent {
  padding-top: var(--navHeight);
}