:root {
  --primary: #6d28d9;
  --primary-deep: #4c1d95;
  --lavender: #f5f3ff;
  --lavender-strong: #ede9fe;
  --navy: #111827;
  --muted: #6b7280;
  --gold: #f59e0b;
  --green: #059669;
  --rose: #be123c;
  --border: #e5e7eb;
  --white: #ffffff;
  --surface: #fbfbff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 16px 40px rgba(76, 29, 149, 0.1);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1120px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.nav {
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: 220px;
  height: 52px;
  font-weight: 800;
  color: var(--primary-deep);
  flex: 0 0 auto;
  overflow: visible;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(109, 40, 217, 0.25);
}

.brand-logo-mark {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(109, 40, 217, 0.12);
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.65);
}

.brand-logo-full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  transform-origin: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.62rem;
  min-width: 0;
  flex: 1 1 auto;
  color: #565656;
  font-size: 1rem;
  font-weight: 700;
}

.nav-primary,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-width: 0;
}

.nav-primary {
  flex: 1 1 auto;
  justify-content: center;
}

.nav-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 16px;
  color: #565656;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: #5326a8;
  background: #f4ecff;
  transform: translateY(-1px);
}

.nav-link.is-active {
  color: #a33df1;
  background: #efe3f8;
}

.nav-menu .btn-small:not(.nav-signup) {
  min-height: 48px;
  padding: 0 1rem;
  border: 0;
  border-radius: 16px;
  color: #565656;
  background: transparent;
  box-shadow: none;
}

.nav-menu .btn-small:not(.nav-signup):hover {
  color: #5326a8;
  background: #f4ecff;
}

.nav-signup {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 12px;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 0;
  padding: 3px;
  border: 1px solid #d9bbf8;
  border-radius: 999px;
  background: var(--white);
  box-shadow: none;
}

.language-option {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-option.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #b545f5, #7b2fe3);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 30px rgba(109, 40, 217, 0.25);
}

.btn-secondary {
  color: var(--primary-deep);
  background: var(--white);
  border-color: rgba(109, 40, 217, 0.2);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.btn-small {
  min-height: 40px;
  padding: 0.58rem 0.9rem;
}

/* Hero Slider Start */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--header-height));
  min-height: 0;
  scroll-margin-top: var(--header-height);
  background: #000000;
}

.hero-slider::before,
.hero-slider::after {
  content: none;
}

