

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --wp-bg: #f7f6f3;
  --wp-bg-alt: #eef0f5;
  --wp-bg-card: #ffffff;
  --wp-bg-dark: #1a1f2e;
  --wp-bg-dark-alt: #141824;

  --wp-text-primary: #1a1f2e;
  --wp-text-secondary: #4a5568;
  --wp-text-muted: #718096;
  --wp-text-light: #f7f6f3;
  --wp-text-light-muted: rgba(247,246,243,0.72);

  --wp-accent: #5b7df7;
  --wp-accent-dark: #3d5fe0;
  --wp-accent-light: #e8edff;
  --wp-accent-rgb: 91, 125, 247;

  --wp-secondary: #2dd4bf;
  --wp-secondary-light: #e0faf7;

  --wp-border: rgba(26,31,46,0.10);
  --wp-border-light: rgba(255,255,255,0.14);

  --wp-radius-sm: 8px;
  --wp-radius-md: 14px;
  --wp-radius-lg: 20px;
  --wp-radius-xl: 28px;
  --wp-radius-pill: 999px;

  --wp-shadow-xs: 0 1px 3px rgba(26,31,46,0.06), 0 1px 2px rgba(26,31,46,0.04);
  --wp-shadow-sm: 0 2px 8px rgba(26,31,46,0.07), 0 1px 3px rgba(26,31,46,0.05);
  --wp-shadow-md: 0 4px 16px rgba(26,31,46,0.09), 0 2px 6px rgba(26,31,46,0.06);
  --wp-shadow-lg: 0 8px 32px rgba(26,31,46,0.11), 0 4px 12px rgba(26,31,46,0.07);
  --wp-shadow-xl: 0 16px 48px rgba(26,31,46,0.13), 0 6px 18px rgba(26,31,46,0.08);
  --wp-shadow-accent: 0 4px 20px rgba(91,125,247,0.28), 0 2px 8px rgba(91,125,247,0.16);

  --wp-nav-height: 80px;
  --wp-nav-height-scrolled: 60px;

  --wp-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --wp-transition-slow: 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  --wp-container: 1200px;
  --wp-container-padding: clamp(1rem, 5vw, 2.5rem);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--wp-text-primary);
  background-color: var(--wp-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color var(--wp-transition); }

ul { list-style: none; }

address { font-style: normal; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--wp-text-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600; }

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

strong { font-weight: 700; color: var(--wp-text-primary); }

code {
  font-family: 'Courier New', monospace;
  background: var(--wp-accent-light);
  color: var(--wp-accent-dark);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.88em;
}

/* ============================================
   CONTAINER
   ============================================ */
.wp-container {
  max-width: var(--wp-container);
  margin-inline: auto;
  padding-inline: var(--wp-container-padding);
}

/* ============================================
   BUTTONS
   ============================================ */
.wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--wp-radius-pill);
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--wp-transition);
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}

.wp-btn--primary {
  background: var(--wp-accent);
  color: #fff;
  border-color: var(--wp-accent);
  box-shadow: var(--wp-shadow-accent);
}
.wp-btn--primary:hover {
  background: var(--wp-accent-dark);
  border-color: var(--wp-accent-dark);
  box-shadow: 0 6px 24px rgba(91,125,247,0.38);
  transform: translateY(-2px);
  color: #fff;
}

.wp-btn--ghost {
  background: transparent;
  color: var(--wp-text-primary);
  border-color: var(--wp-border);
  box-shadow: var(--wp-shadow-xs);
}
.wp-btn--ghost:hover {
  border-color: var(--wp-accent);
  color: var(--wp-accent);
  box-shadow: var(--wp-shadow-sm);
  transform: translateY(-1px);
}

.wp-btn--outline-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.wp-btn--outline-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.wp-btn--ghost-dark {
  background: transparent;
  color: var(--wp-text-light);
  border-color: rgba(255,255,255,0.3);
}
.wp-btn--ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.wp-btn--lg {
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
}

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

/* ============================================
   LABELS
   ============================================ */
.wp-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp-accent);
  background: var(--wp-accent-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--wp-radius-pill);
  margin-bottom: 1rem;
}

.wp-label--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ============================================
   NAVIGATION
   ============================================ */
.wp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: all var(--wp-transition-slow);
  padding: 1.2rem 0;
}

.wp-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247,246,243,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--wp-border);
  opacity: 0;
  transition: opacity var(--wp-transition-slow);
}

.wp-nav.wp-nav--scrolled::before { opacity: 1; }
.wp-nav.wp-nav--scrolled { padding: 0.6rem 0; }

