/* ============================================
   ZENYNVORAX DIGITAL — STYLE.CSS
   Prefix: zd-
   Design: Ink & Paper
   ============================================ */


:root {
  --zd-paper: #F5F0E8;
  --zd-paper-warm: #EDE8DC;
  --zd-ink: #1C1A16;
  --zd-ink-soft: #3A3630;
  --zd-ink-muted: #6B6560;
  --zd-ink-faint: #9B9590;
  --zd-accent: #7C5C3A;
  --zd-accent-light: #A07848;
  --zd-accent-pale: #F0E6D4;
  --zd-white: #FDFAF5;
  --zd-border: #D8D0C4;
  --zd-border-light: #E8E2D8;

  --zd-shadow-sm: 0 1px 3px rgba(28,26,22,0.06), 0 1px 2px rgba(28,26,22,0.04);
  --zd-shadow-md: 0 4px 12px rgba(28,26,22,0.08), 0 2px 6px rgba(28,26,22,0.05);
  --zd-shadow-lg: 0 12px 32px rgba(28,26,22,0.10), 0 4px 12px rgba(28,26,22,0.06);
  --zd-shadow-xl: 0 24px 56px rgba(28,26,22,0.12), 0 8px 20px rgba(28,26,22,0.07);

  --zd-radius-sm: 4px;
  --zd-radius-md: 8px;
  --zd-radius-lg: 16px;
  --zd-radius-xl: 24px;

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

  --zd-nav-h: 72px;
}


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

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

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--zd-paper);
  color: var(--zd-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  body { padding-bottom: 64px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--zd-ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin-bottom: 1rem; color: var(--zd-ink-soft); }
p:last-child { margin-bottom: 0; }


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

.zd-container--narrow {
  max-width: 800px;
}


.zd-section {
  padding: var(--zd-space-2xl) 0;
  position: relative;
}

.zd-bg-warm { background-color: var(--zd-paper-warm); }

.zd-section__header {
  text-align: center;
  margin-bottom: var(--zd-space-xl);
}

.zd-section__title {
  margin-top: var(--zd-space-xs);
}


.zd-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-xs);
}

.zd-label--light { color: rgba(245,240,232,0.7); }


.zd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--zd-radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
}

.zd-btn--primary {
  background: var(--zd-ink);
  color: var(--zd-paper);
  border-color: var(--zd-ink);
}
.zd-btn--primary:hover {
  background: var(--zd-ink-soft);
  border-color: var(--zd-ink-soft);
  box-shadow: var(--zd-shadow-md);
  transform: translateY(-1px);
}

.zd-btn--ghost {
  background: transparent;
  color: var(--zd-ink);
  border-color: var(--zd-border);
}
.zd-btn--ghost:hover {
  border-color: var(--zd-ink);
  background: rgba(28,26,22,0.04);
}

.zd-btn--outline {
  background: transparent;
  color: var(--zd-ink);
  border-color: var(--zd-ink);
}
.zd-btn--outline:hover {
  background: var(--zd-ink);
  color: var(--zd-paper);
}

.zd-btn--white {
  background: var(--zd-paper);
  color: var(--zd-ink);
  border-color: var(--zd-paper);
}
.zd-btn--white:hover {
  background: var(--zd-white);
  box-shadow: var(--zd-shadow-md);
  transform: translateY(-1px);
}

.zd-btn--white-outline {
  background: transparent;
  color: var(--zd-paper);
  border-color: rgba(245,240,232,0.5);
}
.zd-btn--white-outline:hover {
  background: rgba(245,240,232,0.15);
  border-color: var(--zd-paper);
}

.zd-btn--full { width: 100%; justify-content: center; }


.zd-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--zd-accent);
  transition: gap 0.2s ease, color 0.2s ease;
}
.zd-link-arrow:hover { gap: 0.7rem; color: var(--zd-accent-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.zd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--zd-paper);
  height: var(--zd-nav-h);
  transition: box-shadow 0.3s ease;
}

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

.zd-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.zd-nav__logo-img {
  height: 36px;
  width: auto;
}

.zd-nav__links {
  display: flex;
  align-items: center;
  gap: var(--zd-space-md);
}

.zd-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--zd-ink-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.zd-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--zd-accent);
  transition: width 0.25s ease;
}

