/* ============================================
   KOHOWI — MAIN STYLESHEET
   Glass on Gradient | 2026
   ============================================ */


:root {
  --primary: oklch(55% 0.22 270);
  --secondary: oklch(62% 0.20 200);
  --accent: oklch(72% 0.20 45);

  --primary-dark: color-mix(in oklch, var(--primary), black 30%);
  --primary-light: color-mix(in oklch, var(--primary), white 40%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 85%);
  --primary-glass: color-mix(in oklch, var(--primary), transparent 75%);

  --secondary-dark: color-mix(in oklch, var(--secondary), black 25%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 50%);
  --secondary-xlight: color-mix(in oklch, var(--secondary), white 85%);

  --accent-dark: color-mix(in oklch, var(--accent), black 20%);
  --accent-light: color-mix(in oklch, var(--accent), white 40%);
  --accent-xlight: color-mix(in oklch, var(--accent), white 80%);

  --text-primary: oklch(18% 0.02 270);
  --text-secondary: oklch(38% 0.04 270);
  --text-muted: oklch(55% 0.03 270);
  --text-on-dark: oklch(97% 0.005 270);
  --text-on-dark-muted: color-mix(in oklch, var(--text-on-dark), transparent 30%);

  --surface-white: oklch(99% 0.003 270);
  --surface-light: oklch(96% 0.008 270);
  --surface-tinted: color-mix(in oklch, var(--primary), white 92%);
  --surface-glass: color-mix(in oklch, white, transparent 15%);
  --surface-glass-dark: color-mix(in oklch, var(--primary-dark), transparent 30%);

  --border-light: color-mix(in oklch, var(--primary), white 80%);
  --border-glass: color-mix(in oklch, white, transparent 60%);

  --gradient-hero: linear-gradient(135deg,
    oklch(35% 0.24 280) 0%,
    oklch(48% 0.22 260) 40%,
    oklch(42% 0.20 220) 100%);
  --gradient-section: linear-gradient(135deg,
    oklch(40% 0.22 260) 0%,
    oklch(52% 0.20 290) 100%);
  --gradient-cta: linear-gradient(135deg,
    oklch(38% 0.24 270) 0%,
    oklch(55% 0.20 210) 100%);
  --gradient-card: linear-gradient(135deg,
    color-mix(in oklch, var(--primary), white 90%) 0%,
    color-mix(in oklch, var(--secondary), white 88%) 100%);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--primary), transparent 85%),
               0 1px 2px color-mix(in oklch, black, transparent 94%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--primary), transparent 75%),
               0 2px 6px color-mix(in oklch, black, transparent 90%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--primary), transparent 65%),
               0 4px 12px color-mix(in oklch, black, transparent 88%),
               0 1px 3px color-mix(in oklch, black, transparent 94%);
  --shadow-xl: 0 20px 60px color-mix(in oklch, var(--primary), transparent 55%),
               0 8px 24px color-mix(in oklch, black, transparent 85%),
               0 2px 6px color-mix(in oklch, black, transparent 92%);
  --shadow-glass: 0 8px 32px color-mix(in oklch, var(--primary-dark), transparent 60%),
                  inset 0 1px 0 color-mix(in oklch, white, transparent 40%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --nav-height: 72px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--surface-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-base); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


h1, h2, h3, h4, h5, h6 {
  font-family: 'Gabarito', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


.global-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.global-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-xlight);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.global-label--light {
  color: var(--text-on-dark);
  background: color-mix(in oklch, white, transparent 80%);
  border-color: var(--border-glass);
}


.global-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: 'Gabarito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.global-btn--primary {
  background: var(--primary);
  color: var(--text-on-dark);
  box-shadow: 0 4px 16px color-mix(in oklch, var(--primary), transparent 50%),
              0 1px 3px color-mix(in oklch, black, transparent 88%);
}
.global-btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in oklch, var(--primary), transparent 40%),
              0 2px 6px color-mix(in oklch, black, transparent 85%);
}

