/* ============================================================
   SoftCloud API — Custom CSS
   Color system: color-mix(in oklch, ...) palette generation
   Convention: .block, .block--modifier (flat, double-dash)
   ============================================================ */


:root {
  
  --primary-base: #1a2744;
  --accent-base: #2f6fbd;
  --surface-base: #f5f4f0;

  
  --primary: var(--primary-base);
  --primary-light: color-mix(in oklch, var(--primary-base), white 25%);
  --primary-lighter: color-mix(in oklch, var(--primary-base), white 55%);
  --primary-faint: color-mix(in oklch, var(--primary-base), white 88%);
  --primary-dark: color-mix(in oklch, var(--primary-base), black 15%);

  --accent: var(--accent-base);
  --accent-light: color-mix(in oklch, var(--accent-base), white 30%);
  --accent-lighter: color-mix(in oklch, var(--accent-base), white 65%);
  --accent-dark: color-mix(in oklch, var(--accent-base), black 20%);
  --accent-faint: color-mix(in oklch, var(--accent-base), white 88%);

  --surface: var(--surface-base);
  --surface-warm: color-mix(in oklch, var(--surface-base), #e8e4da 40%);
  --surface-off: color-mix(in oklch, var(--surface-base), white 60%);

  
  --bg-light: #f9f8f5;
  --bg-off-white: #f1efe9;
  --bg-slate: #1e2d4a;
  --bg-slate-light: color-mix(in oklch, #1e2d4a, white 10%);
  --text-primary: #18202e;
  --text-secondary: #3a4560;
  --text-muted: #7a879e;
  --text-light: #e8ecf2;
  --text-light-muted: color-mix(in oklch, #e8ecf2, var(--bg-slate) 40%);
  --border: color-mix(in oklch, var(--primary-base), white 82%);
  --border-light: color-mix(in oklch, white, var(--primary-base) 8%);

  
  --shadow-xs: 0 1px 2px color-mix(in oklch, var(--primary-base), transparent 88%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--primary-base), transparent 84%), 0 1px 2px color-mix(in oklch, var(--primary-base), transparent 90%);
  --shadow-md: 0 4px 20px color-mix(in oklch, var(--primary-base), transparent 80%), 0 2px 6px color-mix(in oklch, var(--primary-base), transparent 88%);
  --shadow-lg: 0 8px 40px color-mix(in oklch, var(--primary-base), transparent 74%), 0 3px 12px color-mix(in oklch, var(--primary-base), transparent 84%);
  --shadow-xl: 0 16px 60px color-mix(in oklch, var(--primary-base), transparent 68%), 0 6px 20px color-mix(in oklch, var(--primary-base), transparent 80%);

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

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

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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


.heading--section {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.heading--light { color: var(--text-light); }

.heading--page-hero {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.body--lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}
.body--regular {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.body--light { color: var(--text-light-muted); }


.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-faint);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-lighter);
  margin-bottom: 1.2rem;
}
.label-tag--light {
  color: var(--text-light);
  background: color-mix(in oklch, white, transparent 82%);
  border-color: color-mix(in oklch, white, transparent 70%);
}


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


.section {
  padding: var(--space-3xl) 0;
}
.section--light { background: var(--bg-light); }
.section--off-white { background: var(--bg-off-white); }
.section--slate { background: var(--bg-slate); }
.section--accent-bg { background: var(--primary); }

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


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: white;
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent-faint);
  color: var(--accent-dark);
}
.btn--light {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  background: var(--surface-warm);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--outline.btn--light {
  background: transparent;
  color: white;
  border-color: color-mix(in oklch, white, transparent 40%);
}
.btn--outline.btn--light:hover {
  background: color-mix(in oklch, white, transparent 85%);
  border-color: white;
}
.btn--full { width: 100%; justify-content: center; }


.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-slow);
}
.nav--scrolled {
  background: rgba(249, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem var(--space-md);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  transition: opacity var(--transition-base);
}
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.nav__hamburger:hover { background: var(--primary-faint); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav--light .nav__hamburger span,
.nav--scrolled .nav__hamburger span { background: var(--text-primary); }

.nav__desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.88);
  transition: all var(--transition-base);
  white-space: nowrap;
}
.nav__link:hover, .nav__link--active {
  color: white;
  background: color-mix(in oklch, white, transparent 88%);
}
.nav--light .nav__link {
  color: var(--text-secondary);
}
.nav--light .nav__link:hover,
.nav--light .nav__link--active {
  color: var(--text-primary);
  background: var(--primary-faint);
}
.nav--scrolled .nav__link {
  color: var(--text-secondary);
}
.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--text-primary);
  background: var(--primary-faint);
}


