/* static/css/landing.css */

:root {
  /* Core palette – updated to deep purple primary */
  --navy: #151e3f;
  /* dark navy kept for contrast */
  --navy-soft: #5a6482;
  --blue: #32127a;
  /* deep purple primary */
  --blue-dark: #25105e;
  /* darker purple for hover */
  --blue-pale: #e9edfc;
  /* soft blue-tinted pale (kept) */
  --blue-pale-2: #eef1fb;
  --bg: #eef1f9;
  --bg-2: #e7ecf8;
  --white: #ffffff;
  --green: #1fb35a;
  --green-pale: #e6f8ec;
  --amber: #f5a623;
  --border: #e7eaf3;
  --shadow: 0 20px 45px -18px rgba(30, 45, 110, .18);
  --shadow-sm: 0 10px 25px -12px rgba(30, 45, 110, .16);
  --shadow-lg: 0 30px 70px -24px rgba(21, 30, 63, .35);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-bounce: cubic-bezier(.68, -0.55, .27, 1.55);

  /* Slower animation durations */
  --dur-fast: .35s;
  --dur-med: .6s;
  --dur-slow: 1s;
  --dur-slower: 1.8s;
}




img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

svg {
  display: block;
}

::selection {
  background: var(--blue);
  color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-pale);
  border-radius: 10px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* ===================== PAGE WRAP ===================== */
.page-wrap {
  margin: 0 auto;
  padding: 20px 30px 0;
  width: 100%;
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition:
    opacity 1s var(--ease-spring),
    transform 1s var(--ease-spring);
  will-change: opacity, transform;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition:
    opacity .9s var(--ease-spring),
    transform .9s var(--ease-spring);
  will-change: opacity, transform;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children inside visible containers */
.reveal.visible>*:nth-child(1) {
  transition-delay: .07s;
}

.reveal.visible>*:nth-child(2) {
  transition-delay: .16s;
}

.reveal.visible>*:nth-child(3) {
  transition-delay: .25s;
}

.reveal.visible>*:nth-child(4) {
  transition-delay: .34s;
}

.reveal.visible>*:nth-child(5) {
  transition-delay: .43s;
}

.reveal.visible>*:nth-child(6) {
  transition-delay: .52s;
}

.reveal.visible>*:nth-child(7) {
  transition-delay: .61s;
}

.reveal.visible>*:nth-child(8) {
  transition-delay: .70s;
}

/* ===================== TOP ANNOUNCEMENT ===================== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: #d8cef0;
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 100px;
  max-width: 1180px;
  margin: 0 auto 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: topBarGlow 4s infinite alternate;
}

@keyframes topBarGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 18, 122, .2);
  }

  100% {
    box-shadow: 0 0 0 8px rgba(50, 18, 122, 0);
  }
}

.top-bar strong {
  color: #fff;
  font-weight: 700;
}

.top-bar .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(31, 179, 90, .18);
  animation: dotPulse 2.5s infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(31, 179, 90, .18);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(31, 179, 90, .08);
  }
}

/* ===================== NAVBAR ===================== */
.navbar-outer {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding-bottom: 0;
}

.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 100px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  gap: 20px;
  transition: box-shadow .5s ease, padding .5s ease, background .5s ease;
  border: 1px solid rgba(255, 255, 255, .7);
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, .98);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  padding-inline-start: 8px;
  flex-shrink: 0;
}

.brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), #8a63d2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(50, 18, 122, .6);
  transition: transform .4s var(--ease-spring);
}

.brand:hover .brand-mark {
  transform: rotate(-10deg) scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  opacity: .85;
  transition: opacity .3s ease, color .3s ease;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .35s var(--ease);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 10px 20px -10px rgba(50, 18, 122, .6);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
  transform: translateX(100%);
  transition: transform .7s ease;
  z-index: -1;
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -10px rgba(50, 18, 122, .7);
}

.nav-cta:hover::before {
  transform: translateX(-100%);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--blue-pale);
  border-radius: 9px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s ease;
}

.hamburger span {
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
}

.hamburger:hover {
  background: #dbe4fc;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
  transition: max-height .45s var(--ease);
}

