/* =========================================================
   HBS BINA Landing Page
   Mobile-first, RTL, no external CSS libraries
   Brand color: #155DFC
   ========================================================= */
@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Estedad-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Estedad-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Estedad-ExtraBold.woff2") format("woff2");
  font-weight: 800 950;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #155DFC;
  --brand-dark: #0B43C7;
  --brand-soft: #EAF1FF;
  --brand-pale: #F5F8FF;
  --ink: #111827;
  --muted: #5D6677;
  --soft-text: #7A8495;
  --surface: #FFFFFF;
  --surface-2: #F6F8FC;
  --border: #E5EAF2;
  --success: #11875D;
  --warning: #B76E00;
  --danger: #C43D4C;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 10px 30px rgba(24, 42, 75, .07);
  --shadow-md: 0 22px 70px rgba(24, 42, 75, .12);
  --container: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Vazirmatn, IRANSansX, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(21, 93, 252, .28);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.5;
  letter-spacing: -.02em;
}

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

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

.section {
  position: relative;
  padding: 72px 0;
}

.section-soft {
  background: var(--surface-2);
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand);
  border-radius: 10px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(229, 234, 242, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 13px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.03em;
  box-shadow: 0 8px 22px rgba(21, 93, 252, .22);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: .03em;
}

.brand-copy small {
  color: var(--soft-text);
  font-size: 9px;
  margin-top: 3px;
  letter-spacing: .08em;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  margin-inline-start: auto;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  padding: 18px 20px 24px;
  display: grid;
  gap: 4px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: .2s ease;
}

.primary-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav a {
  padding: 12px 10px;
  border-radius: 10px;
  color: #384255;
  font-weight: 650;
}

.primary-nav a:hover {
  color: var(--brand);
  background: var(--brand-pale);
}

.header-cta {
  display: none !important;
}

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 26px rgba(21, 93, 252, .23);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 15px 34px rgba(21, 93, 252, .3);
}

.button-secondary {
  color: #155dfc;
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(24, 42, 75, .06);
}

.button-secondary:hover {
  border-color: rgba(21, 93, 252, .35);
  color: var(--brand);
}

