:root {
  --navy: #07172f;
  --navy-2: #0e2340;
  --navy-3: #12305d;
  --blue: #2d8cff;
  --blue-2: #2aa8ff;
  --sky: #eef6ff;
  --white: #ffffff;
  --gray: #98a2b3;
  --gray-2: #667085;
  --success: #12b76a;
  --danger: #ef4444;
  --warning: #f97316;
  --border: rgba(45, 140, 255, 0.24);
  --border-strong: rgba(45, 140, 255, 0.48);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.18);
  --font-ar: "Tajawal", Arial, sans-serif;
  --font-en: "Syne", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-ar);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

body.lang-en {
  direction: ltr;
  text-align: left;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
}

/* Header */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7, 23, 47, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(45, 140, 255, 0.18);
}

.header.scrolled {
  background: rgba(7, 23, 47, 0.97);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.logo-icon {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-tag {
  color: var(--blue-2);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 9px 13px;
  border-radius: 999px;
  transition: 0.22s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.btn-header,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(45, 140, 255, 0.28);
  transition: 0.22s ease;
}

.btn-header:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(45, 140, 255, 0.36);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 3px;
  transition: 0.22s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */

.hero {
  position: relative;
  padding: 112px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 140, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 70%, rgba(42, 168, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #07172f 0%, #081e3c 100%);
}

.flight-canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.5;
  pointer-events: none;
}

.flight-path {
  stroke: rgba(45, 140, 255, 0.26);
  stroke-width: 1.5;
  stroke-dasharray: 9 11;
  animation: dashMove 16s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -400;
  }
}

.plane-svg {
  animation: floatPlane 12s ease-in-out infinite;
}

@keyframes floatPlane {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate(30px, -20px);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 140, 255, 0.12);
  border: 1px solid rgba(45, 140, 255, 0.32);
  color: #b9deff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--blue-2);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(45, 140, 255, 0.16);
}

.hero h1 {
  font-size: clamp(2.05rem, 5vw, 4.25rem);
  line-height: 1.15;
  font-weight: 900;
  margin: 20px auto 16px;
  letter-spacing: -0.03em;
}

.accent {
  background: linear-gradient(135deg, #68bdff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

/* Assessment form */

.assessment-wrap {
  position: relative;
  z-index: 4;
  max-width: 1040px;
  margin: 0 auto;
}

.assessment-card {
  background: linear-gradient(180deg, rgba(14, 35, 64, 0.96), rgba(8, 27, 55, 0.96));
  border: 2px solid rgba(45, 140, 255, 0.46);
  border-radius: 32px;
  padding: 32px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 58px rgba(45, 140, 255, 0.16);
  backdrop-filter: blur(22px);
}

.assessment-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.assessment-top h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.35;
  margin-top: 8px;
}

.mini-kicker {
  display: inline-flex;
  color: #b9deff;
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(45, 140, 255, 0.11);
  border: 1px solid rgba(45, 140, 255, 0.28);
  padding: 6px 13px;
  border-radius: 999px;
}

.step-indicator {
  min-width: 120px;
  text-align: center;
  border: 1px solid rgba(45, 140, 255, 0.42);
  border-radius: 18px;
  padding: 12px;
  background: rgba(45, 140, 255, 0.08);
}

.step-indicator span {
  display: block;
  color: var(--gray);
  font-size: 0.75rem;
}

.step-indicator strong {
  font-size: 1.1rem;
}

.stage-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 24px;
}

.stage-card {
  min-height: 122px;
  border: 1.8px solid rgba(45, 140, 255, 0.28);
  background: rgba(7, 23, 47, 0.7);
  color: var(--white);
  border-radius: 20px;
  padding: 16px 12px;
  text-align: center;
  transition: 0.22s ease;
}

.stage-card:hover {
  border-color: rgba(45, 140, 255, 0.62);
  transform: translateY(-2px);
}

.stage-card.active {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(45, 140, 255, 0.22), rgba(7, 23, 47, 0.7));
  box-shadow: 0 16px 34px rgba(45, 140, 255, 0.16);
}