.mobile-menu.open {
  max-height: 340px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.mobile-menu a {
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 12px;
  transition: background .3s ease, color .3s ease;
}

.mobile-menu a:active {
  background: var(--blue-pale);
}

.mobile-menu a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* ===================== HERO SECTION ===================== */
.hero-section {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(1100px 500px at 22% -10%, #e3d9f5 0%, transparent 60%),
    linear-gradient(180deg, #eef1f9 0%, #ece8f7 100%);
  padding: 56px 0 60px;
  margin-top: 18px;
  isolation: isolate;
}

/* Animated gradient overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(50, 18, 122, .03) 25%, transparent 25%, transparent 75%, rgba(50, 18, 122, .03) 75%);
  background-size: 40px 40px;
  z-index: -1;
  animation: backgroundPan 25s linear infinite;
  opacity: .5;
}

@keyframes backgroundPan {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 80px 80px;
  }
}

.hex-pattern {
  position: absolute;
  left: -60px;
  top: -40px;
  width: 520px;
  height: 520px;
  opacity: .55;
  z-index: 0;
  animation: spinSlow 110s linear infinite;
  transform-origin: 260px 260px;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.blob {
  position: absolute;
  z-index: 0;
  filter: blur(2px);
  animation: floatY 11s ease-in-out infinite;
}

.blob.b2 {
  animation-delay: -5s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(5deg);
  }
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 40px 10px;
}

.hero-inner {
  text-align: center;
  margin: 0 auto;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  transition: box-shadow .4s ease, transform .4s var(--ease-spring);
}

.badge:hover {
  box-shadow: 0 8px 16px -8px rgba(50, 18, 122, .4);
  transform: translateY(-2px);
}

.hero h1 {
  max-width: 55%;
  margin: 0 auto 20px;
  font-size: 46px;
  line-height: 1.24;
  font-weight: 800;
  color: var(--navy);
}

.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue) 0%, #8a63d2 60%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 8s linear infinite, accentGlow 3s ease-in-out infinite alternate;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes accentGlow {
  0% {
    filter: drop-shadow(0 0 0 rgba(50, 18, 122, 0));
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(50, 18, 122, .4));
  }
}

.hero p.lead {
  font-size: 16.5px;
  color: var(--navy-soft);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 25px -10px rgba(50, 18, 122, .55);
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .4) 50%, transparent 70%);
  transform: translateX(100%);
  transition: transform .7s ease;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(50, 18, 122, .65);
}

.btn-primary:hover::before {
  transform: translateX(-100%);
}

.btn-primary svg {
  transition: transform .35s ease;
}

.btn-primary:hover svg {
  transform: translateX(-3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  font-family: inherit;
}

.btn-ghost:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(50, 18, 122, .2);
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  font-size: 14px;
  color: var(--navy-soft);
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-inline-start: -10px;
  object-fit: cover;
  background: #c9c0e8;
  transition: transform .4s var(--ease-spring);
}

.avatar-stack img:hover {
  transform: translateY(-3px) scale(1.1);
  z-index: 2;
}

.avatar-stack img:first-child {
  margin-inline-start: 0;
}

.stars {
  color: var(--amber);
  font-weight: 700;
}

.stars strong {
  color: var(--navy);
  font-weight: 700;
}

.hero-icons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 44px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
}

.hero-icons li {
  display: flex;
  align-items: center;
  gap: 9px;
  transition: transform .4s var(--ease-spring);
}

.hero-icons li:hover {
  transform: translateY(-4px);
}

.icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease, transform .4s var(--ease-spring);
}

.hero-icons li:hover .icon-circle {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

/* ===================== FLOATING HERO CARDS ===================== */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  z-index: 3;
  text-align: right;
  animation: floatCard 9s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, .7);
  transition: box-shadow .4s ease, transform .4s ease;
}

.float-card:hover {
  box-shadow: var(--shadow-lg);
  animation-play-state: paused;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card-orders {
  right: 0;
  top: 100px;
  width: 215px;
  animation-delay: 0s;
}

.card-orders .cap {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
}

.logo-navbar {
  width: 120px;
  margin: -50px 0;
}

.card-orders .sub {
  font-size: 11px;
  color: #9b93b5;
  margin-top: 2px;
  margin-bottom: 10px;
}

.card-orders .value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.card-orders .value {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
}

.card-orders .delta {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-pale);
  padding: 2px 7px;
  border-radius: 20px;
  animation: deltaPulse 3s infinite;
}

@keyframes deltaPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.chart-days {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: #a79fc2;
  margin-top: 6px;
}

.spark-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2.5s var(--ease) .5s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.card-order-new {
  left: 0;
  top: 76px;
  width: 205px;
  animation-delay: -2.5s;
}

.card-order-new .cap {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.order-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #c9c0e8;
}

.order-user .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.order-user .tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 2px 7px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 2px;
}

.order-services {
  font-size: 11px;
  color: #9b93b5;
  margin-top: 6px;
}

.progress-bar {
  height: 5px;
  width: 100%;
  background: #f0eef8;
  border-radius: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #8a63d2);
  border-radius: 10px;
  transition: width 1.6s var(--ease) .3s;
}

.progress-bar.filled span {
  width: 72%;
}

.card-balance {
  left: 0;
  top: 262px;
  width: 205px;
  animation-delay: -4.5s;
}

.card-balance .cap {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
}

.card-balance .sub {
  font-size: 10.5px;
  color: #9b93b5;
  margin-top: 2px;
  margin-bottom: 12px;
}

