/* ============================================================
   KANBAN PLATFORM — Site Stylesheet
   ============================================================ */

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

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.75;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); direction: rtl; }

/* ---- Variables ---- */
:root {
  --primary:       #5B6FE8;
  --primary-light: #8B9EF5;
  --primary-dark:  #4456CC;
  --primary-10:    rgba(91,111,232,.10);
  --primary-20:    rgba(91,111,232,.20);

  --teal:          #16916a;
  --teal-light:    #5FD4A8;
  --teal-10:       rgba(22,145,106,.10);

  --accent:        #f59e0b;

  --bg:            #f5f6ff;
  --bg-2:          #eef0ff;
  --surface:       #ffffff;
  --surface-2:     #f4f5ff;
  --border:        #e4e6f5;
  --border-light:  #eef0fc;

  --text-1: #1a1a2e;
  --text-2: #2a2d75;
  --text-3: #5c6080;
  --text-4: #a0a0c0;

  --hero-bg:    #07030f;
  --hero-text:  #f8fafc;
  --hero-muted: #8b8baa;

  --font: 'Vazirmatn', Tahoma, 'IRANSans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.1),0 4px 8px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.12);
  --shadow-primary: 0 8px 28px rgba(91,111,232,.35);
  --shadow-teal:    0 8px 28px rgba(22,145,106,.30);

  --radius-xs: 0.375rem;
  --radius-sm: 0.625rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl:2.5rem;
  --radius-full:9999px;
}

/* ---- Layout ---- */
.container { width: min(1180px,92vw); margin-inline: auto; }
.narrow    { width: min(780px,92vw);  margin-inline: auto; }
.section   { padding-block: 5.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .65rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font); font-size: .9rem; font-weight: 700;
  border: 2px solid transparent;
  transition: all .2s ease; white-space: nowrap; cursor: pointer;
}
.btn-lg { padding: .85rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(91,111,232,.45);
}

.btn-teal {
  background: var(--teal); color: #fff; border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  background: #0d6e50; border-color: #0d6e50;
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22,145,106,.4);
}

.btn-ghost-dark {
  color: var(--hero-muted); background: transparent;
}
.btn-ghost-dark:hover { color: #fff; background: rgba(255,255,255,.08); }

.btn-outline-dark {
  color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); background: transparent;
}
.btn-outline-dark:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.5); }

.btn-white {
  background: #fff; color: var(--primary-dark); border-color: #fff; font-weight: 800;
}
.btn-white:hover { background: #f0eeff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-10); }

.btn-ghost-light {
  color: var(--text-3); background: transparent;
}
.btn-ghost-light:hover { color: var(--text-1); background: var(--surface-2); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease;
}

.navbar--dark {
  background: rgba(7,3,15,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar--light {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,.05);
}

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem; gap: 1.5rem;
}

/* Logo */
.navbar__logo {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 900; font-size: 1.25rem; letter-spacing: -.02em; flex-shrink: 0;
}
.navbar__logo-image {
  display: block;
  width: auto;
  height: 3.5rem;
}
.navbar--dark  .navbar__logo { color: #fff; }
.navbar--light .navbar__logo { color: var(--text-1); }

/* Show correct logo variant per navbar theme */
.navbar--light .navbar__logo-image--dark  { display: none; }
.navbar--dark  .navbar__logo-image--light { display: none; }

/* Nav links */
.navbar__nav {
  display: flex; align-items: center; gap: .15rem; flex: 1; justify-content: center;
}
.navbar__link {
  padding: .4rem 1rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; transition: all .2s ease;
}
.navbar--dark  .navbar__link { color: var(--hero-muted); }
.navbar--dark  .navbar__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.navbar--light .navbar__link { color: var(--text-3); }
.navbar--light .navbar__link:hover { color: var(--text-1); background: var(--surface-2); }

/* Actions */
.navbar__actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--hero-bg);
  position: relative; overflow: hidden;
  padding-block: 7rem 5rem;
  min-height: 92vh; display: flex; align-items: center;
}

/* Animated background blobs */
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
  animation: blob-drift 10s ease-in-out infinite;
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle,rgba(91,111,232,.7) 0%,transparent 65%);
  top: -220px; right: -120px; animation-delay: 0s;
}
.hero__blob--2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle,rgba(22,145,106,.55) 0%,transparent 65%);
  bottom: -150px; left: -100px; animation-delay: -5s;
}
.hero__blob--3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle,rgba(245,158,11,.3) 0%,transparent 65%);
  top: 35%; left: 35%; animation-delay: -2.5s;
}