.global-btn--primary-light {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.global-btn--primary-light:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.global-btn--ghost {
  background: color-mix(in oklch, white, transparent 80%);
  color: var(--text-on-dark);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
}
.global-btn--ghost:hover {
  background: color-mix(in oklch, white, transparent 70%);
  transform: translateY(-2px);
}

.global-btn--ghost-light {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid color-mix(in oklch, white, transparent 50%);
}
.global-btn--ghost-light:hover {
  background: color-mix(in oklch, white, transparent 85%);
  transform: translateY(-2px);
}

.global-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.global-btn--outline:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
}


.global-skeleton {
  position: fixed;
  inset: 0;
  background: var(--surface-white);
  z-index: 9999;
  padding: var(--space-md);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.global-skeleton.hidden {
  opacity: 0;
  visibility: hidden;
}

.skeleton-block {
  background: linear-gradient(90deg,
    oklch(90% 0.01 270) 25%,
    oklch(93% 0.005 270) 50%,
    oklch(90% 0.01 270) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.skeleton-logo { width: 120px; height: 36px; }
.skeleton-nav-links { display: flex; gap: 2rem; }
.skeleton-link { width: 80px; height: 16px; }
.skeleton-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  gap: 1.2rem;
}
.skeleton-hero-tag { width: 180px; height: 28px; border-radius: var(--radius-full); }
.skeleton-hero-h1 { width: 600px; max-width: 90%; height: 56px; border-radius: var(--radius-md); }
.skeleton-hero-h1.short { width: 420px; }
.skeleton-hero-sub { width: 500px; max-width: 85%; height: 20px; }
.skeleton-hero-btn { width: 180px; height: 48px; border-radius: var(--radius-md); margin-top: 0.5rem; }


.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.global-header.nav-light {
  background: color-mix(in oklch, white, transparent 10%);
  box-shadow: 0 1px 20px color-mix(in oklch, var(--primary), transparent 88%),
              0 0 0 1px color-mix(in oklch, var(--primary), transparent 92%);
  backdrop-filter: blur(16px);
}

.global-header.nav-dark {
  background: color-mix(in oklch, var(--primary-dark), transparent 15%);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px color-mix(in oklch, black, transparent 75%);
}

.global-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-nav__logo { display: flex; align-items: center; }
.global-nav__logo-img { height: 36px; width: auto; }

.global-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.global-nav__link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
  color: var(--text-on-dark);
}

.global-header.nav-light .global-nav__link {
  color: var(--text-primary);
}

.global-nav__link:hover,
.global-nav__link.active {
  background: color-mix(in oklch, var(--primary), transparent 88%);
  color: var(--primary);
}

.global-header.nav-dark .global-nav__link:hover,
.global-header.nav-dark .global-nav__link.active {
  background: color-mix(in oklch, white, transparent 85%);
  color: var(--text-on-dark);
}

.global-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.global-nav__hamburger:hover { background: color-mix(in oklch, white, transparent 80%); }
.global-nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
  display: block;
}
.global-header.nav-light .global-nav__hamburger span { background: var(--text-primary); }


.global-mobile-overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, black, transparent 40%);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  backdrop-filter: blur(4px);
}
.global-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.global-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--surface-white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  box-shadow: -8px 0 40px color-mix(in oklch, var(--primary), transparent 70%);
}
.global-mobile-panel.active { transform: translateX(0); }

.global-mobile-panel__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}
.global-mobile-panel__close:hover {
  background: var(--surface-light);
  color: var(--text-primary);
}

.global-mobile-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--space-md);
}

.global-mobile-panel__link {
  padding: 0.9rem 1rem;
  font-family: 'Gabarito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.global-mobile-panel__link:hover,
.global-mobile-panel__link.active {
  background: var(--primary-xlight);
  color: var(--primary);
  padding-left: 1.4rem;
}

.global-mobile-panel__footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}
.global-mobile-panel__contact {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}
.global-mobile-panel__contact:hover { color: var(--primary); }

/* ============================================
   HOME PAGE
   ============================================ */


.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl);
}