.hero-slider-track {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slider-track.is-showing-1 {
  transform: translateX(-100%);
}

.hero-slider-track.is-showing-2 {
  transform: translateX(-200%);
}

.hero-slider-track.is-showing-3 {
  transform: translateX(-300%);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 3.35rem 0 3.25rem;
  opacity: 0.36;
  transition: opacity 420ms ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 20%, rgba(167, 64, 249, 0.3), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(180deg, rgba(167, 64, 249, 0.04), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-grid {
  position: static;
  z-index: auto;
  display: block;
}

.hero-slide-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  transform: translateX(1rem);
  transition: transform 520ms ease;
}

.hero-slide.is-active .hero-slide-copy {
  transform: translateX(0);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin: 0 0 18px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  color: #a740f9;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-slide h1 {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 62px;
  font-weight: 900;
  line-height: 1.02;
}

.slide-title-highlight {
  color: #c084fc;
}

.slide-malay-title {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  font-weight: 850;
  line-height: 1.3;
}

.slide-description {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 23px;
}

.slide-description.malay {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000000;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7000ms ease;
}

.hero-slide.is-active .hero-slide-media img {
  transform: scale(1);
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: none;
  cursor: pointer;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease;
}

.slider-control:hover,
.slider-control:focus-visible {
  color: var(--white);
  border-color: #a740f9;
  background: #a740f9;
}

.slider-prev {
  left: 34px;
}

.slider-next {
  right: 34px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 3.15rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  width: 28px;
  background: #a740f9;
}

.slider-counter {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
  transform: translateX(-50%);
}
/* Hero Slider End */

.stats-strip {
  position: relative;
  z-index: 2;
  padding: 1.35rem 0;
  background:
    linear-gradient(135deg, rgba(167, 64, 249, 0.1), rgba(255, 255, 255, 0.96) 44%, rgba(167, 64, 249, 0.08)),
    #ffffff;
  border-bottom: 1px solid rgba(167, 64, 249, 0.14);
}

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

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 1.15rem;
  border: 1px solid rgba(167, 64, 249, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -28px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(167, 64, 249, 0.12);
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #a740f9;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.55rem;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.35;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.15), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, var(--lavender) 54%, #eef7ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 3.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 690px;
  margin: 1.25rem 0 0;
  color: #4b5563;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-slide .btn-primary {
  color: #ffffff;
  background: #a740f9;
  box-shadow: 0 16px 30px rgba(167, 64, 249, 0.28);
}

.hero-slide .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 900;
}

.hero-button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-button-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.hero-button-arrow {
  margin-left: 2px;
  font-weight: 900;
}

.hero-slide .btn-primary:hover,
.hero-slide .btn-primary:focus-visible {
  color: #ffffff;
  background: #8f2ee6;
}

.hero-slide .btn-secondary {
  color: #000000;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-slide .btn-secondary .hero-button-icon {
  color: #a740f9;
  background: rgba(167, 64, 249, 0.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.trust-row span {
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #374151;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-card,
.policy-panel,
.demo-card,
.info-card,
.feature-card,
.step-card {
  background: var(--white);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.dashboard-card {
  width: min(100%, 430px);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.dashboard-header,
.action-pack,
.dashboard-grid,
.mini-list div,
.footer-grid,
.responsible-grid {
  display: flex;
}

.dashboard-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.card-kicker {
  margin: 0 0 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-header h2 {
  font-size: 1.2rem;
}

.score-pill {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-weight: 850;
}

.score-ring {
  width: 172px;
  height: 172px;
  margin: 1.5rem auto;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, var(--white) 72%, transparent 73%),
    conic-gradient(var(--primary) 0 78%, #ddd6fe 78% 100%);
}

.score-ring span {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary-deep);
  font-weight: 900;
}

.score-ring small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-grid {
  gap: 0.8rem;
}

.metric-card {
  flex: 1;
  padding: 0.85rem;
  border-radius: var(--radius);
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.metric-card strong {
  display: block;
  margin-top: 0.2rem;
}

.metric-card.complete {
  background: #ecfdf5;
}

.metric-card.alert {
  background: #fff7ed;
}

.mini-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0;
}

.mini-list div {
  align-items: center;
  gap: 0.65rem;
}

.mini-list p,
.action-pack p {
  margin: 0;
  color: #4b5563;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.ok {
  background: var(--green);
}

.status-dot.warn {
  background: var(--gold);
}

.action-pack {
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-deep), #1f2937);
  color: var(--white);
}

.action-pack p {
  color: #ddd6fe;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.problem-section,
.demo-section {
  background: var(--white);
}

.card-grid,
.feature-grid,
.demo-grid,
.steps {
  display: grid;
  gap: 1rem;
}

.card-grid.three,
.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature-card,
.step-card,
.demo-card {
  padding: 1.25rem;
}

.line-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.info-card p,
.feature-card p,
.step-card p,
.demo-card p,
.demo-card li,
.demo-card dd {
  color: var(--muted);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--lavender-strong);
  color: var(--primary-deep);
  font-weight: 900;
}

.feature-section {
  background:
    linear-gradient(180deg, var(--lavender), #ffffff);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold);
  font-size: 1.2rem;
}

.responsible-section {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--primary-deep), #172554 72%, #0f172a);
}

.responsible-section .eyebrow,
.responsible-section .section-heading p {
  color: #ddd6fe;
}

.responsible-grid {
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.policy-panel {
  width: min(100%, 470px);
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "OK";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.demo-card dl,
.demo-card ul {
  margin: 1rem 0 0;
  padding: 0;
}

.demo-card ul {
  list-style-position: inside;
}

.demo-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.demo-card dt {
  color: #374151;
  font-weight: 800;
}

.demo-card dd {
  margin: 0;
  text-align: right;
}

.progress-bar {
  height: 12px;
  margin: 1.2rem 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--lavender-strong);
}

.progress-bar span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.cta-section {
  background: linear-gradient(135deg, #fff7ed, var(--lavender));
}

.assessment-hero {
  min-height: calc(100vh - var(--header-height));
  padding: 3.2rem 0 4rem;
  background:
    radial-gradient(circle at 18% 6%, rgba(167, 64, 249, 0.16), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--lavender) 100%);
}

.assessment-shell {
  display: grid;
  width: min(100% - 2rem, 920px);
  gap: 1rem;
  align-items: stretch;
}

.assessment-intro {
  position: static;
  max-width: 780px;
  margin: 0 auto 0.35rem;
  padding: 0;
  text-align: center;
}

.assessment-intro h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.25rem, 4.8vw, 4.15rem);
  font-weight: 900;
  line-height: 1;
}

.assessment-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #4b5563;
  font-size: 1.08rem;
}

.privacy-note,
.assessment-card {
  border: 1px solid rgba(167, 64, 249, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.privacy-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem 0.9rem;
  align-items: start;
  padding: 1rem 1.15rem;
}

.privacy-note::before {
  content: "!";
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f5f3ff;
  color: #a740f9;
  font-weight: 900;
}

.privacy-note strong {
  display: block;
  color: var(--primary-deep);
  font-weight: 900;
}

.privacy-note p {
  grid-column: 2;
  margin: -0.5rem 0 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.assessment-card {
  padding: clamp(1.1rem, 2.3vw, 1.7rem);
  border-radius: 24px;
}

.assessment-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.assessment-progress-text,
.assessment-score-hint {
  margin: 0;
}

.assessment-progress-text {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.assessment-score-hint {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.assessment-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #ede9fe;
}

.assessment-progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #a740f9);
  transition: width 220ms ease;
}

.assessment-progress-track.is-step-1 span { width: 10%; }
.assessment-progress-track.is-step-2 span { width: 20%; }
.assessment-progress-track.is-step-3 span { width: 30%; }
.assessment-progress-track.is-step-4 span { width: 40%; }
.assessment-progress-track.is-step-5 span { width: 50%; }
.assessment-progress-track.is-step-6 span { width: 60%; }
.assessment-progress-track.is-step-7 span { width: 70%; }
.assessment-progress-track.is-step-8 span { width: 80%; }
.assessment-progress-track.is-step-9 span { width: 90%; }
.assessment-progress-track.is-step-10 span { width: 100%; }

.assessment-form fieldset {
  margin: 1.4rem 0 0;
  padding: 0;
  border: 0;
}

.assessment-form legend {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 900;
  line-height: 1.25;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  inset: 1rem auto auto 1rem;
}

.answer-option label {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: #374151;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.answer-option label:hover {
  border-color: rgba(167, 64, 249, 0.45);
  transform: translateY(-1px);
}

.answer-option input:focus-visible + label {
  outline: 3px solid rgba(167, 64, 249, 0.26);
  outline-offset: 2px;
}

.answer-option input:checked + label {
  border-color: #a740f9;
  color: var(--primary-deep);
  background: #f5f3ff;
  box-shadow: 0 14px 28px rgba(167, 64, 249, 0.14);
}

.assessment-validation {
  min-height: 1.45rem;
  margin: 1rem 0 0;
  color: var(--rose);
  font-weight: 800;
}

.assessment-controls,
.assessment-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn-ghost {
  color: var(--primary-deep);
  background: transparent;
  border-color: rgba(109, 40, 217, 0.22);
}

.assessment-result {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.55rem;
  align-items: center;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.assessment-result[hidden] {
  display: none !important;
}

.result-meter {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  background: #f5f3ff;
  border: 18px solid #ede9fe;
  box-shadow: inset 0 0 0 1px rgba(167, 64, 249, 0.08), 0 18px 34px rgba(76, 29, 149, 0.08);
}

.result-meter span {
  color: var(--primary-deep);
  font-size: 2.3rem;
  font-weight: 900;
}

.result-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
}

.result-copy p {
  color: #4b5563;
}

.result-progress {
  width: min(100%, 420px);
  height: 12px;
  margin: 1rem 0 0.3rem;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #ede9fe;
}

.result-progress::-webkit-progress-bar {
  background: #ede9fe;
}

.result-progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #a740f9);
}

.result-progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #a740f9);
}

.result-recommendation {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff7ed;
  font-weight: 750;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-inner h2 {
  max-width: 760px;
}

.flow-page {
  min-height: calc(100vh - var(--header-height));
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(167, 64, 249, 0.14), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(245, 158, 11, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--lavender) 100%);
}

.flow-page .container {
  max-width: min(100% - 2rem, 1120px);
}

.flow-page-heading {
  max-width: 840px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.flow-page-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  font-weight: 900;
  line-height: 1;
}

.flow-page-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #4b5563;
  font-size: 1.08rem;
}

.flow-visual-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(167, 64, 249, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.flow-picture,
.flow-image {
  display: block;
}

.flow-picture,
.flow-image {
  width: 100%;
  max-width: 100%;
}

.flow-image {
  height: auto;
  object-fit: contain;
}

.flow-image-en {
  display: none;
}

html[lang="en"] .flow-image-ms {
  display: none;
}

html[lang="en"] .flow-image-en {
  display: block;
}

.flow-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.site-footer {
  padding: 2rem 0;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: var(--white);
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border-radius: 14px;
  background: var(--white);
}

.site-footer p {
  margin: 0.7rem 0 0;
  color: #d1d5db;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: #e5e7eb;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 920px) {
  :root {
    --header-height: 84px;
  }

  .brand {
    width: 180px;
    height: 44px;
  }

  .nav {
    padding: 14px 22px;
    gap: 16px;
  }

  .brand-logo-full {
    transform: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 1rem auto;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-primary,
  .nav-actions {
    display: grid;
    width: 100%;
    gap: 0.35rem;
    justify-items: start;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.65rem 0.9rem;
  }

  .nav-signup {
    justify-self: start;
    justify-content: center;
    min-width: 132px;
  }

  .language-switch {
    width: fit-content;
    margin: 0.35rem 0 0;
  }

  .hero-grid,
  .hero-slide-grid,
  .assessment-shell,
  .responsible-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .assessment-intro {
    position: static;
    padding: 0;
  }

  .privacy-note,
  .assessment-card {
    grid-column: auto;
  }

  .hero-slide {
    padding: 3.8rem 0 5.6rem;
  }

  .hero-slide-media {
    min-height: 0;
  }

  .hero-slide-media img {
    object-position: 72% center;
  }

  .hero-slide h1 {
    font-size: 44px;
  }

  .slide-description {
    font-size: 19px;
  }

  .slider-control {
    top: auto;
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
    font-size: 2.8rem;
    transform: none;
  }

  .slider-prev {
    left: 1.2rem;
  }

  .slider-next {
    right: 1.2rem;
  }

  .card-grid.three,
  .stats-grid,
  .feature-grid,
  .demo-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    width: 170px;
    height: 42px;
  }

  .brand-logo-full {
    transform: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-slider {
    height: calc(100svh - var(--header-height));
    min-height: 560px;
  }

  .hero-slide {
    align-items: center;
    padding: 2.2rem 0 5.4rem;
  }

  .hero-slide-copy {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .slide-badge {
    margin-inline: auto;
  }

  .slide-description {
    margin-inline: auto;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-actions,
  .assessment-progress-row,
  .cta-inner,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .assessment-score-hint {
    text-align: left;
  }

  .btn {
    width: 100%;
  }

  .hero-slide h1 {
    margin-inline: auto;
    font-size: 42px;
    line-height: 1.02;
  }

  .slide-description {
    font-size: 16px;
  }

  .hero-slide-media {
    min-height: 0;
  }

  .hero-slide-media img {
    object-position: 62% center;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.36) 46%, rgba(0, 0, 0, 0.72)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(167, 64, 249, 0.12), rgba(0, 0, 0, 0.24));
  }

  .slider-dots {
    bottom: 4.05rem;
  }

  .slider-counter {
    bottom: 2.75rem;
  }

  .card-grid.three,
  .stats-grid,
  .answer-grid,
  .feature-grid,
  .demo-grid,
  .steps,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    padding: 1rem 0;
  }

  .stat-card {
    min-height: 98px;
    padding: 1rem;
  }

  .stat-card strong {
    font-size: 2.15rem;
  }

  .flow-page .container {
    width: min(100% - 1rem, var(--container));
    max-width: calc(100vw - 1rem);
  }

  .flow-visual-card {
    border-radius: 14px;
  }

  .flow-page-heading h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

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

  .dashboard-grid,
  .assessment-result,
  .footer-grid {
    display: grid;
  }

  .assessment-result {
    grid-template-columns: 1fr;
  }

  .result-meter {
    width: 132px;
    height: 132px;
  }

  .result-meter span {
    font-size: 1.9rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
