/* ============================================
   KSP Core Hub — Main Stylesheet
   Monochrome Plus Design Concept
   ============================================ */


:root {
  
  --c-900: #0d1b2a;
  --c-800: #1a2d42;
  --c-700: #243d59;
  --c-600: #2e4f70;
  --c-500: #3a6186;
  --c-400: #5a82a6;
  --c-300: #8aaec9;
  --c-200: #b8d0e4;
  --c-100: #dce9f4;
  --c-50:  #f0f6fb;
  --c-white: #f7fafd;

  --accent: #d4881e;
  --accent-light: #f0a83c;
  --accent-dark: #b06c10;

  --text-primary: #0d1b2a;
  --text-secondary: #2e4f70;
  --text-muted: #5a82a6;
  --text-light: #dce9f4;
  --text-on-dark: #f0f6fb;

  --bg-white: #f7fafd;
  --bg-light: #f0f6fb;
  --bg-tinted: #e8f0f8;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  
  --shadow-sm: 0 1px 3px rgba(13,27,42,0.06), 0 1px 2px rgba(13,27,42,0.04);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.08), 0 2px 6px rgba(13,27,42,0.05);
  --shadow-lg: 0 10px 30px rgba(13,27,42,0.12), 0 4px 12px rgba(13,27,42,0.07);
  --shadow-xl: 0 20px 50px rgba(13,27,42,0.16), 0 8px 20px rgba(13,27,42,0.09);
  --shadow-accent: 0 8px 24px rgba(212,136,30,0.28), 0 2px 8px rgba(212,136,30,0.16);

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

  
  --transition-fast: 0.18s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  
  --nav-height: 72px;
}


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

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

body {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }


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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  height: var(--nav-height);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 250, 253, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

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

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover { color: var(--c-800); }
.nav-link.active { color: var(--c-900); font-weight: 600; }


.navbar:not(.scrolled) .nav-link {
  color: rgba(240, 246, 251, 0.85);
}
.navbar:not(.scrolled) .nav-link:hover {
  color: #fff;
}
.navbar:not(.scrolled) .nav-link.active {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,136,30,0.36);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.navbar:not(.scrolled) .hamburger span {
  background: #fff;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--c-900);
  z-index: 200;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--c-300);
  font-size: 1.4rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.mobile-close:hover { color: #fff; }

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-sm);
}

.mobile-links li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-200);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-links li a:hover {
  color: #fff;
  padding-left: var(--space-xs);
}

.mobile-cta {
  display: block;
  margin-top: var(--space-lg);
  padding: 0.9rem var(--space-md);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-cta:hover { background: var(--accent-dark); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--c-900);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,97,134,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,97,134,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-accent-circle {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(58,97,134,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: rgba(58,97,134,0.3);
  border: 1px solid rgba(138,174,201,0.3);
  border-radius: var(--radius-full);
  color: var(--c-200);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  max-width: 700px;
}


.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(3deg);
  animation: char-reveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title .char {
  animation-delay: calc(var(--char-index) * 0.03s + 0.2s);
}

@keyframes char-reveal {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-300);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 0.3rem 0.75rem;
  background: rgba(58,97,134,0.2);
  border: 1px solid rgba(90,130,166,0.25);
  border-radius: var(--radius-full);
  color: var(--c-300);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--c-900) 0%, rgba(13,27,42,0.4) 60%, transparent 100%);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-400), transparent);
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,136,30,0.38);
}

.btn-primary.large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--c-200);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(138,174,201,0.35);
  transition: all var(--transition-base);
}

.btn-ghost:hover {
  background: rgba(138,174,201,0.1);
  border-color: var(--c-300);
  color: #fff;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--c-200);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(184,208,228,0.4);
  transition: all var(--transition-base);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--c-200);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.75rem;
  background: transparent;
  color: var(--c-700);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--c-300);
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background: var(--c-100);
  border-color: var(--c-500);
  color: var(--c-800);
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-light { background: var(--bg-white); }
.section-tinted { background: var(--bg-tinted); }
.section-dark {
  background: var(--c-900);
  color: var(--text-on-dark);
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--c-800);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(90,130,166,0.2);
}

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

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-200);
  font-weight: 500;
  font-size: 0.9rem;
}

