/* =========================================================
   TOLERA — Main Styles
   Responsive: mobile / tablet / desktop
   ========================================================= */

:root {
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-soft: #EEF2FF;
  --text: #111827;
  /* --muted: #667085; */
  /* --muted-2: #98A2B3; */
  --muted: #000;
  --muted-2: #000;
  --border: #E7EAF0;
  --surface: #FFFFFF;
  --surface-2: #F8F9FC;
  --success: #16A34A;
  --warning: #D97706;
  --shadow-sm: 0 8px 30px rgba(16, 24, 40, .06);
  --shadow-md: 0 18px 55px rgba(16, 24, 40, .10);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Vazirmatn", "Inter", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.8;
  overflow-x: hidden;
}

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


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


button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}


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

.section {
  padding: 110px 0;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 234, 240, .8);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  font-family: "Inter", sans-serif;
  box-shadow: 0 8px 20px rgba(79, 70, 229, .22);
}

.brand-name {
  font-size: 20px;
}


.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color .2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #475467;
}


.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(79, 70, 229, .18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 32px rgba(79, 70, 229, .25);
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--border);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.mobile-menu {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: #475467;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 8px;
}

.mobile-menu.open {
  display: block;
}

.hero {
  padding-top: 92px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 15% 10%, rgba(79, 70, 229, .08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fbfbfe 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
  direction: ltr;
}

.hero-copy {
  direction: rtl;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}


.hero h1 {
  max-width: 650px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 800;
}

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

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  gap: 15px;
  direction: ltr;
  font-family: "Inter", sans-serif;
  color: #98A2B3;
  font-size: 11px;
  font-weight: 700;
  margin-top: 26px;
}

.hero-note span:nth-child(2) {
  color: #667085;
}

.hero-note span:nth-child(3) {
  color: var(--primary);
}

.hero-product {
  position: relative;
  direction: ltr;
  min-width: 0;
}

.window-glow {
  position: absolute;
  inset: 10% 5%;
  background: rgba(79, 70, 229, .18);
  filter: blur(55px);
  border-radius: 50%;
}

.app-window {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #DDE1EA;
  border-radius: 18px;
  box-shadow: 0 35px 90px rgba(16, 24, 40, .15);
}

.app-topbar {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  background: #F7F8FA;
  border-bottom: 1px solid #E6E8ED;
  color: #667085;
  font-family: "Inter", sans-serif;
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D0D5DD;
}


.app-status {
  margin-left: auto;
  color: var(--success);
  font-size: 9px;
}

.app-body {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 390px;
  max-height: 400px;
}

.mock-sidebar {
  background: #111827;
  padding: 18px 12px;
  color: #CBD5E1;
}

.mock-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 25px;
}

.mock-logo span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 8px;
  margin: 4px 0;
  border-radius: 7px;
  font-family: "Vazirmatn", sans-serif;
  font-size: 9px;
}

.mock-nav b {
  font-size: 12px;
}

.mock-nav.active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.mock-content {
  padding: 25px;
  direction: rtl;
  background: #fff;
}

.mock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-heading small {
  color: #98A2B3;
  font-size: 9px;
}

.mock-heading h3 {
  font-size: 15px;
  margin-top: 3px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: "Inter";
  font-size: 10px;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.stat-card {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.stat-card small {
  display: block;
  color: #98A2B3;
  font-size: 7px;
}

.stat-card strong {
  display: inline-block;
  font-family: "Inter";
  font-size: 20px;
  margin-top: 3px;
}

.stat-card em {
  display: block;
  color: var(--success);
  font-style: normal;
  font-family: "Inter";
  font-size: 7px;
}

.mock-panel {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
}


.panel-head {
  display: flex;
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 8px;
}

.panel-head span {
  color: var(--primary);
}

.mock-table {
  font-size: 7px;
}

.mock-table>div {
  display: grid;
  grid-template-columns: 1.3fr 1fr .5fr;
  padding: 8px 12px;
  gap: 8px;
  border-bottom: 1px solid #F1F2F5;
}

.mock-table>div:last-child {
  border-bottom: 0;
}

.mock-table b {
  color: #98A2B3;
  font-weight: 600;
}

.mock-table mark {
  width: max-content;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 6px;
}

.mock-table .ok {
  color: var(--success);
  background: #ECFDF3;
}

.mock-table .warn {
  color: var(--warning);
  background: #FFFAEB;
}


.value-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 22px;
  border-left: 1px solid var(--border);
}

.value-item:first-child {
  border-left: 0;
}

.value-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.value-item strong {
  display: block;
  font-size: 13px;
}

.value-item small {
  display: block;
  color: var(--muted-2);
  font-size: 10px;
  margin-top: 1px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

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

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.3;
  letter-spacing: -.035em;
  font-weight: 800;
}

.section-heading p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 14px;
  line-height: 2;
}