.home-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.home-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.home-hero__orb--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 30%) 0%, transparent 70%);
  top: -10%;
  right: -10%;
}
.home-hero__orb--2 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: radial-gradient(circle, color-mix(in oklch, var(--accent), transparent 50%) 0%, transparent 70%);
  bottom: 5%;
  left: 5%;
}
.home-hero__orb--3 {
  width: clamp(150px, 25vw, 280px);
  height: clamp(150px, 25vw, 280px);
  background: radial-gradient(circle, color-mix(in oklch, var(--primary-light), transparent 40%) 0%, transparent 70%);
  top: 40%;
  left: 30%;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-hero__content { max-width: 640px; }

.home-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in oklch, white, transparent 75%);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  color: var(--text-on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.home-hero__heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.home-hero__heading-accent {
  background: linear-gradient(90deg,
    oklch(88% 0.18 70) 0%,
    oklch(80% 0.20 50) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero__subheading {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-on-dark-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.home-hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark-muted);
  font-size: 0.82rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}


.home-hero__visual { display: none; }

.home-hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.home-hero__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.home-hero__card--back {
  position: absolute;
  inset: 0;
  transform: rotate(6deg) translateY(12px);
  background: color-mix(in oklch, var(--secondary), transparent 50%);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(4px);
}

.home-hero__card--mid {
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-xl);
}

.home-hero__card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.home-hero__card--front {
  position: absolute;
  bottom: -40px;
  right: -30px;
  z-index: 2;
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}

.home-hero__card-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-hero__card-stat i {
  color: var(--accent-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.home-hero__card-stat > div {
  display: flex;
  flex-direction: column;
}

.home-hero__card-stat-label {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}

.home-hero__card-stat-value {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.85rem;
  color: var(--text-on-dark);
  font-weight: 600;
}


.home-problem {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.home-problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-problem__text { max-width: 560px; }

.home-problem__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.home-problem__text p {
  margin-bottom: var(--space-md);
}

.home-problem__image-wrap { display: flex; justify-content: center; }

.home-problem__card-stack {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.home-problem__card-offset {
  position: absolute;
  inset: 0;
  transform: rotate(-4deg) translate(10px, 14px);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.home-problem__img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-problem__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}


.home-benefits {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.home-benefits__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-section);
  z-index: 0;
}

.home-benefits__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.home-benefits__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.home-benefits__intro {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
}

.home-benefits__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.home-benefits__card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px color-mix(in oklch, var(--primary-dark), transparent 50%),
              inset 0 1px 0 color-mix(in oklch, white, transparent 30%);
}

.home-benefits__card--featured {
  background: color-mix(in oklch, white, transparent 10%);
  border-color: color-mix(in oklch, white, transparent 30%);
}

.home-benefits__icon {
  width: 52px;
  height: 52px;
  background: color-mix(in oklch, var(--accent), transparent 60%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
  color: var(--text-on-dark);
  box-shadow: 0 4px 12px color-mix(in oklch, var(--accent), transparent 60%);
}

.home-benefits__card-title {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  margin-bottom: 0.75rem;
}

.home-benefits__card-text {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.home-benefits__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: oklch(85% 0.15 145);
}

.home-benefits__check i {
  background: color-mix(in oklch, oklch(55% 0.20 145), transparent 70%);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}


.home-how {
  padding: var(--space-3xl) 0;
  background: var(--surface-light);
}

.home-how__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}

.home-how__heading { margin-bottom: var(--space-sm); }

.home-how__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.home-how__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.home-how__step-number {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--primary-xlight);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.home-how__step-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.home-how__step-content p {
  max-width: 480px;
}

.home-how__step-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-how__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}


.home-workshops {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.home-workshops__gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
  z-index: 0;
}

.home-workshops__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.home-workshops__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.home-workshops__intro {
  color: var(--text-on-dark-muted);
}

.home-workshops__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.home-workshops__card {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.home-workshops__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px color-mix(in oklch, var(--primary-dark), transparent 50%),
              inset 0 1px 0 color-mix(in oklch, white, transparent 30%);
}

.home-workshops__card--accent {
  background: color-mix(in oklch, var(--accent), transparent 70%);
  border-color: color-mix(in oklch, var(--accent-light), transparent 50%);
}

.home-workshops__card-icon {
  font-size: 1.6rem;
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.home-workshops__card-title {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  margin-bottom: 0.6rem;
}

.home-workshops__card p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.home-workshops__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: oklch(85% 0.15 70);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--transition-base), color var(--transition-base);
}
.home-workshops__card-link:hover { gap: 0.7rem; color: white; }

.home-workshops__cta {
  position: relative;
  z-index: 1;
  text-align: center;
}


.home-situations {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.home-situations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.home-situations__content { max-width: 560px; }

.home-situations__heading {
  margin-bottom: var(--space-lg);
}

.home-situations__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.home-situations__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.home-situations__item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.home-situations__item p {
  margin: 0;
  color: var(--text-secondary);
}

.home-situations__visual { display: flex; justify-content: center; }

.home-situations__img-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.home-situations__img-stack-back {
  position: absolute;
  inset: 0;
  transform: rotate(3deg) translate(-8px, 8px);
  background: var(--primary-xlight);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.home-situations__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}


.home-cta {
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.home-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.home-cta__orb {
  position: absolute;
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(circle, color-mix(in oklch, var(--accent), transparent 40%) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.home-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.home-cta__glass {
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: var(--shadow-glass);
  text-align: center;
  max-width: 680px;
  width: 100%;
}

.home-cta__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.home-cta__text {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* ============================================
   PERSPECTIVE PAGE
   ============================================ */
.perspective-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.perspective-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-section);
  z-index: 0;
}

.perspective-hero__orb {
  position: absolute;
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, color-mix(in oklch, var(--accent), transparent 50%) 0%, transparent 70%);
  bottom: -20%;
  right: -10%;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.perspective-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.perspective-hero__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.perspective-hero__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.perspective-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.perspective-content__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.perspective-content__sidebar-card {
  background: var(--surface-tinted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.perspective-content__sidebar-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.perspective-content__sidebar-card ul { display: flex; flex-direction: column; gap: 0.4rem; }

.perspective-content__sidebar-card a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  display: block;
  transition: all var(--transition-base);
}
.perspective-content__sidebar-card a:hover {
  color: var(--primary);
  background: var(--primary-xlight);
  padding-left: 0.8rem;
}

.perspective-content__article {
  max-width: 720px;
}

.perspective-content__section {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-light);
}

.perspective-content__section:last-child {
  border-bottom: none;
}

.perspective-content__section h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.perspective-content__callout {
  background: var(--primary-xlight);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.perspective-content__callout i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.perspective-content__callout p {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.perspective-content__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

.perspective-content__cta-block {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.perspective-content__cta-block h3 {
  margin-bottom: 0.5rem;
}

.perspective-content__cta-block p {
  margin-bottom: var(--space-md);
}

/* ============================================
   WORKSHOPS PAGE
   ============================================ */
.workshops-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.workshops-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.workshops-hero__orb {
  position: absolute;
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, color-mix(in oklch, var(--secondary), transparent 40%) 0%, transparent 70%);
  top: -20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.workshops-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.workshops-hero__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.workshops-hero__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 580px;
}

.workshops-list {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.workshops-list__item {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-light);
}

.workshops-list__item:last-child {
  border-bottom: none;
}

.workshops-list__item--alt {
  background: transparent;
}

.workshops-list__item-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.workshops-list__item-number {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.workshops-list__item-tag {
  background: var(--primary-xlight);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.workshops-list__item-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.workshops-list__item-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.workshops-list__item-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.workshops-list__item-body p {
  margin-bottom: var(--space-sm);
}

.workshops-list__item-covers {
  margin-top: var(--space-md);
  background: var(--surface-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-light);
}

.workshops-list__item-covers h4 {
  margin-bottom: var(--space-sm);
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workshops-list__item-covers ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.workshops-list__item-covers li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.workshops-list__item-covers li i {
  color: oklch(55% 0.20 145);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.workshops-list__card-stack {
  position: relative;
}

.workshops-list__card-back {
  position: absolute;
  inset: 0;
  transform: rotate(-3deg) translate(8px, 10px);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.workshops-list__item-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  display: block;
}

.workshops-cta {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.workshops-cta__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-section);
  z-index: 0;
}

.workshops-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.workshops-cta__glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-glass);
  text-align: center;
  max-width: 580px;
  width: 100%;
}

.workshops-cta__glass h2 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-sm);
}

.workshops-cta__glass p {
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================
   SITUATIONS PAGE
   ============================================ */
.situations-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.situations-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-cta);
  z-index: 0;
}

.situations-hero__orb {
  position: absolute;
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, color-mix(in oklch, var(--accent), transparent 50%) 0%, transparent 70%);
  bottom: -20%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.situations-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.situations-hero__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.situations-hero__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.situations-grid-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.situations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.situations-grid__card {
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.situations-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.situations-grid__card--accent {
  background: var(--primary-xlight);
  border-color: var(--border-light);
}

.situations-grid__card-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.situations-grid__card-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.situations-grid__card-content p {
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.situations-grid__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap var(--transition-base);
}
.situations-grid__card-link:hover { gap: 0.7rem; }

.situations-bridge {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--surface-light);
}

.situations-bridge__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.situations-bridge__text h2 {
  margin-bottom: var(--space-md);
}

.situations-bridge__text p {
  margin-bottom: var(--space-md);
}

.situations-bridge__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.situations-bridge__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact-hero__heading {
  color: var(--text-on-dark);
  margin-bottom: var(--space-md);
}

.contact-hero__sub {
  color: var(--text-on-dark-muted);
  font-size: 1.05rem;
}

.contact-form-section {
  padding: var(--space-2xl) 0;
}

.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-form-section__map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-lg);
}

.contact-form-section__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-section__info {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form-section__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-form-section__info-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-form-section__info-item div {
  display: flex;
  flex-direction: column;
}

.contact-form-section__info-item strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact-form-section__info-item span,
.contact-form-section__info-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-base);
}
.contact-form-section__info-item a:hover { color: var(--primary); }

.contact-form-section__form-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.contact-form-section__form-intro {
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.contact-form-section__field {
  margin-bottom: var(--space-md);
}

.contact-form-section__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.contact-form-section__field input,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--surface-white);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  min-height: 48px;
}

