/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg: #f7f8f6;
  --color-surface: #ffffff;
  --color-text: #1e2620;
  --color-text-muted: #5a6b5e;
  --color-accent: #2e7d52;
  --color-accent-light: #e8f4ed;
  --color-accent-dark: #1f5a3a;
  --color-border: #dde5df;
  --color-nav-bg: rgba(247,248,246,0.95);
  --color-hero-text: #ffffff;
  --color-error: #c0392b;

  --shadow-sm: 0 1px 3px rgba(30,38,32,0.07), 0 1px 2px rgba(30,38,32,0.05);
  --shadow-md: 0 4px 12px rgba(30,38,32,0.08), 0 2px 4px rgba(30,38,32,0.06);
  --shadow-lg: 0 12px 32px rgba(30,38,32,0.10), 0 4px 8px rgba(30,38,32,0.07);
  --shadow-xl: 0 24px 48px rgba(30,38,32,0.12), 0 8px 16px rgba(30,38,32,0.08);
  --shadow-accent: 0 4px 16px rgba(46,125,82,0.25), 0 2px 4px rgba(46,125,82,0.15);

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --nav-height: 72px;
}

/* ============================================
   PACE PROGRESS BAR
   ============================================ */
.pace .pace-progress { background: var(--color-accent) !important; }
.pace .pace-progress-inner { box-shadow: 0 0 10px var(--color-accent), 0 0 5px var(--color-accent) !important; }
.pace .pace-activity { border-top-color: var(--color-accent) !important; border-left-color: var(--color-accent) !important; }

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-accent-dark); }
ul { list-style: none; }
address { font-style: normal; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.2;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

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

/* ============================================
   GLOBAL CTA BUTTONS
   ============================================ */
.global-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.global-cta--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
}
.global-cta--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(46,125,82,0.35), 0 2px 6px rgba(46,125,82,0.2);
  transform: translateY(-1px);
}
.global-cta--primary:active { transform: translateY(0); }

.global-cta--ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.global-cta--ghost:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ============================================
   GLOBAL HEADER & NAV
   ============================================ */
.global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--color-nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.3s ease;
}
.global-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--color-border);
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1), right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.global-header.scrolled::after { left: 0; right: 0; }

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

.global-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  transition: opacity 0.2s ease;
}
.global-nav__logo:hover { opacity: 0.8; color: var(--color-text); }
.global-nav__logo em { color: var(--color-accent); font-style: normal; }

.global-nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.global-nav__links li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 44px;
  line-height: 44px;
  white-space: nowrap;
}
.global-nav__links li a:hover,
.global-nav__links li a.active { color: var(--color-accent); background: var(--color-accent-light); }

.global-nav__cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  padding: 0.5rem 1.2rem !important;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  box-shadow: var(--shadow-accent);
}
.global-nav__cta:hover {
  background: var(--color-accent-dark) !important;
  color: #fff !important;
}
.global-nav__cta.active {
  background: var(--color-accent-dark) !important;
}

.global-nav__dot {
  width: 7px;
  height: 7px;
  background: #7fffc4;
  border-radius: 50%;
  animation: navDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes navDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.global-nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.global-nav__burger:hover { background: var(--color-accent-light); }
.global-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.global-nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-nav__burger.open span:nth-child(2) { opacity: 0; }
.global-nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE MENU (slide from LEFT)
   ============================================ */
.global-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,38,32,0.4);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.global-mobile-overlay.active { opacity: 1; pointer-events: all; }

.global-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: var(--color-surface);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}
.global-mobile-menu.open { transform: translateX(0); }

.global-mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  margin-bottom: 1rem;
}
.global-mobile-menu__close:hover { background: var(--color-accent-light); color: var(--color-accent); }

.global-mobile-menu nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.global-mobile-menu nav ul li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease calc(var(--i) * 60ms + 100ms), transform 0.3s ease calc(var(--i) * 60ms + 100ms);
}
.global-mobile-menu.open nav ul li { opacity: 1; transform: translateX(0); }
.global-mobile-menu nav ul li a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
}
.global-mobile-menu nav ul li a:hover { background: var(--color-accent-light); color: var(--color-accent); }

.global-mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.global-mobile-menu__footer a { color: var(--color-accent); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   HOME HERO
   ============================================ */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3d28 0%, #2e7d52 40%, #1e5c3a 70%, #0f2e1c 100%);
  background-size: 400% 400%;
  animation: heroGradient 12s ease infinite;
  padding-top: var(--nav-height);
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.home-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem var(--space-md);
  max-width: 780px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.home-hero__label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.home-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.home-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================
   HOME INTRO
   ============================================ */
.home-intro {
  padding: var(--space-xl) 0;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.home-intro__text h2 { margin-bottom: 1.25rem; }
.home-intro__text p { color: var(--color-text-muted); margin-bottom: 1rem; }
.home-intro__text p:last-of-type { margin-bottom: 1.5rem; }

.home-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}
.home-intro__link:hover { gap: 0.75rem; color: var(--color-accent-dark); }

.home-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.home-intro__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-intro__image:hover img { transform: scale(1.03); }

/* ============================================
   HOME TOPICS
   ============================================ */
.home-topics {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
}

.home-topics__header { margin-bottom: 0; }

.home-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0;
}