.card-balance .amt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.card-balance .amt {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.bar-grow rect {
  transform-origin: bottom;
  animation: growBar 1s var(--ease) both;
}

.bar-grow rect:nth-child(1) {
  animation-delay: .15s;
}

.bar-grow rect:nth-child(2) {
  animation-delay: .25s;
}

.bar-grow rect:nth-child(3) {
  animation-delay: .35s;
}

.bar-grow rect:nth-child(4) {
  animation-delay: .45s;
}

.bar-grow rect:nth-child(5) {
  animation-delay: .55s;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ===================== SECTION HEADERS ===================== */
.section {
  padding: 90px 24px 0;
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 12px;
  line-height: 1.4;
}

.section-head h2 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.section-head h2 .accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}

.section-head:hover h2 .accent::after {
  transform: scaleX(1);
}

.section-head p {
  font-size: 15px;
  color: var(--navy-soft);
  line-height: 1.8;
}

/* ===================== STEPS + ROADMAP (SIGNATURE) ===================== */
.roadmap-wrap {
  position: relative;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 44px 40px 30px;
  margin-bottom: 26px;
  overflow: hidden;
  transition: box-shadow .4s ease, transform .4s ease;
}

.roadmap-wrap:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.roadmap-svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.roadmap-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s var(--ease);
}

.roadmap-wrap.visible .roadmap-path {
  stroke-dashoffset: 0;
}

.roadmap-node {
  opacity: 0;
  transform: scale(.4);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.roadmap-wrap.visible .roadmap-node {
  opacity: 1;
  transform: scale(1);
}

.roadmap-node.n1 {
  transition-delay: .2s;
}

.roadmap-node.n2 {
  transition-delay: .7s;
}

.roadmap-node.n3 {
  transition-delay: 1.2s;
}

.roadmap-node.n4 {
  transition-delay: 1.7s;
}

.steps-strip {
  display: flex;
  gap: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  padding: 0 18px;
  transition: transform .4s var(--ease-spring);
}

.step-item:hover {
  transform: translateY(-4px);
}

.step-item+.step-item {
  border-inline-start: 1px solid var(--border);
}

.step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s ease, color .35s ease, transform .4s var(--ease-spring);
}

.step-item:hover .step-num {
  background: var(--blue);
  color: #fff;
  transform: scale(1.15);
}

.step-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.step-item p {
  font-size: 12.5px;
  color: var(--navy-soft);
  line-height: 1.6;
}

/* ===================== SPLIT PANEL ===================== */
.split-panel {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .4s ease;
}

.split-panel:hover {
  box-shadow: var(--shadow);
}

.split-left {
  flex: 0 0 42%;
  background: linear-gradient(160deg, #f5f2fa, #ece8f7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}

.split-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(200px 200px at 30% 20%, rgba(138, 99, 210, .15), transparent 70%);
  z-index: 0;
}

.mock-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  width: 235px;
  text-align: center;
  transition: transform .45s var(--ease-spring), box-shadow .45s ease;
  z-index: 1;
}

.split-left:hover .mock-form {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.mock-form .icon-circle-lg {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-spring);
}

.mock-form:hover .icon-circle-lg {
  transform: scale(1.1) rotate(5deg);
}

.mock-form h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.mock-form p {
  font-size: 11.5px;
  color: #a9a0c8;
  margin-bottom: 16px;
}

.mock-line {
  height: 9px;
  background: #f0eef8;
  border-radius: 6px;
  margin-bottom: 10px;
}

.mock-line.short {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.mock-btn {
  margin-top: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.mock-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.split-right {
  flex: 1;
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.what-is-text-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.split-right h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 14px;
  max-width: 430px;
}

.split-right p {
  font-size: 14.5px;
  color: var(--navy-soft);
  line-height: 1.85;
  max-width: 410px;
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.chip {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 6px 13px;
  border-radius: 100px;
  cursor: default;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease-spring);
}

.chip:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.link-more {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.link-more svg {
  transition: transform .35s ease;
}

.link-more:hover svg {
  transform: translateX(-3px);
}

/* ===================== GOAL CARDS ===================== */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.goal-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 26px 22px;
  text-align: right;
  border: 1px solid transparent;
  transition: transform .4s var(--ease-spring), border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.goal-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(50, 18, 122, .1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -1;
}

.goal-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}

.goal-card:hover::before {
  opacity: 1;
}

.goal-card .goal-num {
  font-size: 11px;
  font-weight: 700;
  color: #a9a0c8;
  margin-bottom: 14px;
  display: block;
}

.goal-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform .4s var(--ease-spring), background .35s ease, color .35s ease;
}

.goal-card:hover .icon-circle {
  background: var(--blue);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.goal-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.goal-card p {
  font-size: 12.5px;
  color: var(--navy-soft);
  line-height: 1.7;
}

/* ===================== GROWTH SECTION ===================== */
.growth-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
}

.phone-mock {
  position: relative;
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.leaf {
  position: absolute;
  z-index: 0;
  animation: floatY 10s ease-in-out infinite;
}

.leaf.l1 {
  right: -10px;
  top: 40px;
  width: 120px;
  opacity: .9;
}

.leaf.l2 {
  right: 20px;
  bottom: -10px;
  width: 150px;
  opacity: .9;
  animation-delay: -4s;
}

.phone-body {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 430px;
  background: #1a1033;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 30px 50px -20px rgba(20, 30, 70, .4);
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform .6s var(--ease-spring);
}

.phone-mock:hover .phone-body {
  transform: rotateY(0) rotateX(0) scale(1.03);
}

.phone-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-align: right;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: #1a1033;
  border-radius: 20px;
}

.phone-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
  margin-bottom: 18px;
}