.wp-nav__inner {
  max-width: var(--wp-container);
  margin-inline: auto;
  padding-inline: var(--wp-container-padding);
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.wp-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.wp-nav__logo-img {
  width: 36px;
  height: 36px;
  transition: transform var(--wp-transition);
}
.wp-nav--scrolled .wp-nav__logo-img { width: 30px; height: 30px; }

.wp-nav__logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--wp-text-primary);
  letter-spacing: -0.02em;
  transition: font-size var(--wp-transition);
}
.wp-nav--scrolled .wp-nav__logo-text { font-size: 1rem; }

.wp-nav__logo-accent { color: var(--wp-accent); }

.wp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.wp-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wp-text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--wp-radius-sm);
  transition: all var(--wp-transition);
  position: relative;
}

.wp-nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--wp-accent);
  border-radius: 2px;
  transition: transform var(--wp-transition);
}

.wp-nav__link:hover,
.wp-nav__link--active {
  color: var(--wp-text-primary);
}

.wp-nav__link:hover::after,
.wp-nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
}

.wp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.wp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--wp-radius-sm);
  transition: background var(--wp-transition);
}
.wp-nav__hamburger:hover { background: var(--wp-accent-light); }
.wp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wp-text-primary);
  border-radius: 2px;
  transition: all var(--wp-transition);
}

/* ============================================
   MOBILE TAB BAR
   ============================================ */
.wp-mobile-tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--wp-border);
  box-shadow: 0 -4px 20px rgba(26,31,46,0.08);
  padding: 0.4rem 0 calc(0.4rem + env(safe-area-inset-bottom));
}

.wp-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.4rem 0.6rem;
  flex: 1;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--wp-text-muted);
  transition: all var(--wp-transition);
  border-radius: var(--wp-radius-sm);
  min-height: 52px;
  justify-content: center;
}

.wp-tab-item i {
  font-size: 1.1rem;
  transition: all var(--wp-transition);
}

.wp-tab-item--active,
.wp-tab-item:hover {
  color: var(--wp-accent);
}

.wp-tab-item--active i {
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.wp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.wp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wp-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.wp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,31,46,0.82) 0%,
    rgba(26,31,46,0.65) 50%,
    rgba(91,125,247,0.25) 100%
  );
}

.wp-hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--wp-nav-height) + 4rem);
  padding-bottom: 6rem;
}

.wp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wp-secondary);
  background: rgba(45,212,191,0.15);
  border: 1px solid rgba(45,212,191,0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--wp-radius-pill);
  margin-bottom: 1.5rem;
}

.wp-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 750px;
}

.wp-hero__title-accent {
  color: var(--wp-accent);
  display: block;
}

.wp-hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--wp-text-light-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.wp-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.wp-hero__stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  margin-top: auto;
}

.wp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wp-stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.wp-stat-item:last-child { border-right: none; }

.wp-stat-item__icon {
  font-size: 1.5rem;
  color: var(--wp-secondary);
  flex-shrink: 0;
}

.wp-stat-item strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.wp-stat-item span {
  display: block;
  color: var(--wp-text-light-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.wp-section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.wp-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--wp-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.wp-section-desc {
  font-size: 1.05rem;
  color: var(--wp-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.wp-intro {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg);
}

.wp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.wp-intro__text .wp-section-title { text-align: left; }

.wp-intro__text p {
  font-size: 1rem;
  color: var(--wp-text-secondary);
  margin-bottom: 1rem;
}

.wp-intro__highlight {
  background: var(--wp-accent-light);
  border-left: 3px solid var(--wp-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--wp-radius-md) var(--wp-radius-md) 0;
  font-weight: 500;
  color: var(--wp-text-primary) !important;
  margin: 1.5rem 0 2rem;
}

.wp-intro__visual {
  position: relative;
}

.wp-intro__img {
  width: 100%;
  border-radius: var(--wp-radius-xl);
  box-shadow: var(--wp-shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.wp-intro__badge {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--wp-shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wp-text-primary);
  border: 1px solid var(--wp-border);
}

.wp-intro__badge i {
  color: var(--wp-secondary);
  font-size: 1.1rem;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.wp-modules {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg-alt);
}

.wp-modules__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.wp-module-card {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--wp-shadow-sm);
  border: 1px solid var(--wp-border);
  transition: all var(--wp-transition);
  position: relative;
  overflow: hidden;
}

.wp-module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wp-accent), var(--wp-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--wp-transition);
}

.wp-module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wp-shadow-xl);
  border-color: transparent;
}