.stage-card.completed {
  border-color: rgba(18, 183, 106, 0.5);
}

.stage-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #8ecdff;
  font-size: 0.82rem;
  font-weight: 900;
}

.stage-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
}

.stage-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.progress-wrap {
  height: 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(45, 140, 255, 0.16);
  margin-bottom: 26px;
}

.progress-fill {
  height: 100%;
  width: 25%;
  min-width: 25%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  border-radius: 999px;
  transition: width 0.35s ease;
  box-shadow: 0 0 24px rgba(45, 140, 255, 0.5);
}

.form-stage {
  display: none;
}

.form-stage.active {
  display: block;
  animation: fadeUp 0.25s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stage-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.stage-head h3 {
  font-size: 1.45rem;
  margin-bottom: 7px;
}

.stage-head p {
  color: var(--gray);
  font-size: 0.92rem;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-group,
.radio-grp {
  border: 2px solid rgba(45, 140, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  transition: 0.22s ease;
}

.field-group:hover,
.radio-grp:hover {
  border-color: rgba(45, 140, 255, 0.62);
  background: rgba(45, 140, 255, 0.055);
}

.field-group.has-err,
.radio-grp.has-err {
  border-color: rgba(239, 68, 68, 0.78);
  background: rgba(239, 68, 68, 0.055);
}

.field-label {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.req {
  color: #ff8b8b;
}

.field-input,
.field-select {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid rgba(45, 140, 255, 0.28);
  border-radius: 14px;
  background: rgba(7, 23, 47, 0.76);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
  transition: 0.22s ease;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field-input:focus,
.field-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.16);
}

.field-err-msg,
.err-radio {
  display: none;
  color: #ff8b8b;
  font-size: 0.78rem;
  margin-top: 8px;
}

.field-err-msg.show,
.err-radio.show {
  display: block;
}

.question-block {
  margin-bottom: 16px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-label {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  padding: 12px;
  border: 1.7px solid rgba(45, 140, 255, 0.28);
  background: rgba(7, 23, 47, 0.7);
  color: rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: 0.22s ease;
}

.option-label:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 140, 255, 0.62);
  color: var(--white);
}

.opt input:checked + .option-label {
  color: var(--white);
  background: linear-gradient(180deg, rgba(45, 140, 255, 0.24), rgba(45, 140, 255, 0.12));
  border-color: var(--blue);
  box-shadow: 0 10px 24px rgba(45, 140, 255, 0.18);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.btn-prev,
.btn-next,
.btn-submit {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: 0.22s ease;
}

.btn-prev {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-prev:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(45, 140, 255, 0.26);
}

.btn-submit {
  display: none;
}

.btn-next:hover,
.btn-submit:hover,
.btn-prev:not(:disabled):hover {
  transform: translateY(-2px);
}

.success-msg {
  display: none;
  text-align: center;
  padding: 34px 20px;
}

.success-msg.show {
  display: block;
}

.success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(18, 183, 106, 0.14);
  color: #7be0a7;
  border: 1px solid rgba(18, 183, 106, 0.3);
  font-size: 2rem;
  font-weight: 900;
}

/* Notes */

.under-form-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 18px;
}

.note-card {
  background: rgba(14, 35, 64, 0.72);
  border: 1px solid rgba(45, 140, 255, 0.24);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.note-card strong {
  display: block;
  margin-bottom: 5px;
}

.note-card span {
  display: block;
  color: var(--gray);
  font-size: 0.84rem;
}

/* Sections */

.trust-section,
.paths-section,
.hiw-section,
.blog-section,
.faq-section {
  position: relative;
  padding: 78px 0;
}

.trust-section,
.hiw-section,
.faq-section {
  background: #081e3c;
}

.section-header {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--gray);
}

.trust-grid,
.paths-grid,
.hiw-grid,
.blog-grid {
  display: grid;
  gap: 20px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
}

.paths-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hiw-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-item,
.path-card,
.hiw-card,
.blog-card,
.faq-item {
  background: rgba(14, 35, 64, 0.66);
  border: 1px solid rgba(45, 140, 255, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(45, 140, 255, 0.12);
  color: var(--blue-2);
  font-weight: 900;
}

.trust-text strong,
.trust-text span {
  display: block;
}

.trust-text span {
  color: var(--gray);
  font-size: 0.84rem;
}

.path-card,
.hiw-card,
.blog-card {
  padding: 28px;
  transition: 0.22s ease;
}

.path-card:hover,
.hiw-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 140, 255, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.path-icon {
  font-size: 2.45rem;
  margin-bottom: 16px;
}

.path-card h3,
.hiw-card h3,
.blog-card h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.path-card p,
.hiw-card p,
.blog-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

.path-cta {
  display: inline-flex;
  margin-top: 18px;
  background: transparent;
  border: 0;
  color: var(--blue-2);
  font-weight: 900;
  font-size: 0.92rem;
}

.hiw-num {
  display: inline-flex;
  color: var(--blue-2);
  font-family: var(--font-en);
  font-weight: 900;
  margin-bottom: 16px;
}

/* Blog cards */

.blog-card {
  cursor: pointer;
  min-height: 250px;
}

.blog-img,
.blog-icon {
  height: 86px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.14), rgba(7, 23, 47, 0.86));
  margin-bottom: 16px;
}

