/* Marketing landing · eMobilities+ Erasmus blue & yellow, beige canvas */
html:has(.landing-page) {
  margin: 0;
  background-color: var(--landing-canvas);
}

:root {
  --landing-bg: #ffffff;
  --landing-canvas: #faf8f4;
  --landing-content-max: 1160px;
  --landing-nav-max: 1240px;
  --landing-radius-sm: 8px;
  --landing-radius-md: 10px;
  --landing-radius-lg: 16px;
  --landing-radius-xl: 18px;
  --landing-radius-nav: 12px;
  --landing-gutter: clamp(16px, 4vw, 40px);
  --landing-nav-top: clamp(12px, 2vw, 20px);
  --erasmus-blue-soft: #1e4d8c;
  --erasmus-yellow: #ffcc00;
  --erasmus-yellow-soft: #fff8dc;
  --chaos-bg: #fde8e8;
  --chaos-border: #f5a8a8;
  --chaos-warn-bg: #fff3e0;
  --chaos-warn-border: #ffcc80;
  --calm-green: #16a34a;
}

.landing-page {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #171717;
  background: var(--landing-canvas);
  padding-top: 0;
  position: relative;
  overflow-x: hidden;
}

/* Nav · floating bar on hero gradient */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: calc(100% - 2 * var(--landing-gutter));
  max-width: var(--landing-nav-max);
  margin: var(--landing-nav-top) auto 12px;
  padding: 10px clamp(16px, 3vw, 28px);
  position: sticky;
  top: var(--landing-nav-top);
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 77, 140, 0.07);
  border-radius: var(--landing-radius-nav);
  box-shadow: 0 4px 28px rgba(30, 77, 140, 0.08);
}

.landing-page .logo-plus {
  color: var(--erasmus-yellow);
  font-weight: 800;
}

/* Scroll reveal */
.landing-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .landing-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.landing-logo {
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--erasmus-blue-soft);
  text-decoration: none;
  flex-shrink: 0;
}

.landing-nav-start {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  min-width: 0;
}

.landing-nav-actions {
  display: flex;
  gap: clamp(8px, 2vw, 14px);
  align-items: center;
  flex-shrink: 0;
}

.landing-nav-actions .btn-cta-mobility {
  white-space: nowrap;
}

.landing-nav-actions a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.landing-nav-actions .btn-ghost-nav {
  color: #525252;
  padding: 8px 14px;
}

.landing-nav-actions .btn-ghost-nav:hover {
  color: var(--erasmus-blue-soft);
}

/* Hero · colours fill the fold; white curve SVG cuts the bottom edge only */
.landing-hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
  box-sizing: border-box;
  background: transparent;
  isolation: isolate;
}