@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-18px) scale(1.06); }
  66%      { transform: translate(-18px,14px) scale(.95); }
}

/* Dot-grid overlay */
.hero::before {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size: 34px 34px; pointer-events: none;
}

.hero__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}

/* Text side */
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem;
  background: rgba(91,111,232,.18); border: 1px solid rgba(91,111,232,.35);
  border-radius: var(--radius-full);
  color: var(--primary-light); font-size: .82rem; font-weight: 700;
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--primary-light);
  border-radius: 50%; animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.75); }
}

.hero__title {
  font-size: clamp(2.1rem,4.5vw,3.6rem);
  font-weight: 900; color: var(--hero-text);
  line-height: 1.15; letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero__title .grad {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem; color: var(--hero-muted);
  line-height: 1.85; max-width: 500px; margin-bottom: 2.25rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__social {
  margin-top: 2.75rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 1.25rem;
}
.hero__avs { display: flex; }
.hero__av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff;
  margin-inline-end: -10px;
}
.hero__avs .hero__av:first-child { margin-inline-end: 0; }
.av-a { background: linear-gradient(135deg,#5B6FE8,#8B9EF5); }
.av-b { background: linear-gradient(135deg,#16916a,#5FD4A8); }
.av-c { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.av-d { background: linear-gradient(135deg,#ec4899,#f9a8d4); }
.av-e { background: linear-gradient(135deg,#3b82f6,#93c5fd); }

.hero__social-text { color: var(--hero-muted); font-size: .82rem; }
.hero__social-text strong { color: #fff; font-weight: 800; }

/* ---- Kanban Mockup ---- */
.hero__visual { position: relative; }

.k-board {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 80px rgba(91,111,232,.15);
  animation: board-float 7s ease-in-out infinite;
}
@keyframes board-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.k-board__chrome {
  display: flex; align-items: center; gap: .45rem;
  margin-bottom: .85rem; padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.k-dot { width: 10px; height: 10px; border-radius: 50%; }
.k-dot--r { background: #ff5f57; }
.k-dot--y { background: #febc2e; }
.k-dot--g { background: #28c840; }
.k-board__chrome-title {
  color: rgba(255,255,255,.6); font-size: .72rem; font-weight: 600; margin-inline-start: auto;
}

.k-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }

.k-col-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .75rem;
  padding: .55rem .45rem .45rem;
}

.k-col__head {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; display: flex; align-items: center;
  gap: .4rem; margin-bottom: .5rem; padding: 0 .2rem;
}
.k-col__head--todo  { color: rgba(255,255,255,.4); }
.k-col__head--doing { color: var(--primary-light); }
.k-col__head--done  { color: var(--teal-light); }
.k-count {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.45);
  padding: .05rem .35rem; border-radius: var(--radius-full); font-size: .58rem; font-weight: 600;
}

.k-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(255,255,255,.08);
  border-radius: .625rem;
  margin-bottom: .4rem;
  overflow: hidden;
  transition: box-shadow .15s;
}
.k-card:last-child { margin-bottom: 0; }
.k-card:hover { background: rgba(255,255,255,.1); }

.k-card--high   { border-left-color: #ef4444; }
.k-card--medium { border-left-color: #f59e0b; }
.k-card--low    { border-left-color: #60a5fa; }
.k-card--done   {
  border-left-color: #22c55e;
  background: rgba(22,145,106,.1);
  border-color: rgba(22,145,106,.2);
  border-left-color: #22c55e;
}

.k-card__top {
  display: flex; align-items: flex-start; gap: .4rem;
  padding: .5rem .55rem .35rem;
}
.k-check {
  width: 11px; height: 11px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.2); flex-shrink: 0; margin-top: 1px;
  background: transparent;
}
.k-card--done .k-check {
  background: #22c55e; border-color: #22c55e;
}
.k-card p {
  flex: 1; font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.85);
  line-height: 1.45; margin: 0;
}
.k-card--done p { text-decoration: line-through; color: rgba(255,255,255,.3); }

.k-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 .55rem .4rem; gap: .35rem;
}
.k-meta-left  { display: flex; align-items: center; gap: .3rem; min-width: 0; flex-wrap: wrap; }
.k-meta-right { display: flex; align-items: center; gap: .3rem; flex-shrink: 0; }

.k-dot-tag {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.k-ticket {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.4);
  padding: .04rem .28rem; border-radius: 3px;
  font-size: .58rem; font-family: monospace;
}
.k-due { font-size: .6rem; font-weight: 500; color: rgba(255,255,255,.4); }
.k-due--late { color: #f87171; }

.k-avs-mini { display: flex; }
.k-av-mini {
  width: 17px; height: 17px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  font-size: .5rem; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; margin-inline-end: -5px;
}
.k-avs-mini .k-av-mini:first-child { margin-inline-end: 0; }

/* Floating notification widget */
.k-notif {
  position: absolute; bottom: -1rem; right: -2rem;
  background: rgba(20,15,40,.9); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: .75rem 1rem;
  display: flex; align-items: center; gap: .75rem;
  backdrop-filter: blur(16px); box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 190px; animation: notif-float 5s ease-in-out infinite;
}
@keyframes notif-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(.5deg); }
}
.k-notif__emoji { font-size: 1.4rem; }
.k-notif__title { color: #fff; font-size: .78rem; font-weight: 700; line-height: 1.3; }
.k-notif__sub   { color: rgba(255,255,255,.5); font-size: .68rem; }

/* Floating progress widget */
.k-progress-widget {
  position: absolute; top: -1.25rem; left: -2rem;
  background: rgba(20,15,40,.9); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: .85rem 1rem;
  backdrop-filter: blur(16px); box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 175px; animation: prog-float 6s ease-in-out infinite;
}
@keyframes prog-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.k-progress-widget__label {
  color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 600; margin-bottom: .45rem;
}
.k-progress-widget__val {
  color: #fff; font-size: 1.1rem; font-weight: 900; margin-bottom: .45rem;
}
.k-prog-bar {
  height: 5px; background: rgba(255,255,255,.08); border-radius: var(--radius-full); overflow: hidden;
}
.k-prog-fill {
  height: 100%; width: 72%; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal) 100%);
}
.k-progress-widget__sub { color: rgba(255,255,255,.35); font-size: .62rem; margin-top: .35rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding-block: 2.5rem;
}
.stats-bar__inner {
  display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap;
}
.stat-item {
  text-align: center; padding: .75rem 3.5rem;
  border-inline-start: 1px solid var(--border);
}
.stat-item:first-child { border-inline-start: none; }
.stat-item__num {
  font-size: 2rem; font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: .3rem;
}
.stat-item__label { font-size: .82rem; color: var(--text-3); font-weight: 600; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head {
  text-align: center; max-width: 620px;
  margin-inline: auto; margin-bottom: 3.5rem;
}
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: .9rem;
}
.sec-eyebrow::before, .sec-eyebrow::after {
  content:''; height: 1px; width: 1.75rem;
  background: var(--primary); opacity: .4;
}
.sec-title {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 900;
  color: var(--text-1); letter-spacing: -.025em; margin-bottom: .9rem; line-height: 1.2;
}
.sec-desc { font-size: .95rem; color: var(--text-3); line-height: 1.85; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 1.25rem;
}

.feat-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feat-card::after {
  content:''; position: absolute; inset-inline-start: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--teal) 100%);
  opacity: 0; border-radius: 0 2px 2px 0; transition: opacity .3s ease;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-20); }
.feat-card:hover::after { opacity: 1; }

.feat-card__icon {
  width: 54px; height: 54px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.ic-purple { background: var(--primary-10); }
.ic-teal   { background: var(--teal-10); }
.ic-amber  { background: rgba(245,158,11,.1); }
.ic-pink   { background: rgba(236,72,153,.1); }
.ic-blue   { background: rgba(59,130,246,.1); }
.ic-red    { background: rgba(239,68,68,.1); }

.feat-card__title {
  font-size: 1.05rem; font-weight: 800; color: var(--text-1); margin-bottom: .55rem;
}
.feat-card__desc { font-size: .875rem; color: var(--text-3); line-height: 1.8; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative;
}
.steps::before {
  content:''; position: absolute; top: 2.4rem;
  inset-inline-start: calc(100%/6); inset-inline-end: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal) 100%);
  opacity: .2; z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 4.75rem; height: 4.75rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: #fff; font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-bottom: 1.4rem;
  box-shadow: 0 8px 24px rgba(91,111,232,.4); position: relative;
}
.step__num::after {
  content:''; position: absolute; inset: -5px; border-radius: 50%;
  background: linear-gradient(135deg,rgba(91,111,232,.25) 0%,rgba(22,145,106,.25) 100%);
  z-index: -1; animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,100% { transform:scale(1); opacity:1; }
  50%      { transform:scale(1.2); opacity:0; }
}
.step__title { font-size: 1.1rem; font-weight: 800; color: var(--text-1); margin-bottom: .55rem; }
.step__desc  { font-size: .875rem; color: var(--text-3); line-height: 1.8; }

/* ============================================================
   DARK SHOWCASE
   ============================================================ */
.showcase {
  background: var(--hero-bg); padding-block: 6rem; position: relative; overflow: hidden;
}
.showcase__blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
}
.showcase__blob--1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle,rgba(91,111,232,.3) 0%,transparent 70%);
  top: 50%; right: -100px; transform: translateY(-50%);
}
.showcase__blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle,rgba(22,145,106,.25) 0%,transparent 70%);
  top: 50%; left: -80px; transform: translateY(-50%);
}
.showcase__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.showcase__title {
  font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 900;
  color: var(--hero-text); letter-spacing: -.025em; line-height: 1.2; margin-bottom: 1rem;
}
.showcase__title .grad {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.showcase__desc { color: var(--hero-muted); font-size: .95rem; line-height: 1.85; margin-bottom: 2rem; }
.showcase__list { display: flex; flex-direction: column; gap: .75rem; }
.showcase__list-item {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.75); font-size: .9rem;
}
.showcase__check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(22,145,106,.2); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 800;
}