.wp-module-card:hover::before { transform: scaleX(1); }

.wp-module-card--wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: start;
  gap: 1.25rem;
}

.wp-module-card__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--wp-accent-light);
  line-height: 1;
  letter-spacing: -0.04em;
}

.wp-module-card--wide .wp-module-card__number { font-size: 3rem; }

.wp-module-card__icon {
  width: 44px;
  height: 44px;
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--wp-transition);
}

.wp-module-card:hover .wp-module-card__icon {
  background: var(--wp-accent);
  color: #fff;
}

.wp-module-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wp-text-primary);
  margin-bottom: 0.6rem;
  margin-top: 0.6rem;
}

.wp-module-card__desc {
  font-size: 0.88rem;
  color: var(--wp-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wp-module-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wp-accent);
  background: var(--wp-accent-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--wp-radius-pill);
}

/* ============================================
   TECHNIQUES SECTION (invisible boundary)
   ============================================ */
.wp-techniques {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(5rem, 8vw, 8rem);
  background: var(--wp-bg);
}

.wp-techniques__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.wp-techniques__visual {
  position: relative;
  height: 520px;
}

.wp-techniques__img {
  border-radius: var(--wp-radius-xl);
  object-fit: cover;
  box-shadow: var(--wp-shadow-xl);
  position: absolute;
}

.wp-techniques__img--top {
  width: 72%;
  aspect-ratio: 4/3;
  top: 0;
  right: 0;
  z-index: 2;
}

.wp-techniques__img--bottom {
  width: 62%;
  aspect-ratio: 3/4;
  bottom: 0;
  left: 0;
  z-index: 1;
  box-shadow: var(--wp-shadow-lg);
}

.wp-technique-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.wp-technique-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-md);
  border: 1px solid var(--wp-border);
  box-shadow: var(--wp-shadow-xs);
  transition: all var(--wp-transition);
}

.wp-technique-item:hover {
  box-shadow: var(--wp-shadow-md);
  border-color: var(--wp-accent);
  transform: translateX(4px);
}

.wp-technique-item__icon {
  width: 38px;
  height: 38px;
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.wp-technique-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.wp-technique-item p {
  font-size: 0.85rem;
  color: var(--wp-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   CAROUSEL SECTION
   ============================================ */
.wp-carousel-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg-dark);
}

.wp-carousel-section .wp-section-header { margin-bottom: 2.5rem; }
.wp-carousel-section .wp-label { background: rgba(91,125,247,0.2); color: var(--wp-accent); }
.wp-carousel-section .wp-section-title { color: var(--wp-text-light); }
.wp-carousel-section .wp-section-desc { color: var(--wp-text-light-muted); }

.wp-splide .splide__track { padding-bottom: 2rem !important; }

.wp-slide-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--wp-radius-lg);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--wp-transition);
  backdrop-filter: blur(10px);
}

.wp-slide-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(91,125,247,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.wp-slide-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(91,125,247,0.2);
  border-radius: var(--wp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  transition: all var(--wp-transition);
}

.wp-slide-card:hover .wp-slide-card__icon {
  background: var(--wp-accent);
  color: #fff;
}

.wp-slide-card h4 {
  color: var(--wp-text-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.wp-slide-card p {
  color: var(--wp-text-light-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.wp-slide-card__module {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wp-secondary);
  background: rgba(45,212,191,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: var(--wp-radius-pill);
}

.splide__pagination__page.is-active { background: var(--wp-accent) !important; }
.splide__pagination__page { background: rgba(255,255,255,0.3) !important; }
.splide__arrow { background: rgba(255,255,255,0.1) !important; backdrop-filter: blur(8px); }
.splide__arrow svg { fill: #fff !important; }
.splide__arrow:hover { background: var(--wp-accent) !important; }

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.wp-audience {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg-alt);
}

.wp-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wp-audience-card {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: var(--wp-shadow-sm);
  border: 1px solid var(--wp-border);
  transition: all var(--wp-transition);
}

.wp-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wp-shadow-xl);
  border-color: transparent;
}

.wp-audience-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--wp-transition-slow);
}

.wp-audience-card:hover .wp-audience-card__img {
  transform: scale(1.04);
}

.wp-audience-card__body {
  padding: 1.5rem;
}

.wp-audience-card__body h4 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.wp-audience-card__body p {
  font-size: 0.9rem;
  color: var(--wp-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.wp-process {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg);
}

.wp-process__steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wp-process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}

.wp-process-step__num {
  width: 56px;
  height: 56px;
  background: var(--wp-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: var(--wp-shadow-accent);
  transition: all var(--wp-transition);
}

.wp-process-step:hover .wp-process-step__num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(91,125,247,0.45);
}

.wp-process-step__content h4 {
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.wp-process-step__content p {
  font-size: 0.85rem;
  color: var(--wp-text-muted);
  line-height: 1.55;
  margin: 0;
}

.wp-process-step__arrow {
  display: flex;
  align-items: center;
  padding-top: 1.4rem;
  color: var(--wp-accent);
  opacity: 0.5;
  font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.wp-cta-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--wp-bg-dark);
}

.wp-cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--wp-radius-xl);
  overflow: hidden;
  background: var(--wp-bg-dark-alt);
  box-shadow: var(--wp-shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
}