.landing-hero-scenery {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.landing-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: var(--landing-canvas);
  background-image:
    radial-gradient(ellipse 55% 42% at 78% 72%, rgba(163, 198, 255, 0.55) 0%, transparent 68%),
    radial-gradient(ellipse 48% 38% at 22% 88%, rgba(255, 228, 150, 0.45) 0%, transparent 62%),
    radial-gradient(ellipse 38% 50% at 92% 48%, rgba(255, 236, 175, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 42% 35% at 8% 62%, rgba(190, 215, 255, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 30% 28% at 55% 58%, rgba(220, 235, 255, 0.28) 0%, transparent 50%),
    linear-gradient(
      180deg,
      var(--landing-canvas) 0%,
      var(--landing-canvas) 12%,
      #f9f7f2 35%,
      #f7f5ef 55%,
      #f3f0ea 82%,
      #efece5 100%
    );
}

/* Soft white lift above the curve (stays inside hero) */
.landing-hero-backdrop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 45%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.landing-hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: landing-hero-enter 0.65s ease forwards;
}

@keyframes landing-hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-enter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.landing-hero-wrap .landing-hero-section {
  position: relative;
  z-index: 2;
}

.landing-hero-backdrop .landing-hero-blob {
  position: absolute;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.9;
}

.landing-hero-blob-a {
  width: min(520px, 58vw);
  height: min(380px, 45vh);
  top: 38%;
  left: -8%;
  border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
  transform: rotate(-18deg) skewX(-6deg);
  background: rgba(147, 197, 253, 0.45);
}

.landing-hero-blob-b {
  width: min(440px, 50vw);
  height: min(360px, 42vh);
  top: 52%;
  right: -5%;
  border-radius: 60% 40% 45% 55% / 40% 60% 55% 45%;
  transform: rotate(14deg) skewY(4deg);
  background: rgba(255, 210, 100, 0.35);
}

.landing-hero-blob-c {
  width: min(320px, 38vw);
  height: min(280px, 32vh);
  top: 68%;
  left: 42%;
  border-radius: 50% 50% 40% 60% / 55% 45% 60% 40%;
  transform: rotate(-8deg) translateX(-20%);
  background: rgba(200, 225, 255, 0.3);
}

.landing-hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(60px, 8.5vh, 92px);
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.landing-hero-curve-svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hero */
.landing-hero-section {
  position: relative;
  z-index: 2;
  flex: 1;
  width: calc(100% - 2 * var(--landing-gutter));
  max-width: var(--landing-content-max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 0 clamp(88px, 10vw, 112px);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  background: transparent;
}

.landing-eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 0;
  background: none;
  color: #737373;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}

.landing-hero-section h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: #171717;
}

.hero-highlight {
  background: linear-gradient(90deg, #003399 0%, var(--erasmus-blue-soft) 58%, var(--erasmus-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.landing-hero-section .lead {
  font-size: 19px;
  line-height: 1.65;
  color: #404040;
  margin: 0 0 16px;
  max-width: 520px;
}

.landing-stress-line {
  margin: 0 0 8px;
  font-size: 16px;
  color: #525252;
  max-width: 480px;
}

.landing-stress-anxiety em {
  font-style: italic;
  color: var(--erasmus-blue-soft);
  font-weight: 500;
}

.landing-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}

.landing-nav-actions .btn-cta-mobility,
.landing-hero-ctas .btn-cta-mobility,
.landing-hero-ctas .btn-landing-secondary {
  min-height: 44px;
  padding: 11px 22px;
  font-size: 15px;
  box-sizing: border-box;
}

.btn-landing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--erasmus-blue-soft);
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid rgba(30, 77, 140, 0.35);
  border-radius: 10px;
  text-decoration: none;
}

.btn-landing-secondary:hover {
  background: #eef4fc;
  text-decoration: none;
}

.landing-hero-note {
  margin-top: 20px;
  font-size: 14px;
  color: #737373;
}

.landing-stress-photo {
  margin: 28px 0 0;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 77, 140, 0.1);
}

.landing-stress-photo-section {
  margin: 56px auto 0;
  max-width: 720px;
  text-align: center;
}

.landing-stress-photo-section figcaption {
  margin-top: 14px;
  font-size: 15px;
  color: #525252;
  line-height: 1.5;
}

.landing-stress-photo-section figcaption em {
  font-style: italic;
  color: var(--erasmus-blue-soft);
}

.landing-stress-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Scroll hint · Sword-style double circle */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(48px, 7vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.9;
  animation: bounce-scroll-hint 2.2s ease-in-out infinite;
}

.hero-scroll-hint:hover {
  opacity: 1;
  text-decoration: none;
}

.hero-scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(30, 77, 140, 0.4);
  background: transparent;
  animation: scroll-hint-ring-pulse 2.2s ease-in-out infinite;
}

.hero-scroll-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--erasmus-blue-soft);
  box-shadow: 0 2px 12px rgba(30, 77, 140, 0.2);
}

.hero-scroll-arrow {
  color: #fff;
  display: block;
}

@keyframes scroll-hint-ring-pulse {
  0%, 100% {
    border-color: rgba(30, 77, 140, 0.48);
  }
  50% {
    border-color: rgba(30, 77, 140, 0.14);
  }
}

@keyframes bounce-scroll-hint {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint {
    animation: none;
  }

  .hero-scroll-indicator {
    animation: none;
    border-color: rgba(30, 77, 140, 0.28);
  }
}

@keyframes bounce-scroll-hint-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Mock widget */
.landing-mock {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(30, 77, 140, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(30, 77, 140, 0.06);
  min-height: 380px;
}

.landing-mock-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #737373;
  background: #f2f6fc;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.landing-mock-header {
  font-size: 14px;
  color: #525252;
  margin-bottom: 16px;
  font-weight: 600;
}

.landing-mock-phases {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.35s ease;
}