.blog-cat,
.feat-cat,
.art-cat-badge {
  display: inline-flex;
  color: #b9deff;
  background: rgba(45, 140, 255, 0.12);
  border: 1px solid rgba(45, 140, 255, 0.24);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--gray);
  font-size: 0.8rem;
}

.read-more {
  color: var(--blue-2);
  font-weight: 900;
}

.section-cta {
  text-align: center;
  margin-top: 34px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  border: 1.5px solid rgba(45, 140, 255, 0.38);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.22s ease;
}

.btn-outline:hover {
  background: rgba(45, 140, 255, 0.1);
  border-color: var(--blue);
}

/* FAQ */

.faq-list {
  max-width: 860px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 19px 20px;
  font-weight: 900;
  font-size: 1rem;
  text-align: inherit;
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 140, 255, 0.12);
  color: var(--blue-2);
  flex-shrink: 0;
}

.faq-ans {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-ans {
  display: block;
}

.faq-ans p {
  color: var(--gray);
}

/* Blog page */

.blog-hero {
  padding: 132px 0 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 140, 255, 0.22), transparent 35%),
    linear-gradient(180deg, #081e3c, var(--navy));
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 16px 0 8px;
}

.blog-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--gray);
}

.blog-search-wrap {
  position: relative;
  max-width: 540px;
  margin: 24px auto 0;
}

.blog-search-wrap input {
  width: 100%;
  background: rgba(14, 35, 64, 0.78);
  border: 1.5px solid rgba(45, 140, 255, 0.25);
  border-radius: 999px;
  padding: 14px 50px 14px 22px;
  color: var(--white);
  outline: none;
}

body.lang-en .blog-search-wrap input {
  padding: 14px 22px 14px 50px;
}

.blog-search-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--gray);
}

body.lang-en .blog-search-icon {
  right: auto;
  left: 18px;
}

.blog-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.filter-btn {
  border: 1px solid rgba(45, 140, 255, 0.25);
  background: rgba(14, 35, 64, 0.74);
  color: var(--gray);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 900;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(45, 140, 255, 0.16);
  color: var(--white);
  border-color: var(--blue);
}

.blog-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(14, 35, 64, 0.66);
  border: 1px solid rgba(45, 140, 255, 0.22);
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 34px;
  box-shadow: var(--shadow-soft);
}

.feat-img {
  min-height: 280px;
  display: grid;
  place-items: center;
  font-size: 5rem;
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.16), rgba(7, 23, 47, 0.9));
}

.feat-body {
  padding: 34px;
}

