: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-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown > summary {
  gap: 0.5rem;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 70;
  display: grid;
  min-width: 275px;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  color: #565656;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--primary-deep);
  background: var(--lavender);
}

.nav-dropdown-menu a.is-active {
  color: var(--primary-deep);
  background: var(--lavender-strong);
}

.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;
}

.closing-cta {
  overflow: hidden;
}

.closing-cta-grid {
  gap: clamp(2rem, 5vw, 4.5rem);
}

.closing-cta-copy {
  flex: 1 1 58%;
  max-width: 760px;
}

.closing-cta-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.08;
}

.closing-cta-copy > p:not(.eyebrow):not(.closing-cta-note) {
  max-width: 700px;
  color: #ddd6fe;
}

.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.btn-light-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light-outline:hover {
  color: var(--navy);
  border-color: var(--white);
  background: var(--white);
}

.closing-cta-note {
  margin: 1rem 0 0;
  color: #c4b5fd;
  font-size: 0.9rem;
}

.closing-benefits {
  display: grid;
  flex: 0 1 460px;
  gap: 0.9rem;
  width: min(100%, 460px);
}

.closing-benefit-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.closing-benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.closing-benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing-benefit-card h3 {
  margin: 0 0 0.25rem;
  color: var(--white);
  font-size: 1.05rem;
}

.closing-benefit-card p {
  margin: 0;
  color: #ddd6fe;
  font-size: 0.92rem;
  line-height: 1.55;
}

.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(1.6rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  white-space: pre-line;
}

.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;
}

.guide-visual-card {
  padding: clamp(1rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 139, 250, 0.2), transparent 34%),
    linear-gradient(145deg, #ffffff, #faf8ff);
}

.guide-diagram-en {
  display: none;
}

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

html[lang="en"] .guide-diagram-en {
  display: block;
}

.guide-diagram header {
  max-width: 780px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.guide-diagram header > span {
  display: inline-flex;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--lavender-strong);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-diagram header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.guide-diagram header p {
  margin: 0.7rem auto 0;
  color: var(--muted);
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step-grid li {
  position: relative;
  display: flex;
  min-height: 190px;
  gap: 0.9rem;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(109, 40, 217, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.08);
}

.guide-step-grid li::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(237, 233, 254, 0.72);
  content: "";
}

.guide-step-grid li > span {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-deep));
  box-shadow: 0 8px 18px rgba(109, 40, 217, 0.24);
  color: var(--white);
  font-weight: 900;
}

.guide-step-grid li > div {
  position: relative;
  z-index: 1;
}

.guide-step-grid h3 {
  margin: 0.15rem 0 0.5rem;
  color: var(--primary-deep);
  font-size: 1rem;
  line-height: 1.25;
}

.guide-step-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .guide-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .guide-visual-card {
    padding: 0.8rem;
    border-radius: 16px;
  }

  .guide-step-grid {
    grid-template-columns: 1fr;
  }

  .guide-step-grid li {
    min-height: 0;
    padding: 1rem;
  }
}

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

.content-page {
  background: linear-gradient(180deg, var(--lavender), var(--surface) 42%);
}

.content-page-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.content-page-heading h1 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.contact-page-heading h1 {
  font-size: clamp(0.95rem, 3.2vw, 2.35rem);
  white-space: nowrap;
}

.content-page-heading > p:last-child,
.legal-updated {
  color: var(--muted);
}

.localized-copy {
  display: none;
}

html[lang="ms"] .localized-copy[lang="ms"],
html[lang="en"] .localized-copy[lang="en"] {
  display: block;
}

.legal-card,
.contact-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card {
  max-width: 880px;
}

.legal-card section + section {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: #4b5563;
}

.faq-page-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: -0.5rem 0 2rem;
}

.faq-category-links a {
  padding: 0.55rem 0.85rem;
  border: 1px solid #ddd6fe;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-category-links a:hover {
  border-color: var(--primary);
  background: var(--lavender);
}

.faq-content {
  display: grid;
  gap: 1.5rem;
  max-width: 920px;
  margin-inline: auto;
}

.faq-category {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-category-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.faq-category-heading > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--lavender-strong);
  color: var(--primary-deep);
  font-weight: 900;
}

.faq-category-heading h2,
.faq-category-heading p {
  margin: 0;
}

.faq-category-heading h2 {
  font-size: 1.3rem;
}

.faq-category-heading p {
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--primary-deep);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item > p {
  margin: -0.25rem 2.8rem 1rem 0;
  color: #4b5563;
  line-height: 1.7;
}

.security-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.security-page {
  background: var(--surface);
}

.security-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #111827 0%, #21113f 55%, #5b21b6 100%);
  color: var(--white);
}

.security-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 3rem;
}

.security-hero h1 {
  max-width: 760px;
  margin: 0.55rem 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.03;
}

.security-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #ddd6fe;
  font-size: 1.05rem;
}