.zd-nav__link:hover,
.zd-nav__link--active {
  color: var(--zd-ink);
}

.zd-nav__link:hover::after,
.zd-nav__link--active::after {
  width: 100%;
}

.zd-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  background: var(--zd-ink);
  color: var(--zd-paper);
  border-radius: var(--zd-radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  min-height: 44px;
}

.zd-nav__cta:hover {
  background: var(--zd-accent);
  transform: translateY(-1px);
  box-shadow: var(--zd-shadow-sm);
}

.zd-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.zd-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--zd-ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}


.zd-nav--shadow-1 { box-shadow: 0 1px 4px rgba(28,26,22,0.06); }
.zd-nav--shadow-2 { box-shadow: 0 2px 10px rgba(28,26,22,0.09); }
.zd-nav--shadow-3 { box-shadow: 0 4px 20px rgba(28,26,22,0.13); }
.zd-nav--shadow-4 { box-shadow: 0 6px 30px rgba(28,26,22,0.16); }

/* ============================================
   MOBILE BOTTOM TABS
   ============================================ */
.zd-mobile-tabs {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--zd-paper);
  border-top: 1px solid var(--zd-border);
  box-shadow: 0 -4px 16px rgba(28,26,22,0.08);
  height: 64px;
  flex-direction: row;
  align-items: stretch;
}

.zd-mobile-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--zd-ink-muted);
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 44px;
  padding: 8px 4px;
}

.zd-mobile-tab i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.zd-mobile-tab:hover,
.zd-mobile-tab--active {
  color: var(--zd-accent);
  background: var(--zd-accent-pale);
}

.zd-mobile-tab--active i { transform: scale(1.1); }

/* ============================================
   HERO SECTION
   ============================================ */
.zd-hero {
  min-height: 100vh;
  padding-top: var(--zd-nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--zd-space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--zd-space-md);
  padding-right: var(--zd-space-md);
  position: relative;
  overflow: hidden;
}

.zd-hero__bg-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--zd-accent-pale) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.zd-hero__deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--zd-accent-pale) 0%, transparent 70%);
  top: 10%;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

.zd-hero__content {
  position: relative;
  z-index: 1;
}

.zd-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-sm);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--zd-accent);
  border-radius: 100px;
}

.zd-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--zd-ink);
  margin-bottom: var(--zd-space-md);
}

.zd-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--zd-ink-soft);
  margin-bottom: var(--zd-space-lg);
  max-width: 520px;
}

.zd-hero__actions {
  display: flex;
  gap: var(--zd-space-sm);
  flex-wrap: wrap;
}

.zd-hero__image-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-xl);
  aspect-ratio: 4/5;
}

.zd-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.zd-hero__image-wrap:hover .zd-hero__image {
  transform: scale(1.02);
}

/* ============================================
   PAGE HERO
   ============================================ */
.zd-page-hero {
  padding-top: calc(var(--zd-nav-h) + var(--zd-space-xl));
  padding-bottom: var(--zd-space-xl);
  background: var(--zd-paper-warm);
  border-bottom: 1px solid var(--zd-border);
}

.zd-page-hero--compact {
  padding-top: calc(var(--zd-nav-h) + var(--zd-space-lg));
  padding-bottom: var(--zd-space-lg);
}

.zd-page-hero__inner {
  max-width: 700px;
}

.zd-page-hero__title {
  margin-top: var(--zd-space-xs);
  margin-bottom: var(--zd-space-sm);
}

.zd-page-hero__sub {
  font-size: 1.1rem;
  color: var(--zd-ink-soft);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   INFO BLOCKS
   ============================================ */
.zd-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zd-space-md);
}

.zd-info-card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-lg);
  transition: all 0.3s ease;
  box-shadow: var(--zd-shadow-sm);
}

.zd-info-card:hover {
  box-shadow: var(--zd-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--zd-accent-pale);
}

.zd-info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--zd-accent-pale);
  border-radius: var(--zd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--zd-space-md);
  font-size: 1.2rem;
  color: var(--zd-accent);
  transition: background 0.25s ease;
}

.zd-info-card:hover .zd-info-card__icon {
  background: var(--zd-accent);
  color: var(--zd-paper);
}

.zd-info-card__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.zd-info-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--zd-ink-muted);
  margin-bottom: 0;
}

