/* ============================================================
   FĂRĂ NQUEL - Custom CSS
   Retro Modern Design System
   ============================================================ */


:root {
  
  --mustard: #C8922A;
  --mustard-light: #F5EDD6;
  --mustard-mid: #E8C97A;
  --terracotta: #B85C3A;
  --terracotta-light: #F2E4DC;
  --olive: #5C6B3A;
  --olive-light: #E8EDD9;
  --cream: #FAF6EE;
  --warm-white: #FDFAF4;
  --dark: #1E1A14;
  --dark-mid: #2E2A22;
  --text-body: #3A3328;
  --text-muted: #6B5F4E;
  --text-light: #9A8E7C;

  
  --shadow-sm: 0 1px 3px rgba(30,26,20,0.08), 0 1px 2px rgba(30,26,20,0.06);
  --shadow-md: 0 4px 12px rgba(30,26,20,0.10), 0 2px 4px rgba(30,26,20,0.08);
  --shadow-lg: 0 10px 30px rgba(30,26,20,0.12), 0 4px 10px rgba(30,26,20,0.08);
  --shadow-xl: 0 20px 50px rgba(30,26,20,0.16), 0 8px 20px rgba(30,26,20,0.10);
  --shadow-mustard: 0 8px 24px rgba(200,146,42,0.20), 0 3px 8px rgba(200,146,42,0.12);

  
  --section-pad: clamp(60px, 8vw, 120px);
  --section-pad-sm: clamp(40px, 5vw, 72px);

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  
  --nav-h: 72px;

  
  --transition: 0.25s ease;
  --transition-slow: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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


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

.hero-heading {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-heading em {
  font-style: normal;
  color: var(--mustard);
  position: relative;
}

.page-hero-heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 0.75rem;
  padding: 4px 10px;
  background: rgba(200,146,42,0.10);
  border-radius: 4px;
  border-left: 3px solid var(--mustard);
}

.body-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.highlight-text { color: var(--mustard); }
.inline-link { color: var(--mustard); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--terracotta); }


.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.narrow-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.content-block {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}


.primary-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--warm-white);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.primary-nav.scrolled {
  box-shadow: 0 4px 20px rgba(30,26,20,0.12), 0 1px 4px rgba(30,26,20,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo { width: 36px; height: 36px; }

.brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
  color: var(--mustard);
  background: rgba(200,146,42,0.08);
}

.mobile-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-trigger:hover { background: rgba(200,146,42,0.08); }

.mobile-trigger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,26,20,0.5);
  z-index: 1100;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.mobile-overlay.active { opacity: 1; }

.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  box-shadow: -10px 0 40px rgba(30,26,20,0.18);
}

.mobile-panel.open { transform: translateX(0); }

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,146,42,0.10);
  color: var(--dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.panel-close:hover { background: var(--mustard); color: white; }

.panel-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.panel-links li a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,146,42,0.12);
  transition: color var(--transition), padding-left var(--transition);
}

.panel-links li a:hover {
  color: var(--mustard);
  padding-left: 8px;
}

.panel-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,146,42,0.15);
}

.panel-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.panel-contact a:hover { color: var(--mustard); }


.hero-block {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--dark);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.hero-block .content-wrap.hero-content {
  max-width: none;
  padding-left: clamp(20px, 6vw, 80px);
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-accent-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(200,146,42,0.25);
  bottom: 100px;
  left: 50%;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  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.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mustard-mid);
  margin-bottom: 1.25rem;
  padding: 5px 12px;
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 4px;
}

.hero-block .hero-heading {
  color: #F5F0E8;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  color: rgba(245,240,232,0.72);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  z-index: 2;
  padding-right: clamp(20px, 6vw, 80px);
}

.hero-visual {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(200,146,42,0.15);
}


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--mustard);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-mustard);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--mustard);
}

.primary-action:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,92,58,0.25), 0 4px 10px rgba(184,92,58,0.15);
  color: #fff;
}

.large-action {
  padding: 18px 40px;
  font-size: 1rem;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(200,146,42,0.08);
  color: var(--mustard);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(245,240,232,0.25);
  transition: all var(--transition);
}

.secondary-action:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  background: rgba(200,146,42,0.08);
}

.outline-action {
  color: var(--dark);
  border-color: rgba(30,26,20,0.25);
}

.outline-action:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  background: rgba(200,146,42,0.06);
}


.visual-break {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.diagonal-down {
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  background: var(--warm-white);
}

.diagonal-up {
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  background: var(--warm-white);
}


.floating-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}

.dot-a {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--mustard-mid) 0%, transparent 70%);
  top: -60px;
  right: -40px;
}

