
@font-face {
    font-family:vazirmatn;
    font-style:normal;
    font-weight:500;
    src:url("/register_files/fonts/Vazirmatn-FD-Medium.woff2") format("woff2"),
        url("/register_files/fonts/Vazirmatn-FD-Medium.ttf") format("truetype")
}
@font-face {
    font-family:Vazirmatn-FD;
    font-style:normal;
    font-weight:500;
    src:url("/register_files/fonts/Vazirmatn-FD-Medium.woff2") format("woff2"),
        url("/register_files/fonts/Vazirmatn-FD-Medium.ttf") format("truetype")
}

:root {
  --primary-blue: #003366;
  --primary-purple: #071236;
  --primary-green: #66cc66;
  --light-blue: #dbeafe;
  --neutral-1000: #ff6600;

  --white: #ffffff;
  --ink: #071236;
  --text: #1e2b49;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --surface: #1e2b49;
  --surface-soft: #eff6ff;
  --surface-blue: #eff6ff;
  --border: rgba(7, 18, 54, 0.10);
  --border-strong: rgba(7, 18, 54, 0.18);
  --shadow-sm: 0 10px 26px rgba(7, 18, 54, 0.08);
  --shadow-md: 0 22px 55px rgba(7, 18, 54, 0.14);
  --shadow-lg: 0 30px 90px rgba(7, 18, 54, 0.20);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
  --header-height: 82px;
  --ease: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  direction: rtl;
  text-align: right;
  font-family: vazirmatn, Vazir, Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(219, 234, 254, 0.68), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

ul,
ol,
dl,
dd,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

p {
  color: var(--muted);
}

::selection {
  background: rgba(102, 204, 102, 0.34);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(7, 18, 54, 0.08);
  backdrop-filter: blur(20px);
}

.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-purple);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background:
    linear-gradient(145deg, var(--primary-blue), var(--primary-purple));
  box-shadow: 0 12px 28px rgba(0, 51, 102, 0.22);
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(7, 18, 54, 0.08);
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.72);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav a:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 15px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-purple);
  transition: transform var(--ease), opacity var(--ease);
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), #4caf50 48%, #2f8d3c);
  box-shadow: 0 14px 30px rgba(102, 204, 102, 0.30);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(102, 204, 102, 0.38);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  color: var(--primary-purple);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--surface-blue);
}

.btn-outline {
  color: var(--primary-blue);
  border-color: rgba(0, 51, 102, 0.16);
  background: var(--white);
}

.btn-outline:hover {
  border-color: rgba(0, 51, 102, 0.30);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  color: var(--primary-purple);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 18, 54, 0.12);
}

.btn-large {
  min-height: 54px;
  padding-inline: 26px;
}

.section-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 70px 0 52px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 24%, rgba(102, 204, 102, 0.22), transparent 20rem),
    radial-gradient(circle at 76% 12%, rgba(255, 102, 0, 0.18), transparent 18rem),
    radial-gradient(circle at 26% 85%, rgba(219, 234, 254, 0.14), transparent 24rem),
    linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 56%, #022244 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 32%;
  background: var(--white);
  border-radius: 70% 70% 0 0;
  filter: blur(1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.eyebrow {
  color: var(--primary-green);
  background: rgba(102, 204, 102, 0.12);
  border: 1px solid rgba(102, 204, 102, 0.22);
  margin-bottom: 22px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent);
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(1.85rem, 2.8vw, 3.95rem);
  line-height: 1.16;
  letter-spacing: -0.075em;
  color: var(--white);
}

.hero-lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 640px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-stats dt {
  font-size: 1.3rem;
  font-weight: 1000;
  color: var(--white);
}

.hero-stats dd {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: center;
}

.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px);
  color: var(--ink);
}

.dashboard-card-main {
  position: relative;
  padding: 24px;
  transform: rotate(-1deg);
}

.dashboard-topbar,
.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-topbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary-green);
  box-shadow: 0 0 0 7px rgba(102, 204, 102, 0.18);
}

.dashboard-date,
.muted-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.dashboard-tabs span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  background: #f1f5f9;
  font-size: 0.84rem;
  font-weight: 900;
}

.dashboard-tabs .is-active {
  color: var(--white);
  background: var(--primary-blue);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.metric-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.metric-card span,
.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.metric-card strong,
.floating-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.5rem;
  color: var(--primary-purple);
  letter-spacing: -0.03em;
}