/* ============================================
   QUAD GRID FEATURE
   ============================================ */
.zd-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--zd-space-md);
}

.zd-quad__main {
  grid-row: 1 / 3;
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-lg);
}

.zd-quad__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.zd-quad__text {
  padding: var(--zd-space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zd-quad__title {
  margin-top: var(--zd-space-xs);
  margin-bottom: var(--zd-space-sm);
}

.zd-quad__body {
  font-size: 0.95rem;
  color: var(--zd-ink-soft);
  margin-bottom: var(--zd-space-sm);
}

.zd-quad__stat-a,
.zd-quad__stat-b {
  display: flex;
}

.zd-stat-card {
  background: var(--zd-paper-warm);
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-md);
  flex: 1;
  transition: all 0.3s ease;
}

.zd-stat-card:hover {
  box-shadow: var(--zd-shadow-md);
  border-color: var(--zd-accent);
}

.zd-stat-card i {
  font-size: 1.5rem;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-xs);
}

.zd-stat-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.zd-stat-card p {
  font-size: 0.85rem;
  color: var(--zd-ink-muted);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ============================================
   COURSES PREVIEW
   ============================================ */
.zd-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zd-space-md);
}

.zd-course-card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  overflow: hidden;
  box-shadow: var(--zd-shadow-sm);
  transition: all 0.3s ease;
}

.zd-course-card:hover {
  box-shadow: var(--zd-shadow-lg);
  transform: translateY(-4px);
}

.zd-course-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.zd-course-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zd-course-card:hover .zd-course-card__img {
  transform: scale(1.05);
}

.zd-course-card__body {
  padding: var(--zd-space-md);
}

.zd-course-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zd-accent);
  background: var(--zd-accent-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.zd-course-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.zd-course-card__desc {
  font-size: 0.875rem;
  color: var(--zd-ink-muted);
  line-height: 1.6;
  margin-bottom: var(--zd-space-sm);
}

/* ============================================
   CTA BANNER
   ============================================ */
.zd-cta-banner {
  background: var(--zd-ink);
  padding: var(--zd-space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.zd-cta-banner__deco {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,58,0.3) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.zd-cta-banner__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.zd-cta-banner__title {
  color: var(--zd-paper);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: var(--zd-space-xs);
  margin-bottom: var(--zd-space-sm);
}

.zd-cta-banner__sub {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  margin-bottom: var(--zd-space-lg);
  line-height: 1.7;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.zd-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zd-space-md);
}

.zd-contact-card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-lg);
  text-align: center;
  box-shadow: var(--zd-shadow-sm);
  transition: all 0.3s ease;
}

.zd-contact-card:hover {
  box-shadow: var(--zd-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--zd-accent-pale);
}

.zd-contact-card__icon {
  width: 56px;
  height: 56px;
  background: var(--zd-accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--zd-space-sm);
  font-size: 1.3rem;
  color: var(--zd-accent);
  transition: all 0.25s ease;
}

.zd-contact-card:hover .zd-contact-card__icon {
  background: var(--zd-accent);
  color: var(--zd-paper);
}

.zd-contact-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--zd-ink-muted);
  margin-bottom: 0.3rem;
}

.zd-contact-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--zd-ink);
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}

a.zd-contact-card__value:hover { color: var(--zd-accent); }

.zd-contact-card__note {
  font-size: 0.8rem;
  color: var(--zd-ink-faint);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.zd-footer {
  background: var(--zd-ink);
  color: var(--zd-paper);
  padding: var(--zd-space-2xl) 0 0;
}

.zd-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--zd-space-xl);
  padding-bottom: var(--zd-space-xl);
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

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

.zd-footer__tagline {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.65;
  margin-bottom: 0;
}

.zd-footer__heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.5);
  margin-bottom: var(--zd-space-sm);
}

.zd-footer__nav ul,
.zd-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zd-footer__nav a,
.zd-footer__legal a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s ease;
}

.zd-footer__nav a:hover,
.zd-footer__legal a:hover {
  color: var(--zd-paper);
}

.zd-footer__info p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.8;
  margin-bottom: 0;
}

.zd-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--zd-space-md) 0;
  gap: var(--zd-space-sm);
  flex-wrap: wrap;
}

.zd-footer__bottom p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 0;
}

/* ============================================
   VISION PAGE
   ============================================ */