.wp-cta-box__content {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.wp-cta-box__title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.wp-cta-box__content > p {
  color: var(--wp-text-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.wp-cta-box__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.wp-cta-box__img {
  overflow: hidden;
}

.wp-cta-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wp-transition-slow);
}

.wp-cta-box:hover .wp-cta-box__img img {
  transform: scale(1.04);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.wp-page-hero {
  padding: calc(var(--wp-nav-height) + 3rem) 0 3.5rem;
  background: var(--wp-bg-alt);
  border-bottom: 1px solid var(--wp-border);
}

.wp-page-hero--legal {
  background: var(--wp-bg);
}

.wp-page-hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.wp-page-hero__sub {
  font-size: 1.05rem;
  color: var(--wp-text-muted);
  max-width: 560px;
  margin: 0;
}

/* ============================================
   STORY PAGE
   ============================================ */
.wp-story {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-story__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.wp-story-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--wp-border);
}

.wp-story-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.wp-story-block__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp-accent);
  margin-bottom: 0.75rem;
}

.wp-story-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1.25rem;
}

.wp-story-block p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.wp-story__aside {
  position: sticky;
  top: calc(var(--wp-nav-height-scrolled) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wp-story-aside-card {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: var(--wp-shadow-md);
  border: 1px solid var(--wp-border);
}

.wp-story-aside-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.wp-story-aside-card h4 {
  padding: 1rem 1.25rem 0.25rem;
  font-size: 0.95rem;
}

.wp-story-aside-card p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.85rem;
  color: var(--wp-text-muted);
  margin: 0;
}

.wp-story-values {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--wp-shadow-sm);
  border: 1px solid var(--wp-border);
}

.wp-story-values__title {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.wp-story-values ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wp-story-values li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--wp-text-secondary);
}

.wp-story-values li i {
  color: var(--wp-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.wp-story-contact-nudge {
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-lg);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(91,125,247,0.2);
}

.wp-story-contact-nudge p {
  font-size: 0.9rem;
  color: var(--wp-text-secondary);
  margin-bottom: 1rem;
}

/* ============================================
   PARTICIPATION PAGE
   ============================================ */
.wp-participation {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-participation__intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.wp-participation__intro p {
  font-size: 1.05rem;
  color: var(--wp-text-secondary);
  line-height: 1.75;
}

.wp-participation__intro a {
  color: var(--wp-accent);
  text-decoration: underline;
}

.wp-participation__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.wp-parti-card {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-xl);
  padding: 2rem;
  box-shadow: var(--wp-shadow-sm);
  border: 1px solid var(--wp-border);
  transition: all var(--wp-transition);
  position: relative;
}

.wp-parti-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wp-shadow-xl);
}

.wp-parti-card--featured {
  border: 2px solid var(--wp-accent);
  box-shadow: var(--wp-shadow-accent);
}

.wp-parti-card--featured:hover {
  box-shadow: 0 16px 48px rgba(91,125,247,0.25), 0 6px 18px rgba(91,125,247,0.15);
}

.wp-parti-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wp-bg-alt);
  color: var(--wp-text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: var(--wp-radius-pill);
  border: 1px solid var(--wp-border);
}

.wp-parti-card__badge--accent {
  background: var(--wp-accent);
  color: #fff;
  border-color: var(--wp-accent);
}

.wp-parti-card__icon {
  width: 52px;
  height: 52px;
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all var(--wp-transition);
}

.wp-parti-card:hover .wp-parti-card__icon {
  background: var(--wp-accent);
  color: #fff;
}