.landing-mock-phases.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.landing-mock-phase {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  border-left: 4px solid #e5e5e5;
  background: var(--landing-bg);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.landing-mock-phase.stage-pre {
  border-left-color: #d4e4f7;
}

.landing-mock-phase.stage-during {
  border-left-color: #f5e6a8;
}

.landing-mock-phase.stage-after {
  border-left-color: #c8efd4;
}

.landing-mock-phase.stage-pre.active {
  background: #eef4fc;
  border-left-color: #93c5fd;
  font-weight: 600;
}

.landing-mock-phase.stage-during.active {
  background: #fffbeb;
  border-left-color: var(--erasmus-yellow);
  font-weight: 600;
}

.landing-mock-phase.stage-after.active {
  background: #ecfdf5;
  border-left-color: #86efac;
  font-weight: 600;
}

.mock-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

.mock-success.is-visible {
  opacity: 1;
}

.mock-success-check {
  font-size: 72px;
  color: var(--calm-green);
  font-weight: 700;
  line-height: 1;
}

.mock-success-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--erasmus-blue-soft);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

/* Sections */
.landing-section {
  position: relative;
  padding: 120px 40px;
  background: var(--landing-canvas);
}

.landing-section-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  z-index: 1;
}

.landing-section-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.landing-section-blob-pain {
  width: 420px;
  height: 420px;
  top: 10%;
  right: -8%;
  background: rgba(255, 214, 170, 0.2);
}

.landing-section-blob-steps {
  width: 380px;
  height: 380px;
  top: 20%;
  left: -12%;
  background: rgba(147, 197, 253, 0.22);
}

.landing-section-inner-narrow {
  max-width: 720px;
}

.landing-section.alt {
  background: var(--landing-canvas);
}

.landing-section.alt.landing-section-faq {
  background: linear-gradient(180deg, var(--landing-canvas) 0%, #ffffff 100%);
  padding-top: clamp(72px, 9vh, 96px);
  padding-bottom: clamp(88px, 11vh, 112px);
}

.landing-section-faq.landing-cta-final-light {
  background: linear-gradient(180deg, var(--landing-canvas) 0%, #ffffff 100%);
  text-align: center;
  padding: clamp(88px, 11vh, 120px) 40px;
  height: 482px;
  border-top: none;
  overflow: hidden;
}

.landing-section-faq.landing-cta-final-light .landing-section-inner {
  position: relative;
  z-index: 1;
}

.landing-cta-final:has(.landing-faq) {
  background: #ffffff;
  padding-top: clamp(72px, 9vh, 96px);
  padding-bottom: clamp(88px, 11vh, 112px);
  border-top: 1px solid rgba(30, 77, 140, 0.08);
}

.landing-section-faq .landing-section-inner-narrow h2,
.landing-cta-final .landing-section-inner-narrow h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 34px;
}

.landing-cta-final:has(.landing-faq) .landing-section-inner-narrow h2 {
  text-align: left;
}

.section-lead-faq {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: #525252;
}

.landing-cta-final:has(.landing-faq) .section-lead-faq {
  text-align: left;
  margin: 0 0 36px;
  max-width: none;
}

.landing-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.landing-faq details {
  background: #ffffff;
  border: 1px solid rgba(30, 77, 140, 0.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 77, 140, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-faq details:hover {
  border-color: rgba(30, 77, 140, 0.14);
}

.landing-faq details[open] {
  border-color: rgba(30, 77, 140, 0.16);
  box-shadow: 0 8px 28px rgba(30, 77, 140, 0.09);
}

.landing-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  color: var(--erasmus-blue-soft);
  list-style: none;
  text-align: left;
}

.landing-faq summary::-webkit-details-marker {
  display: none;
}

.landing-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef4fc;
  color: var(--erasmus-blue-soft);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.landing-faq details[open] summary {
  border-bottom: 1px solid rgba(30, 77, 140, 0.07);
}

.landing-faq details[open] summary::after {
  content: "−";
  background: var(--erasmus-yellow-soft);
  color: var(--erasmus-blue-soft);
}

.landing-faq summary:hover::after {
  background: #dce8f8;
}

.landing-faq p {
  margin: 0;
  padding: 16px 22px 20px;
  font-size: 15px;
  color: #525252;
  line-height: 1.65;
}

.landing-faq p a {
  color: var(--erasmus-blue-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-faq p a:hover {
  color: #163a6e;
}

.landing-section-compare {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(64px, 8vh, 88px);
  padding-bottom: clamp(64px, 8vh, 80px);
  scroll-margin-top: 96px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 22%, var(--landing-canvas) 100%);
  border-top: none;
}

#compare {
  scroll-margin-top: 100px;
}

.landing-section-compare::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(238, 244, 252, 0.4);
  filter: blur(80px);
  pointer-events: none;
}

.landing-section-pain {
  position: relative;
  z-index: 1;
  background: var(--landing-canvas);
  padding-top: clamp(64px, 8vh, 80px);
  padding-bottom: clamp(64px, 8vh, 88px);
  margin-top: -1px;
}

.landing-section-pain .landing-section-inner > :not(.landing-section-blob) {
  position: relative;
  z-index: 1;
}

.landing-section.landing-section-pain h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 34px;
  color: var(--erasmus-blue-soft);
}