.zd-vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zd-space-xl);
  align-items: center;
}

.zd-vision-image {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-xl);
}

.zd-vision-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.zd-vision-text__title {
  margin-bottom: var(--zd-space-md);
}

.zd-vision-text p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--zd-space-sm);
}


.zd-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--zd-space-md);
}

.zd-value-card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-lg);
  transition: all 0.3s ease;
}

.zd-value-card:hover {
  box-shadow: var(--zd-shadow-md);
  border-color: var(--zd-accent);
}

.zd-value-icon {
  font-size: 1.6rem;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-sm);
  display: block;
}

.zd-value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.zd-value-card p {
  font-size: 0.9rem;
  color: var(--zd-ink-muted);
  line-height: 1.65;
  margin-bottom: 0;
}


.zd-mission {
  background: var(--zd-ink);
}

.zd-mission .zd-label { color: rgba(245,240,232,0.6); }

.zd-mission__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.zd-mission__quote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--zd-paper);
  line-height: 1.65;
  border-left: none;
  margin: var(--zd-space-md) 0;
  padding: var(--zd-space-lg);
  background: rgba(245,240,232,0.05);
  border-radius: var(--zd-radius-lg);
  border: 1px solid rgba(245,240,232,0.1);
}

.zd-mission__body {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
}


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

.zd-approach-text h2 { margin-bottom: var(--zd-space-md); }
.zd-approach-text p { margin-bottom: var(--zd-space-sm); }

.zd-approach-image {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-lg);
}

.zd-approach-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================
   COURSES FULL PAGE
   ============================================ */
.zd-course-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zd-space-xl);
  align-items: center;
  padding: var(--zd-space-xl) 0;
}

.zd-course-full--reverse {
  direction: rtl;
}

.zd-course-full--reverse > * {
  direction: ltr;
}

.zd-course-full__image {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-lg);
}

.zd-course-full__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zd-course-full__image:hover .zd-course-full__img {
  transform: scale(1.03);
}

.zd-course-full__title {
  margin-top: var(--zd-space-xs);
  margin-bottom: var(--zd-space-sm);
}

.zd-course-full__intro {
  font-size: 1rem;
  color: var(--zd-ink-soft);
  margin-bottom: var(--zd-space-md);
  line-height: 1.7;
}

.zd-course-full__modules h4 {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zd-ink-muted);
}

.zd-module-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--zd-space-md);
}

.zd-module-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--zd-ink-soft);
  line-height: 1.5;
}

.zd-module-list li i {
  color: var(--zd-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.zd-course-full__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--zd-space-sm);
  margin-bottom: var(--zd-space-md);
}

.zd-course-full__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--zd-ink-muted);
  background: var(--zd-paper-warm);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--zd-border);
}

.zd-course-divider {
  height: 1px;
  background: var(--zd-border);
  margin: 0;
}


.zd-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zd-space-md);
}

.zd-included-item {
  text-align: center;
  padding: var(--zd-space-md);
}

.zd-included-item i {
  font-size: 2rem;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-sm);
  display: block;
}

.zd-included-item h4 {
  margin-bottom: 0.5rem;
}

.zd-included-item p {
  font-size: 0.875rem;
  color: var(--zd-ink-muted);
  margin-bottom: 0;
}

/* ============================================
   METODO AUDIT PAGE
   ============================================ */
.zd-audit-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zd-space-xl);
  align-items: center;
}

.zd-audit-intro__text h2 { margin-bottom: var(--zd-space-md); }
.zd-audit-intro__text p { margin-bottom: var(--zd-space-sm); }

.zd-audit-intro__image {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-xl);
}

.zd-audit-intro__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}


.zd-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zd-phase {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--zd-space-md);
  padding: var(--zd-space-lg) 0;
  border-bottom: 1px solid var(--zd-border);
  transition: background 0.2s ease;
}

.zd-phase:last-child { border-bottom: none; }

.zd-phase:hover {
  background: rgba(245,240,232,0.5);
  padding-left: var(--zd-space-sm);
  border-radius: var(--zd-radius-md);
}

.zd-phase__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--zd-accent-pale);
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.04em;
}

.zd-phase__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.zd-phase__desc {
  font-size: 0.9rem;
  color: var(--zd-ink-soft);
  line-height: 1.65;
  margin-bottom: var(--zd-space-sm);
}