.dot-b {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--terracotta-light) 0%, transparent 70%);
  bottom: 40px;
  left: -30px;
}

.dot-c {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--olive-light) 0%, transparent 70%);
  top: 20px;
  right: 10%;
}

.dot-d {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--mustard-light) 0%, transparent 70%);
  bottom: -30px;
  left: 20%;
}


.intro-narrative {
  text-align: center;
}

.intro-narrative .narrow-wrap {
  text-align: left;
}


.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.module-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.module-card:nth-child(2) { background: var(--mustard-light); }
.module-card:nth-child(3) { background: var(--terracotta-light); }

.card-front {
  padding: 2rem;
}

.module-number {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200,146,42,0.18);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.module-icon {
  width: 48px;
  height: 48px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-mustard);
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.card-preview {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-expand-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mustard);
  padding: 8px 0;
  transition: gap var(--transition), color var(--transition);
}

.card-expand-trigger .fa-chevron-down {
  transition: transform var(--transition);
}

.card-expand-trigger:hover { color: var(--terracotta); gap: 12px; }

.card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding var(--transition);
  padding: 0 2rem;
}

.card-detail.open {
  max-height: 600px;
  padding: 0 2rem 2rem;
}

.expandable-card.expanded .fa-chevron-down {
  transform: rotate(180deg);
}

.detail-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-list li {
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-body);
}

.detail-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--mustard);
  font-weight: 700;
}


.carousel-section { overflow: hidden; }

.horizontal-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mustard) transparent;
  padding: 1.5rem clamp(20px, 5vw, 80px) 2rem;
  cursor: grab;
}

.horizontal-carousel:active { cursor: grabbing; }

.horizontal-carousel::-webkit-scrollbar { height: 4px; }
.horizontal-carousel::-webkit-scrollbar-track { background: transparent; }
.horizontal-carousel::-webkit-scrollbar-thumb { background: var(--mustard); border-radius: 2px; }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.carousel-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(320px, 80vw);
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(200,146,42,0.15);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.carousel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.carousel-card-icon {
  width: 52px;
  height: 52px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-mustard);
}

.carousel-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.carousel-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.carousel-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.7;
}


.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.reverse-layout { direction: rtl; }
.reverse-layout > * { direction: ltr; }

.split-visual { position: relative; }

.content-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.image-accent-block {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  bottom: -20px;
  right: -20px;
  z-index: -1;
  opacity: 0.6;
}

.image-accent-block.accent-alt {
  background: var(--olive);
  bottom: -20px;
  left: -20px;
  right: auto;
}

.split-text .section-heading { margin-top: 0.5rem; }
.split-text p { margin-bottom: 1rem; color: var(--text-muted); }
.split-text .primary-action,
.split-text .secondary-action { margin-top: 1rem; }


.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: var(--dark);
  color: #F5F0E8;
  border-bottom: 2px solid rgba(200,146,42,0.3);
}

.comparison-table th.feature-col {
  text-align: left;
  background: var(--dark-mid);
}

.comparison-table .recommended-col {
  background: var(--mustard);
  position: relative;
}

.recommend-badge {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(200,146,42,0.08);
  transition: background var(--transition);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--dark);
}

.comparison-table tr:hover td { background: rgba(200,146,42,0.04); }
.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:nth-child(odd) td { background: rgba(250,246,238,0.5); }
.comparison-table tbody tr:nth-child(odd):hover td { background: rgba(200,146,42,0.06); }

.check-yes { color: var(--olive); font-size: 1rem; }
.check-no { color: var(--text-light); font-size: 0.85rem; }

.table-cta { text-align: center; margin-top: 2rem; }


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  transition: box-shadow var(--transition), transform var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.process-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.step-content {
  padding: 1.5rem;
}

.step-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(200,146,42,0.25);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.step-content p { font-size: 0.9rem; color: var(--text-muted); }


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.member-image-frame {
  height: 260px;
  overflow: hidden;
  background: var(--mustard-light);
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .member-photo { transform: scale(1.04); }

.member-info {
  padding: 1.75rem;
  flex: 1;
}

.member-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.member-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mustard);
  background: rgba(200,146,42,0.10);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.member-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.expertise-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--cream);
  border: 1px solid rgba(200,146,42,0.15);
  padding: 4px 10px;
  border-radius: 4px;
}


.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.domain-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.domain-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(200,146,42,0.25);
}

.domain-icon {
  font-size: 1.8rem;
  color: var(--mustard);
  margin-bottom: 1rem;
  display: block;
}

.domain-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.domain-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }


.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.format-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.12);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.format-card--featured {
  border-color: var(--mustard);
  box-shadow: 0 8px 30px rgba(200,146,42,0.18), 0 2px 8px rgba(200,146,42,0.10);
}