.wp-parti-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.wp-parti-card__desc {
  font-size: 0.9rem;
  color: var(--wp-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.wp-parti-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.wp-parti-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--wp-text-secondary);
}

.wp-parti-card__features li i {
  color: var(--wp-secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================
   MODULES TABLE
   ============================================ */
.wp-modules-overview {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--wp-bg-alt);
}

.wp-modules-table {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: var(--wp-shadow-md);
  border: 1px solid var(--wp-border);
}

.wp-modules-table__row {
  display: grid;
  grid-template-columns: 80px 1fr 160px;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--wp-border);
  align-items: center;
  transition: background var(--wp-transition);
}

.wp-modules-table__row:last-child { border-bottom: none; }
.wp-modules-table__row:hover:not(.wp-modules-table__row--header) { background: var(--wp-bg-alt); }

.wp-modules-table__row--header {
  background: var(--wp-bg-dark);
  color: var(--wp-text-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wp-modules-table__row--header > div { color: var(--wp-text-light-muted); }

.wp-modules-table__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--wp-accent);
  letter-spacing: -0.03em;
}

.wp-modules-table__row strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.wp-modules-table__row p {
  font-size: 0.83rem;
  color: var(--wp-text-muted);
  line-height: 1.5;
  margin: 0;
}

.wp-modules-table__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wp-accent);
  background: var(--wp-accent-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--wp-radius-pill);
}

/* ============================================
   FAQ
   ============================================ */
.wp-faq {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wp-faq__item {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-md);
  border: 1px solid var(--wp-border);
  overflow: hidden;
  box-shadow: var(--wp-shadow-xs);
  transition: box-shadow var(--wp-transition);
}

.wp-faq__item:hover { box-shadow: var(--wp-shadow-md); }

.wp-faq__item[open] {
  border-color: var(--wp-accent);
  box-shadow: var(--wp-shadow-md), 0 0 0 1px var(--wp-accent);
}

.wp-faq__question {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--wp-text-primary);
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--wp-transition);
}

.wp-faq__question::-webkit-details-marker { display: none; }

.wp-faq__question::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--wp-accent);
  transition: transform var(--wp-transition);
  flex-shrink: 0;
}

details[open] .wp-faq__question::after {
  transform: rotate(45deg);
}

.wp-faq__answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--wp-border);
}

.wp-faq__answer p {
  font-size: 0.92rem;
  color: var(--wp-text-secondary);
  line-height: 1.7;
  margin: 0.75rem 0 0;
}

/* ============================================
   COLLABORATION PAGE
   ============================================ */
.wp-collab {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-collab__intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.wp-collab__intro p {
  font-size: 1.05rem;
  color: var(--wp-text-secondary);
  line-height: 1.75;
}

.wp-collab__types {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.wp-collab-type {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  border: 1px solid var(--wp-border);
  box-shadow: var(--wp-shadow-sm);
  align-items: start;
  transition: all var(--wp-transition);
}

.wp-collab-type:hover {
  box-shadow: var(--wp-shadow-lg);
  border-color: var(--wp-accent);
  transform: translateX(4px);
}

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

.wp-collab-type:hover .wp-collab-type__icon {
  background: var(--wp-accent);
  color: #fff;
}

.wp-collab-type__content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.wp-collab-type__content p {
  font-size: 0.93rem;
  color: var(--wp-text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wp-collab-type__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wp-accent);
  transition: gap var(--wp-transition);
}

.wp-collab-type__link:hover { gap: 0.75rem; color: var(--wp-accent-dark); }

.wp-collab-process {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: var(--wp-bg-alt);
}

.wp-collab-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.wp-collab-step {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-lg);
  border: 1px solid var(--wp-border);
  box-shadow: var(--wp-shadow-sm);
  transition: all var(--wp-transition);
}

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

.wp-collab-step__icon {
  width: 52px;
  height: 52px;
  background: var(--wp-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 1.2rem;
  margin: 0 auto 1.1rem;
  transition: all var(--wp-transition);
}

.wp-collab-step:hover .wp-collab-step__icon {
  background: var(--wp-accent);
  color: #fff;
}

.wp-collab-step h4 { margin-bottom: 0.5rem; font-size: 0.98rem; }
.wp-collab-step p { font-size: 0.85rem; color: var(--wp-text-muted); margin: 0; line-height: 1.6; }

.wp-collab-cta {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-collab-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-xl);
  overflow: hidden;
  box-shadow: var(--wp-shadow-lg);
  border: 1px solid var(--wp-border);
}

.wp-collab-cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform var(--wp-transition-slow);
}