.about {
  background: #FBFCFE;
}


.process-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 25px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-step {
  text-align: center;
  min-width: 120px;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: "Inter";
  font-size: 11px;
  font-weight: 800;
}

.process-step b {
  display: block;
  font-size: 13px;
}

.process-step small {
  color: var(--muted-2);
  font-size: 9px;
}

.process-line {
  height: 1px;
  flex: 1;
  max-width: 75px;
  background: #D9DDE6;
}

.features-section {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 23px 19px;
  min-height: 195px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #C9C6FF;
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.feature-card h3 {
  font-size: 14px;
  margin-bottom: 7px;
}

.feature-card p {
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.9;
}


.operator-section {
  background: #F7F8FC;
}

.operator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.operator-copy p {
  color: var(--muted);
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 2;
}

.operator-copy h2 {
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}

.check-list span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #DCFCE7;
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.inspection-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow-md);
}

.inspection-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.inspection-top span {
  font-size: 15px;
  font-weight: 800;
}

.inspection-top small {
  color: var(--muted-2);
  font-size: 9px;
}

.inspection-product {
  position: relative;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 13px;
}

.inspection-product span:first-child {
  display: block;
  color: var(--muted-2);
  font-size: 8px;
}

.inspection-product strong {
  display: block;
  font-family: "Inter";
  font-size: 11px;
  margin-top: 3px;
  direction: ltr;
  text-align: left;
}


.select-arrow {
  position: absolute;
  left: 14px;
  top: 20px;
  color: var(--muted-2);
}

.measurement {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px;
  margin-top: 10px;
}

.measurement-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.measurement-head b {
  font-size: 11px;
}

.measurement-head span {
  color: var(--muted-2);
  font-size: 8px;
}

.measurement-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 9px 11px;
  border-radius: 7px;
  background: #F8FAFC;
  font-family: "Inter";
  font-size: 13px;
  direction: ltr;
}

.measurement-input small {
  margin-left: auto;
  margin-right: 6px;
  color: var(--muted-2);
}

.measurement-input mark {
  color: var(--success);
  background: #DCFCE7;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.mock-submit {
  width: 100%;
  margin-top: 15px;
  height: 42px;
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.access-section {
  background: #fff;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.access-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.access-card.operator-card {
  background: #FBFBFF;
  border-color: #DCD9FF;
}

.access-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 800;
}

.access-card h3 {
  font-size: 17px;
}

.access-card>p {
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 18px;
}

.access-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.access-card li {
  color: #475467;
  font-size: 11px;
  padding-right: 17px;
  position: relative;
}

.access-card li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: 800;
}

.workflow-section {
  background: #F8F9FC;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.workflow-item {
  position: relative;
  padding: 25px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}


.workflow-item>span {
  font-family: "Inter";
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}

.workflow-item h3 {
  font-size: 14px;
  margin: 12px 0 7px;
}

.workflow-item p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.screenshots-section {
  background: #fff;
}

.screenshots-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
  align-items: stretch;
  direction: ltr;
}

.screen-main {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #F8FAFC;
}

.screen-toolbar {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  border-bottom: 1px solid var(--border);
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.screen-toolbar span:last-child {
  color: var(--primary);
  font-family: "Inter";
}

.fake-dashboard {
  min-height: 350px;
  padding: 25px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  grid-template-rows: 1fr .65fr;
  gap: 15px;
}

.fake-chart,
.fake-bars,
.fake-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 17px;
}

.fake-chart {
  grid-row: span 2;
}