.zd-phase__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zd-tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--zd-accent);
  background: var(--zd-accent-pale);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-weight: 500;
}


.zd-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zd-space-md);
}

.zd-category-card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-md);
  transition: all 0.3s ease;
}

.zd-category-card:hover {
  box-shadow: var(--zd-shadow-md);
  border-color: var(--zd-accent);
  transform: translateY(-2px);
}

.zd-category-card i {
  font-size: 1.5rem;
  color: var(--zd-accent);
  margin-bottom: var(--zd-space-xs);
  display: block;
}

.zd-category-card h4 {
  margin-bottom: 0.4rem;
}

.zd-category-card p {
  font-size: 0.85rem;
  color: var(--zd-ink-muted);
  line-height: 1.6;
  margin-bottom: 0;
}


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

.zd-tools-image {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-lg);
}

.zd-tools-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.zd-tools-text h2 { margin-bottom: var(--zd-space-md); }
.zd-tools-text p { margin-bottom: var(--zd-space-md); }

.zd-tools-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--zd-space-lg);
}

.zd-tools-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--zd-ink-soft);
}

.zd-tools-list li i {
  color: var(--zd-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.zd-contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--zd-space-xl);
  align-items: start;
}

.zd-contact-form-wrap {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-xl);
  padding: var(--zd-space-xl);
  box-shadow: var(--zd-shadow-md);
}

.zd-contact-form-title {
  margin-bottom: var(--zd-space-lg);
}


.zd-step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: var(--zd-space-lg);
}

.zd-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zd-step__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--zd-border);
  color: var(--zd-ink-muted);
  transition: all 0.3s ease;
}

.zd-step--active .zd-step__dot {
  background: var(--zd-accent);
  color: var(--zd-paper);
}

.zd-step__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--zd-ink-muted);
  transition: color 0.3s ease;
}

.zd-step--active .zd-step__label {
  color: var(--zd-ink);
}

.zd-step-line {
  flex: 1;
  height: 1px;
  background: var(--zd-border);
  margin: 0 var(--zd-space-sm);
}


.zd-form-group {
  margin-bottom: var(--zd-space-md);
}

.zd-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zd-ink);
  margin-bottom: 0.4rem;
}

.zd-form-input,
.zd-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--zd-paper);
  border: 1.5px solid var(--zd-border);
  border-radius: var(--zd-radius-md);
  font-family: 'Urbanist', sans-serif;
  font-size: 0.95rem;
  color: var(--zd-ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 48px;
}

.zd-form-input:focus,
.zd-form-textarea:focus {
  outline: none;
  border-color: var(--zd-accent);
  box-shadow: 0 0 0 3px rgba(124,92,58,0.12);
}


.zd-contact-form-wrap:has(.zd-form-input:focus),
.zd-contact-form-wrap:has(.zd-form-textarea:focus) {
  border-color: var(--zd-accent-pale);
}

.zd-form-textarea { resize: vertical; min-height: 140px; }

.zd-form-group--checkbox {
  margin-bottom: var(--zd-space-md);
}

.zd-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  line-height: 1.5;
}

.zd-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.zd-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--zd-border);
  border-radius: var(--zd-radius-sm);
  background: var(--zd-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.2s ease;
}

.zd-checkbox-label input:checked + .zd-checkbox-custom {
  background: var(--zd-accent);
  border-color: var(--zd-accent);
}

.zd-checkbox-label input:checked + .zd-checkbox-custom::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}

.zd-checkbox-label a {
  color: var(--zd-accent);
  text-decoration: underline;
}

.zd-form-actions {
  display: flex;
  gap: var(--zd-space-sm);
  justify-content: space-between;
}

.zd-form-step--hidden { display: none; }


.zd-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--zd-space-sm);
}

.zd-contact-sidebar__card {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-md);
  box-shadow: var(--zd-shadow-sm);
  transition: all 0.3s ease;
}

.zd-contact-sidebar__card:hover {
  box-shadow: var(--zd-shadow-md);
  border-color: var(--zd-accent-pale);
}

.zd-contact-sidebar__icon {
  width: 44px;
  height: 44px;
  background: var(--zd-accent-pale);
  border-radius: var(--zd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zd-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  transition: all 0.25s ease;
}

.zd-contact-sidebar__card:hover .zd-contact-sidebar__icon {
  background: var(--zd-accent);
  color: var(--zd-paper);
}

.zd-contact-sidebar__card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zd-ink-muted);
  margin-bottom: 0.3rem;
}