/* Look familiar? · same split pattern as How it works (image left, cards right) */
.landing-pain-split.landing-steps-split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3.5vw, 40px);
}

.landing-pain-split .landing-steps-col {
  gap: 12px;
}

.landing-pain-split .landing-step-vertical {
  padding: 18px 20px;
  gap: 16px;
  align-items: flex-start;
}

.landing-pain-split .landing-step-vertical .landing-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  margin: 0;
  border-radius: 12px;
  flex-shrink: 0;
}

.landing-pain-split .landing-step-vertical .landing-card-icon svg {
  width: 20px;
  height: 20px;
}

.landing-pain-split .landing-step-body {
  text-align: left;
}

.landing-pain-split .landing-step-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.landing-pain-split .landing-step-body p {
  font-size: 14px;
  line-height: 1.5;
}

.landing-pain-split .landing-steps-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  min-height: 100%;
}

.landing-section-steps {
  scroll-margin-top: 96px;
  padding-top: clamp(64px, 8vh, 80px);
  padding-bottom: clamp(64px, 8vh, 80px);
  position: relative;
}

.landing-section-inner-steps > :not(.landing-section-blob) {
  position: relative;
  z-index: 1;
}

#how-it-works {
  scroll-margin-top: 100px;
}


.landing-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  color: var(--erasmus-blue-soft);
}

.landing-section .section-lead {
  text-align: center;
  color: #525252;
  max-width: 620px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 1.65;
}

.landing-section.landing-section-pain .section-lead.section-lead-left,
.landing-section-inner-steps .section-lead.section-lead-left {
  text-align: left;
  margin: 0 0 28px 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.5;
}

/* Pain cards */
.landing-pain-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.landing-pain-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(30, 77, 140, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(30, 77, 140, 0.06);
}

.landing-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: #eef4fc;
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--erasmus-blue-soft);
}

.landing-card-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.landing-pain-card h3 {
  margin: 0 0 14px;
  font-size: 19px;
  color: var(--erasmus-blue-soft);
}

.landing-pain-card p {
  margin: 0;
  font-size: 15px;
  color: #525252;
  line-height: 1.65;
}

/* Steps · vertical left, photo right */
.landing-section-inner-steps h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 34px;
}

.landing-section-steps .landing-steps-split {
  gap: clamp(24px, 3.5vw, 40px);
}

.landing-section-steps .landing-steps-col {
  gap: 12px;
}

.landing-section-steps .landing-step-vertical {
  padding: 18px 20px;
}

.landing-section-steps .landing-step-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.landing-section-steps .landing-step-body p {
  font-size: 14px;
  line-height: 1.5;
}

.landing-section-steps .landing-steps-photo img {
  aspect-ratio: 16 / 10;
}

.landing-section-steps .landing-steps-tagline {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.45;
}

.landing-steps-cta {
  margin-top: 36px;
  text-align: center;
}

.landing-section-compare h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.landing-section-compare .section-lead {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.5;
}

.landing-section-compare .landing-compare-split {
  gap: 24px;
}

.landing-section-compare .landing-compare-chaos {
  min-height: 340px;
  padding: 22px 20px 18px;
}

.landing-section-compare .landing-compare-calm {
  padding: 22px 20px;
}

.landing-section-compare .compare-side-sub {
  margin-bottom: 12px;
}

.landing-section-compare .chaos-scatter {
  min-height: 280px;
  margin-top: 4px;
}