.phone-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), #8a63d2);
  border-radius: 6px 6px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s var(--ease-spring);
}

.phone-mock.visible .phone-bars span {
  transform: scaleY(1);
}

.phone-bars span:nth-child(1) {
  transition-delay: .15s;
}

.phone-bars span:nth-child(2) {
  transition-delay: .25s;
}

.phone-bars span:nth-child(3) {
  transition-delay: .35s;
}

.phone-bars span:nth-child(4) {
  transition-delay: .45s;
}

.phone-bars span:nth-child(5) {
  transition-delay: .55s;
}

.phone-bars span:nth-child(6) {
  transition-delay: .65s;
}

.phone-bars span:nth-child(7) {
  transition-delay: .75s;
}

.phone-stat {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.phone-stat-label {
  font-size: 11px;
  color: #9b93b5;
  margin-top: 2px;
}

.growth-right {
  flex: 1;
  text-align: right;
}

.growth-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .4s var(--ease-spring);
}

.growth-right:hover .growth-card-icon {
  transform: rotate(-5deg) scale(1.1);
}

.growth-right h3 {
  font-size: 27px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.45;
  max-width: 430px;
  margin-bottom: 14px;
}

.growth-right p {
  font-size: 14.5px;
  color: var(--navy-soft);
  line-height: 1.85;
  max-width: 430px;
  margin-bottom: 22px;
}

.growth-users {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--navy-soft);
  max-width: 400px;
}

/* ===================== TOOLS SECTION ===================== */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tool-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tool-visual {
  height: 150px;
  background: linear-gradient(160deg, var(--blue-pale-2), #e3d9f5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tool-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px 100px at 80% 100%, rgba(138, 99, 210, .4), transparent 70%);
  transition: transform .6s ease;
}

.tool-card:hover .tool-visual::after {
  transform: scale(1.2);
}

.tool-visual .icon-circle-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease-spring);
}

.tool-card:hover .tool-visual .icon-circle-lg {
  transform: scale(1.15) rotate(6deg);
}

.tool-body {
  padding: 24px 24px 26px;
  text-align: right;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tool-body h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.tool-body p {
  font-size: 13px;
  color: var(--navy-soft);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}

.tool-body .link-more {
  font-size: 13px;
  align-self: flex-start;
}

/* ===================== KEY FEATURES ===================== */
.keyfeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.keyfeat-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  text-align: right;
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}

.keyfeat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.keyfeat-card .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .35s ease, color .35s ease, transform .4s var(--ease-spring);
}

.keyfeat-card:hover .icon-circle {
  background: var(--blue);
  color: #fff;
  transform: rotate(-10deg) scale(1.1);
}

.keyfeat-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.keyfeat-card p {
  font-size: 12.5px;
  color: var(--navy-soft);
  line-height: 1.75;
}

/* ===================== DISCIPLINES ===================== */
.discipline-row {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 30px 20px;
  gap: 10px;
}

.discipline-item {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  transition: background .3s ease, transform .4s var(--ease-spring);
  cursor: default;
}

.discipline-item:hover {
  background: var(--blue-pale-2);
  transform: translateY(-5px);
}

.discipline-item .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background .35s ease, color .35s ease, transform .4s var(--ease-spring);
}

.discipline-item:hover .icon-circle {
  background: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

.discipline-item h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

/* ===================== STATS BAND ===================== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: linear-gradient(135deg, #2a1856 0%, #32127a 100%);
  border-radius: 24px;
  padding: 44px 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 85% 0%, rgba(138, 99, 210, .5), transparent 60%);
  z-index: -1;
  animation: statsGlow 4s infinite alternate;
}

@keyframes statsGlow {
  0% {
    opacity: .8;
  }

  100% {
    opacity: 1;
  }
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  transition: transform .4s var(--ease-spring);
}

.stat-item:hover .num {
  transform: scale(1.05);
}

.stat-item .label {
  font-size: 12.5px;
  color: #a8a0d0;
  margin-top: 6px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 26px;
  text-align: right;
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  margin-bottom: 14px;
  display: block;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 13.5px;
  color: var(--navy-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-person img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #c9c0e8;
  transition: transform .4s var(--ease-spring);
}

.testimonial-card:hover .t-person img {
  transform: scale(1.1);
}

.t-person .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.t-person .role {
  font-size: 11.5px;
  color: #9b93b5;
}

/* ===================== FAQ (ACCORDION) ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .4s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background .3s ease;
}

.faq-question:hover {
  background: var(--blue-pale-2);
}

.faq-question h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}

.faq-item .q-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-spring), background .35s ease, color .35s ease;
}

.faq-item.open .q-mark {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}

.faq-answer p {
  font-size: 13px;
  color: var(--navy-soft);
  line-height: 1.8;
  padding: 0 24px 20px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===================== BOTTOM FEATURE STRIP ===================== */
.feature-strip {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 28px 20px;
  margin: 80px 0 60px;
  transition: box-shadow .4s ease;
}

.feature-strip:hover {
  box-shadow: var(--shadow);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  padding: 0 16px;
  transition: transform .4s var(--ease-spring);
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item+.feature-item {
  border-inline-start: 1px solid var(--border);
}

.feature-item .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease;
}

.feature-item:hover .icon-circle {
  background: var(--blue);
  color: #fff;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 12px;
  color: var(--navy-soft);
  line-height: 1.6;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1856 0%, #32127a 100%);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  margin-bottom: 60px;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 400px at 20% 0%, rgba(138, 99, 210, .5), transparent 60%);
  z-index: -1;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .14) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .4;
  z-index: -1;
  animation: backgroundPan 30s linear infinite;
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 33px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.tool-feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.tool-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--navy-soft);
  justify-content: flex-start;
  text-align: right;
}