.fake-chart small {
  color: var(--muted-2);
  font-size: 9px;
}

.chart-lines {
  height: 235px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin-top: 18px;
  padding: 0 12px 5px;
  border-bottom: 1px solid var(--border);
}

.chart-lines i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, #DDE2FF, var(--primary));
}

.chart-lines i:nth-child(1) {
  height: 35%
}

.chart-lines i:nth-child(2) {
  height: 48%
}

.chart-lines i:nth-child(3) {
  height: 42%
}

.chart-lines i:nth-child(4) {
  height: 65%
}

.chart-lines i:nth-child(5) {
  height: 58%
}

.chart-lines i:nth-child(6) {
  height: 78%
}

.chart-lines i:nth-child(7) {
  height: 91%
}

.fake-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.fake-bars i {
  flex: 1;
  background: #E8E9FF;
  border-radius: 4px 4px 0 0;
}

.fake-bars i:nth-child(1) {
  height: 40%
}

.fake-bars i:nth-child(2) {
  height: 75%
}

.fake-bars i:nth-child(3) {
  height: 55%
}

.fake-bars i:nth-child(4) {
  height: 88%
}

.fake-table {
  display: grid;
  gap: 8px;
  align-content: center;
}

.fake-table span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: #EEF0F4;
}

.fake-table span:nth-child(2),
.fake-table span:nth-child(4) {
  width: 75%;
}

.screen-list {
  display: grid;
  gap: 10px;
  direction: rtl;
}


.screen-tab {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
  transition: .2s ease;
}

.screen-tab b {
  font-family: "Inter";
  color: #98A2B3;
  font-size: 10px;
}

.screen-tab span {
  flex: 1;
}

.screen-tab strong {
  display: block;
  font-family: "Inter";
  font-size: 12px;
}

.screen-tab small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 2px;
}

.screen-tab:hover,
.screen-tab.active {
  border-color: #C9C6FF;
  background: #FAFAFF;
  box-shadow: var(--shadow-sm);
}

.screen-tab.active b {
  color: var(--primary);
}

.benefits-section {
  background: #F8F9FC;
}

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

.benefit {
  padding: 27px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 17px;
}


.benefit>span {
  color: var(--primary);
  font-family: "Inter";
  font-size: 11px;
  font-weight: 800;
}

.benefit h3 {
  font-size: 15px;
  margin: 13px 0 7px;
}

.benefit p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.audience-section {
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: auto;
}

.audience-card {
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}

.audience-card>span {
  font-size: 28px;
}

.audience-card h3 {
  font-size: 16px;
  margin: 14px 0 7px;
}

.audience-card p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.cta-section {
  padding-top: 40px;
  padding-bottom: 110px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 55px 60px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #4338CA, #4F46E5);
  box-shadow: 0 30px 70px rgba(79, 70, 229, .22);
}

.eyebrow.light {
  color: #C7D2FE;
}

.cta-card h2 {
  max-width: 720px;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.4;
  letter-spacing: -.035em;
}

.cta-card p {
  color: #E0E7FF;
  margin-top: 8px;
  font-size: 13px;
}

.cta-card .btn {
  flex: 0 0 auto;
  min-width: 180px;
}


.faq-section {
  background: #F8F9FC;
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
}

.faq-question i {
  font-style: normal;
  font-family: "Inter";
  color: var(--primary);
  font-size: 18px;
  transition: transform .2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

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

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

.contact-copy>p {
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
  margin-top: 14px;
}

.contact-info {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info a>span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
}

.contact-info small {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
}

.contact-info strong {
  display: block;
  font-family: "Inter";
  direction: ltr;
  text-align: right;
  font-size: 12px;
  margin-top: 1px;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #FBFCFE;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #344054;
  font-size: 10px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #D9DEE8;
  outline: 0;
  border-radius: 10px;
  padding: 11px 13px;
  background: #fff;
  color: var(--text);
  font-size: 11px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #A5B4FC;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .08);
}


.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  width: 100%;
  border: 0;
}


.form-note {
  color: var(--muted-2);
  font-size: 8px;
  line-height: 1.7;
}

.site-footer {
  background: #111827;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 45px 0;
}