.zd-contact-sidebar__card a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zd-ink);
  transition: color 0.2s ease;
}

.zd-contact-sidebar__card a:hover { color: var(--zd-accent); }

.zd-contact-sidebar__card p {
  font-size: 0.8rem;
  color: var(--zd-ink-faint);
  margin-bottom: 0;
  line-height: 1.5;
}


.zd-map-section { padding-top: 0; }
.zd-map-title {
  font-size: 1.2rem;
  margin-bottom: var(--zd-space-md);
}

.zd-map-wrap {
  border-radius: var(--zd-radius-xl);
  overflow: hidden;
  box-shadow: var(--zd-shadow-lg);
  border: 1px solid var(--zd-border);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.zd-thanks-page .zd-nav { position: relative; }

.zd-thanks-main {
  min-height: calc(100vh - var(--zd-nav-h) - 200px);
  background: var(--zd-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--zd-space-2xl) var(--zd-space-md);
}

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

.zd-thanks-icon {
  font-size: 4rem;
  color: var(--zd-accent-light);
  margin-bottom: var(--zd-space-md);
}

.zd-thanks-title {
  color: var(--zd-paper);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--zd-space-md);
}

.zd-thanks-text {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--zd-space-lg);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.zd-legal-section { padding-top: var(--zd-space-xl); }

.zd-legal-intro {
  background: var(--zd-accent-pale);
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-md) var(--zd-space-lg);
  margin-bottom: var(--zd-space-xl);
}

.zd-legal-intro p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}


.zd-legal-block {
  margin-bottom: var(--zd-space-lg);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  overflow: hidden;
}

.zd-legal-summary {
  background: var(--zd-paper-warm);
  padding: var(--zd-space-sm) var(--zd-space-md);
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  border-bottom: 1px solid var(--zd-border-light);
  line-height: 1.6;
}

.zd-legal-detail {
  padding: var(--zd-space-md) var(--zd-space-lg);
}

.zd-legal-detail h2 {
  font-size: 1.1rem;
  margin-bottom: var(--zd-space-sm);
  color: var(--zd-ink);
}

.zd-legal-detail h4 {
  font-size: 0.95rem;
  margin: var(--zd-space-sm) 0 0.4rem;
}

.zd-legal-detail p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--zd-ink-soft);
}

.zd-legal-detail ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--zd-space-sm);
}

.zd-legal-detail ul li {
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.zd-legal-detail a {
  color: var(--zd-accent);
  text-decoration: underline;
}

.zd-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  margin: var(--zd-space-sm) 0;
}

.zd-legal-table th {
  background: var(--zd-paper-warm);
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 600;
  color: var(--zd-ink);
  border: 1px solid var(--zd-border);
}

.zd-legal-table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--zd-border);
  color: var(--zd-ink-soft);
  vertical-align: top;
}


.zd-terms-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--zd-space-sm);
}

.zd-terms-item {
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  overflow: hidden;
}

.zd-terms-summary-box {
  display: flex;
  gap: var(--zd-space-sm);
  align-items: flex-start;
  padding: var(--zd-space-md);
  background: var(--zd-paper-warm);
  border-bottom: 1px solid var(--zd-border-light);
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  line-height: 1.6;
}

.zd-terms-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--zd-accent);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}

.zd-terms-detail {
  padding: var(--zd-space-md) var(--zd-space-lg);
}

.zd-terms-detail h2 {
  font-size: 1.05rem;
  margin-bottom: var(--zd-space-sm);
}

.zd-terms-detail p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--zd-ink-soft);
}

.zd-terms-detail ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--zd-space-sm);
}

.zd-terms-detail ul li {
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.zd-terms-detail a {
  color: var(--zd-accent);
  text-decoration: underline;
}


.zd-cookie-section {
  margin-bottom: var(--zd-space-xl);
}

.zd-cookie-section h2 {
  font-size: 1.3rem;
  margin-bottom: var(--zd-space-sm);
  padding-bottom: var(--zd-space-xs);
  border-bottom: 2px solid var(--zd-border);
}

.zd-cookie-section p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--zd-ink-soft);
  margin-bottom: var(--zd-space-sm);
}