.feat-body h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feat-body p {
  color: var(--gray);
}

.feat-meta {
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 14px;
}

.feat-cta {
  display: inline-flex;
  margin-top: 18px;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 900;
}

.empty-state,
.not-found {
  text-align: center;
  padding: 70px 20px;
  color: var(--gray);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* Article page */

.art-hero {
  padding: 130px 0 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 140, 255, 0.22), transparent 35%),
    linear-gradient(180deg, #081e3c, var(--navy));
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 0.84rem;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--blue-2);
}

.art-title {
  max-width: 900px;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.22;
  margin: 12px 0 16px;
}

.art-meta {
  display: flex;
  gap: 18px;
  color: var(--gray);
  font-size: 0.86rem;
}

.art-hero-img {
  min-height: 320px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border-radius: 28px;
  border: 1px solid rgba(45, 140, 255, 0.22);
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.18), rgba(7, 23, 47, 0.92));
  font-size: 5rem;
}

.art-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 24px 82px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
}

.art-body {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.art-body h2 {
  color: var(--white);
  font-size: 1.45rem;
  margin: 34px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(45, 140, 255, 0.16);
}

.art-body h2:first-child {
  margin-top: 0;
}

.art-body p,
.art-body li {
  margin-bottom: 12px;
}

.art-body ul,
.art-body ol {
  padding-inline-start: 22px;
}

.sw-box {
  position: sticky;
  top: 96px;
  background: rgba(14, 35, 64, 0.66);
  border: 1px solid rgba(45, 140, 255, 0.22);
  border-radius: 22px;
  padding: 22px;
}

.sw-title {
  font-weight: 900;
  margin-bottom: 14px;
}

.rel-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 140, 255, 0.08);
}

.rel-item:last-child {
  border-bottom: 0;
}

.rel-t {
  display: block;
  font-weight: 900;
}

.rel-d {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
}

.art-cta {
  margin-top: 36px;
  padding: 34px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid rgba(45, 140, 255, 0.26);
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.13), rgba(14, 35, 64, 0.86));
}

.art-cta p {
  color: var(--gray);
  max-width: 590px;
  margin: 8px auto 18px;
}

.art-cta-btn {
  display: inline-flex;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 900;
}

/* Footer */

.footer {
  background: #051225;
  border-top: 1px solid rgba(45, 140, 255, 0.16);
  padding: 46px 0 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 330px;
  color: var(--gray);
  font-size: 0.92rem;
  margin-top: 14px;
}

.footer-col h4 {
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--gray);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--blue-2);
}

.footer-bottom {
  border-top: 1px solid rgba(45, 140, 255, 0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gray);
  font-size: 0.84rem;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-up {
  animation: fadeUp 0.55s ease both;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.16s;
}

.d3 {
  animation-delay: 0.24s;
}

/* Utilities */

.hidden {
  display: none !important;
}

body:not(.admin-body) a[href*="admin"] {
  display: none !important;
}

/* Responsive */

@media (max-width: 1050px) {
  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 23, 47, 0.98);
    border: 1px solid rgba(45, 140, 255, 0.24);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
  }

  .nav.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .stage-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .paths-grid,
  .hiw-grid,
  .blog-grid,
  .blog-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    height: 70px;
  }

  .logo-tag {
    display: none;
  }

  .hero {
    padding: 96px 0 48px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .assessment-card {
    padding: 20px 14px;
    border-radius: 24px;
  }

  .assessment-top {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .stage-nav,
  .fields-grid,
  .options-grid,
  .under-form-notes,
  .trust-grid,
  .paths-grid,
  .hiw-grid,
  .blog-grid,
  .blog-main-grid {
    grid-template-columns: 1fr;
  }

  .form-nav {
    flex-direction: column-reverse;
  }

  .btn-prev,
  .btn-next,
  .btn-submit {
    width: 100%;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .feat-img {
    min-height: 210px;
  }

  .art-layout {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .art-hero-img {
    min-height: 220px;
    font-size: 4rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}