.home-topic-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.home-topic-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.home-topic-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.home-topic-card:hover .home-topic-card__icon {
  background: var(--color-accent);
  color: #fff;
}

.home-topic-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.home-topic-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.home-topic-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.2s ease;
}
.home-topic-card__link:hover { gap: 0.65rem; color: var(--color-accent-dark); }

/* ============================================
   HOME VISUAL BREAK
   ============================================ */
.home-visual-break {
  padding: var(--space-xl) 0;
}

.home-visual-break__inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.home-visual-break__inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.home-visual-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,46,28,0.88) 0%, rgba(15,46,28,0.5) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 3rem;
}

.home-visual-break__overlay blockquote {
  max-width: 520px;
}
.home-visual-break__overlay blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}
.home-visual-break__overlay blockquote cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  display: block;
}

/* ============================================
   HOME HOW WORKS
   ============================================ */
.home-how-works {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
}

.home-how-works__header { margin-bottom: 3rem; }

.home-how-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.home-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.home-step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent-light);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  transition: color 0.3s ease;
}
.home-step:hover .home-step__number { color: var(--color-accent); }

.home-step__content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.home-step__content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   HOME IMAGE ROW
   ============================================ */
.home-image-row {
  padding: var(--space-xl) 0;
}

.home-image-row__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.home-image-row__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-image-row__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.home-image-row__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-image-row__item:hover img { transform: scale(1.04); }
.home-image-row__item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

/* ============================================
   HOME LEGISLATION
   ============================================ */
.home-legislation {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
}

.home-legislation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.home-legislation__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.home-legislation__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.home-legislation__tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.home-legislation__text h2 { margin-bottom: 1.25rem; }
.home-legislation__text p { color: var(--color-text-muted); margin-bottom: 1rem; }

/* ============================================
   HOME FAQ
   ============================================ */
.home-faq {
  padding: var(--space-xl) 0;
}

.home-faq__header { margin-bottom: 3rem; }

.home-faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.home-faq-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.home-faq-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.home-faq-card.open { border-color: var(--color-accent); box-shadow: var(--shadow-md); }

.home-faq-card__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  user-select: none;
}
.home-faq-card__q i {
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.home-faq-card.open .home-faq-card__q i { transform: rotate(45deg); }

.home-faq-card__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.home-faq-card.open .home-faq-card__a {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}
.home-faq-card__a p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   HOME RESOURCES PREVIEW
   ============================================ */
.home-resources-preview {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
}

.home-resources-preview__inner {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #d4ede1 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(46,125,82,0.15);
}

.home-resources-preview__text h2 { margin-bottom: 1rem; }
.home-resources-preview__text p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.home-resources-preview__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.home-resources-preview__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.global-footer {
  background: #1a2b1e;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.global-footer__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(46,125,82,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(46,125,82,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.global-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.global-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  transition: opacity 0.2s ease;
}
.global-footer__logo:hover { opacity: 0.8; color: #fff; }
.global-footer__logo em { color: var(--color-accent); font-style: normal; }

.global-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.6);
}
.global-footer__brand address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}
.global-footer__brand address a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.global-footer__brand address a:hover { color: #fff; }

.global-footer__nav h4,
.global-footer__legal h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.global-footer__nav ul,
.global-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.global-footer__nav ul li a,
.global-footer__legal ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.global-footer__nav ul li a:hover,
.global-footer__legal ul li a:hover { color: #fff; }

.global-footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.global-footer__bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}
.global-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.about-hero__label {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.about-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.about-hero__sub {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.75;
}

.about-story { padding: var(--space-xl) 0; }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-story__text h2 { margin-bottom: 1.25rem; }
.about-story__text p { color: var(--color-text-muted); margin-bottom: 1rem; }
.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story__image img { width: 100%; height: 320px; object-fit: cover; }

.about-principles { padding: var(--space-xl) 0; background: var(--color-surface); }
.about-principles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.about-principle-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.about-principle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.about-principle-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.about-principle-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.about-principle-card p { font-size: 0.9rem; color: var(--color-text-muted); }

.about-scope { padding: var(--space-xl) 0; }
.about-scope__inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.about-scope__inner h2 { margin-bottom: 2rem; }
.about-scope__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-scope__col h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-scope__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.about-scope__col ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
}
.about-scope__col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
}