.wp-collab-cta__inner:hover .wp-collab-cta__img { transform: scale(1.03); }

.wp-collab-cta__text {
  padding: 2.5rem;
}

.wp-collab-cta__text h2 { margin-bottom: 0.75rem; }
.wp-collab-cta__text p { color: var(--wp-text-secondary); margin-bottom: 1.5rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.wp-contact-section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.wp-contact__info-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.wp-contact__info > p {
  color: var(--wp-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.wp-contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.wp-contact-detail p {
  font-size: 0.95rem;
  color: var(--wp-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.wp-contact-detail a {
  color: var(--wp-accent);
  transition: color var(--wp-transition);
}
.wp-contact-detail a:hover { color: var(--wp-accent-dark); }

.wp-contact-note {
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(91,125,247,0.15);
}

.wp-contact-note h4 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wp-accent-dark);
}

.wp-contact-note p {
  font-size: 0.88rem;
  color: var(--wp-text-secondary);
  line-height: 1.65;
  margin: 0;
}


.wp-contact__form-wrap {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--wp-shadow-lg);
  border: 1px solid var(--wp-border);
}

.wp-contact-form__title {
  font-size: 1.35rem;
  margin-bottom: 1.75rem;
}

.wp-form-group {
  margin-bottom: 1.25rem;
}

.wp-form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wp-text-primary);
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
}

.wp-required { color: var(--wp-accent); }

.wp-form-input,
.wp-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.93rem;
  color: var(--wp-text-primary);
  background: var(--wp-bg);
  border: 1.5px solid var(--wp-border);
  border-radius: var(--wp-radius-md);
  outline: none;
  transition: all var(--wp-transition);
  min-height: 44px;
}

.wp-form-input:focus,
.wp-form-textarea:focus {
  border-color: var(--wp-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91,125,247,0.12);
}

.wp-form-input::placeholder,
.wp-form-textarea::placeholder {
  color: var(--wp-text-muted);
  opacity: 0.7;
}

.wp-form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.wp-form-group--checkbox {
  margin-top: 0.5rem;
}

.wp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--wp-text-secondary);
  line-height: 1.55;
}

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

.wp-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--wp-border);
  border-radius: 5px;
  background: var(--wp-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wp-transition);
  margin-top: 2px;
}

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

.wp-checkbox-label input:checked + .wp-checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: #fff;
}

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


.wp-map-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--wp-bg-alt);
}

.wp-map-section__title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

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

.wp-map-wrap iframe {
  display: block;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.wp-thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 300px);
  padding: 6rem var(--wp-container-padding);
}

.wp-thanks-content {
  text-align: center;
  max-width: 480px;
}

.wp-thanks-icon {
  font-size: 4rem;
  color: var(--wp-secondary);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.wp-thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--wp-text-primary);
}

.wp-thanks-sub {
  font-size: 1.05rem;
  color: var(--wp-text-muted);
  margin-bottom: 2.5rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.wp-legal-content {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.wp-legal-doc {
  max-width: 820px;
  margin-inline: auto;
}

.wp-legal-preamble {
  background: var(--wp-accent-light);
  border-radius: var(--wp-radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--wp-accent);
}

.wp-legal-preamble p {
  font-size: 0.95rem;
  color: var(--wp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.wp-legal-section {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--wp-border);
}

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

.wp-legal-summary {
  background: var(--wp-bg-alt);
  border-radius: var(--wp-radius-sm);
  padding: 0.75rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wp-accent-dark);
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--wp-accent);
  line-height: 1.5;
}

.wp-legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  color: var(--wp-text-primary);
}