.metrics-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl); padding: 1.5rem; backdrop-filter: blur(10px);
}
.metric-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-md);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  margin-bottom: .75rem;
}
.metric-item:last-child { margin-bottom: 0; }
.metric-icon {
  width: 42px; height: 42px; border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.metric-info { flex: 1; }
.metric-label { font-size: .72rem; color: var(--hero-muted); margin-bottom: .2rem; }
.metric-val   { font-size: 1.05rem; font-weight: 800; color: var(--hero-text); }
.metric-prog  {
  height: 4px; background: rgba(255,255,255,.08);
  border-radius: var(--radius-full); overflow: hidden; margin-top: .4rem;
}
.metric-prog-fill {
  height: 100%; border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal) 100%);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--surface-2); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.5rem;
}
.testi-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; position: relative;
}
.testi-card::before {
  content:'"'; position: absolute; top: -.5rem; inset-inline-end: 1.5rem;
  font-size: 5rem; font-family: Georgia,serif;
  color: var(--primary); opacity: .1; line-height: 1;
}
.testi-stars { display: flex; gap: .2rem; color: var(--accent); font-size: .85rem; margin-bottom: 1rem; }
.testi-text  { color: var(--text-2); font-size: .9rem; line-height: 1.85; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #fff;
}
.testi-name { font-weight: 800; font-size: .875rem; color: var(--text-1); }
.testi-role { font-size: .78rem; color: var(--text-3); margin-top: .1rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-sec {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3020 100%);
  padding-block: 6rem; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 42px 42px;
}
.cta-content { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.cta-title {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 900;
  color: #fff; letter-spacing: -.025em; line-height: 1.2; margin-bottom: 1rem;
}
.cta-desc { color: rgba(255,255,255,.68); font-size: .97rem; line-height: 1.85; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PRICING / PLANS
   ============================================================ */
.plans { background: var(--hero-bg); }
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem; align-items: start;
}
.plan-card {
  background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 2rem;
  position: relative; transition: all .3s ease;
}
.plan-card--featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91,111,232,.15), var(--shadow-xl);
}
.plan-card:not(.plan-card--featured):hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg);
  border-color: rgba(91,111,232,.4);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; padding: .3rem 1.5rem; border-radius: var(--radius-full);
  font-size: .78rem; font-weight: 800; white-space: nowrap;
}
.plan-name { font-size: 1.05rem; font-weight: 800; color: var(--hero-text); margin-bottom: .5rem; }
.plan-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: .5rem; }
.plan-price__amt {
  font-size: 2.25rem; font-weight: 900; color: var(--hero-text); line-height: 1;
}
.plan-card--featured .plan-price__amt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-price__cur { font-size: .85rem; color: var(--hero-muted); font-weight: 600; }
.plan-price__period { font-size: .82rem; color: var(--hero-muted); }
.plan-desc {
  font-size: .85rem; color: var(--hero-muted); margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); line-height: 1.75;
}
.plan-feats { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.plan-feat { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.75); }
.plan-feat-tick {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(22,145,106,.2); color: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a0612; color: rgba(255,255,255,.55); padding-block: 4.5rem 2rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo {
  display: flex; align-items: center; gap: .6rem;
  color: #fff; font-weight: 900; font-size: 1.2rem; margin-bottom: 1rem;
}
.footer__logo-image {
  display: block;
  width: auto;
  height: 2.75rem;
}
.footer__tagline { font-size: .875rem; line-height: 1.8; max-width: 270px; }
.footer__col-title { font-size: .82rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .6rem; }
.footer__link { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__link:hover { color: #fff; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--hero-bg); padding-block: 5.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(91,111,232,.22) 0%,transparent 65%);
}
.page-hero::after {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size: 34px 34px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(91,111,232,.18); border: 1px solid rgba(91,111,232,.35);
  border-radius: var(--radius-full); color: var(--primary-light);
  font-size: .8rem; font-weight: 700; padding: .35rem 1rem; margin-bottom: 1.5rem;
}
.page-hero__title {
  font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--hero-text);
  letter-spacing: -.025em; margin-bottom: 1rem; line-height: 1.2;
}
.page-hero__desc {
  color: var(--hero-muted); font-size: 1rem;
  max-width: 540px; margin-inline: auto; line-height: 1.85;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body { background: var(--hero-bg); }
.about-text { font-size: 1rem; color: var(--hero-muted); line-height: 1.95; }
.about-text p { margin-bottom: 1.5rem; }

.contact-info-card {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem; margin-top: 3rem;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2rem;
}
.contact-info-item { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(91,111,232,.2); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; margin-top: .1rem;
}
.contact-info-label { font-size: .75rem; color: var(--hero-muted); margin-bottom: .2rem; font-weight: 600; }
.contact-info-value { font-size: .9rem; font-weight: 700; color: var(--hero-text); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start;
}
.contact-sidebar {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem;
  position: sticky; top: 6rem;
}
.contact-sidebar__title {
  font-size: 1.05rem; font-weight: 800; color: var(--hero-text); margin-bottom: 1.5rem;
}
.contact-method { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.contact-method__icon {
  width: 38px; height: 38px; border-radius: var(--radius-xs);
  background: rgba(91,111,232,.2); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-method__label { font-size: .75rem; color: var(--hero-muted); margin-bottom: .15rem; font-weight: 600; }
.contact-method__val   { font-size: .875rem; font-weight: 700; color: var(--hero-text); }

.contact-form-card {
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form-card__title {
  font-size: 1.25rem; font-weight: 900; color: var(--hero-text); margin-bottom: 1.75rem;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: .45rem; }
.form-input {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--hero-text); background: rgba(255,255,255,.07);
  transition: all .2s ease; outline: none; direction: rtl;
}
.form-input:focus { border-color: var(--primary); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(91,111,232,.2); }
.form-input--error { border-color: #f87171; }
.form-input--error:focus { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,.2); }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-error { font-size: .78rem; color: #f87171; margin-top: .3rem; }
/* django-simple-captcha widget */
.captcha-widget { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.captcha-widget img { border-radius: 6px; border: 1px solid rgba(255,255,255,.15); height: 44px; }
.captcha-widget input[type="text"] {
  width: 120px; padding: .45rem .75rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07);
  color: var(--hero-text); font-size: .9rem; font-family: var(--font);
  outline: none; direction: ltr; letter-spacing: .1em;
}
.captcha-widget input[type="text"]:focus {
  border-color: var(--primary); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(91,111,232,.2);
}
.captcha-widget a { font-size: .78rem; color: var(--primary-light); text-decoration: underline; white-space: nowrap; }
.form-success {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(22,145,106,.15); border: 1px solid rgba(22,145,106,.3);
  border-radius: var(--radius-md); padding: 1.1rem 1.5rem;
  color: var(--teal-light); font-size: .9rem; font-weight: 700; margin-bottom: 1.5rem;
}

/* ============================================================
   POST DETAIL
   ============================================================ */
.post-header {
  background: var(--hero-bg); padding-block: 5rem 3rem;
  position: relative; overflow: hidden;
}
.post-header::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right,rgba(91,111,232,.18) 0%,transparent 60%);
}
.post-header::after {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size: 34px 34px;
}
.post-header__inner { position: relative; z-index: 1; }
.post-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.25rem; font-size: .82rem; color: var(--hero-muted);
}
.post-cat {
  background: rgba(91,111,232,.2); color: var(--primary-light);
  padding: .25rem .8rem; border-radius: var(--radius-full); font-weight: 700;
}
.post-title {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 900; color: var(--hero-text);
  letter-spacing: -.025em; line-height: 1.2; margin-bottom: 1rem;
}
.post-excerpt { color: var(--hero-muted); font-size: 1rem; line-height: 1.8; max-width: 680px; }
.post-cover {
  width: 100%; aspect-ratio: 16/7; object-fit: cover;
  border-radius: var(--radius-lg); margin-bottom: 3rem;
}
.post-body {
  font-size: 1rem; color: var(--text-2); line-height: 1.95;
  max-width: 720px; margin-inline: auto;
}
.post-body p { margin-bottom: 1.5rem; }
.post-assets {
  max-width: 720px; margin-inline: auto;
  margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border);
}
.asset-item { margin-bottom: 2rem; }
.asset-title { font-size: .875rem; font-weight: 700; color: var(--text-2); margin-bottom: .75rem; }
.asset-video { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-md); }
.asset-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.asset-file {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--primary-10); border: 1px solid var(--primary-20);
  color: var(--primary); padding: .6rem 1.25rem; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700; transition: all .2s ease;
}
.asset-file:hover { background: var(--primary-20); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .k-notif { right: 0; }
  .k-progress-widget { left: 0; }
  .showcase__content { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .section { padding-block: 3.5rem; }
  .hero { padding-block: 5rem 3rem; min-height: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .stats-bar__inner { flex-direction: column; gap: 0; }
  .stat-item { border-inline-start: none; border-top: 1px solid var(--border); width: 100%; padding: 1rem; }
  .stat-item:first-child { border-top: none; }
  .hero__actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .navbar__nav { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .k-cols { grid-template-columns: 1fr; }
  .k-notif, .k-progress-widget { display: none; }
  .contact-info-card { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

/* Hamburger button — hidden on desktop, shown via @media below */
.navbar__hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 2.5rem; height: 2.5rem; gap: 5px; flex-shrink: 0;
  padding: .25rem; border-radius: var(--radius-xs);
  transition: background .2s ease;
}
.navbar__hamburger:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.hamburger__bar {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.navbar--dark  .hamburger__bar { background: rgba(255,255,255,.8); }
.navbar--light .hamburger__bar { background: var(--text-2); }
.hamburger--open .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger--open .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger--open .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; top: 4.5rem; inset-inline: 0; bottom: 0; z-index: 99;
  display: flex; flex-direction: column;
  padding: .75rem 1.25rem 2rem;
  background: rgba(7,3,15,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.07);
  overflow-y: auto;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav--open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.mobile-nav__link {
  display: flex; align-items: center;
  padding: .875rem 1rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 3rem; transition: background .15s ease, color .15s ease;
}
.mobile-nav__link:last-of-type { border-bottom: none; margin-bottom: .25rem; }
.mobile-nav__link:active { background: rgba(255,255,255,.08); color: #fff; }
.mobile-nav__ctas {
  margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.09);
}
.mobile-nav__ctas .btn { justify-content: center; width: 100%; }

/* On desktop — truly remove from layout */
@media (min-width: 721px) { .mobile-nav { display: none !important; } }

/* On mobile — show hamburger, hide desktop actions */
@media (max-width: 720px) {
  .navbar__hamburger { display: flex; }
  .navbar__actions   { display: none; }
}

/* ---- Extra-small screens (<480px) ---- */
@media (max-width: 480px) {
  .section          { padding-block: 2.5rem; }
  .hero             { padding-block: 3.5rem 2rem; }
  .k-board          { font-size: .87rem; }
  .plan-card        { padding: 1.5rem; }
  .feat-card        { padding: 1.5rem; }
  .testi-card       { padding: 1.25rem; }
  .contact-form-card { padding: 1.5rem; }
  .page-hero        { padding-block: 3.5rem; }
  .btn-lg           { padding: .8rem 1.75rem; }
  .stat-item        { padding: .875rem 1rem; }
  .footer           { padding-block: 3rem 1.5rem; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
@keyframes fade-up {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim-fade-up { animation: fade-up .65s cubic-bezier(.16,1,.3,1) forwards; }
.d-1 { animation-delay: .1s; }
.d-2 { animation-delay: .2s; }
.d-3 { animation-delay: .3s; }
.d-4 { animation-delay: .4s; }
.d-5 { animation-delay: .5s; }
.d-6 { animation-delay: .6s; }