.landing-section-compare .benefit-pills {
  gap: 10px;
}

.landing-section-compare .benefit-pills li {
  padding: 10px 14px;
}

.landing-steps-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.landing-steps-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-step-vertical {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(30, 77, 140, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 77, 140, 0.06);
}

.landing-step-vertical .landing-step-num {
  flex-shrink: 0;
  margin: 2px 0 0;
}

.landing-step-body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.landing-step-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--erasmus-blue-soft);
}

.landing-step-body p {
  margin: 0;
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
}

.landing-steps-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(30, 77, 140, 0.1);
  border: 1px solid rgba(30, 77, 140, 0.08);
}

.landing-steps-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.landing-steps-tagline {
  margin: 48px 0 0;
  text-align: center;
  font-size: 17px;
  color: #525252;
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.landing-steps-tagline em {
  font-style: italic;
  color: var(--erasmus-blue-soft);
}

/* Legacy horizontal steps (unused) */
.landing-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.landing-step {
  text-align: center;
  padding: 44px 32px;
  background: #fff;
  border: 1px solid rgba(30, 77, 140, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.landing-step-num {
  width: 48px;
  height: 48px;
  background: var(--erasmus-blue-soft);
  color: var(--erasmus-yellow);
  border: 2px solid var(--erasmus-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}

.landing-step h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--erasmus-blue-soft);
}

.landing-step p {
  margin: 0;
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
}

/* Value grid */
.landing-section-value .landing-section-inner {
  position: relative;
}

.landing-section-value .landing-section-inner > :not(.landing-value-venn) {
  position: relative;
  z-index: 1;
}

.landing-value-grid-wrap {
  position: relative;
  margin-top: 8px;
}

.landing-value-venn {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(120px, 18%, 180px);
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.landing-value-venn-circle {
  position: absolute;
  width: min(500px, 54vw);
  height: min(500px, 54vw);
  top: 38%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(52px);
}

.landing-value-venn-left {
  left: 32%;
  background: linear-gradient(
    180deg,
    var(--landing-canvas) 0%,
    rgba(250, 248, 244, 0.9) 32%,
    rgba(190, 215, 255, 0.5) 68%,
    rgba(147, 197, 253, 0.42) 100%
  );
}

.landing-value-venn-right {
  left: 68%;
  background: linear-gradient(
    180deg,
    var(--landing-canvas) 0%,
    rgba(250, 248, 244, 0.9) 32%,
    rgba(255, 236, 175, 0.52) 68%,
    rgba(255, 210, 100, 0.4) 100%
  );
}

.landing-value-grid-wrap .landing-value-grid {
  position: relative;
}

.landing-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.landing-value-card {
  padding: 36px 32px;
  border: 1px solid rgba(30, 77, 140, 0.08);
  border-radius: 16px;
  background: var(--landing-bg);
}

.landing-value-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--erasmus-blue-soft);
}

.landing-value-card p {
  margin: 0;
  font-size: 15px;
  color: #525252;
  line-height: 1.6;
}

/* What we stand for */
.landing-section.landing-section-standfor {
  padding-top: clamp(56px, 7vh, 72px);
  padding-bottom: clamp(56px, 7vh, 72px);
  background: var(--landing-canvas);
}

.landing-section.landing-section-standfor .landing-standfor-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--erasmus-blue-soft);
  background: var(--erasmus-yellow-soft);
  border-radius: 999px;
}

.landing-section.landing-section-standfor > .landing-section-inner > h2 {
  margin: 0 auto 32px;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: var(--erasmus-blue-soft);
}

.landing-standfor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .landing-standfor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-standfor-card {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 24px 24px 26px;
  box-shadow: none;
}

.landing-standfor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #eef4fc;
  color: var(--erasmus-blue-soft);
}

.landing-standfor-icon--eu {
  background: #fff8dc;
  color: #b8860b;
}

.landing-standfor-icon--reuse {
  background: #ecfdf5;
  color: #16a34a;
}

.landing-standfor-icon svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.landing-standfor-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--erasmus-blue-soft);
  line-height: 1.3;
}

.landing-standfor-card p {
  margin: 0;
  font-size: 16px;
  color: #525252;
  line-height: 1.55;
}