.about-contact-cta { padding: var(--space-xl) 0; background: var(--color-surface); }
.about-contact-cta__inner {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: #fff;
}
.about-contact-cta__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: #fff;
}
.about-contact-cta__inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.about-contact-cta__inner .global-cta--primary {
  background: #fff;
  color: var(--color-accent);
  border-color: #fff;
}
.about-contact-cta__inner .global-cta--primary:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-accent-dark);
}

/* ============================================
   VIDEOS PAGE
   ============================================ */
.videos-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.videos-hero__label {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.videos-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.videos-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

.videos-topics { padding: var(--space-xl) 0; }

.videos-article {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}
.videos-article:hover { box-shadow: var(--shadow-md); }

.videos-article__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.videos-article__icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.videos-article__tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.4rem;
}

.videos-article__header h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-text);
}

.videos-article__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.videos-article__text h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--color-text);
}
.videos-article__text h3:first-child { margin-top: 0; }
.videos-article__text p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.75; }
.videos-article__text strong { color: var(--color-text); }

.videos-article__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-self: start;
}
.videos-article__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================
   BOOKS PAGE
   ============================================ */
.books-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.books-hero__label {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.books-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.books-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
}

.books-main { padding: var(--space-xl) 0; }

.books-section {
  margin-bottom: 4rem;
}
.books-section .section-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}
.books-section .section-heading i { color: var(--color-accent); }

.books-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.books-card {
  display: flex;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.books-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.books-card__spine {
  width: 6px;
  background: var(--color-accent);
  flex-shrink: 0;
}
.books-card__spine--alt { background: #6b8f71; }

.books-card__content { padding: 1.5rem; flex: 1; }

.books-card__type {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.books-card__content h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.books-card__author { font-size: 0.82rem; color: var(--color-accent); margin-bottom: 0.75rem; font-weight: 500; }
.books-card__content p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.books-card__note { font-size: 0.78rem; color: var(--color-text-muted); font-style: italic; }

.books-norms-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.books-norm-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.3s ease;
}
.books-norm-item:hover { box-shadow: var(--shadow-sm); }
.books-norm-item__code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}
.books-norm-item h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.books-norm-item p { font-size: 0.875rem; color: var(--color-text-muted); }

.books-web-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.books-web-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.books-web-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.books-web-card__icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.books-web-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.books-web-card p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.books-web-card__url {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  font-family: monospace;
}

.books-disclaimer {
  background: var(--color-accent-light);
  border: 1px solid rgba(46,125,82,0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.books-disclaimer i { color: var(--color-accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.books-disclaimer p { font-size: 0.875rem; color: var(--color-text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.contact-hero__label {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.contact-hero__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.contact-hero__sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
}

.contact-form-section { padding: var(--space-xl) 0; }
.contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}


.contact-wizard__progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.contact-wizard__step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-wizard__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-wizard__step.active .contact-wizard__step-num,
.contact-wizard__step.done .contact-wizard__step-num {
  background: var(--color-accent);
  color: #fff;
}
.contact-wizard__step-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  display: none;
}
.contact-wizard__step.active .contact-wizard__step-label { color: var(--color-accent); }
.contact-wizard__line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 0.75rem;
  transition: background 0.3s ease;
}

.contact-wizard__panels { position: relative; overflow: hidden; }
.contact-wizard__panel {
  display: none;
  animation: panelSlideIn 0.35s ease;
}
.contact-wizard__panel.active { display: block; }
@keyframes panelSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.contact-wizard__panel h3 {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.contact-form-section__field {
  margin-bottom: 1.25rem;
}
.contact-form-section__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.contact-form-section__field input,
.contact-form-section__field select,
.contact-form-section__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 44px;
}
.contact-form-section__field input:focus,
.contact-form-section__field select:focus,
.contact-form-section__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46,125,82,0.12);
}
.contact-form-section__field textarea { resize: vertical; min-height: 120px; }

.contact-form-section__field--checkbox {
  display: flex;
  align-items: flex-start;
}
.contact-form-section__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.contact-form-section__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex-shrink: 0;
  accent-color: var(--color-accent);
  margin-top: 0.15rem;
}
.contact-form-section__checkbox-label a { color: var(--color-accent); }

.contact-wizard__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.contact-info-block,
.contact-languages-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-info-block h3,
.contact-languages-block h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.contact-info-block__list li i {
  color: var(--color-accent);
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-info-block__list li a { color: var(--color-text-muted); transition: color 0.2s; }
.contact-info-block__list li a:hover { color: var(--color-accent); }

.contact-languages-block p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.contact-languages-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-languages-block__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.contact-languages-block__flag { font-size: 1.1rem; }

.contact-map-section { padding: var(--space-xl) 0; background: var(--color-surface); }
.contact-map-section h2 { margin-bottom: 1.5rem; }
.contact-map-section__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) var(--space-md) 4rem;
}