.format-badge {
  background: var(--mustard);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
}

.format-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(200,146,42,0.10);
}

.format-icon {
  width: 52px;
  height: 52px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-mustard);
}

.format-title {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.format-participants {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.format-body {
  padding: 1.5rem 2rem 2rem;
}

.format-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.format-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.format-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.format-features .fa-check {
  color: var(--olive);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.format-action { width: 100%; justify-content: center; }


.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2.5rem;
}

.curriculum-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.curriculum-marker {
  width: 64px;
  height: 64px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.marker-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--mustard-mid);
  letter-spacing: 0.04em;
}

.curriculum-content {
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(200,146,42,0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.curriculum-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.curriculum-content > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.curriculum-sessions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.session-item {
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--mustard);
}

.session-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.session-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin: 0;
}

.curriculum-outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(200,146,42,0.08);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-body);
}

.curriculum-outcome .fa-flag-checkered {
  color: var(--mustard);
  margin-top: 2px;
  flex-shrink: 0;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-item {
  border-bottom: 1px solid rgba(200,146,42,0.10);
  background: var(--warm-white);
}

.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.faq-trigger:hover { background: rgba(200,146,42,0.05); color: var(--mustard); }

.faq-item.open .faq-trigger { color: var(--mustard); }

.faq-icon {
  color: var(--mustard);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.faq-item.open .faq-answer { max-height: 400px; }


.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.role-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.role-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.role-icon {
  font-size: 1.6rem;
  color: var(--mustard);
  margin-bottom: 1rem;
}


.page-hero-block {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero-short {
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-heading { color: #F5F0E8; margin-top: 0.5rem; margin-bottom: 1rem; }
.page-hero-sub {
  color: rgba(245,240,232,0.65);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 560px;
}


.cta-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-centered .section-eyebrow { margin-bottom: 1rem; }
.cta-subtext {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}


.final-cta-section {
  background: var(--warm-white);
  text-align: center;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-form-area h2 { margin-bottom: 0.75rem; }
.contact-form-area > p { color: var(--text-muted); margin-bottom: 2rem; }


.chat-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 90%;
}

.chat-bubble.company-bubble {
  align-self: flex-start;
}

.chat-bubble.user-bubble {
  align-self: flex-end;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}

.bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mustard);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.bubble-text {
  background: var(--dark);
  color: #F5F0E8;
  padding: 0.75rem 1.1rem;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.92rem;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.chat-input {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: var(--warm-white);
  border: 2px solid rgba(200,146,42,0.20);
  border-radius: 18px 18px 4px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-body);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.chat-input:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12), var(--shadow-sm);
}

.chat-textarea { border-radius: 18px 18px 4px 18px; }

.chat-privacy {
  padding: 0.5rem 0;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.6;
}

.privacy-check input[type="checkbox"] { display: none; }

.check-custom {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(200,146,42,0.3);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
  margin-top: 1px;
}

.privacy-check input:checked + .check-custom {
  background: var(--mustard);
  border-color: var(--mustard);
}

.privacy-check input:checked + .check-custom::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.form-error-msg {
  background: rgba(184,92,58,0.10);
  border: 1px solid rgba(184,92,58,0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--terracotta);
}

.chat-send-btn {
  align-self: flex-end;
  margin-top: 0.5rem;
}


.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.12);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card h3 .fa-clock { color: var(--mustard); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail .fa-solid {
  color: var(--mustard);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail p { font-size: 0.9rem; margin: 0; }
.contact-detail a { color: var(--text-body); transition: color var(--transition); }
.contact-detail a:hover { color: var(--mustard); }

.schedule-card { background: var(--mustard-light); }

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(200,146,42,0.12);
  font-size: 0.88rem;
}

.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 500; color: var(--dark); }
.schedule-time { color: var(--text-muted); }
.schedule-closed .schedule-time { color: var(--text-light); }

.schedule-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}


.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,146,42,0.12);
  margin-top: 1.5rem;
}


.thanks-page .site-footer { margin-top: auto; }

.thanks-main {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--cream);
}

.thanks-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.thanks-quote-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  width: 100%;
}

.quote-mark {
  font-size: 2.5rem;
  color: var(--mustard);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.thanks-quote {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #F5F0E8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-attribution {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.thanks-icon {
  font-size: 3rem;
  color: var(--olive);
}

.thanks-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
}

.thanks-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.thanks-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0.5rem 0 1rem;
}

.thanks-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 16px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,146,42,0.15);
  transition: all var(--transition);
}

.thanks-contact-item:hover {
  color: var(--mustard);
  border-color: var(--mustard);
  box-shadow: var(--shadow-sm);
}