.strip-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 1.25rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.section-label.light { color: var(--accent-light); }
.section-label.light::before { background: var(--accent-light); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.section-title.light { color: var(--text-on-dark); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin: 0 auto;
}

.section-desc.light { color: var(--c-300); }

.section-header-centered {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header-centered .section-label {
  padding-left: 0;
}

.section-header-centered .section-label::before {
  display: none;
}

.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.body-text.light { color: var(--c-300); }

/* ============================================
   ALTERNATING FEATURE SECTIONS
   ============================================ */
.feature-alt {
  padding: var(--space-3xl) 0;
}

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

.feature-alt-grid.reverse {
  direction: rtl;
}

.feature-alt-grid.reverse > * {
  direction: ltr;
}

.feature-alt-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-alt-visual {
  position: relative;
}

.feature-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.feature-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: 0;
}

.feature-img-accent.right {
  left: auto;
  right: -20px;
}

/* ============================================
   COMPARISON SLIDER (CSS-only with range input)
   ============================================ */
.comparison-section {
  padding: var(--space-3xl) 0;
}

.comparison-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-slider-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  height: 420px;
}

.comparison-before,
.comparison-after {
  position: absolute;
  inset: 0;
}

.comparison-before img,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.comparison-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(13,27,42,0.75);
  color: var(--c-200);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  z-index: 5;
}

.comparison-label.after {
  left: auto;
  right: 16px;
  background: rgba(212,136,30,0.85);
  color: #fff;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  color: var(--c-700);
  font-size: 0.75rem;
}

.comparison-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  margin: 0;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.cards-section {
  padding: var(--space-3xl) 0;
}

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

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--c-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.feature-card.card-featured {
  background: var(--c-900);
  border-color: var(--c-700);
  box-shadow: var(--shadow-xl);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-accent);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--c-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background var(--transition-fast);
}

.card-icon-wrap.featured {
  background: rgba(58,97,134,0.3);
}

.card-icon {
  font-size: 1.3rem;
  color: var(--c-600);
}

.card-icon-wrap.featured .card-icon {
  color: var(--accent);
}

.feature-card:hover .card-icon-wrap {
  background: var(--c-100);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.card-featured .card-title { color: var(--c-white); }

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.card-featured .card-desc { color: var(--c-300); }

.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.card-featured .card-features li { color: var(--c-200); }

.card-features li i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.card-cta {
  display: block;
  text-align: center;
  padding: 0.7rem var(--space-md);
  background: var(--c-50);
  color: var(--c-700);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-100);
  transition: all var(--transition-base);
  margin-top: auto;
}

.card-cta:hover {
  background: var(--c-100);
  color: var(--c-900);
}

.featured-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.featured-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* ============================================
   CHECKLIST SECTION
   ============================================ */
.checklist-section {
  padding: var(--space-3xl) 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

.checklist-intro { }

.checklist-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-lg);
  height: 220px;
  object-fit: cover;
  opacity: 0.7;
}

.checklist-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}

.checklist-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(212,136,30,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon i {
  color: var(--accent);
  font-size: 0.75rem;
}

.check-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.check-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-100);
  line-height: 1.3;
}

.check-text span {
  font-size: 0.8rem;
  color: var(--c-400);
  line-height: 1.5;
}

/* ============================================
   AUDIENCE LIST
   ============================================ */
.audience-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--space-sm);
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  transition: background var(--transition-fast);
}

.audience-item:hover { background: var(--c-100); }

.audience-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.audience-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: var(--space-3xl) 0;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.process-step {
  flex: 1;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-100);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

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

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-100);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.process-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-200), var(--c-300));
}

.process-cta {
  text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--c-800);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,136,30,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(58,97,134,0.2) 0%, transparent 60%);
}

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

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--c-300);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--c-900);
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,97,134,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,97,134,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--c-300);
  max-width: 560px;
  line-height: 1.7;
}

.short-hero {
  padding-bottom: var(--space-xl);
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-section {
  padding: var(--space-3xl) 0;
}

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

.value-card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,130,166,0.2);
  border-radius: var(--radius-lg);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(90,130,166,0.4);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,136,30,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-100);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--c-400);
  line-height: 1.65;
}