.final-cta p {
  font-size: 15px;
  color: #c2b8e8;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
}


/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 200;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px) scale(.8);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .3s ease;
}

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

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px) scale(1.05);
}

/* ===================== RESUME CALCULATOR (NEW) ===================== */
.resume-calc-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition: box-shadow .4s ease;
}

.resume-calc-wrap:hover {
  box-shadow: var(--shadow);
}

.calc-left {
  flex: 1;
  min-width: 280px;
}

.calc-left h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.calc-left p {
  font-size: 13px;
  color: var(--navy-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-pale-2);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  user-select: none;
}

.calc-option:hover {
  background: var(--blue-pale);
  transform: translateX(-2px);
  box-shadow: 0 4px 8px -4px rgba(50, 18, 122, .15);
}

.calc-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.calc-option .label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.calc-option .points {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: #fff;
  padding: 3px 8px;
  border-radius: 20px;
}

.calc-right {
  flex: 0 0 260px;
  background: linear-gradient(160deg, var(--blue-pale-2), #ece8f7);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calc-score-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 6px;
}

.calc-score-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
  transition: transform .4s var(--ease-spring);
}

.calc-right:hover .calc-score-num {
  transform: scale(1.05);
}

.calc-score-num span {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-soft);
}

.calc-score-bar {
  width: 100%;
  height: 8px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.calc-score-bar div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #8a63d2);
  border-radius: 10px;
  transition: width .5s var(--ease);
}

.calc-cta-btn {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px -10px rgba(50, 18, 122, .6);
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.calc-cta-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -10px rgba(50, 18, 122, .7);
}

.calc-note {
  font-size: 11px;
  color: #9b93b5;
  margin-top: 12px;
}

/* ===================== HORIZONTAL SCROLL SUCCESS STORIES ===================== */
.success-scroll-wrap {
  position: relative;
}

.success-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 18px;
  padding: 10px 4px 20px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.success-scroll-container::-webkit-scrollbar {
  display: none;
}

.success-story-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 26px;
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
}

.success-story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.success-story-card .stars {
  margin-bottom: 10px;
  display: block;
}

.success-story-card p {
  font-size: 13px;
  color: var(--navy-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.success-story-card .t-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-story-card .t-person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #c9c0e8;
  transition: transform .4s var(--ease-spring);
}

.success-story-card:hover .t-person img {
  transform: scale(1.1);
}

.success-story-card .t-person .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.success-story-card .t-person .role {
  font-size: 11.5px;
  color: #9b93b5;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.scroll-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.scroll-btn.right {
  right: -10px;
}

.scroll-btn.left {
  left: -10px;
}

.scroll-btn svg {
  width: 18px;
  height: 18px;
}

.scroll-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ===================== COMPARISON TABLE ===================== */
.comparison-table {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  transition: box-shadow .4s ease;
}

.comparison-table:hover {
  box-shadow: var(--shadow);
}

.comp-col {
  padding: 30px;
  text-align: center;
}

.comp-col.highlight {
  background: linear-gradient(180deg, var(--blue-pale-2) 0%, #ffffff 100%);
}

.comp-col h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.comp-col .comp-sub {
  font-size: 12px;
  color: var(--navy-soft);
  margin-bottom: 20px;
}

.comp-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-row-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy-soft);
  justify-content: flex-start;
  text-align: right;
}

.comp-row-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.comp-row-item .check {
  color: var(--green);
}

.comp-row-item .cross {
  color: #ff4d4f;
}

.comp-cta-btn {
  display: inline-table;
  margin-top: 24px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 10px 20px -10px rgba(50, 18, 122, .6);
}

.comp-cta-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -10px rgba(50, 18, 122, .7);
}

/* ===================== SAMPLE ROADMAP (ENHANCED) ===================== */
.sample-roadmap-wrap {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s ease;
}

.sample-roadmap-wrap:hover {
  box-shadow: var(--shadow);
}

.sample-roadmap-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, rgba(138, 99, 210, .2), transparent 60%);
  z-index: 0;
}

.roadmap-timeline {
  position: relative;
  z-index: 1;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-pale);
}

.rm-step {
  position: relative;
  padding-right: 70px;
  margin-bottom: 30px;
}

.rm-step:last-child {
  margin-bottom: 0;
}

