@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --ink: #101828;
  --muted: #475467;
  --line: #eaecf0;
  --soft: #f9fafb;
  --blue: #155aaa;
  --cyan: #a1bddd;
  --navy: #0d3666;
  --brand-50: #f3f7fb;
  --brand-100: #e7eff7;
  --brand-300: #a1bddd;
  --brand-600: #155aaa;
  --brand-800: #0d3666;
  --grey-50: #f9fafb;
  --grey-200: #eaecf0;
  --grey-500: #667085;
  --grey-600: #475467;
  --grey-900: #101828;
  --white: #fff;
  --success: #0f7b54;
  --danger: #a23b3b;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  clip-path: polygon(13% 0, 42% 0, 50% 32%, 58% 0, 87% 0, 87% 100%, 64% 100%, 64% 43%, 50% 63%, 36% 43%, 36% 100%, 13% 100%);
}

.brand-logo {
  width: 178px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.brand-symbol {
  width: 44px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 850;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-600);
  font-size: 14px;
}

.menu-toggle {
  display: none;
}

.nav-app,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-600);
  background: var(--brand-600);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.nav-app {
  background: var(--white);
  color: var(--ink);
  border-color: #d0d5dd;
}

.nav-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: #d0d5dd;
}

.nav-cta:hover,
.nav-app:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, .10);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 850;
}

.hero {
  padding: 92px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(21, 90, 170, .09), transparent 42%),
    linear-gradient(0deg, #fff, var(--brand-50));
}

.subhero {
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(21, 90, 170, .09), transparent 42%),
    linear-gradient(0deg, #fff, var(--brand-50));
}

.subhero h1 {
  max-width: 920px;
}

.subhero-proof {
  max-width: 780px;
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  color: var(--grey-600);
  font-size: 18px;
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 750;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

h1 {
  margin: 12px 0 20px;
  font-family: "Epilogue", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  max-width: 860px;
}

h2 {
  margin: 0 0 16px;
  font-family: "Epilogue", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  color: var(--grey-600);
  font-size: 20px;
  max-width: 760px;
}

.brand-promise {
  margin: 18px 0 0;
  color: var(--blue);
  font-size: 18px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.signal-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  border-radius: 12px;
  min-height: 306px;
  padding: 34px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, .08);
}

.signal-panel dl {
  margin: 0;
  display: grid;
  gap: 24px;
}