.button-white {
  color: var(--brand);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.button-large {
  min-height: 54px;
  padding-inline: 22px;
}

/* Hero */
.hero {
  overflow: hidden;
  padding-top: 54px;
  background:
    linear-gradient(180deg, #FAFCFF 0%, #FFFFFF 82%),
    radial-gradient(circle at 70% 0%, rgba(21, 93, 252, .08), transparent 42%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  inset-inline-start: -210px;
  top: 70px;
  background: rgba(21, 93, 252, .06);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  inset-inline-end: -180px;
  bottom: 10px;
  background: rgba(21, 93, 252, .08);
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-weight: 850;
  font-size: 13px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  background: var(--brand-soft);
  border: 1px solid rgba(21, 93, 252, .12);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 93, 252, .1);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 3.2vw, 2.1rem);
  font-weight: 950;
}

.hero h1 span {
  color: var(--brand);
}

.hero-description {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-checks {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
  color: #394458;
  font-size: 14px;
  font-weight: 650;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-checks svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: var(--success);
  background: rgba(17, 135, 93, .1);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

/* Product mockup */
.product-preview {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: 8px 0 48px;
}

.browser-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #DFE7F2;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.browser-bar {
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7A8495;
  background: #F9FAFC;
  border-bottom: 1px solid #EDF0F5;
  font-size: 9px;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D4DAE4;
}

.browser-address {
  overflow: hidden;
  flex: 1;
  padding: 5px 9px;
  direction: ltr;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #fff;
  border: 1px solid #E7EBF1;
  border-radius: 7px;
}

.browser-status {
  color: var(--success);
}

.app-shell {
  min-height: 335px;
  display: flex;
  direction: ltr;
  background: #F4F7FB;
}

.app-sidebar {
  width: 42px;
  padding: 12px 8px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  color: #fff;
  background: #10213F;
}

.app-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: var(--brand);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 900;
}

.side-pill {
  width: 20px;
  height: 4px;
  background: rgba(255, 255, 255, .22);
  border-radius: 99px;
}

.side-pill.active {
  background: #fff;
}

.app-content {
  flex: 1;
  min-width: 0;
  padding: 14px;
  direction: rtl;
}

.app-heading {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-heading div {
  display: grid;
}

.app-heading small,
.metric-grid small,
.chart-title small,
.floating-card small {
  color: #7B8595;
  font-size: 8px;
}

.app-heading strong {
  font-size: 12px;
}

.app-badge {
  padding: 4px 7px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 6px;
  font-size: 7px;
  font-weight: 800;
}

.metric-grid {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.metric-grid article {
  min-width: 0;
  padding: 8px;
  display: grid;
  background: #fff;
  border: 1px solid #E6EAF1;
  border-radius: 9px;
}

.metric-grid strong {
  overflow: hidden;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chart-card {
  padding: 10px;
  background: #fff;
  border: 1px solid #E6EAF1;
  border-radius: 11px;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
}

.gradation-chart {
  width: 100%;
  height: auto;
  margin-top: 6px;
}

.grid-lines line {
  stroke: #EEF1F5;
  stroke-width: 1;
}

.target-band {
  fill: rgba(59, 130, 246, .09);
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 5;
  stroke-linecap: round;
}

.chart-points circle {
  fill: #fff;
  stroke: var(--brand);
  stroke-width: 4;
}

.chart-legend {
  display: flex;
  gap: 12px;
  color: #7A8495;
  font-size: 7px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-line {
  width: 12px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
}

.legend-band {
  width: 12px;
  height: 7px;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .2);
  border-radius: 2px;
}

.app-alert {
  margin-top: 8px;
  padding: 7px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7A4C00;
  background: #FFF8E7;
  border: 1px solid #F3E3B8;
  border-radius: 8px;
  font-size: 7px;
}

.app-alert svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-card {
  position: absolute;
  z-index: 2;
  min-width: 145px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #E5EAF2;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(24, 42, 75, .14);
  backdrop-filter: blur(10px);
}

.floating-card-one {
  inset-inline-start: 8px;
  bottom: 8px;
}

.floating-card-two {
  inset-inline-end: 6px;
  bottom: 52px;
}

.floating-card > div {
  display: grid;
  line-height: 1.45;
}

.floating-card strong {
  font-size: 10px;
}

.floating-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 9px;
}

.floating-icon.success {
  color: var(--success);
  background: rgba(17, 135, 93, .1);
}

.floating-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}



/* =========================================================
   HBS BINA Comparison Section
   Scoped classes — no conflict with existing feature cards
   ========================================================= */

.hbs-compare {
  background: #ffffff;
}

.hbs-compare__grid {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.hbs-compare__card {
  min-width: 0;
  height: 100%;
  padding: 24px;

  display: flex;
  flex-direction: column;

  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hbs-compare__card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 93, 252, 0.24);
  box-shadow: var(--shadow-sm);
}

/* کارت بدون نرم‌افزار */
.hbs-compare__card--without {
  background:
    linear-gradient(
      180deg,
      rgba(196, 61, 76, 0.025) 0%,
      #ffffff 42%
    );
}

/* کارت با نرم‌افزار */
.hbs-compare__card--with {
  background:
    linear-gradient(
      180deg,
      rgba(21, 93, 252, 0.045) 0%,
      #ffffff 42%
    );

  border-color: rgba(21, 93, 252, 0.24);
  box-shadow: 0 14px 40px rgba(21, 93, 252, 0.07);
}

/* سربرگ کارت */
.hbs-compare__header {
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.hbs-compare__title {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hbs-compare__title small {
  color: var(--soft-text);
  font-size: 12px;
  line-height: 1.7;
}

.hbs-compare__title h3 {
  margin: 0;

  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

/* آیکون بالای کارت */
.hbs-compare__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;

  display: grid;
  place-items: center;

  border-radius: 15px;
}

.hbs-compare__icon svg {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hbs-compare__icon--danger {
  color: var(--danger);
  background: rgba(196, 61, 76, 0.09);
}

.hbs-compare__icon--success {
  color: var(--success);
  background: rgba(17, 135, 93, 0.09);
}

/* توضیح ابتدایی کارت */
.hbs-compare__description {
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

/* فهرست ویژگی‌ها */
.hbs-compare__list {
  padding: 18px 0 0;

  display: grid;
  gap: 12px;

  list-style: none;
  border-top: 1px solid var(--border);
}

.hbs-compare__list li {
  position: relative;
  padding-inline-start: 27px;

  color: #4e596c;
  font-size: 13px;
  line-height: 1.9;
}

/* آیکون کنار هر سطر */
.hbs-compare__list li::before {
  position: absolute;
  inset-inline-start: 0;
  top: 3px;

  width: 18px;
  height: 18px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

/* علامت منفی */
.hbs-compare__card--without .hbs-compare__list li::before {
  content: "×";

  color: var(--danger);
  background: rgba(196, 61, 76, 0.09);
}

/* علامت مثبت */
.hbs-compare__card--with .hbs-compare__list li::before {
  content: "✓";

  color: var(--success);
  background: rgba(17, 135, 93, 0.09);
}

/* تبلت و دسکتاپ */
@media (min-width: 768px) {
  .hbs-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .hbs-compare__card {
    padding: 28px;
  }

  .hbs-compare__title h3 {
    font-size: 22px;
  }

  .hbs-compare__description {
    min-height: 84px;
  }

  .hbs-compare__list li {
    font-size: 14px;
  }
}

/* نمایشگرهای بزرگ */
@media (min-width: 1100px) {
  .hbs-compare__grid {
    gap: 24px;
  }

  .hbs-compare__card {
    padding: 30px;
  }
}




/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--border);
  background: #fff;
}

.trust-grid {
  padding-block: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-grid div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #465166;
  font-size: 12px;
  font-weight: 750;
}

.trust-grid svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Shared headings */
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-kicker {
  margin-bottom: 10px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.section-kicker.light {
  color: #D9E6FF;
}

.section h2 {
  margin-bottom: 16px;
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  font-weight: 930;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-inline: auto;
}

.section-copy p {
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 850;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Problem comparison */
.split-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.comparison-mini {
  display: grid;
  gap: 12px;
}

.mini-panel {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.mini-panel.muted {
  background: #FAFBFD;
}

.mini-panel.accent {
  background: linear-gradient(145deg, #F3F7FF, #FFFFFF);
  border-color: rgba(21, 93, 252, .24);
  box-shadow: var(--shadow-sm);
}

.mini-panel-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-panel h3 {
  margin: 0;
  font-size: 18px;
}

.status-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.status-icon.danger {
  color: var(--danger);
  background: rgba(196, 61, 76, .1);
}

.status-icon.success {
  color: var(--success);
  background: rgba(17, 135, 93, .1);
}

.mini-panel ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.mini-panel li {
  position: relative;
  padding-inline-start: 18px;
}

.mini-panel li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .8em;
  width: 6px;
  height: 6px;
  background: #AAB3C2;
  border-radius: 50%;
}

.mini-panel.accent li::before {
  background: var(--brand);
}

.comparison-arrow {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 50%;
  transform: rotate(90deg);
}

.comparison-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Workflow */
.workflow-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: workflow;
}

.workflow-item {
  position: relative;
  padding: 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(24, 42, 75, .04);
}

.step-number {
  position: absolute;
  inset-inline-end: 16px;
  top: 12px;
  color: #E5EBF5;
  font-size: 26px;
  font-weight: 950;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 14px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-item h3 {
  margin-bottom: 7px;
  padding-inline-end: 42px;
  font-size: 17px;
}

.workflow-item p {
  margin: 0;
  font-size: 13px;
}

.little-p{
  font-size:14px;
  color:#0021de;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  border-color: rgba(21, 93, 252, .25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 15px;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.feature-card p {
  font-size: 14px;
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 15px 0 0;
  display: grid;
  gap: 8px;
  list-style: none;
  border-top: 1px solid var(--border);
  color: #4E596C;
  font-size: 13px;
}

.feature-card li {
  position: relative;
  padding-inline-start: 18px;
}

.feature-card li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--success);
  font-weight: 900;
}

/* Product chart */
.product-section {
  overflow: hidden;
}

.product-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.product-visual {
  min-width: 0;
}

.data-panel {
  overflow: hidden;
  padding: 16px;
  background: #fff;
  border: 1px solid #DFE7F2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.data-panel-top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.data-panel-top small {
  color: var(--soft-text);
  font-size: 10px;
}

.data-panel-top h3 {
  margin: 2px 0 0;
  font-size: 14px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 9px;
  font-weight: 800;
}

.live-badge i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(17, 135, 93, .1);
}

.large-chart {
  padding: 8px 0;
}

.large-chart svg {
  width: 100%;
}

.large-grid line {
  stroke: #EEF1F5;
  stroke-width: 1;
}

.band-fill {
  fill: rgba(21, 93, 252, .075);
}

.line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
}

.line-one { stroke: #6B7280; }
.line-two { stroke: #F59E0B; }
.line-three { stroke: #8B5CF6; }
.line-final { stroke: var(--brand); stroke-width: 5; }

.data-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  color: #6B7484;
  font-size: 9px;
}

.data-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.data-legend i {
  width: 13px;
  height: 3px;
  border-radius: 99px;
}

.data-legend .c1 { background: #6B7280; }
.data-legend .c2 { background: #F59E0B; }
.data-legend .c3 { background: #8B5CF6; }
.data-legend .c4 { background: var(--brand); }
.data-legend .cb {
  height: 7px;
  background: rgba(21, 93, 252, .1);
  border: 1px solid rgba(21, 93, 252, .2);
}

.benefit-list {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
}

.benefit-list > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 12px;
}

.benefit-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
}

.benefit-list strong {
  display: block;
  margin-bottom: 2px;
}

.benefit-list p {
  margin: 0;
  font-size: 13px;
}

/* Report */
.report-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.report-tags {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-tags span {
  padding: 7px 10px;
  color: #36506F;
  background: #fff;
  border: 1px solid #DCE4EF;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.report-preview {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
}

.paper-shadow {
  position: absolute;
  inset: 26px -8px -8px 26px;
  background: #DCE5F4;
  border-radius: 18px;
  transform: rotate(-3deg);
}

.report-paper {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: #fff;
  border: 1px solid #DEE5EE;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.report-paper header {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--brand);
}

.report-paper header > div:last-child {
  display: grid;
  text-align: left;
  direction: ltr;
}

.report-paper header small {
  color: var(--soft-text);
  font-size: 8px;
}

.report-paper header strong {
  font-size: 9px;
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 7px;
}

.report-brand span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 900;
}

.report-brand strong {
  font-size: 11px !important;
}

.report-title {
  margin: 14px 0 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  background: #F6F8FC;
  border-radius: 9px;
}

.report-title div {
  display: grid;
}

.report-title small {
  color: var(--soft-text);
  font-size: 8px;
}

.report-title strong {
  font-size: 10px;
}

.report-title > span {
  color: #677285;
  font-size: 8px;
}

.report-metrics {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.report-metrics div {
  min-width: 0;
  padding: 7px;
  display: grid;
  background: var(--brand-pale);
  border: 1px solid #E4EBF8;
  border-radius: 7px;
  text-align: center;
}

.report-metrics small {
  color: #6D7789;
  font-size: 7px;
}

.report-metrics strong {
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.report-table {
  overflow: hidden;
  border: 1px solid #E3E8F0;
  border-radius: 9px;
}

.report-table .tr {
  padding: 7px 9px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid #E8ECF2;
  font-size: 8px;
}

.report-table .tr:last-child {
  border-bottom: 0;
}

.report-table .th {
  color: #fff;
  background: #203A61;
  font-weight: 850;
}

.report-note {
  margin-top: 10px;
  padding: 8px;
  color: #6F5A26;
  background: #FFF9E9;
  border-radius: 7px;
  font-size: 7px;
}

/* Audience */
.audience-grid {
  display: grid;
  gap: 12px;
}

.audience-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.audience-grid article > span {
  position: absolute;
  inset-inline-end: 14px;
  top: 4px;
  color: #EEF2F8;
  font-size: 42px;
  font-weight: 950;
}

.audience-grid h3 {
  position: relative;
  margin-bottom: 8px;
  font-size: 17px;
}

.audience-grid p {
  position: relative;
  margin: 0;
  font-size: 13px;
}

/* FAQ */
.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  gap: 36px;
}

.faq-intro .button {
  margin-top: 8px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.accordion details[open] {
  border-color: rgba(21, 93, 252, .26);
  box-shadow: 0 10px 30px rgba(24, 42, 75, .06);
}

.accordion summary {
  position: relative;
  padding: 17px 45px 17px 52px;
  color: #243047;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--brand-soft);
  border-radius: 8px;
  transform: translateY(-50%);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.answer {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}

/* CTA */
.final-cta {
  padding-top: 20px;
}

.final-cta-box {
  position: relative;
  overflow: hidden;
  padding: 34px 24px;
  display: grid;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0B43C7 65%, #073AAB);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(21, 93, 252, .3);
}

.final-cta-box h2,
.final-cta-box p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.final-cta-box h2 {
  margin-bottom: 12px;
}

.final-cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.cta-pattern {
  position: absolute;
  width: 360px;
  height: 360px;
  inset-inline-end: -160px;
  top: -170px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(255, 255, 255, .04),
    0 0 0 72px rgba(255, 255, 255, .03);
}

.final-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.final-actions small {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  text-align: center;
}

/* Technical note */
.technical-note {
  padding: 0 0 56px;
}

.note-inner {
  padding: 16px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  background: #FFF9EA;
  border: 1px solid #F3E2B2;
  border-radius: 14px;
}

.note-inner svg {
  width: 24px;
  height: 24px;
  color: var(--warning);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note-inner p {
  margin: 0;
  color: #6E5B2C;
  font-size: 12px;
}

/* Footer */
.site-footer {
  color: #D7DFEC;
  background: #0D1B32;
}

.footer-grid {
  padding-block: 48px 32px;
  display: grid;
  gap: 34px;
}

.brand-footer .brand-mark {
  box-shadow: none;
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #9DAABD;
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a:not(.brand) {
  width: fit-content;
  color: #9DAABD;
  font-size: 12px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  padding-block: 18px 92px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: #7F8CA1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  z-index: 900;
  inset-inline: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  min-height: 52px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  box-shadow: 0 15px 36px rgba(21, 93, 252, .36);
  font-weight: 900;
}

.mobile-sticky-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Reveal animation: activated only by JS */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

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

/* Tablet */
@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }

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

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-checks {
    grid-template-columns: repeat(3, max-content);
    gap: 18px;
  }

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

  .workflow-item {
    grid-template-columns: 54px 1fr;
    padding: 24px;
  }

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

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

  .final-cta-box {
    padding: 44px;
  }

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

  .footer-bottom {
    padding-bottom: 18px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

/* Desktop */
@media (min-width: 960px) {
  :root {
    --header-height: 78px;
  }

  .section {
    padding: 104px 0;
  }

  .site-header {
    height: var(--header-height);
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    margin-inline-start: auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .header-cta {
    display: inline-flex !important;
    min-height: 44px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    padding-top: 74px;
    display: grid;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 56px;
  }

  .hero-description {
    font-size: 16px;
  }

  .product-preview {
    padding-bottom: 72px;
  }

  .browser-bar {
    height: 48px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .browser-dots span {
    width: 9px;
    height: 9px;
  }

  .app-shell {
    min-height: 430px;
  }

  .app-sidebar {
    width: 58px;
    padding-top: 17px;
  }

  .app-logo {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .app-content {
    padding: 20px;
  }

  .app-heading {
    margin-bottom: 16px;
  }

  .app-heading small,
  .metric-grid small,
  .chart-title small,
  .floating-card small {
    font-size: 10px;
  }

  .app-heading strong {
    font-size: 15px;
  }

  .app-badge {
    padding: 5px 9px;
    font-size: 9px;
  }

  .metric-grid {
    gap: 10px;
    margin-bottom: 12px;
  }

  .metric-grid article {
    padding: 11px;
  }

  .metric-grid strong {
    font-size: 13px;
  }

  .chart-card {
    padding: 14px;
  }

  .chart-title {
    font-size: 12px;
  }

  .chart-legend {
    font-size: 9px;
  }

  .app-alert {
    padding: 9px 11px;
    font-size: 9px;
  }

  .floating-card {
    min-width: 180px;
    padding: 12px;
  }

  .floating-card strong {
    font-size: 13px;
  }

  .floating-card-one {
    inset-inline-start: -18px;
  }

  .floating-card-two {
    inset-inline-end: -12px;
    bottom: 82px;
  }

  .trust-grid div {
    justify-content: center;
    font-size: 13px;
  }

  .split-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: 72px;
  }

  .comparison-mini {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .comparison-arrow {
    transform: none;
  }

  .workflow-list {
    grid-template-columns: repeat(5, 1fr);
    max-width: none;
    gap: 12px;
  }

  .workflow-item {
    min-height: 250px;
    padding: 20px;
    display: block;
  }

  .workflow-item::after {
    content: "";
    position: absolute;
    inset-inline-start: calc(100% + 2px);
    top: 43px;
    width: 10px;
    height: 1px;
    background: #CDD6E5;
  }

  .workflow-item:last-child::after {
    display: none;
  }

  .step-number {
    inset-inline-end: 14px;
    top: 13px;
  }

  .step-icon {
    margin-bottom: 30px;
  }

  .workflow-item h3 {
    padding-inline-end: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 72px;
  }

  .data-panel {
    padding: 22px;
  }

  .data-panel-top h3 {
    font-size: 18px;
  }

  .data-panel-top small,
  .live-badge {
    font-size: 11px;
  }

  .data-legend {
    font-size: 11px;
  }

  .report-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
  }

  .report-paper {
    padding: 24px;
  }

  .report-paper header small,
  .report-title small {
    font-size: 10px;
  }

  .report-paper header strong {
    font-size: 11px;
  }

  .report-brand strong {
    font-size: 14px !important;
  }

  .report-title strong {
    font-size: 12px;
  }

  .report-title > span {
    font-size: 10px;
  }

  .report-metrics small {
    font-size: 9px;
  }

  .report-metrics strong,
  .report-table .tr {
    font-size: 10px;
  }

  .report-note {
    font-size: 9px;
  }

  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-grid {
    grid-template-columns: .78fr 1.22fr;
    gap: 72px;
    align-items: start;
  }

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

  .accordion summary {
    padding: 20px 52px 20px 58px;
    font-size: 15px;
  }

  .answer {
    padding: 0 22px 20px;
    font-size: 14px;
  }

  .final-cta {
    padding-top: 38px;
  }

  .pt {
  padding-top: 10px;
  }
  
  
  .final-cta-box {
    grid-template-columns: 1.4fr .8fr;
    align-items: center;
    padding: 54px;
  }

  .final-actions small {
    text-align: right;
  }

  .technical-note {
    padding-bottom: 80px;
  }

  .note-inner {
    padding: 18px 20px;
  }

  .note-inner p {
    font-size: 13px;
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  .hero-grid {
    gap: 76px;
  }

  .browser-card {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
    transform-origin: center;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .mobile-sticky-cta,
  .final-cta,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .section {
    padding: 32px 0;
    break-inside: avoid;
  }
}