/* ============================================
   ACHIEVEMENT LIST
   ============================================ */
.achievement-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.achievement-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   METHODOLOGY SECTION
   ============================================ */
.methodology-section {
  padding: var(--space-3xl) 0;
}

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

.method-item {
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-100);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.method-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.method-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-100);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.method-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.method-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   INTENSIVE CARDS
   ============================================ */
.intensive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.intensive-card {
  background: var(--bg-white);
  border: 1px solid var(--c-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

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

.intensive-card.card-accent {
  background: var(--c-900);
  border-color: var(--c-700);
}

.intensive-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}

.intensive-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--c-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-600);
}

.intensive-icon.accent {
  background: rgba(212,136,30,0.15);
  color: var(--accent);
}

.intensive-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.intensive-tag {
  padding: 3px 10px;
  background: var(--c-50);
  color: var(--c-600);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-100);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accent-tag {
  background: rgba(212,136,30,0.15);
  color: var(--accent);
  border-color: rgba(212,136,30,0.25);
}

.intensive-duration {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-accent .intensive-duration { color: var(--c-400); }

.intensive-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-accent h3 { color: var(--c-white); }

.intensive-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.card-accent p { color: var(--c-300); }

.intensive-topics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.topic-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-secondary);
}

.card-accent .topic-item { color: var(--c-300); }

.topic-item i {
  color: var(--accent);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.intensive-cta {
  display: block;
  text-align: center;
  padding: 0.7rem var(--space-md);
  background: var(--c-50);
  color: var(--c-700);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-100);
  transition: all var(--transition-base);
  margin-top: auto;
}

.intensive-cta:hover {
  background: var(--c-100);
  color: var(--c-900);
}

.intensive-cta.accent-cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.intensive-cta.accent-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

/* ============================================
   STAGES TIMELINE
   ============================================ */
.stages-section {
  padding: var(--space-3xl) 0;
}

.stages-intro {
  max-width: 680px;
  margin-bottom: var(--space-2xl);
}

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

.stage-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
}

.stage-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.stage-num-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--c-900);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.stage-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--c-300), var(--c-100));
  margin-top: 8px;
  min-height: 60px;
}

.stage-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-bottom: var(--space-lg);
}

.stage-content-wrap.reverse {
  direction: rtl;
}

.stage-content-wrap.reverse > * {
  direction: ltr;
}

.stage-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.stage-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.stage-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.stage-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-tinted);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.stage-details i { color: var(--accent); }

.stage-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


.stage-img-placeholder {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.theory-visual {
  background: var(--c-900);
  padding: var(--space-lg);
}

.theory-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.diagram-block {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.diagram-block.main {
  background: var(--accent);
  color: #fff;
  width: 80%;
}

.diagram-block.sub {
  background: rgba(58,97,134,0.4);
  color: var(--c-200);
  flex: 1;
}

.diagram-block.action {
  background: rgba(58,97,134,0.25);
  color: var(--c-300);
  border: 1px solid rgba(90,130,166,0.3);
  width: 80%;
}

.diagram-row {
  display: flex;
  gap: 12px;
  width: 80%;
}

.diagram-arrow {
  color: var(--c-400);
  font-size: 0.9rem;
}

.progress-visual {
  background: var(--bg-tinted);
  padding: var(--space-lg);
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.progress-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.progress-bar {
  height: 8px;
  background: var(--c-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-600), var(--accent));
  border-radius: var(--radius-full);
  transition: width 1.5s ease;
}

.cert-visual {
  background: var(--bg-tinted);
  padding: var(--space-lg);
  gap: var(--space-sm);
}

.cert-icon {
  font-size: 4rem;
  color: var(--accent);
}

.cert-visual p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-3xl) 0;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--c-100);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.faq-question i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 28px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--space-3xl) 0;
}

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

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-100);
}

.form-header {
  margin-bottom: var(--space-lg);
}

.form-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1.5px solid var(--c-100);
  border-radius: var(--radius-md);
  font-family: 'Onest', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-500);
  box-shadow: 0 0 0 3px rgba(58,97,134,0.1);
  background: var(--bg-white);
}

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