.wp-legal-section p {
  font-size: 0.93rem;
  color: var(--wp-text-secondary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.wp-legal-section ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wp-legal-section ul li {
  font-size: 0.92rem;
  color: var(--wp-text-secondary);
  line-height: 1.65;
  list-style: disc;
  padding-left: 0.25rem;
}


.wp-legal-doc--terms .wp-legal-section h2 {
  color: var(--wp-accent-dark);
}


.wp-cookie-intro-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--wp-secondary-light);
  border-radius: var(--wp-radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(45,212,191,0.25);
}

.wp-cookie-intro-box i {
  font-size: 1.5rem;
  color: var(--wp-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.wp-cookie-intro-box p {
  font-size: 0.93rem;
  color: var(--wp-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.wp-cookie-type-block {
  background: var(--wp-bg-alt);
  border-radius: var(--wp-radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  border: 1px solid var(--wp-border);
}

.wp-cookie-type-block h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.wp-cookie-type-block p {
  font-size: 0.88rem;
  color: var(--wp-text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.wp-cookie-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--wp-radius-pill);
}

.wp-cookie-type-badge--required {
  background: #dcfce7;
  color: #166534;
}

.wp-cookie-type-badge--analytics {
  background: var(--wp-accent-light);
  color: var(--wp-accent-dark);
}

.wp-cookie-type-badge--marketing {
  background: #fef3c7;
  color: #92400e;
}

.wp-cookie-type-badge--prefs {
  background: var(--wp-secondary-light);
  color: #0f766e;
}

/* ============================================
   FOOTER
   ============================================ */
.wp-footer {
  background: var(--wp-bg-dark);
  color: var(--wp-text-light);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  margin-top: auto;
}

.wp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wp-footer__brand .wp-nav__logo-text {
  color: var(--wp-text-light);
}

.wp-footer__brand > p {
  font-size: 0.88rem;
  color: var(--wp-text-light-muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}

.wp-footer__address {
  font-size: 0.85rem;
  color: var(--wp-text-light-muted);
  line-height: 2;
}

.wp-footer__address i {
  color: var(--wp-accent);
  width: 16px;
  margin-right: 0.4rem;
}

.wp-footer__address a {
  color: var(--wp-text-light-muted);
  transition: color var(--wp-transition);
}

.wp-footer__address a:hover { color: var(--wp-accent); }

.wp-footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp-text-light-muted);
  margin-bottom: 1.25rem;
}

.wp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wp-footer__links a {
  font-size: 0.88rem;
  color: rgba(247,246,243,0.55);
  transition: all var(--wp-transition);
  display: inline-flex;
  align-items: center;
}

.wp-footer__links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--wp-accent);
  margin-right: 0;
  transition: all var(--wp-transition);
  vertical-align: middle;
}

.wp-footer__links a:hover {
  color: var(--wp-text-light);
  padding-left: 6px;
}

.wp-footer__links a:hover::before {
  width: 12px;
  margin-right: 6px;
}

.wp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.wp-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(247,246,243,0.35);
  margin: 0;
}

/* ============================================
   COOKIE CONSENT - minimalist text link
   ============================================ */
.wp-cookie-link-wrap {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 800;
}

@media (max-width: 768px) {
  .wp-cookie-link-wrap {
    bottom: calc(68px + 1rem);
  }
}

.wp-cookie-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wp-text-muted);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius-pill);
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  box-shadow: var(--wp-shadow-sm);
  transition: all var(--wp-transition);
  backdrop-filter: blur(8px);
}

.wp-cookie-link:hover {
  color: var(--wp-accent);
  border-color: var(--wp-accent);
  box-shadow: var(--wp-shadow-md);
  transform: translateY(-2px);
}

.wp-cookie-link i {
  font-size: 0.85rem;
  color: var(--wp-accent);
}

.wp-cookie-link--pulse {
  animation: wp-cookie-pulse 1.8s ease-in-out 3;
}

@keyframes wp-cookie-pulse {
  0%, 100% { box-shadow: var(--wp-shadow-sm); }
  50% { box-shadow: 0 0 0 5px rgba(91,125,247,0.18), var(--wp-shadow-md); }
}

.wp-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(26,31,46,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--wp-transition-slow);
}

.wp-cookie-modal.wp-cookie-modal--open {
  opacity: 1;
  pointer-events: all;
}

.wp-cookie-modal__box {
  background: var(--wp-bg-card);
  border-radius: var(--wp-radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--wp-shadow-xl);
  border: 1px solid var(--wp-border);
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform var(--wp-transition-slow);
}

.wp-cookie-modal--open .wp-cookie-modal__box {
  transform: translateY(0) scale(1);
}

.wp-cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--wp-border);
  background: var(--wp-bg-alt);
}

.wp-cookie-modal__header h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wp-text-primary);
}

.wp-cookie-modal__header h3 i { color: var(--wp-accent); }

.wp-cookie-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--wp-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-text-muted);
  font-size: 0.85rem;
  transition: all var(--wp-transition);
}

.wp-cookie-modal__close:hover {
  background: var(--wp-accent);
  color: #fff;
}

.wp-cookie-modal__body {
  padding: 1.25rem 1.5rem;
}

.wp-cookie-modal__intro {
  font-size: 0.88rem;
  color: var(--wp-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.wp-cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--wp-border);
}

.wp-cookie-option:last-child { border-bottom: none; }