.nav__dropdown { position: relative; }
.nav__chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-base);
}
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition-base);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}
.nav__dropdown-item:hover {
  background: var(--primary-faint);
  color: var(--text-primary);
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}
.mobile-menu__logo { height: 36px; width: auto; }
.mobile-menu__close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}
.mobile-menu__close:hover { background: color-mix(in oklch, white, transparent 88%); }
.mobile-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: center;
}
.mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.5rem 1rem;
  background: color-mix(in oklch, white, transparent 90%);
  border-radius: var(--radius-lg);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
  min-height: 100px;
  text-align: center;
  border: 1px solid color-mix(in oklch, white, transparent 80%);
}
.mobile-menu__item i {
  font-size: 1.4rem;
  color: var(--accent-light);
}
.mobile-menu__item:hover {
  background: color-mix(in oklch, white, transparent 80%);
  color: white;
  transform: translateY(-2px);
}
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--primary), transparent 15%) 0%,
    color-mix(in oklch, var(--primary), transparent 35%) 40%,
    color-mix(in oklch, var(--primary-dark), transparent 20%) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: 10rem;
  padding-bottom: 4rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.hero__heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.hero__subtext {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: color-mix(in oklch, white, var(--primary) 30%);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}


.hero__trust-bar {
  position: relative;
  z-index: 2;
  background: color-mix(in oklch, white, transparent 8%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid color-mix(in oklch, white, transparent 82%);
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: color-mix(in oklch, white, var(--primary) 25%);
}
.trust-bar__item i {
  color: var(--accent-light);
  font-size: 1rem;
}


.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero--light { background: var(--bg-light); }
.page-hero--dark { min-height: 55vh; display: flex; align-items: flex-end; padding-bottom: 4rem; }
.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in oklch, var(--primary), transparent 20%) 0%,
    color-mix(in oklch, var(--primary), transparent 40%) 100%
  );
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__content--dark { color: white; }
.page-hero__content--dark .heading--page-hero { color: white; }
.page-hero__content--dark .body--lead { color: color-mix(in oklch, white, var(--primary) 30%); }


.split {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}
.split--right-heavy { grid-template-columns: 1fr; }
.split--left-heavy { grid-template-columns: 1fr; }
.split__label { display: none; }
.split__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}


.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.process-card {
  background: color-mix(in oklch, white, transparent 88%);
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, white, transparent 80%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
}
.process-card:hover {
  background: color-mix(in oklch, white, transparent 80%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.process-card__number {
  font-size: 3rem;
  font-weight: 700;
  color: color-mix(in oklch, white, transparent 75%);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.process-card__icon {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.process-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.process-card__text {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}


.compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-xl);
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition-base);
}
.compare-card:hover { box-shadow: var(--shadow-md); }
.compare-card--informal { background: var(--bg-off-white); }
.compare-card--systematic {
  background: var(--primary);
  border-color: var(--primary-light);
}
.compare-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.compare-card--systematic .compare-card__header { border-color: var(--primary-light); }
.compare-card__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.compare-card--systematic .compare-card__icon { color: var(--accent-light); }
.compare-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}
.compare-card--systematic .compare-card__title { color: white; }
.compare-card__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.compare-card--systematic .compare-card__subtitle { color: var(--text-light-muted); }
.compare-list { display: flex; flex-direction: column; gap: 0.85rem; }
.compare-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.compare-list__item i {
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.compare-list__item--neutral { color: var(--text-secondary); }
.compare-list__item--neutral i { color: var(--text-muted); }
.compare-list__item--positive { color: color-mix(in oklch, white, var(--primary) 25%); }
.compare-list__item--positive i { color: #5cbf8a; }


.section--feature-img {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.feature-img__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.feature-img__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in oklch, var(--primary), transparent 5%) 0%,
    color-mix(in oklch, var(--primary), transparent 30%) 60%,
    color-mix(in oklch, var(--primary), transparent 60%) 100%
  );
}
.feature-img__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}