.footer-brand p {
  color: #98A2B3;
  font-family: "Inter";
  font-size: 10px;
  margin-top: 8px;
  direction: ltr;
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: #CBD5E1;
  font-size: 10px;
  font-weight: 600;
}

.footer-bottom {
  padding: 18px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  color: #667085;
  font-family: "Inter";
  font-size: 8px;
  direction: ltr;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 1200;
  transform: translate(-50%, 20px);
  opacity: 0;
  visibility: hidden;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: #111827;
  font-size: 11px;
  box-shadow: var(--shadow-md);
  transition: .25s ease;
}


.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
} */


.reveal-delay {
  transition-delay: .12s;
}

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


@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-item:last-child {
    grid-column: 2;
  }
}


@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

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

  .hero-copy {
    text-align: center;
  }

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

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

  .hero-note {
    justify-content: center;
  }

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

  .value-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .value-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .process-card {
    flex-wrap: wrap;
    gap: 20px;
  }

  .process-line {
    display: none;
  }

  .operator-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .operator-copy {
    text-align: center;
  }

  .check-list {
    max-width: 480px;
    margin: auto;
    text-align: right;
  }

  .screenshots-layout {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    padding: 45px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 75px 0;
  }

  .header-inner {
    height: 68px;
  }

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

  .brand-name {
    font-size: 18px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-text {
    font-size: 14px;
  }

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

  .app-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .mock-content {
    padding: 17px;
  }

  .stat-grid {
    gap: 5px;
  }

  .stat-card {
    padding: 9px;
  }

  .stat-card strong {
    font-size: 17px;
  }

  .mock-table>div {
    grid-template-columns: 1.1fr 1fr .5fr;
  }

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

  .value-item,
  .value-item:nth-child(3),
  .value-item:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .value-item:first-child {
    border-top: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .features-grid,
  .benefits-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

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

  .workflow-item:last-child {
    grid-column: auto;
  }

  .inspection-mock {
    padding: 18px;
  }

  .measurement-head {
    flex-direction: column;
    gap: 2px;
  }

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

  .screen-list {
    grid-template-columns: 1fr;
  }

  .fake-dashboard {
    min-height: 260px;
    padding: 13px;
  }

  .chart-lines {
    height: 165px;
  }

  .cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .cta-card h2 {
    font-size: 27px;
  }

  .cta-card .btn {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}





/* =========================================================
   TOLERA - REAL SCREENSHOTS
   ========================================================= */

.screenshots-section {
  padding: 110px 0;
  background: #f8fafc;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 14px;
  margin-bottom: 14px;

  border-radius: 999px;

  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;

  font-size: 13px;
  font-weight: 700;
}

.screenshots-section .section-heading h2 {
  margin: 0 0 14px;

  color: #111827;

  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 800;
}

.screenshots-section .section-heading p {
  margin: 0;

  color: #64748b;

  font-size: 16px;
  line-height: 1.9;
}


/* -------------------------
     Tabs
     ------------------------- */

.screenshot-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 28px;
}

.screenshot-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 46px;
  padding: 0 20px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;
  color: #64748b;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.screenshot-tab:hover {
  transform: translateY(-2px);

  border-color: rgba(79, 70, 229, .3);

  color: #4f46e5;

  box-shadow: 0 8px 25px rgba(15, 23, 42, .06);
}

.screenshot-tab.active {
  border-color: #4f46e5;

  background: #4f46e5;
  color: #ffffff;

  box-shadow: 0 10px 25px rgba(79, 70, 229, .22);
}

.tab-icon {
  font-size: 15px;
  line-height: 1;
}


/* -------------------------
     Screenshot viewer
     ------------------------- */

.screenshot-viewer {
  max-width: 1180px;
  margin: 0 auto;
}

.screenshot-window {
  overflow: hidden;

  border: 1px solid #dbe3ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 25px 70px rgba(15, 23, 42, .12),
    0 5px 20px rgba(15, 23, 42, .05);
}


/* Top bar */

.screenshot-topbar {
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  border-bottom: 1px solid #e5e7eb;

  background: #ffffff;
}