.rm-step-dot {
  position: absolute;
  right: 16px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px var(--blue-pale);
  z-index: 2;
  transition: transform .4s var(--ease-spring);
}

.rm-step:hover .rm-step-dot {
  transform: scale(1.2);
}

.rm-step-card {
  background: var(--blue-pale-2);
  border-radius: 16px;
  padding: 20px 22px;
  transition: transform .4s var(--ease-spring), box-shadow .4s ease;
}

.rm-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.rm-step-card .rm-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rm-step-card .rm-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

.rm-step-card .rm-step-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.rm-step-card .rm-step-status.done {
  background: var(--green-pale);
  color: var(--green);
}

.rm-step-card .rm-step-status.active {
  background: var(--blue-pale);
  color: var(--blue);
}

.rm-step-card p {
  font-size: 13px;
  color: var(--navy-soft);
  line-height: 1.7;
}

.rm-step-card .rm-progress {
  height: 6px;
  background: #fff;
  border-radius: 10px;
  margin-top: 12px;
  overflow: hidden;
}

.rm-step-card .rm-progress div {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--blue), #8a63d2);
  transition: width 1.2s var(--ease);
}






.core-tools-alt {
  position: relative;
  padding: 4rem 0;
}

.core-tools-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.core-tool-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}

.core-tool-item:last-child {
  margin-bottom: 0;
}

.core-tool-item.left .core-tool-text {
  order: 1;
  padding-right: 3rem;
  text-align: right;
}

.core-tool-item.left .core-tool-visual {
  order: 2;
  padding-left: 3rem;
}

.core-tool-item.right .core-tool-text {
  order: 2;
  padding-left: 3rem;
  text-align: left;
}

.core-tool-item.right .core-tool-visual {
  order: 1;
  padding-right: 3rem;
}

.core-tool-text,
.core-tool-visual {
  flex: 1;
}

.core-tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #6041a5;
  background: #eef2ff;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 0.75rem;
}

.core-tool-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b1b3f;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.core-tool-text p {
  color: #55657e;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.core-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.core-tool-tags span {
  background: #f5f7ff;
  color: #3b4d7a;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid #dde4f5;
}

.core-tool-visual {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px -12px rgba(59, 109, 240, 0.12);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  border: 1px solid #eef1fb;
}

.visual-mock {
  width: 100%;
  max-width: 320px;
  background: #fafbff;
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid #e5eaf8;
}

.visual-mock .vm-title {
  font-weight: 700;
  color: #0b1b3f;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.vm-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.vm-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dbe4fc;
  flex-shrink: 0;
}

.vm-line {
  height: 8px;
  background: #e3e9f8;
  border-radius: 4px;
  flex: 1;
}

.vm-line.short {
  width: 60%;
}

.vm-line.medium {
  width: 80%;
}

.vm-progress {
  height: 8px;
  background: #e3e9f8;
  border-radius: 4px;
  margin: 0.8rem 0;
  overflow: hidden;
}

.vm-progress div {
  height: 100%;
  background: #6041a5;
  width: 60%;
  border-radius: 4px;
}

.vm-stats {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.vm-stat {
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  flex: 1;
}

.vm-stat .num {
  font-weight: 800;
  color: #0b1b3f;
  font-size: 1.1rem;
}

.vm-stat .lbl {
  font-size: 0.7rem;
  color: #7a8aa8;
  margin-top: 0.2rem;
}

.vm-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #33415c;
}

.vm-check .box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #c7d2f7;
}

.vm-check .box.checked {
  background: #6041a5;
  border-color: #6041a5;
  position: relative;
}

.vm-check .box.checked::after {
  content: '✓';
  color: #fff;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #6041a5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #eef2ff;
  z-index: 2;
}

@media (max-width: 768px) {

  .core-tool-item.left .core-tool-text,
  .core-tool-item.right .core-tool-text {
    order: 2;
    padding: 0 0 0 3rem;
    text-align: right;
  }

  .core-tool-item.left .core-tool-visual,
  .core-tool-item.right .core-tool-visual {
    order: 1;
    padding: 0;
    margin-bottom: 10px;
  }

  .timeline-dot {
    left: 20px;
    top: 30px;
    transform: translate(-50%, 0);
  }
}



/* ===================== CSS موبایل برای بخش core-tools-alt ===================== */

/* برای نمایشگرهای کوچک‌تر از 768px */
@media (max-width: 768px) {
  .core-tools-timeline::before {
    left: 20px;
    /* خط تایم‌لاین به سمت راست منتقل می‌شود */
  }

  .core-tool-item.left,
  .core-tool-item.right {
    flex-direction: column;
    align-items: flex-start;
  }

  .core-tool-item.left .core-tool-text,
  .core-tool-item.right .core-tool-text {
    order: 2;
    padding: 0;
    text-align: right;
    /* متن راست‌چین مطابق با RTL */
    margin-bottom: 1rem;
  }

  .core-tool-item.left .core-tool-visual,
  .core-tool-item.right .core-tool-visual {
    order: 1;
    padding: 0;
    width: 100%;
    margin-bottom: 10px;
  }

  .timeline-dot {
    left: 20px;
    top: 30px;
    transform: translate(-50%, 0);
  }

  .core-tool-text h3 {
    font-size: 1.3rem;
  }

  .core-tool-visual {
    min-height: auto;
    padding: 1rem;
    box-shadow: 0 10px 20px -5px rgba(59, 109, 240, 0.1);
  }

  .visual-mock {
    max-width: 100%;
  }

  .core-tool-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
  }

  .logo-navbar {
    width: 60px;
    margin: -20px 0;
  }
}