.metric-card.accent-green {
  background: linear-gradient(180deg, rgba(102, 204, 102, 0.20), #ffffff);
}

.metric-card.accent-orange {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.16), #ffffff);
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.kanban-column {
  min-height: 210px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #f8fafc;
}

.column-title {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-weight: 1000;
  font-size: 0.84rem;
}

.kanban-column p {
  padding: 12px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(7, 18, 54, 0.06);
  box-shadow: 0 8px 18px rgba(7, 18, 54, 0.05);
  color: #334155;
  font-size: 0.84rem;
  line-height: 1.7;
}

.kanban-column p + p {
  margin-top: 10px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 170px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.floating-card-a {
  inset-block-start: 40px;
  inset-inline-start: -14px;
}

.floating-card-b {
  inset-block-end: 32px;
  inset-inline-end: -14px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.trust-grid strong {
  color: var(--primary-blue);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(72px, 8vw, 118px) 0;
}

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

.section-heading.compact {
  max-width: 620px;
}

.section-kicker {
  color: var(--primary-blue);
  background: var(--light-blue);
  margin-bottom: 14px;
}

.section-kicker.light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

.section-heading h2,
.product-copy h2,
.faq-copy h2,
.cta-card h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 2.1vw, 3.2rem);
  line-height: 1.28;
  letter-spacing: -0.06em;
}

.section-heading p,
.product-copy p,
.faq-copy p,
.cta-card p {
  margin-top: 15px;
  font-size: 1.04rem;
}

.features-grid,
.pricing-grid,
.blog-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.pricing-card,
.blog-card,
.step-card,
.use-case-grid article,
.faq-item,
.testimonials-grid blockquote {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 12px 34px rgba(7, 18, 54, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.feature-card:hover,
.pricing-card:hover,
.blog-card:hover,
.step-card:hover,
.use-case-grid article:hover,
.testimonials-grid blockquote:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 51, 102, 0.20);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--primary-blue);
  background: linear-gradient(145deg, var(--light-blue), #ffffff);
  border: 1px solid rgba(0, 51, 102, 0.08);
  font-weight: 1000;
}

.feature-card h3,
.step-card h3,
.pricing-card h3,
.blog-card h3 {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.feature-card p,
.step-card p,
.pricing-card p,
.blog-card p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.product-section {
  background:
    radial-gradient(circle at top right, rgba(219, 234, 254, 0.64), transparent 32rem),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.product-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.product-copy {
  max-width: 540px;
}

.product-copy .btn {
  margin-top: 28px;
}

.product-dashboard {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  border-color: var(--border);
}

.progress-header h3 {
  margin-top: 4px;
  font-size: 1.45rem;
  color: var(--primary-purple);
}

.progress-header strong {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(102, 204, 102, 0.15);
  color: #227a34;
  font-size: 1.4rem;
}

.progress-bar {
  height: 12px;
  margin-top: 24px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

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

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mini-stats div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--primary-blue);
  font-size: 1.35rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.task-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.task-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: #334155;
  font-weight: 800;
}

.tag {
  order: 2;
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 1000;
}

.tag.doing {
  color: var(--primary-blue);
  background: var(--light-blue);
}

.tag.done {
  color: #227a34;
  background: rgba(102, 204, 102, 0.16);
}

.tag.urgent {
  color: #a14300;
  background: rgba(255, 102, 0, 0.14);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset-block-start: -60px;
  inset-inline-start: -60px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.70);
}

.step-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 22px;
  color: rgba(0, 51, 102, 0.18);
  font-size: 3.65rem;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.08em;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.use-case-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff 55%, #ffffff);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.use-case-grid article {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.use-case-grid strong {
  color: var(--primary-purple);
  font-size: 1.05rem;
}

.use-case-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(102, 204, 102, 0.12), transparent 22rem),
    radial-gradient(circle at 88% 30%, rgba(255, 102, 0, 0.10), transparent 23rem),
    #f8fbff;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 30px;
}

.pricing-card.featured {
  border-color: rgba(102, 204, 102, 0.45);
  background:
    linear-gradient(180deg, rgba(102, 204, 102, 0.13), rgba(255, 255, 255, 0.94) 32%),
    var(--white);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-15px);
}

.plan-badge {
  position: absolute;
  inset-block-start: 22px;
  inset-inline-end: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--neutral-1000);
  font-size: 0.78rem;
  font-weight: 1000;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 26px;
  color: var(--primary-purple);
}

.price strong {
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.pricing-card li {
  position: relative;
  padding-inline-start: 28px;
  color: #334155;
  font-weight: 800;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--primary-green);
  font-weight: 1000;
}

.pricing-card li.muted-item::before {
  content: "×";
  color: var(--muted-2);
}

.muted-item {
  color: var(--muted-2) !important;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.testimonials-section {
  background: var(--white);
}

.testimonials-grid blockquote {
  padding: 28px;
}

.testimonials-grid p {
  color: #334155;
  font-size: 1rem;
}

.testimonials-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--primary-blue);
  font-style: normal;
  font-weight: 1000;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
}

.blog-thumb {
  height: 160px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 102, 0, 0.24), transparent 8rem),
    linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
  color: var(--white);
}

.blog-thumb span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 1000;
}