.contact-form-section__field input:focus,
.contact-form-section__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary), transparent 80%);
}

.contact-form-section__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-section__field--checkbox {
  display: flex;
  align-items: flex-start;
}

.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-form-section__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--primary);
}

.contact-form-section__checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form-section__error {
  color: oklch(50% 0.20 25);
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
  min-height: 0;
}

.contact-form-section__submit { width: 100%; justify-content: center; }

.contact-office {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--surface-light);
}

.contact-office__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.contact-office__heading {
  margin-bottom: var(--space-md);
}

.contact-office__text p {
  margin-bottom: var(--space-md);
}

.contact-office__img-wrap { display: flex; justify-content: center; }

.contact-office__img-stack {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.contact-office__img-back {
  position: absolute;
  inset: 0;
  transform: rotate(3deg) translate(10px, 12px);
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.contact-office__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-md);
}

.thanks-section__inner {
  text-align: center;
  max-width: 560px;
}

.thanks-section__icon {
  font-size: 4rem;
  color: oklch(55% 0.20 145);
  margin-bottom: var(--space-lg);
}

.thanks-section__heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.thanks-section__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--surface-tinted);
  border-bottom: 1px solid var(--border-light);
}

.legal-hero__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

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

.legal-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-content__inner {
  max-width: 800px;
}