.security-hero-visual {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.security-hero-visual::before,
.security-hero-visual::after {
  position: absolute;
  border: 1px solid rgba(216, 180, 254, 0.26);
  border-radius: 50%;
  content: "";
}

.security-hero-visual::before {
  width: 310px;
  height: 310px;
}

.security-hero-visual::after {
  width: 240px;
  height: 240px;
}

.security-shield {
  z-index: 1;
  display: grid;
  width: 180px;
  height: 210px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 42% 42% 48% 48% / 25% 25% 62% 62%;
  background: linear-gradient(145deg, rgba(192, 132, 252, 0.95), rgba(76, 29, 149, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.45);
}

.security-shield svg {
  width: 105px;
  fill: none;
  stroke: #fef3c7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.security-orbit {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 52px;
  height: 52px;
  place-items: center;
  padding-inline: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  color: #fef3c7;
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.orbit-one { top: 45px; left: 15px; }
.orbit-two { top: 75px; right: 10px; font-size: 1.25rem; }
.orbit-three { right: 45px; bottom: 35px; }

.security-features {
  background: linear-gradient(180deg, var(--lavender), var(--surface));
}

.security-section-heading {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.security-section-heading h2,
.security-secrets h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.security-section-heading > p:last-child,
.security-secrets-grid > div > p:last-child {
  color: var(--muted);
}

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

.security-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(76, 29, 149, 0.07);
}

.security-card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 13px;
  background: var(--lavender-strong);
  color: var(--primary-deep);
}

.security-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.security-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.security-secrets {
  background: var(--navy);
  color: var(--white);
}

.security-secrets-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 3rem;
}

.security-secrets-grid ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-secrets-grid li {
  position: relative;
  padding: 0.8rem 0.85rem 0.8rem 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  color: #e5e7eb;
  font-size: 0.86rem;
}

.security-secrets-grid li::before {
  position: absolute;
  top: 0.72rem;
  left: 0.8rem;
  color: #fda4af;
  content: "×";
  font-size: 1.1rem;
  font-weight: 900;
}

.controlled-flow {
  background: var(--white);
}

.security-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-flow li {
  position: relative;
  min-height: 130px;
  padding: 1rem;
  border: 1px solid #ddd6fe;
  border-radius: 14px;
  background: var(--lavender);
}

.security-flow li span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 0.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-deep);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.security-flow li strong {
  font-size: 0.82rem;
  line-height: 1.45;
}

.security-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: #fffbeb;
  color: #78350f;
}

.security-disclaimer p {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
}

@media (max-width: 960px) {
  .security-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .security-hero-grid,
  .security-secrets-grid {
    grid-template-columns: 1fr;
  }

  .security-hero-visual {
    min-height: 300px;
  }

  .security-secrets-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .security-card-grid,
  .security-secrets-grid ul {
    grid-template-columns: 1fr;
  }

  .security-hero h1 {
    font-size: 2.35rem;
  }
}

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field label {
  font-weight: 750;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(109, 40, 217, 0.12);
}

.contact-note,
.contact-required {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-aside {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.contact-aside p {
  color: #d1d5db;
}

.form-alert {
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.form-alert.is-success {
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  color: #065f46;
}

.form-alert.is-error {
  border: 1px solid #fecdd3;
  background: #fff1f2;
  color: #9f1239;
}

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

@media (max-width: 760px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

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

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

.footer-grid > div > p {
  margin: 0;
}

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

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

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer .footer-bottom p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.82rem;
}

.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-dropdown {
    width: 100%;
  }

  .nav-dropdown > summary {
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0.9rem;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0.2rem 0 0.35rem 0.75rem;
    padding: 0.3rem;
    border: 0;
    border-left: 2px solid var(--lavender-strong);
    border-radius: 0 10px 10px 0;
    background: #faf8ff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:not([open]) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown-menu a {
    display: block;
    width: 100%;
  }

  .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;
  }

  .closing-benefits {
    width: 100%;
    max-width: none;
  }

  .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;
  }

  .closing-cta-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .closing-cta-actions,
  .closing-cta-actions .btn {
    width: 100%;
  }

  .closing-benefit-card {
    grid-template-columns: 46px 1fr;
    padding: 1rem;
  }

  .closing-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .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(1rem, 5.2vw, 2.2rem);
  }

  .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;
  }
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 950;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), var(--primary-deep));
  box-shadow: 0 12px 28px rgba(77, 25, 146, 0.3);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, box-shadow 180ms ease;
}

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

.back-to-top:hover {
  box-shadow: 0 15px 34px rgba(77, 25, 146, 0.42);
  transform: translateY(-3px) scale(1);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(167, 93, 255, 0.36);
  outline-offset: 4px;
}

.back-to-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

@media (max-width: 560px) {
  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 44px;
    height: 44px;
  }
}

@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;
  }
}