.thanks-home-btn { margin-top: 0.5rem; }


.legal-section { padding: var(--section-pad) 0; }

.legal-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,146,42,0.10);
  margin-bottom: 1.5rem;
  transition: box-shadow var(--transition);
}

.legal-card:hover { box-shadow: var(--shadow-lg); }

.legal-card:last-child { margin-bottom: 0; }

.legal-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(200,146,42,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-card h2 .fa-solid { color: var(--mustard); font-size: 1rem; }

.legal-card h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--dark);
}

.legal-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

.legal-card ul {
  margin: 0.75rem 0 1rem 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  list-style: disc;
}

.legal-card a { color: var(--mustard); text-decoration: underline; text-underline-offset: 2px; }
.legal-card code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--terracotta);
}

.legal-card--alt { border-left: 4px solid var(--mustard); }
.legal-card--cookies { border-top: 4px solid var(--terracotta); border-left: none; }


.site-footer {
  background: var(--dark);
  color: rgba(245,240,232,0.7);
  padding: 72px 0 0;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.footer-brand {}

.footer-logo { width: 40px; height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.8); }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
  max-width: 280px;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}

.footer-nav-col a:hover { color: var(--mustard-mid); }

.footer-contact-col address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
}

.footer-contact-col .fa-solid { color: var(--mustard); font-size: 0.85rem; margin-top: 3px; }

.footer-contact-col a {
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}

.footer-contact-col a:hover { color: var(--mustard-mid); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem clamp(20px, 5vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
  margin: 0;
}

.footer-legal-links a {
  color: rgba(245,240,232,0.35);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--mustard-mid); }


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--mustard);
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-mustard);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  z-index: 900;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--terracotta);
  box-shadow: 0 8px 24px rgba(184,92,58,0.3);
  transform: translateY(-3px);
}


.cookie-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,26,20,0.5);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.cookie-panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--warm-white);
  z-index: 9100;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(30,26,20,0.18);
  overflow-y: auto;
}

.cookie-panel.open { transform: translateX(0); }

.cookie-panel-header {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.12);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-shield {
  width: 44px;
  height: 44px;
  background: var(--mustard);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-mustard);
}

.cookie-panel-header h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cookie-panel-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-categories {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-category {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(200,146,42,0.10);
}

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

.cookie-category-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.cookie-category p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}


.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(30,26,20,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

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

.cookie-toggle input:checked + .toggle-slider { background: var(--mustard); }
.cookie-toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-panel-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(200,146,42,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-accept-btn {
  padding: 12px;
  background: var(--mustard);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-mustard);
}

.cookie-accept-btn:hover { background: var(--terracotta); }

.cookie-reject-btn {
  padding: 12px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,146,42,0.20);
  transition: all var(--transition);
}

.cookie-reject-btn:hover {
  border-color: var(--text-muted);
  color: var(--dark);
}

.cookie-policy-link {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

.cookie-policy-link a { color: var(--mustard); text-decoration: underline; }


.content-block:has(.highlighted) { background: var(--mustard-light); }

.info-grid:has(.format-card--featured) {
  align-items: start;
}

.split-layout:has(.content-image) .split-text {
  padding-top: 1rem;
}

.team-member-card:has(.member-photo) .member-info {
  border-top: 3px solid var(--mustard);
}

.chat-form:has(.chat-input:focus) {
  box-shadow: none;
}

form:has(input:focus) .chat-form {
  border-color: var(--mustard);
}


@media (max-width: 1024px) {
  .hero-block {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 60px;
  }

  .hero-block .content-wrap.hero-content {
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
    text-align: center;
  }

  .hero-subtext { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }

  .hero-image-frame {
    padding: 0 clamp(20px, 5vw, 48px);
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-visual { height: 360px; }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reverse-layout { direction: ltr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

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

  .curriculum-item {
    grid-template-columns: 60px 1fr;
    gap: 1.25rem;
  }

  .curriculum-marker {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-trigger { display: flex; }

  .hero-block .hero-heading { font-size: clamp(2rem, 8vw, 3rem); }

  .modules-grid,
  .team-grid,
  .formats-grid,
  .roles-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

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

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .curriculum-item {
    grid-template-columns: 1fr;
  }

  .curriculum-marker {
    display: none;
  }

  .cookie-panel { width: 100%; }

  .thanks-quote-card { padding: 2rem; }
}

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

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .primary-action,
  .hero-actions .secondary-action { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .primary-action { width: 100%; justify-content: center; }

  .comparison-table .recommended-col .recommend-badge { display: none; }

  .thanks-contacts { flex-direction: column; }
}


.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;
}


.approach-section .content-image {
  height: 420px;
}


.culture-section .content-image {
  height: 400px;
}