.legal-content__intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.8;
}

.legal-content__section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.legal-content__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-content__section h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-xlight);
}

.legal-content__section p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.global-footer {
  background: var(--text-primary);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: auto;
}

.global-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.global-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

.global-footer__tagline {
  color: oklch(65% 0.03 270);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.global-footer__address {
  color: oklch(60% 0.03 270);
  font-size: 0.88rem;
  line-height: 1.8;
}

.global-footer__address a {
  color: oklch(65% 0.03 270);
  transition: color var(--transition-base);
}
.global-footer__address a:hover { color: var(--primary-light); }

.global-footer__nav-title {
  color: oklch(80% 0.03 270);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.global-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.global-footer__nav a {
  color: oklch(60% 0.03 270);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}
.global-footer__nav a:hover { color: var(--primary-light); }

.global-footer__bottom {
  border-top: 1px solid oklch(28% 0.02 270);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.global-footer__bottom p {
  color: oklch(45% 0.02 270);
  font-size: 0.82rem;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.ki-cookie-card {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 320px;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 9000;
  transform: translateY(calc(100% + var(--space-md)));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
  overflow: hidden;
}

.ki-cookie-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.ki-cookie-card__header {
  padding: var(--space-md) var(--space-md) 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.ki-cookie-card__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ki-cookie-card__title {
  font-family: 'Gabarito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.ki-cookie-card__body {
  padding: 0.75rem var(--space-md) var(--space-sm);
}

.ki-cookie-card__text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.ki-cookie-card__text a {
  color: var(--primary);
  text-decoration: underline;
}

.ki-cookie-card__toggles {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ki-cookie-card__toggles.expanded {
  max-height: 300px;
  padding-bottom: 0.5rem;
}

.ki-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
}

.ki-cookie-toggle:last-child { border-bottom: none; }

.ki-cookie-toggle__label {
  font-size: 0.82rem;
  color: var(--text-primary);
  font-weight: 500;
}

.ki-cookie-toggle__sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.ki-toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.ki-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ki-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: oklch(80% 0.02 270);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}

.ki-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
}

.ki-toggle-switch input:checked + .ki-toggle-slider {
  background: var(--primary);
}

.ki-toggle-switch input:checked + .ki-toggle-slider::before {
  transform: translateX(16px);
}

.ki-toggle-switch input:disabled + .ki-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.ki-cookie-card__actions {
  padding: 0 var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ki-btn {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  font-family: 'Gabarito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  min-height: 44px;
}

.ki-btn--accept {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px color-mix(in oklch, var(--primary), transparent 60%);
}
.ki-btn--accept:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.ki-btn--necessary {
  background: var(--surface-light);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.ki-btn--necessary:hover {
  background: var(--surface-tinted);
  color: var(--text-primary);
}

.ki-btn--customize {
  background: transparent;
  color: var(--primary);
  font-size: 0.8rem;
  text-decoration: underline;
}
.ki-btn--customize:hover { color: var(--primary-dark); }

/* ============================================
   RESPONSIVE — TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .home-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-workshops__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .situations-grid__card--wide {
    grid-column: 1 / -1;
  }

  .global-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================ */
@media (min-width: 900px) {
  .global-nav__links { display: flex; }
  .global-nav__hamburger { display: none; }

  .home-hero__inner {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero__visual {
    display: flex;
    justify-content: flex-end;
  }

  .home-problem__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-how__step {
    grid-template-columns: auto 1fr 1fr;
    gap: var(--space-xl);
  }

  .home-how__step--reverse {
    direction: rtl;
  }

  .home-how__step--reverse > * {
    direction: ltr;
  }

  .home-situations__grid {
    grid-template-columns: 1fr 1fr;
  }

  .perspective-content__layout {
    grid-template-columns: 240px 1fr;
  }

  .workshops-list__item-grid {
    grid-template-columns: 1fr 1fr;
  }

  .situations-bridge__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-section__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-office__grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .global-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1100px+)
   ============================================ */
@media (min-width: 1100px) {
  .home-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-benefits__card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .home-benefits__card:nth-child(5) {
    grid-column: 2 / 3;
  }

  .home-workshops__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .situations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .situations-grid__card--wide {
    grid-column: 1 / 3;
  }
}

/* ============================================
   UTILITY & PRINT
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}