.wp-cookie-option__info strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.wp-cookie-option__info p {
  font-size: 0.8rem;
  color: var(--wp-text-muted);
  margin: 0;
  line-height: 1.4;
}

.wp-toggle {
  position: relative;
  flex-shrink: 0;
}

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

.wp-toggle label {
  display: block;
  width: 44px;
  height: 24px;
  background: #cbd5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--wp-transition);
  position: relative;
}

.wp-toggle label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--wp-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.wp-toggle input:checked + label {
  background: var(--wp-accent);
}

.wp-toggle input:checked + label::after {
  transform: translateX(20px);
}

.wp-toggle--disabled label {
  background: var(--wp-secondary);
  cursor: not-allowed;
  opacity: 0.8;
}

.wp-toggle--disabled label::after {
  transform: translateX(20px);
}

.wp-cookie-modal__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--wp-border);
  background: var(--wp-bg-alt);
  justify-content: flex-end;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .wp-nav__links { display: none; }
  .wp-nav__actions { display: none; }
  .wp-nav__hamburger { display: flex; }
  .wp-mobile-tab-bar { display: flex; }

  body { padding-bottom: 68px; }

  .wp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wp-stat-item:nth-child(2) { border-right: none; }
  .wp-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.12); }

  .wp-intro__grid { grid-template-columns: 1fr; }
  .wp-intro__visual { order: -1; }
  .wp-intro__img { aspect-ratio: 16/9; }
  .wp-intro__badge { display: none; }

  .wp-modules__grid { grid-template-columns: repeat(2, 1fr); }
  .wp-module-card--wide {
    grid-column: span 2;
    grid-template-columns: auto auto 1fr;
  }
  .wp-module-card--wide .wp-module-card__tag { display: none; }

  .wp-techniques__inner { grid-template-columns: 1fr; }
  .wp-techniques__visual { height: 300px; }
  .wp-techniques__img--top { width: 65%; }
  .wp-techniques__img--bottom { width: 55%; }

  .wp-audience__grid { grid-template-columns: 1fr 1fr; }

  .wp-process__steps { gap: 0.5rem; }
  .wp-process-step { min-width: 140px; }
  .wp-process-step__arrow { display: none; }

  .wp-cta-box { grid-template-columns: 1fr; }
  .wp-cta-box__img { min-height: 240px; }

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

  .wp-story__grid { grid-template-columns: 1fr; }
  .wp-story__aside { position: static; }

  .wp-participation__cards { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }

  .wp-contact__grid { grid-template-columns: 1fr; }

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

  .wp-collab-cta__inner { grid-template-columns: 1fr; }
  .wp-collab-cta__img { min-height: 240px; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .wp-hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  .wp-stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .wp-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.75rem; }
  .wp-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .wp-stat-item:nth-child(3),
  .wp-stat-item:nth-child(4) { border-bottom: none; }

  .wp-hero__ctas { flex-direction: column; }
  .wp-hero__ctas .wp-btn { width: 100%; justify-content: center; }

  .wp-modules__grid { grid-template-columns: 1fr; }
  .wp-module-card--wide {
    grid-column: span 1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
  .wp-module-card--wide .wp-module-card__number { grid-row: span 1; }

  .wp-audience__grid { grid-template-columns: 1fr; }

  .wp-process__steps { flex-direction: column; align-items: center; }
  .wp-process-step { max-width: 100%; width: 100%; }

  .wp-footer__grid { grid-template-columns: 1fr; }
  .wp-footer__bottom { flex-direction: column; text-align: center; }

  .wp-modules-table__row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .wp-modules-table__row > div:last-child {
    grid-column: 2;
  }
  .wp-modules-table__row--header { display: none; }

  .wp-collab-type { grid-template-columns: 1fr; }
  .wp-collab-type__icon { width: 44px; height: 44px; font-size: 1.1rem; }

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

  .wp-cookie-modal__footer { flex-direction: column; }
  .wp-cookie-modal__footer .wp-btn { width: 100%; justify-content: center; }

  .wp-cta-box__btns { flex-direction: column; }
  .wp-cta-box__btns .wp-btn { width: 100%; justify-content: center; }

  .wp-techniques__visual { height: 220px; }
}

@media (max-width: 480px) {
  .wp-hero__content { padding-top: calc(var(--wp-nav-height) + 2rem); }
  .wp-stat-item__icon { display: none; }
  .wp-stat-item { gap: 0.5rem; }

  .wp-participation__cards { max-width: 100%; }
}