.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-md);
}
.service-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}
.service-list__item:hover {
  border-color: var(--accent-lighter);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.service-list__icon {
  width: 40px;
  height: 40px;
  background: var(--accent-faint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-list__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.service-list__text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}
.service-list__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.service-list__arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition-base);
}
.service-list__item:hover .service-list__arrow {
  color: var(--accent);
  transform: translateX(3px);
}


.cta-block {
  text-align: center;
  padding: var(--space-xl) 0;
}
.cta-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}


.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.audience-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-base);
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent-lighter);
}
.audience-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.audience-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.audience-card__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.audience-card__text:last-child { margin-bottom: 0; }


.situation-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--space-md);
}
.situation-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.situation-item i {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.situation-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}
.situation-item p {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin: 0;
}


.not-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.not-fit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.not-fit-card__icon {
  color: color-mix(in oklch, var(--accent), var(--text-muted) 50%);
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.not-fit-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}


.engagement-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}
.engagement-block__header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.engagement-block__num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-lighter);
  line-height: 1;
  flex-shrink: 0;
}
.engagement-block__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.engagement-block__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.engagement-block__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.5;
}
.engagement-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.engagement-block__description p {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.engagement-block__description p:last-child { margin-bottom: 0; }
.engagement-block__scope-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.scope-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.scope-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.scope-list li i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}


.method-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-xl);
  padding-left: 1rem;
}
.method-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
}
.method-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.3rem;
}
.method-step__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 3px solid var(--bg-slate);
  box-shadow: 0 0 0 3px var(--accent);
  flex-shrink: 0;
}
.method-step__line {
  width: 2px;
  flex: 1;
  background: color-mix(in oklch, white, transparent 80%);
  margin-top: 0.5rem;
  min-height: 40px;
}
.method-step__content {
  padding-bottom: var(--space-xl);
}
.method-step__phase {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.method-step__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.method-step__text {
  font-size: 0.93rem;
  color: var(--text-light-muted);
  line-height: 1.75;
}
.method-step__img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/7;
  object-fit: cover;
}


.boundary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.boundary-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition-base);
}
.boundary-card:hover { box-shadow: var(--shadow-sm); }
.boundary-card__icon {
  color: color-mix(in oklch, var(--accent), var(--text-muted) 40%);
  font-size: 1.2rem;
}
.boundary-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.boundary-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.contact-form-wrap__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.contact-form-wrap__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  min-height: 44px;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-faint);
}
.form-input::placeholder { color: var(--text-muted); }
.form-input--textarea {
  min-height: 160px;
  resize: vertical;
}
.form-group--checkbox { margin-top: 1rem; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] { display: none; }
.form-checkbox__indicator {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: all var(--transition-base);
  background: white;
  position: relative;
}
.form-checkbox input:checked + .form-checkbox__indicator {
  background: var(--accent);
  border-color: var(--accent);
}
.form-checkbox input:checked + .form-checkbox__indicator::after {
  content: '';
  position: absolute;
  inset: 3px 4px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}
.form-checkbox__label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form-checkbox__label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact-info__heading {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.contact-info__address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.contact-info__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}
.contact-info__link:hover { color: var(--accent); }
.contact-info__link i { color: var(--accent); width: 16px; }
.contact-info__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }


.newsletter-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.newsletter-block__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.newsletter-block__text {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.newsletter-form__fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter-form__fields .form-input {
  flex: 1;
  min-width: 220px;
}
.newsletter-form__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.newsletter-form__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }


.thanks-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-md);
}
.thanks-page__inner {
  text-align: center;
  max-width: 560px;
}
.thanks-page__icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.thanks-page__heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.thanks-page__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.thanks-page__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.thanks-page__text--secondary { font-size: 0.92rem; color: var(--text-muted); }


.legal-timeline { max-width: 800px; margin: 0 auto; }
.legal-timeline__entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.legal-timeline__entry:last-child { border-bottom: none; margin-bottom: 0; }
.legal-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.legal-timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.legal-timeline__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.legal-timeline__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.legal-timeline__body p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.legal-timeline__body p:last-child { margin-bottom: 0; }
.legal-timeline__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-timeline__body strong { color: var(--text-primary); font-weight: 600; }