/* Compare split */
.landing-compare-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.landing-compare-chaos {
  background: #fff;
  border: 1px solid rgba(185, 28, 28, 0.15);
  border-radius: 18px;
  padding: 28px 24px 24px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.landing-compare-calm {
  background: #fff;
  border: 1px solid rgba(30, 77, 140, 0.12);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.compare-side-title {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--erasmus-blue-soft);
}

.landing-compare-chaos .compare-side-title {
  color: #404040;
}

.compare-side-sub {
  margin: 0 0 20px;
  font-size: 14px;
  color: #737373;
}

.chaos-scatter {
  position: relative;
  flex: 1;
  min-height: 400px;
  margin-top: 8px;
  background: #faf5f5;
  border-radius: 14px;
  border: 1px dashed rgba(185, 28, 28, 0.2);
  overflow: hidden;
}

.chaos-chip {
  position: absolute;
  top: var(--t, 10%);
  left: var(--l, 10%);
  transform: rotate(var(--r, 0deg));
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--chaos-bg);
  border: 1px solid var(--chaos-border);
  border-radius: 8px;
  color: #991b1b;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chaos-chip-warn {
  background: var(--chaos-warn-bg);
  border-color: var(--chaos-warn-border);
  color: #c2410c;
}

.chaos-chip-hot {
  background: #fee2e2;
  border-color: #f87171;
  font-weight: 700;
}

.benefit-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.benefit-pills::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(30, 77, 140, 0.45) 0%,
    rgba(30, 77, 140, 0.25) 55%,
    rgba(255, 204, 0, 0.5) 100%
  );
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.benefit-pills li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--landing-bg);
  border-radius: 12px;
  border: 1px solid rgba(30, 77, 140, 0.06);
  position: relative;
  z-index: 1;
}

.benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: var(--calm-green);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.benefit-pills li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-pills strong {
  font-size: 15px;
  color: var(--erasmus-blue-soft);
}

.benefit-pills span {
  font-size: 13px;
  color: #737373;
}

/* Subscribe · Kit mailing list (landing page embed) */
.landing-section-subscribe {
  padding: clamp(48px, 6vh, 72px) var(--landing-gutter);
  background: #ffffff;
  border-top: none;
}

.landing-subscribe-wrap {
  max-width: var(--landing-content-max);
  overflow: hidden;
  border-radius: var(--landing-radius-xl);
  line-height: 0;
}

.landing-subscribe-iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1160 / 560;
  height: auto;
  min-height: 560px;
  border: 0;
  border-radius: var(--landing-radius-xl);
  background: transparent;
  overflow: hidden;
}

/* CTA final */
.landing-cta-final {
  text-align: center;
  padding: 120px 40px;
  background: var(--landing-canvas);
  color: #171717;
  border-top: 1px solid rgba(30, 77, 140, 0.08);
}

.landing-cta-final-light {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(30, 77, 140, 0.06);
  box-shadow:
    0 -12px 32px -24px rgba(147, 197, 253, 0.12),
    0 12px 32px -24px rgba(255, 210, 100, 0.1);
}

.landing-cta-final-light::before,
.landing-cta-final-light::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}

.landing-cta-final-light::before {
  width: min(280px, 28vw);
  height: min(280px, 28vw);
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(147, 197, 253, 0.22);
}

.landing-cta-final-light::after {
  width: min(280px, 28vw);
  height: min(280px, 28vw);
  right: 0;
  top: 50%;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: rgba(255, 210, 100, 0.2);
}

.landing-cta-final-light .landing-section-inner {
  position: relative;
  z-index: 1;
}

.landing-cta-final-light h2 {
  color: var(--erasmus-blue-soft);
  margin-bottom: 20px;
  font-size: 36px;
}

.landing-cta-final-light p {
  color: #525252;
  margin-bottom: 36px;
  font-size: 18px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta-final-light .btn-cta-mobility,
.landing-section-steps .landing-steps-cta .btn-cta-mobility,
.landing-section-compare .landing-steps-cta .btn-cta-mobility {
  min-height: 58px;
  padding: 20px 48px;
  font-size: 18px;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 51, 153, 0.22);
}

.landing-cta-final-light .btn-cta-mobility:hover,
.landing-section-steps .landing-steps-cta .btn-cta-mobility:hover,
.landing-section-compare .landing-steps-cta .btn-cta-mobility:hover {
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.28);
}