.thanks-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.thanks-dot {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: none;
}
.thanks-dot.animate {
  animation: dotReveal 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes dotReveal {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.thanks-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}
.thanks-heading.animate {
  animation: fadeUp 0.6s ease forwards;
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 420px;
  opacity: 0;
}
.thanks-sub.animate {
  animation: fadeUp 0.5s ease 0.1s forwards;
}

.thanks-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: gap 0.2s ease;
}
.thanks-link.animate {
  animation: fadeUp 0.5s ease forwards;
}
.thanks-link:hover { gap: 0.75rem; color: var(--color-accent-dark); }

@
keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.legal-hero__meta {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.legal-hero p:last-child {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

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

.legal-doc {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.legal-section:last-child { border-bottom: none; }

.legal-summary {
  background: var(--color-accent-light);
  border-left: 3px solid var(--color-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 1.25rem;
}

.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--color-text);
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-text);
}
.legal-section p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
  padding-left: 0.5rem;
}
.legal-list li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}


.legal-section--letter .legal-summary {
  background: #f0f7f3;
  border-left-color: var(--color-accent-dark);
}


.cookies-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cookies-table th {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.cookies-table td {
  padding: 0.75rem 1rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}
.cookies-table tr:hover td { background: var(--color-bg); }
.cookies-table code {
  font-family: 'Courier New', monospace;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
}


.cookies-summary--what { border-left-color: #2e7d52; }
.cookies-summary--types { border-left-color: #1f5a3a; }
.cookies-summary--manage { border-left-color: #4a9e6e; }
.cookies-summary--third { border-left-color: #6bba8a; }
.cookies-summary--contact { border-left-color: #2e7d52; }

/* ============================================
   COOKIE CONSENT (notification bell / shield)
   ============================================ */
.cookie-icon {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 800;
  box-shadow: var(--shadow-lg);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cookie-icon:hover {
  background: var(--color-accent-dark);
  transform: scale(1.08);
  box-shadow: var(--shadow-xl);
}

.cookie-icon__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  display: none;
}
.cookie-icon__badge.visible { display: block; }

.cookie-panel {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 320px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  z-index: 801;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  overflow: hidden;
}
.cookie-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}
.cookie-panel__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}
.cookie-panel__close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}
.cookie-panel__close:hover { background: var(--color-accent-light); color: var(--color-accent); }

.cookie-panel__body {
  padding: 1.25rem;
}
.cookie-panel__body p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-panel__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.75rem;
}
.cookie-toggle span:first-child {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}
.cookie-toggle input[type="checkbox"] { display: none; }
.cookie-toggle__slider {
  width: 40px;
  height: 22px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--color-accent); }
.cookie-toggle input:checked + .cookie-toggle__slider::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { background: var(--color-accent); opacity: 0.7; cursor: not-allowed; }

.cookie-panel__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--color-border);
}
.cookie-panel__actions .global-cta {
  flex: 1;
  justify-content: center;
  font-size: 0.82rem;
  padding: 0.6rem 0.75rem;
}

/* ============================================
   DESKTOP NAVIGATION (show links)
   ============================================ */
@media (min-width: 768px) {
  .global-nav__links { display: flex; }
  .global-nav__burger { display: none; }
  .contact-wizard__step-label { display: block; }
}

/* ============================================
   RESPONSIVE: TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .home-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-how-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-image-row__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-principles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .books-web-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .home-intro__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-how-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-legislation__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-resources-preview__inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-story__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-scope__cols {
    grid-template-columns: 1fr 1fr;
  }
  .about-principles__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .videos-article__body {
    grid-template-columns: 1fr 380px;
  }
  .contact-form-section__grid {
    grid-template-columns: 1fr 360px;
  }
  .global-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .home-image-row__item img {
    height: 240px;
  }
}

/* ============================================
   MOBILE FINE-TUNING
   ============================================ */
@media (max-width: 480px) {
  .home-hero__content {
    padding: 2rem 1.25rem;
  }
  .home-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .home-hero__actions .global-cta {
    width: 100%;
    justify-content: center;
  }
  .home-visual-break__overlay {
    padding: 1.5rem;
  }
  .cookie-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5rem;
  }
  .contact-wizard__nav {
    flex-direction: column-reverse;
  }
  .contact-wizard__nav .global-cta {
    width: 100%;
    justify-content: center;
  }
  .home-faq__grid {
    grid-template-columns: 1fr;
  }
  .about-scope__inner {
    padding: 1.5rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .global-header,
  .global-mobile-menu,
  .global-mobile-overlay,
  .cookie-icon,
  .cookie-panel { display: none !important; }
  body { background: #fff; color: #000; }
  main { padding-top: 0; }
}