.blog-card time,
.blog-card h3,
.blog-card p,
.blog-card a {
  margin-inline: 22px;
}

.blog-card time {
  display: block;
  margin-top: 22px;
  color: var(--neutral-1000);
  font-size: 0.84rem;
  font-weight: 1000;
}

.blog-card h3 {
  margin-top: 10px;
  min-height: 86px;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--primary-blue);
  font-weight: 1000;
}

.blog-card a::after {
  content: "←";
  margin-inline-start: 8px;
  transition: transform var(--ease);
}

.blog-card a:hover::after {
  transform: translateX(-4px);
}

.faq-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(219, 234, 254, 0.8), transparent 30rem),
    #ffffff;
}

.faq-grid {
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: transparent;
  color: var(--primary-purple);
  text-align: right;
  font-weight: 1000;
}

.faq-item button span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-blue);
  transition: transform var(--ease), background var(--ease);
}

.faq-item button[aria-expanded="true"] span {
  background: var(--neutral-1000);
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 24px 22px;
}

.faq-panel p {
  max-width: 720px;
}

.cta-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 16%, rgba(102, 204, 102, 0.28), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(255, 102, 0, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset-block-end: -90px;
  inset-inline-start: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  z-index: -1;
}

.cta-card h2,
.cta-card p {
  color: var(--white);
  max-width: 760px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--primary-purple);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  background: linear-gradient(145deg, var(--primary-green), var(--primary-blue));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 34px;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ease);
}

.site-footer a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 20px auto 20px;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  }

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

  .nav a {
    padding: 14px 16px;
  }

  .header-actions {
    justify-self: end;
  }

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

  .hero-content {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 780px);
    min-height: auto;
    margin-inline: auto;
  }

  .floating-card-a {
    inset-inline-start: 14px;
  }

  .floating-card-b {
    inset-inline-end: 14px;
  }

  .product-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-copy,
  .faq-copy {
    max-width: 760px;
  }

  .faq-copy {
    position: static;
  }

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

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

@media (min-width: 768px) and (max-width: 1023px) {
  .features-grid,
  .pricing-grid,
  .blog-grid,
  .testimonials-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
  background: var(--white);
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .header-actions .btn-primary {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .section-hero {
    min-height: auto;
    padding: 44px 0 76px;
  }

  .hero-content {
    text-align: right;
  }

  .eyebrow {
    margin-inline: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 2.8vw, 3.2rem);
    letter-spacing: -0.065em;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-card-main {
    padding: 16px;
    border-radius: 24px;
    transform: none;
  }

  .dashboard-metrics,
  .kanban-board,
  .mini-stats,
  .features-grid,
  .pricing-grid,
  .blog-grid,
  .testimonials-grid,
  .steps-grid,
  .use-case-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .kanban-column {
    min-height: auto;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .trust-strip {
    margin-top: -48px;
  }

  .section-heading {
    text-align: right;
    margin-bottom: 28px;
  }

  .section-kicker {
    margin-inline: 0;
  }

  .section-heading h2,
  .product-copy h2,
  .faq-copy h2,
  .cta-card h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  }

  .section {
    padding: 64px 0;
  }

  .product-dashboard,
  .feature-card,
  .pricing-card,
  .step-card,
  .testimonials-grid blockquote {
    padding: 22px;
  }

  .task-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .tag {
    order: 0;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .pricing-card {
    min-height: auto;
  }

  .blog-card h3 {
    min-height: auto;
  }

  .faq-item button {
    min-height: 64px;
    padding: 18px;
  }

  .faq-panel {
    padding-inline: 18px;
  }

  .cta-card {
    border-radius: 28px;
  }

  .cta-actions {
    display: grid;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .header-actions {
    display: none;
  }

  .header-shell {
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    justify-self: end;
  }

  .dashboard-topbar,
  .progress-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

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


@media (max-width: 768px) {

    .img_logo {
  margin-top: -46px!important;
  margin-bottom: -41px!important;
}
}


@media (max-width: 600px) {
.img_logo {
  margin-top: -46px!important;
  margin-bottom: -41px!important;
}
}



.img_logo{
    margin-top: -20px;
    margin-bottom: -20px;
    width: 200px;
}

.footer-enamad img {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
}



.site-footer {
    padding: 54px 0 24px;
    background: #071236;
    color: #fff
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 24px
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .72)
}

.site-footer a {
    display: block;
    margin-top: 10px;
    text-decoration: none
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1.05rem
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62)
}



@media (max-width: 991px) {
  .site-header nav,
  .site-header .nav-menu,
  .site-header .menu,
  .site-header ul {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-header nav a,
  .site-header .nav-menu a,
  .site-header .menu a {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .site-header ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
}


.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  will-change: transform;
}

body {
  padding-top: var(--header-height, 90px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-visible {
  transform: translateY(0);
}