/* Footer */
.landing-footer {
  padding: 48px 40px 40px;
  text-align: center;
  font-size: 13px;
  color: #737373;
  border-top: 1px solid rgba(30, 77, 140, 0.08);
  background: #ffffff;
}

.landing-footer-bm {
  margin: 0 0 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.landing-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 500;
  color: #404040;
}

.landing-footer-ecosystem-note {
  flex-basis: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #737373;
  text-align: center;
}

.footer-heart-blue {
  color: var(--erasmus-blue-soft);
}

.footer-heart-green {
  color: var(--calm-green);
}

.landing-footer-legal {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.landing-footer-legal a {
  color: #737373;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.landing-footer-legal a:hover {
  color: var(--erasmus-blue-soft);
  text-decoration: underline;
}

.landing-footer-copy {
  margin: 0;
  font-size: 12px;
  color: #737373;
  white-space: nowrap;
}

.landing-footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 14px 40px;
  background: #f0eeea;
  border-top: 1px solid #e5e2dc;
  font-size: 12px;
}

.landing-footer-bar .landing-footer-legal {
  flex-shrink: 0;
}

.landing-footer-bar .landing-footer-copy {
  flex-shrink: 0;
}

.landing-footer-link {
  margin: 0;
}

.landing-footer-link a {
  color: var(--erasmus-blue-soft);
  font-weight: 500;
}

/* Desktop: keep side-by-side splits */
@media (min-width: 901px) {
  .landing-pain-split.landing-steps-split,
  .landing-section-steps .landing-steps-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .landing-pain-split.landing-steps-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .landing-nav {
    width: calc(100% - 24px);
    padding: 10px 14px;
    border-radius: var(--landing-radius-nav);
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .landing-hero-wrap {
    min-height: auto;
    padding-bottom: 0;
  }

  .landing-hero-backdrop {
    inset: 0;
  }

  .landing-hero-content {
    min-height: auto;
  }

  .landing-hero-curve {
    height: 52px;
  }

  .landing-nav-actions .btn-ghost-nav:first-of-type {
    display: none;
  }

  .landing-hero-section {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 40px 0 72px;
    min-height: auto;
    gap: 40px;
  }

  .landing-hero-section h1 {
    font-size: 34px;
  }

  .landing-stress-photo {
    max-width: 100%;
  }

  .hero-scroll-hint {
    position: static;
    margin: 32px auto 0;
    animation: bounce-scroll-hint-mobile 2.2s ease-in-out infinite;
  }

  .landing-section {
    padding: 88px 24px;
  }

  .landing-value-venn-circle {
    width: min(360px, 88vw);
    height: min(360px, 88vw);
    top: 34%;
    filter: blur(40px);
  }

  .landing-value-venn-left {
    left: 36%;
  }

  .landing-value-venn-right {
    left: 64%;
  }

  .landing-cta-final-light::before,
  .landing-cta-final-light::after {
    width: min(200px, 55vw);
    height: min(200px, 55vw);
    filter: blur(56px);
  }
  .landing-pain-grid,
  .landing-pain-split,
  .landing-steps-row,
  .landing-value-grid,
  .landing-standfor-grid,
  .landing-compare-split,
  .landing-steps-split {
    grid-template-columns: 1fr;
  }

  .landing-subscribe-iframe {
    aspect-ratio: 20 / 23;
    min-height: 580px;
  }

  .landing-section.landing-section-pain h2,
  .landing-section.landing-section-pain .section-lead.section-lead-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-pain-split .landing-steps-photo {
    order: -1;
  }

  .landing-pain-split .landing-step-vertical {
    flex-direction: column;
  }

  .landing-pain-split .landing-step-vertical .landing-card-icon {
    margin-bottom: 16px;
  }

  .landing-section-steps,
  .landing-section-compare {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .landing-section-inner-steps h2,
  .landing-section-inner-steps .section-lead-left {
    text-align: center;
  }

  .landing-section-inner-steps .section-lead-left {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-steps-photo {
    order: -1;
  }

  .chaos-scatter {
    min-height: 280px;
  }

  .chaos-chip {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: rotate(var(--r, 0deg));
    display: inline-block;
    margin: 6px;
    white-space: normal;
  }

  .chaos-scatter {
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    align-content: flex-start;
  }

  .landing-footer-bar {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 12px 20px;
    justify-content: center;
    text-align: center;
  }

  .landing-footer-bar .landing-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