.checkbox-group { }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

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

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

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

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--c-600);
  text-decoration: underline;
}

.form-error {
  font-size: 0.85rem;
  color: #c0392b;
  min-height: 20px;
}

.form-submit {
  border: none;
  font-family: 'Onest', sans-serif;
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}

.contact-info-card {
  background: var(--c-900);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: var(--text-on-dark);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--space-lg);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(212,136,30,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-text span,
.info-text a {
  font-size: 0.9rem;
  color: var(--c-200);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.info-text a:hover { color: var(--accent-light); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: var(--space-md);
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--c-400);
}

.contact-note i {
  color: var(--c-500);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-note p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--bg-tinted);
}

.map-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}

.map-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

.map-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  padding: var(--space-2xl) var(--space-md);
}

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

.thanks-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  animation: pop-in 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pop-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thanks-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.thanks-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.thanks-note {
  font-size: 0.9rem;
  background: var(--bg-tinted);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.thanks-note a {
  color: var(--c-600);
  font-weight: 600;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: var(--c-900);
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,97,134,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,97,134,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--c-400);
}

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

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  margin-bottom: 8px;
}

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

.legal-body ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--c-600);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-900);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 1px solid rgba(90,130,166,0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-logo { display: inline-flex; }
.footer-logo-img { height: 36px; width: auto; }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--c-500);
  max-width: 360px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-400);
  transition: color var(--transition-fast);
  position: relative;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.footer-nav a:hover { color: var(--c-200); }
.footer-nav a:hover::after { width: 100%; }

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--c-500);
  transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--c-300); }
.footer-contact i { color: var(--accent); font-size: 0.8rem; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(90,130,166,0.1);
  width: 100%;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--c-600);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--c-400); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-700);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--c-900);
  border-top: 1px solid rgba(90,130,166,0.2);
  box-shadow: 0 -8px 32px rgba(13,27,42,0.3);
  padding: var(--space-md) var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--c-300);
  line-height: 1.6;
}

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

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Onest', sans-serif;
  transition: all var(--transition-fast);
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
}

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

.cookie-btn-reject {
  background: transparent;
  color: var(--c-300);
  border: 1px solid rgba(90,130,166,0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.05);
  color: var(--c-200);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--c-400);
  border: 1px solid rgba(90,130,166,0.2);
}

.cookie-btn-customize:hover {
  background: rgba(255,255,255,0.04);
  color: var(--c-300);
}


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  backdrop-filter: blur(4px);
}

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

.cookie-modal {
  background: var(--c-900);
  border: 1px solid rgba(90,130,166,0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--space-md);
}

.cookie-category {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(90,130,166,0.1);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

.cookie-category-header strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-200);
}

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

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

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(90,130,166,0.3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

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

.cookie-category p {
  font-size: 0.8rem;
  color: var(--c-500);
  line-height: 1.55;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-modal-actions .cookie-btn {
  flex: 1;
  min-width: 120px;
}

/* ============================================
   INTERSECTION OBSERVER ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .values-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cards-grid .feature-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .feature-alt-grid {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  
  .hero {
    min-height: 100svh;
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-content {
    padding-right: var(--space-md);
  }

  
  .feature-alt-grid,
  .feature-alt-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-alt-grid.reverse > * {
    direction: ltr;
  }

  .feature-alt-visual { order: -1; }

  .feature-img {
    height: 280px;
  }

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

  .cards-grid .feature-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

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

  .checklist-items {
    grid-template-columns: 1fr;
  }

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

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

  
  .process-steps {
    flex-direction: column;
  }

  .process-connector {
    width: 100%;
    height: 24px;
  }

  .process-connector::before {
    width: 2px;
    height: 100%;
    margin: 0 auto;
  }

  
  .stage-item {
    grid-template-columns: 48px 1fr;
  }

  .stage-content-wrap,
  .stage-content-wrap.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .stage-content-wrap.reverse > * {
    direction: ltr;
  }

  .stage-visual { display: none; }

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

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

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

  .contact-info-wrap {
    position: static;
  }

  
  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  
  .comparison-slider-container {
    height: 280px;
  }

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

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  
  .cookie-banner-inner {
    flex-direction: column;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

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

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

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}