.zd-cookie-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--zd-space-sm);
}

.zd-cookie-section ul li {
  font-size: 0.875rem;
  color: var(--zd-ink-soft);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.zd-cookie-section a {
  color: var(--zd-accent);
  text-decoration: underline;
}

.zd-cookie-section code {
  background: var(--zd-paper-warm);
  padding: 0.1rem 0.4rem;
  border-radius: var(--zd-radius-sm);
  font-size: 0.85rem;
  border: 1px solid var(--zd-border);
}

.zd-cookie-type {
  background: var(--zd-white);
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-lg);
  padding: var(--zd-space-md);
  margin-bottom: var(--zd-space-md);
}

.zd-cookie-type__header {
  display: flex;
  align-items: center;
  gap: var(--zd-space-sm);
  margin-bottom: var(--zd-space-sm);
}

.zd-cookie-type__header h3 {
  font-size: 1rem;
}

.zd-cookie-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.zd-cookie-badge--required {
  background: var(--zd-ink);
  color: var(--zd-paper);
}

.zd-cookie-badge--optional {
  background: var(--zd-accent-pale);
  color: var(--zd-accent);
}

/* ============================================
   COOKIE CONSENT — CORNER CARD
   ============================================ */
.zd-cookie-card {
  position: fixed;
  top: calc(var(--zd-nav-h) + 16px);
  left: 20px;
  z-index: 9999;
  background: var(--zd-white);
  border: 1px solid var(--zd-border);
  border-radius: var(--zd-radius-lg);
  box-shadow: var(--zd-shadow-xl);
  padding: var(--zd-space-md);
  max-width: 300px;
  width: calc(100vw - 40px);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zd-cookie-card--visible {
  transform: translateX(0);
}

.zd-cookie-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.zd-cookie-card__icon {
  font-size: 1rem;
  color: var(--zd-accent);
}

.zd-cookie-card__header h6 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zd-ink);
}