.terms-doc { max-width: 800px; margin: 0 auto; }
.terms-doc__intro { margin-bottom: var(--space-xl); }
.terms-section {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.terms-section:last-child { border-bottom: none; }
.terms-section__letter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-lighter);
  line-height: 1;
  padding-top: 0.2rem;
}
.terms-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.terms-section p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.terms-section p:last-child { margin-bottom: 0; }
.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}
.terms-list li {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.terms-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}


.cookies-doc { max-width: 800px; margin: 0 auto; }
.cookies-overview { margin-bottom: var(--space-xl); }
.cookie-section {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cookie-section:last-child { border-bottom: none; }
.cookie-section__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-faint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cookie-section__body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.cookie-section__body p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.cookie-section__body p:last-child { margin-bottom: 0; }
.cookie-section__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-table-wrap { overflow-x: auto; margin: 1rem 0; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.cookie-table th {
  text-align: left;
  padding: 0.6rem 0.9rem;
  background: var(--bg-off-white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.cookie-table td {
  padding: 0.65rem 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }


.footer { margin-top: auto; }
.footer__accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--primary-light));
}
.footer__body {
  background: var(--primary-dark);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__logo { height: 32px; width: auto; margin-bottom: 1rem; opacity: 0.9; }
.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer__address {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}
.footer__contact-link:hover { color: white; }
.footer__contact-link i { color: var(--accent-light); width: 14px; }
.footer__col-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: 1rem;
}
.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition-base);
}
.footer__link:hover { color: white; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--space-md);
  border-top: 1px solid color-mix(in oklch, white, transparent 88%);
}
.footer__copy, .footer__domain {
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
}


.cookie-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-slow);
  border-left: 1px solid var(--border);
}
.cookie-panel.is-open { right: 0; }
.cookie-panel__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.cookie-panel__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cookie-panel__header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cookie-panel__header i {
  color: var(--accent);
  font-size: 1.2rem;
}
.cookie-panel__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}
.cookie-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}
.cookie-panel__body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cookie-category__desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base);
}
.toggle input:checked + .toggle__track { background: var(--accent); }
.toggle__track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle__track::before { transform: translateX(18px); }
.toggle input:disabled + .toggle__track { opacity: 0.6; cursor: not-allowed; }
.cookie-panel__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-panel__link {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}
.cookie-panel__link:hover { color: var(--text-primary); }


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


@media (min-width: 768px) {
  .nav__desktop { display: flex; }
  .nav__hamburger { display: none; }

  .split--right-heavy {
    grid-template-columns: 220px 1fr;
  }
  .split--left-heavy {
    grid-template-columns: 1fr 360px;
  }
  .split__label { display: block; }

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

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

  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .not-fit-grid { grid-template-columns: repeat(3, 1fr); }

  .engagement-block__body { grid-template-columns: 1fr 320px; }
  .engagement-block__body--reverse { grid-template-columns: 320px 1fr; }

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

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

  .newsletter-block { grid-template-columns: 1fr 1fr; }

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

  .legal-timeline__entry { grid-template-columns: 160px 1fr; }
  .terms-section { grid-template-columns: 56px 1fr; }
  .cookie-section { grid-template-columns: 48px 1fr; }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .not-fit-grid { grid-template-columns: repeat(3, 1fr); }
  .boundary-grid { grid-template-columns: repeat(4, 1fr); }

  .split--right-heavy {
    grid-template-columns: 240px 1fr;
  }
  .split--left-heavy {
    grid-template-columns: 1fr 420px;
  }
}

@media (max-width: 767px) {
  .hero__heading { font-size: clamp(2rem, 8vw, 3rem); }

  .trust-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .trust-bar__item { justify-content: flex-start; }

  .engagement-block { padding: var(--space-md); }
  .engagement-block__header { gap: 0.75rem; }
  .engagement-block__num { font-size: 1.8rem; }

  .legal-timeline__entry {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .legal-timeline__marker { flex-direction: row; align-items: center; }

  .terms-section { grid-template-columns: 1fr; gap: 0.5rem; }
  .terms-section__letter { font-size: 1.5rem; }

  .cookie-section { grid-template-columns: 1fr; gap: 0.75rem; }

  .method-timeline { padding-left: 0; }

  .nav {
    padding: 0.75rem var(--space-sm);
  }
}


body.menu-open { overflow: hidden; }