/* برای موبایل‌های کوچک‌تر از 480px */
@media (max-width: 480px) {
  .core-tool-text h3 {
    font-size: 1.2rem;
  }

  .core-tool-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

  .core-tool-tags span {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }

  .core-tool-item {
    margin-bottom: 2.5rem;
    /* فاصله کمتر بین آیتم‌ها */
  }

  .visual-mock {
    padding: 1rem;
  }

  .vm-stats {
    gap: 0.5rem;
  }

  .vm-stat {
    padding: 0.5rem;
  }

  .vm-stat .num {
    font-size: 1rem;
  }

  .vm-stat .lbl {
    font-size: 0.65rem;
  }

  .core-tool-visual {
    border-radius: 18px;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
  }

  .float-card {
    display: none;
  }

  .steps-strip,
  .feature-strip {
    flex-direction: column;
    gap: 22px;
  }

  .step-item+.step-item,
  .feature-item+.feature-item {
    border-inline-start: none;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }

  .split-panel {
    flex-direction: column;
  }

  .split-left {
    padding: 36px;
  }

  .split-right {
    padding: 36px;
  }

  .growth-grid {
    flex-direction: column;
    gap: 36px;
  }

  .hero-icons {
    gap: 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .goal-grid,
  .tool-grid,
  .keyfeat-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .discipline-row {
    flex-wrap: wrap;
  }

  .discipline-item {
    flex: 0 0 30%;
  }

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

  .roadmap-svg {
    display: none;
  }

  .resume-calc-wrap {
    flex-direction: column;
  }

  .calc-right {
    flex: 0 0 auto;
  }

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comp-col {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .hero {
    padding: 40px 16px 0;
  }

  .goal-grid,
  .tool-grid,
  .keyfeat-grid,
  .testimonial-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .discipline-item {
    flex: 0 0 45%;
  }

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

  .final-cta h2 {
    font-size: 24px;
  }

  .top-bar {
    font-size: 11px;
    padding: 8px 12px;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .scroll-btn {
    display: none;
  }

  .sample-roadmap-wrap {
    padding: 20px;
  }

  .rm-step {
    padding-right: 50px;
  }

  .roadmap-timeline::before {
    right: 16px;
  }

  .rm-step-dot {
    right: 6px;
    width: 18px;
    height: 18px;
  }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}




/* ==========================================
   📱 نسخه موبایل – بهینه برای عرض ≤ 480px
   ========================================== */

@media screen and (max-width: 480px) {
  :root {
    --gap: 12px;
    --radius-card: 14px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 6px rgba(20, 26, 46, .06);
    --shadow: 0 4px 10px rgba(47, 92, 245, .08);
    --shadow-md: 0 6px 16px rgba(20, 26, 46, .10);
  }

  body {
    overflow-x: hidden;
    min-width: 320px;
    font-size: var(--text-base);
  }

  .page-wrap,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* ---------- نوار بالا ---------- */
  .top-bar {
    font-size: 10.5px;
    padding: 7px 10px;
    border-radius: 50px;
    margin: 0 14px 10px;
  }

  /* ---------- ناوبری ---------- */
  .navbar-outer {
    top: 6px;
  }

  .navbar {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 40px;
    justify-content: space-between;
  }

  .brand {
    font-size: 13px;
  }

  .brand .brand-mark {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 40px;
  }

  .hamburger {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .mobile-menu {
    border-radius: 14px;
    margin-top: 6px;
  }

  .mobile-menu a {
    padding: 11px 14px;
    font-size: 13px;
  }

  /* ---------- بخش قهرمان ---------- */
  .hero-section {
    border-radius: 18px;
    padding: 30px 0 35px;
    margin-top: 10px;
  }

  .hero {
    padding: 30px 14px 0;
  }

  .badge {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 50px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .hero p.lead {
    font-size: 12.5px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 12.5px;
    border-radius: 40px;
  }

  .reviews {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
  }

  .hero-icons {
    gap: 14px;
    margin-top: 24px;
    font-size: 11px;
  }

  .hero-icons li {
    gap: 5px;
  }

  .icon-circle {
    width: 24px;
    height: 24px;
  }

  /* کارت‌های شناور مخفی */
  .float-card {
    display: none;
  }

  /* ---------- سربرگ بخش‌ها ---------- */
  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: 22px;
    line-height: 1.35;
    margin: 8px 0 6px;
  }

  .section-head p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  /* ---------- مراحل (Roadmap) ---------- */
  .roadmap-wrap {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .roadmap-svg {
    display: none;
  }

  .steps-strip {
    flex-direction: column;
    gap: 14px;
  }

  .step-item {
    padding: 0;
    gap: 10px;
  }

  .step-item+.step-item {
    border-inline-start: none;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .step-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .step-item h4 {
    font-size: 13px;
  }

  .step-item p {
    font-size: 11.5px;
    line-height: 1.55;
  }

  /* ---------- پنل دو تکه ---------- */
  .split-panel {
    flex-direction: column;
    border-radius: 14px;
  }

  .split-left {
    padding: 24px 16px;
    border-radius: 14px 14px 0 0;
  }

  .split-right {
    padding: 24px 16px;
  }

  .split-right h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .split-right p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .mock-form {
    width: 190px;
    padding: 18px;
    border-radius: 14px;
  }

  /* ---------- کارت‌ها و گریدها ---------- */
  .goal-grid,
  .tool-grid,
  .keyfeat-grid,
  .testimonial-grid,
  .stats-band {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .goal-card,
  .tool-card,
  .keyfeat-card,
  .testimonial-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .goal-card .icon-circle,
  .keyfeat-card .icon-circle,
  .tool-visual .icon-circle-lg {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .tool-card {
    flex-direction: column;
  }

  .tool-visual {
    height: 100px;
  }

  .tool-body {
    padding: 14px;
  }

  .tool-body h4 {
    font-size: 14px;
  }

  .tool-body p {
    font-size: 11.5px;
  }

  /* ---------- بخش رشد ---------- */
  .growth-grid {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .phone-body {
    width: 150px;
    height: 300px;
    border-radius: 28px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 22px;
    padding: 18px 14px;
  }

  .phone-bars {
    height: 90px;
    gap: 6px;
  }

  .phone-stat {
    font-size: 20px;
  }

  .growth-right {
    text-align: center;
  }

  .growth-card-icon {
    margin: 0 auto 14px;
  }

  .growth-right h3 {
    font-size: 20px;
  }

  .growth-right p {
    font-size: 12.5px;
    margin-inline: auto;
  }

  .growth-users {
    justify-content: center;
    font-size: 11.5px;
  }

  /* ---------- رشته‌ها ---------- */
  .discipline-row {
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 10px;
  }

  .discipline-item {
    flex: 0 0 calc(50% - 6px);
    padding: 10px 6px;
  }

  .discipline-item .icon-circle {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }

  .discipline-item h5 {
    font-size: 12px;
  }

  /* ---------- نوار آمار ---------- */
  .stats-band {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .stat-item .num {
    font-size: 24px;
  }

  .stat-item .label {
    font-size: 10.5px;
  }

  /* ---------- نوار ویژگی‌ها ---------- */
  .feature-strip {
    flex-direction: column;
    gap: 14px;
    padding: 16px 12px;
    margin: 30px 0;
    border-radius: 14px;
  }

  .feature-item {
    padding: 0;
  }

  .feature-item+.feature-item {
    border-inline-start: none;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .feature-item .icon-circle {
    width: 28px;
    height: 28px;
  }

  .feature-item h4 {
    font-size: 12.5px;
  }

  .feature-item p {
    font-size: 11px;
  }

  /* ---------- بخش CTA پایانی ---------- */
  .final-cta {
    padding: 32px 16px;
    border-radius: 18px;
    margin-bottom: 30px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .final-cta p {
    font-size: 12.5px;
    margin-bottom: 20px;
  }

  /* ---------- فوتر ---------- */
  .site-footer {
    padding: 0 14px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-col h5 {
    font-size: 12.5px;
    margin-bottom: 8px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 11.5px;
  }

  .footer-brand {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 11px;
  }

  /* ---------- دکمه بازگشت به بالا ---------- */
  .back-to-top {
    left: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
  }

  /* ---------- ماشین حساب رزومه ---------- */
  .resume-calc-wrap {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
  }

  .calc-left h4 {
    font-size: 15px;
  }

  .calc-left p {
    font-size: 11.5px;
  }

  .calc-option {
    padding: 8px 10px;
    border-radius: 8px;
  }

  .calc-option .label {
    font-size: 12px;
  }

  .calc-right {
    flex: 0 0 auto;
    padding: 16px;
    border-radius: 14px;
  }

  .calc-score-num {
    font-size: 30px;
  }

  /* ---------- جدول مقایسه ---------- */
  .comparison-table {
    grid-template-columns: 1fr;
    gap: 16px;
    border-radius: 14px;
  }

  .comp-col {
    padding: 16px;
  }

  .comp-col h4 {
    font-size: 15px;
  }

  /* ---------- نقشه راه نمونه ---------- */
  .sample-roadmap-wrap {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .rm-step {
    padding-right: 32px;
    margin-bottom: 20px;
  }

  .roadmap-timeline::before {
    right: 8px;
  }

  .rm-step-dot {
    right: 0;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .rm-step-card {
    padding: 12px;
  }

  .rm-step-card .rm-step-title {
    font-size: 13px;
  }

  .rm-step-card p {
    font-size: 11.5px;
  }
}