.signal-panel dt {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.signal-panel dd {
  margin: 6px 0 0;
  font-size: 19px;
  font-weight: 750;
}

section {
  padding: 88px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.section-intro p,
.card p,
.training-meta,
.footer p {
  color: var(--muted);
}

.consultation-note {
  margin-top: 12px;
  font-size: 14px;
}

.partner-network-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-network-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.partner-network-badge {
  display: block;
  width: 150px;
  height: auto;
}

.partner-network-strip strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.partner-network-strip p {
  max-width: 760px;
  margin: 6px 0 0;
  color: var(--muted);
}

.partner-network-detail {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
  background: #f5faff;
}

.partner-network-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 42px;
  align-items: start;
}

.partner-network-detail h2 {
  max-width: 700px;
}

.partner-network-detail-badge {
  display: block;
  width: 188px;
  height: auto;
  margin: 0 0 20px;
}

.partner-network-detail p,
.partner-neutrality-note p {
  color: var(--muted);
}

.partner-neutrality-note {
  padding: 24px;
  border: 1px solid #c8ddef;
  border-radius: 8px;
  background: var(--white);
}

.partner-neutrality-note h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-cards {
  align-items: stretch;
}

.service-cards .card {
  display: flex;
  flex-direction: column;
}

.service-cards .card h3 {
  min-height: 58px;
}

.service-cards .card p {
  min-height: 96px;
}

.service-cards .card .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.deployment-path {
  background:
    linear-gradient(135deg, rgba(0, 113, 206, .06), rgba(255, 255, 255, .88) 54%),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deployment-steps,
.deployment-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deployment-step,
.deployment-timeline-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 36px rgba(16, 24, 40, .06);
}

.deployment-step span,
.timeline-index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.deployment-step h3,
.deployment-timeline-card h3 {
  margin: 0 0 10px;
}

.deployment-step p {
  margin: 0;
  color: var(--muted);
}

.deployment-timeline-card .check-list {
  margin-top: 14px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.product-card-head img {
  width: min(170px, 100%);
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.product-actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-media {
  width: min(100%, 920px);
  margin: 6px auto 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  padding: 4px;
  box-shadow: 0 14px 38px rgba(16, 24, 40, .08);
}

.product-device {
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 10px;
  background: var(--white);
  aspect-ratio: 16 / 9;
}

.product-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
}

.product-proof-grid {
  margin-top: 18px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 44px;
  align-items: center;
}

.product-signal {
  min-height: 0;
}

.product-media-large {
  width: min(100%, 980px);
  margin-bottom: 30px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.platform-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.platform-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.platform-plan.is-featured {
  border: 2px solid var(--brand);
  padding: 25px;
}

.plan-label {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.platform-plan h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.plan-price {
  color: var(--ink);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.plan-price span {
  margin-right: 2px;
  font-size: 23px;
  vertical-align: 11px;
}

.plan-price-custom {
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: 27px;
}

.plan-cadence {
  min-height: 24px;
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.platform-plan > p:not(.plan-cadence) {
  min-height: 94px;
  margin: 0;
  color: var(--muted);
}

.plan-features {
  flex: 1;
  margin: 20px 0 24px;
}

.plan-features li {
  margin-bottom: 9px;
  font-size: 14px;
}

.platform-plan .button {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.platform-start-steps .step {
  min-height: 224px;
}

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

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-list details {
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.security-strip-large {
  margin-top: 0;
  gap: 12px;
}

.security-strip-large strong {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.security-strip {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.security-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
}

.testimonial-carousel {
  margin-top: 18px;
  touch-action: pan-y;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
}

.testimonial-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  margin-top: 0;
  font-size: 15px;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
}

.testimonial-source {
  margin-top: 10px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #b8c6d6;
  padding: 0;
  cursor: pointer;
}

.testimonial-dot.is-active {
  width: 24px;
  background: var(--blue);
}

.service-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-sections .card h2 {
  font-size: 28px;
}

.service-journey {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-journey-grid li {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
}

.service-journey-grid li + li {
  border-left: 1px solid var(--line);
}

.service-journey-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.service-journey-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.service-journey-grid p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}

.card.accent {
  border-top: 4px solid var(--blue);
}

.process-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-case {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-case h3 {
  font-size: 24px;
}

.case-status {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 10px;
  background: var(--brand-50);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.process-case dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.process-case dt {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.process-case dd {
  margin: 0;
  color: var(--muted);
}

.partner-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.partner-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 14px;
}

.partner-logo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.partner-logo-tile {
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.partner-logo-link:hover .partner-logo-tile {
  transform: translateY(-2px);
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
}

.partner-logo-tile img {
  display: block;
  max-width: 150px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-tile span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.muted-band {
  background: var(--brand-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.training-list {
  display: grid;
  gap: 16px;
}

.training {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: var(--white);
}

.public-training-section {
  border-bottom: 1px solid var(--line);
  background: var(--brand-50);
}

.public-training-card {
  border-top: 4px solid var(--blue);
  box-shadow: 0 18px 44px rgba(16, 24, 40, .06);
}

.public-training-card h3 {
  margin-top: 8px;
  font-size: clamp(25px, 3vw, 34px);
}

.training-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.training-facts span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.training-action {
  display: grid;
  gap: 12px;
  align-content: center;
}

.training-action .button {
  width: 100%;
}

.training-empty {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.training-empty p {
  color: var(--muted);
}

.public-training-waitlist {
  background: var(--white);
}

#registration-modal:not(.hidden) {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  background: rgba(9, 24, 45, .72);
  backdrop-filter: blur(4px);
}

.registration-modal-inner {
  max-width: 860px;
  padding: 28px 0;
}

#registration-modal .form-panel {
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.waitlist-form {
  margin-top: 22px;
}

.waitlist-form h3 {
  margin-bottom: 0;
}

.waitlist-form p {
  margin-top: 0;
  color: var(--muted);
}

.waitlist-compact {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(140px, .7fr) minmax(180px, .9fr) minmax(140px, .7fr) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--brand-50);
}

.waitlist-compact h3 {
  margin-bottom: 4px;
  font-size: 20px;
}

.waitlist-compact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-message {
  grid-column: 1 / -1;
}

.price {
  font-size: 28px;
  font-weight: 850;
}

.spots {
  color: var(--success);
  font-weight: 800;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 850;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.people .card {
  display: flex;
  flex-direction: column;
}

.people .card h3 {
  min-height: 54px;
}

.people .card p:first-of-type {
  min-height: 54px;
}

.people .card p:nth-of-type(2) {
  min-height: 182px;
  overflow: visible;
}

.lecturer-card-links {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.lecturer-card-links .text-link {
  padding: 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.client-strip {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.strip-heading {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.logo-grid.compact {
  grid-template-columns: repeat(5, 1fr);
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.topic-links span {
  font-weight: 850;
  color: var(--ink);
}

.topic-links a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.topic-links a:hover {
  text-decoration: underline;
}

.section-follow-link {
  display: inline-block;
  margin-top: 22px;
}

.service-related-links {
  padding-top: 0;
}

.service-related-links .topic-links {
  margin-top: 0;
  padding-top: 0;
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: logoMarquee 36s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.logo-tile {
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  color: var(--muted);
  text-decoration: none;
}

.logo-marquee .logo-tile {
  flex: 0 0 clamp(190px, 18vw, 230px);
}

a.logo-tile {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

a.logo-tile:hover {
  border-color: var(--brand-300);
  box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
  transform: translateY(-1px);
}

.logo-tile img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 72px;
  object-fit: contain;
}

.case-study-band {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.case-study-grid {
  align-items: stretch;
}

.case-study-logo {
  height: 54px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.case-study-logo img {
  max-width: 150px;
  max-height: 48px;
  object-fit: contain;
}

@keyframes logoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    width: auto;
    flex-wrap: wrap;
    animation: none;
  }
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.person-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
  margin-bottom: 18px;
  background: var(--soft);
}

.person-photo.placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  font-weight: 850;
  font-size: 34px;
}

.admin-preview {
  width: 160px;
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c6d6;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  overflow: hidden;
}

.admin-preview img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
}

.admin-login-logo {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.editor-toolbar button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.admin-help {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: var(--white);
}

label {
  display: grid;
  gap: 6px;
  color: var(--grey-900);
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.hidden {
  display: none !important;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(15, 29, 48, .22);
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--blue);
  outline: none;
}

.notice {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #edf8f3;
  color: var(--success);
  font-weight: 750;
}

.error {
  background: #fff0f0;
  color: var(--danger);
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--brand-800);
  color: var(--white);
}

.footer p,
.footer a {
  color: #d7e0eb;
}

.protected-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-reveal,
.protected-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(215, 224, 235, .3);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  color: #f5f8fc;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  cursor: pointer;
}

.contact-reveal:hover,
.contact-reveal:focus-visible,
.protected-contact-link:hover,
.protected-contact-link:focus-visible {
  background: rgba(255, 255, 255, .13);
  outline: none;
}

.contact-reveal:disabled {
  cursor: wait;
  opacity: .72;
}

.contact-reveal-error {
  flex-basis: 100%;
  color: #ffd6d6;
  font-size: 13px;
  line-height: 1.4;
}

.protected-contacts-light {
  margin: 16px 0;
}

.protected-contacts-light .contact-reveal,
.protected-contacts-light .protected-contact-link {
  border-color: var(--line);
  background: var(--soft);
  color: var(--blue);
}

.protected-contacts-light .contact-reveal:hover,
.protected-contacts-light .contact-reveal:focus-visible,
.protected-contacts-light .protected-contact-link:hover,
.protected-contacts-light .protected-contact-link:focus-visible {
  background: var(--blue-soft);
}

.protected-contacts-light .contact-reveal-error {
  color: #9f1d24;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(215, 224, 235, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  font-weight: 750;
}

.social-link span:first-child {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #0a66c2;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(255, 255, 255, .12);
  outline: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.inline-link {
  display: inline;
  margin: 0;
}

.social-links.light .social-link {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.footer-rating {
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 224, 235, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.footer-rating strong {
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 224, 235, .18);
  font-size: 14px;
}

.footer-links a {
  color: #f5f8fc;
  font-weight: 750;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.cta-band p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cta-actions .button {
  white-space: nowrap;
}

.lecturer-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
}

.lecturer-page-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 28%;
  border: 1px solid var(--line);
  background: var(--white);
}

.lecturer-page-photo.placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  font-size: 58px;
  font-weight: 850;
}

.credential-badge {
  max-width: 680px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid #b9d9f4;
  border-radius: 8px;
  background: rgba(244, 250, 255, .92);
}

.credential-badge-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
}

.credential-badge-label {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.credential-badge strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.credential-badge p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.credential-badge-valid {
  display: inline-block;
  margin-top: 7px;
  color: #486078;
  font-size: 12px;
  font-weight: 750;
}

.service-credential {
  margin-top: 20px;
}

.expert-competency-badge {
  max-width: 680px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #dfc36a;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff8df 100%);
}

.expert-competency-mark {
  width: 66px;
  height: 72px;
  display: grid;
  place-content: center;
  justify-items: center;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  background: linear-gradient(145deg, #f6e7b4, #d5ad37);
  color: #2f2a1f;
}

.expert-competency-mark strong {
  font-size: 20px;
  line-height: 1;
}

.expert-competency-mark span {
  margin-top: 4px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
}

.expert-competency-label {
  margin-bottom: 2px;
  color: #80681f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expert-competency-badge > div:last-child > strong {
  display: inline-block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.expert-competency-level {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid #d7bd6a;
  border-radius: 999px;
  color: #66531c;
  font-size: 11px;
  font-weight: 800;
  vertical-align: 2px;
}

.expert-competency-badge p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.lecturer-expert-badge {
  margin-top: 22px;
}

@media (max-width: 520px) {
  .expert-competency-badge {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .expert-competency-mark {
    width: 54px;
    height: 60px;
  }

  .expert-competency-level {
    display: table;
    margin: 5px 0 0;
  }
}

.lecturer-card-credential {
  grid-template-columns: minmax(0, 1fr);
  margin-top: 14px;
  padding: 10px 12px;
}

.lecturer-card-credential .credential-badge-mark,
.lecturer-card-credential .credential-badge-label {
  display: none;
}

.lecturer-card-credential .credential-badge-valid {
  margin-top: 4px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#straipsniai .cards {
  align-items: stretch;
}

#straipsniai .card,
.article-grid .card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

#straipsniai .card .eyebrow,
.article-grid .card .eyebrow {
  min-height: 22px;
}

#straipsniai .card h3,
.article-grid .card h3 {
  min-height: 86px;
  margin-bottom: 12px;
}

#straipsniai .card p,
.article-grid .card p {
  min-height: 104px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

#straipsniai .card .text-link,
.article-grid .card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.guide-search {
  max-width: 620px;
  margin-bottom: 22px;
}

.guide-grid {
  align-items: stretch;
}

.guide-card {
  display: flex;
  flex-direction: column;
}

.guide-card .text-link {
  margin-top: auto;
}

.guide-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 18px;
  background: var(--brand-50);
}

.guide-empty {
  margin-top: 18px;
  color: var(--muted);
}

.inline-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.article-head {
  max-width: 940px;
}

.article-meta {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 750;
}

.article-body {
  max-width: 820px;
  font-size: 19px;
}

.article-body img,
.article-cover {
  display: block;
  width: 100%;
  height: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.article-body h2 {
  margin-top: 42px;
  font-size: 34px;
}

.article-body h3 {
  margin-top: 30px;
}

.article-body p,
.article-body li {
  color: #334155;
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.prompt-block {
  margin: 30px 0;
  border: 1px solid #cbdcf1;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f8fe;
}

.prompt-block-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid #cbdcf1;
  color: var(--ink);
}

.copy-prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 8px;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.copy-prompt:hover,
.copy-prompt:focus-visible {
  background: #e4f0fc;
  outline: none;
}

.copy-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.copy-icon::before,
.copy-icon::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 11px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.copy-icon::before {
  left: 1px;
  top: 4px;
}

.copy-icon::after {
  right: 1px;
  top: 1px;
  background: #f3f8fe;
}

.copy-prompt.is-copied {
  color: #087443;
}

.prompt-block pre {
  margin: 0;
  padding: 20px;
  overflow: auto;
  white-space: pre-wrap;
  font: 14px/1.65 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #1e3a5f;
}

.prompt-block code {
  font: inherit;
}

.admin-shell {
  min-height: 100vh;
  background: var(--soft);
}

.admin-main {
  padding: 32px 0 72px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.admin-menu {
  align-self: start;
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.admin-menu button {
  width: 100%;
  min-height: 42px;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
}

.admin-menu button.active {
  background: var(--ink);
  color: var(--white);
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.admin-page-intro {
  margin-bottom: 22px;
}

.admin-page-intro h2 {
  margin-bottom: 8px;
}

.admin-page-intro p {
  max-width: none;
  margin: 0;
  color: var(--muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.small-button {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-weight: 750;
}

.small-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.inquiry-status-select {
  min-width: 174px;
  min-height: 36px;
  padding: 6px 9px;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .nav {
    min-height: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 8px 0;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--ink);
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 15px;
  }

  .topbar.menu-open .nav-links {
    display: grid;
    padding: 8px 0 10px;
  }

  .nav-links a {
    min-height: 42px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
    min-height: 46px;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    white-space: normal;
  }

  .logo-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .logo-marquee::-webkit-scrollbar {
    display: none;
  }

  .logo-marquee-track {
    animation: none;
    padding-bottom: 2px;
  }

  .logo-marquee .logo-tile {
    flex-basis: 190px;
  }

  .brand-logo {
    width: 142px;
    height: 38px;
  }

  .brand-symbol {
    width: 36px;
    height: 44px;
  }

  .brand-text {
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #straipsniai .card h3,
  .article-grid .card h3,
  #straipsniai .card p,
  .article-grid .card p {
    min-height: 0;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .hero {
    padding: 64px 0 42px;
  }

  .hero-grid,
  .product-hero-grid,
  .product-detail-grid,
  .section-intro,
  .training,
  .waitlist-compact,
  .admin-grid,
  .service-sections,
  .service-journey-grid,
  .deployment-steps,
  .deployment-timeline,
  .process-case-grid,
  .partner-grid,
  .partner-network-strip-inner,
  .partner-network-detail-grid,
  .cta-band,
  .lecturer-profile,
  .contact-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-journey-grid li {
    min-height: 0;
  }

  .service-journey-grid li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .partner-network-badge {
    width: 136px;
  }

  .admin-menu {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cards,
  .steps,
  .people,
  .logo-grid,
  .logo-grid.compact,
  .problem-cards {
    grid-template-columns: 1fr;
  }

  .platform-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .signal-panel {
    min-height: 0;
    padding: 24px;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .people .card h3,
  .people .card p:first-of-type,
  .people .card p:nth-of-type(2) {
    min-height: 0;
  }

  .people .card p:nth-of-type(2) {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .service-cards .card h3,
  .service-cards .card p {
    min-height: 0;
  }

  .product-media {
    padding: 10px;
    margin-bottom: 20px;
  }

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

  .admin-panel {
    padding: 16px;
    overflow-x: auto;
  }

  .table {
    min-width: 680px;
  }

  .full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .subhero h1 {
    font-size: clamp(34px, 10vw, 40px);
    overflow-wrap: break-word;
  }

  .lecturer-profile h1 {
    font-size: clamp(32px, 9vw, 38px);
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .lead {
    font-size: 18px;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

  .testimonial-card {
    min-height: 280px;
  }

  .platform-pricing-grid {
    grid-template-columns: 1fr;
  }

  .platform-plan > p:not(.plan-cadence) {
    min-height: 0;
  }

  .platform-start-steps .step {
    min-height: 0;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .testimonial-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-dots {
    grid-column: 1 / -1;
    order: 3;
  }

  .training {
    padding: 18px;
  }

  .training-facts {
    gap: 6px;
  }

  .registration-modal-inner {
    width: min(100% - 20px, 860px);
    padding: 10px 0;
  }

  .card {
    padding: 20px;
  }

  .price {
    font-size: 24px;
  }

  section {
    padding: 58px 0;
  }
}
.form-privacy {
  margin: 0;
  color: #5b6878;
  font-size: 0.82rem;
  line-height: 1.45;
  grid-column: 1 / -1;
}

.form-privacy a {
  color: #075fae;
  font-weight: 700;
}