.zd-cookie-card__text {
  font-size: 0.78rem;
  color: var(--zd-ink-soft);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

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

.zd-cookie-card__buttons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.zd-cookie-btn {
  flex: 1;
  min-height: 36px;
  padding: 0.4rem 0.6rem;
  border-radius: var(--zd-radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Urbanist', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.zd-cookie-btn--accept {
  background: var(--zd-ink);
  color: var(--zd-paper);
  border-color: var(--zd-ink);
}
.zd-cookie-btn--accept:hover {
  background: var(--zd-accent);
  border-color: var(--zd-accent);
}

.zd-cookie-btn--reject {
  background: transparent;
  color: var(--zd-ink-muted);
  border-color: var(--zd-border);
}
.zd-cookie-btn--reject:hover {
  border-color: var(--zd-ink);
  color: var(--zd-ink);
}

.zd-cookie-btn--settings {
  background: transparent;
  color: var(--zd-accent);
  border-color: var(--zd-accent-pale);
  flex: 0 0 100%;
}
.zd-cookie-btn--settings:hover {
  background: var(--zd-accent-pale);
}


.zd-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--zd-space-md);
  background: rgba(28,26,22,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.zd-cookie-modal--visible {
  opacity: 1;
  pointer-events: all;
}

.zd-cookie-modal__inner {
  background: var(--zd-white);
  border-radius: var(--zd-radius-xl);
  padding: var(--zd-space-xl);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--zd-shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.zd-cookie-modal__title {
  font-size: 1.2rem;
  margin-bottom: var(--zd-space-md);
}

.zd-cookie-modal__category {
  border: 1px solid var(--zd-border-light);
  border-radius: var(--zd-radius-md);
  padding: var(--zd-space-sm) var(--zd-space-md);
  margin-bottom: var(--zd-space-sm);
}

.zd-cookie-modal__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.zd-cookie-modal__category-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.zd-cookie-modal__category p {
  font-size: 0.8rem;
  color: var(--zd-ink-muted);
  margin-bottom: 0;
  line-height: 1.5;
}


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

.zd-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.zd-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--zd-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.zd-toggle__track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.zd-toggle input:checked + .zd-toggle__track {
  background: var(--zd-accent);
}

.zd-toggle input:checked + .zd-toggle__track::before {
  transform: translateX(18px);
}

.zd-toggle input:disabled + .zd-toggle__track {
  background: var(--zd-ink);
  cursor: not-allowed;
  opacity: 0.7;
}

.zd-toggle input:disabled:checked + .zd-toggle__track {
  background: var(--zd-ink);
}

.zd-cookie-modal__actions {
  display: flex;
  gap: var(--zd-space-sm);
  margin-top: var(--zd-space-md);
  flex-wrap: wrap;
}

/* ============================================
   :has() SELECTORS — MODERN CSS
   ============================================ */


.zd-course-card:has(.zd-course-card__img) {
  box-shadow: var(--zd-shadow-md);
}


.zd-section:has(.zd-mission__quote) {
  background: var(--zd-ink);
}


.zd-info-grid:has(.zd-info-card:hover) .zd-info-card:not(:hover) {
  opacity: 0.85;
}


.zd-contact-form-wrap:has(input:focus) {
  border-color: rgba(124,92,58,0.3);
  box-shadow: 0 0 0 4px rgba(124,92,58,0.06), var(--zd-shadow-md);
}

/* ============================================
   RESPONSIVE — TABLET (768px-1024px)
   ============================================ */
@media (max-width: 1024px) {
  .zd-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--zd-nav-h) + var(--zd-space-xl));
    padding-bottom: var(--zd-space-2xl);
  }

  .zd-hero__image-wrap {
    max-width: 480px;
    aspect-ratio: 16/10;
  }

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

  .zd-quad-grid {
    grid-template-columns: 1fr;
  }

  .zd-quad__main {
    grid-row: auto;
  }

  .zd-quad__img { min-height: 280px; }

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

  .zd-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--zd-space-lg);
  }

  .zd-vision-layout,
  .zd-approach-grid,
  .zd-audit-intro,
  .zd-tools-layout {
    grid-template-columns: 1fr;
  }

  .zd-values-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .zd-course-full {
    grid-template-columns: 1fr;
  }

  .zd-course-full--reverse {
    direction: ltr;
  }

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

  .zd-contact-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ============================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --zd-space-xl: 2.5rem;
    --zd-space-2xl: 3.5rem;
    --zd-space-3xl: 5rem;
  }

  .zd-nav__links { display: none; }
  .zd-nav__hamburger { display: flex; }
  .zd-mobile-tabs { display: flex; }

  .zd-hero {
    padding-top: calc(var(--zd-nav-h) + var(--zd-space-lg));
    padding-bottom: var(--zd-space-xl);
    gap: var(--zd-space-lg);
  }

  .zd-hero__image-wrap {
    aspect-ratio: 4/3;
  }

  .zd-hero__actions {
    flex-direction: column;
  }

  .zd-hero__actions .zd-btn {
    width: 100%;
    justify-content: center;
  }

  .zd-info-grid {
    grid-template-columns: 1fr;
  }

  .zd-courses-grid {
    grid-template-columns: 1fr;
  }

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

  .zd-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--zd-space-lg);
  }

  .zd-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .zd-values-grid {
    grid-template-columns: 1fr;
  }

  .zd-categories-grid {
    grid-template-columns: 1fr;
  }

  .zd-phase {
    grid-template-columns: 60px 1fr;
  }

  .zd-phase__number {
    font-size: 1.8rem;
  }

  .zd-contact-sidebar {
    display: flex;
    flex-direction: column;
  }

  .zd-contact-form-wrap {
    padding: var(--zd-space-md);
  }

  .zd-form-actions {
    flex-direction: column;
  }

  .zd-form-actions .zd-btn {
    width: 100%;
    justify-content: center;
  }

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

  .zd-cookie-card {
    max-width: calc(100vw - 40px);
    top: calc(var(--zd-nav-h) + 8px);
    left: 10px;
    right: 10px;
    width: auto;
  }

  .zd-cta-banner {
    padding: var(--zd-space-xl) 0;
  }

  .zd-legal-detail {
    padding: var(--zd-space-sm) var(--zd-space-md);
  }

  .zd-terms-summary-box {
    flex-direction: column;
    gap: 0.3rem;
  }

  .zd-cookie-modal__inner {
    padding: var(--zd-space-md);
  }
}

@media (max-width: 380px) {
  .zd-included-grid {
    grid-template-columns: 1fr;
  }
}