.window-dots {
  position: absolute;
  right: 18px;

  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;

  display: block;

  border-radius: 50%;

  background: #cbd5e1;
}

.window-title {
  color: #64748b;

  font-size: 12px;
  font-weight: 700;
}


/* Actual screenshot */

.screenshot-image-wrapper {
  width: 100%;

  background: #f1f5f9;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.screenshot-image {
  display: block;

  width: 100%;
  height: auto;

  max-height: 720px;

  object-fit: contain;

  opacity: 1;

  transition:
    opacity .18s ease,
    transform .25s ease;
}

.screenshot-image.changing {
  opacity: 0;
  transform: scale(.985);
}


/* -------------------------
     Caption
     ------------------------- */

.screenshot-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 22px 4px 0;
}

.screenshot-caption h3 {
  margin: 0 0 5px;

  color: #111827;

  font-size: 18px;
  font-weight: 800;
}

.screenshot-caption p {
  margin: 0;

  color: #64748b;

  font-size: 14px;
  line-height: 1.8;
}

.screenshot-counter {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  gap: 6px;

  color: #94a3b8;

  font-size: 13px;
  font-weight: 700;
}

.screenshot-counter span:first-child {
  color: #4f46e5;
}


/* =========================================================
     Responsive
     ========================================================= */

@media (max-width: 768px) {

  .screenshots-section {
    padding: 80px 0;
  }

  .screenshots-section .section-heading {
    margin-bottom: 30px;
  }

  .screenshots-section .section-heading h2 {
    font-size: 30px;
  }

  .screenshots-section .section-heading p {
    font-size: 14px;
  }


  .screenshot-tabs {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-bottom: 20px;
  }

  .screenshot-tab {
    width: 100%;

    padding: 0 10px;

    font-size: 13px;
  }


  .screenshot-window {
    border-radius: 13px;
  }

  .screenshot-topbar {
    height: 38px;
  }

  .window-dots {
    right: 12px;
  }

  .window-dots span {
    width: 7px;
    height: 7px;
  }

  .window-title {
    font-size: 10px;
  }


  .screenshot-caption {
    align-items: flex-start;

    padding-top: 16px;
  }

  .screenshot-caption h3 {
    font-size: 16px;
  }

  .screenshot-caption p {
    font-size: 13px;
  }

}


/* Very small phones */

@media (max-width: 400px) {

  .screenshot-tabs {
    gap: 7px;
  }

  .screenshot-tab {
    min-height: 42px;

    font-size: 12px;
  }

  .tab-icon {
    font-size: 13px;
  }

}









/* =========================================================
   MOBILE MENU - CSS ONLY
   ========================================================= */

.mobile-nav {
  display: none;
  position: relative;
}


/* دکمه همبرگری */

.mobile-nav summary {
  list-style: none;
}

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

.menu-toggle {
  width: 44px;
  height: 44px;

  padding: 0;

  display: none;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  border: 1px solid #e2e8f0;
  border-radius: 12px;

  background: #ffffff;

  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;

  display: block;

  border-radius: 999px;

  background: #111827;

  transition:
    transform .25s ease,
    opacity .25s ease;
}


/* وقتی منو باز است */

.mobile-nav[open] .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-nav[open] .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* خود منوی موبایل */

.mobile-menu {
  position: absolute;

  top: calc(100% + 12px);
  left: auto;
  right: 0;

  width: min(300px, calc(100vw - 32px));

  padding: 10px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  border: 1px solid #e2e8f0;
  border-radius: 16px;

  background: #ffffff;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, .14);

  z-index: 9999;
}


/* لینک‌های منو */

.mobile-menu a {
  display: flex;
  align-items: center;

  min-height: 46px;

  padding: 0 15px;

  border-radius: 10px;

  color: #334155;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background .2s ease,
    color .2s ease;
}

.mobile-menu a:hover {
  background: #f1f5f9;
  color: #4f46e5;
}


/* دکمه پایین منو */

.mobile-menu .btn {
  justify-content: center;

  margin-top: 6px;

  color: #ffffff;
}


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

@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }

  .mobile-nav .menu-toggle {
    display: flex;
  }

}



.srcc {
  width: 82px;
  height: 82px;
}