/* کارنو پلاس — سایت اصلی */

:root {
  --orange: #e8920a;
  --orange-d: #c97a08;
  --orange-l: #fff8ee;
  --teal: #55c9c3;
  --teal-d: #3aada7;
  --navy: #004d4d;
  --navy-d: #002a2a;
  --navy-m: #0a6363;
  --ink: #142424;
  --muted: #5f7575;
  --line: #d8e6e6;
  --bg: #f4f8f8;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --font: "Vazirmatn", Tahoma, sans-serif;
  --shadow: 0 8px 32px rgba(0, 45, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 45, 45, 0.12);
  --nav-h: 72px;
  --ease: 0.22s ease;
  --container: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--container, 1320px), calc(100% - clamp(1.25rem, 4vw, 3rem)));
  margin-inline: auto;
}

@media (min-width: 1600px) {
  :root { --container: 1440px; }
}

section[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

.skip-link {
  position: absolute;
  top: -100px;
  right: 1rem;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ─── هدر ─── */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
  overflow: visible;
}
.topbar.is-scrolled { box-shadow: var(--shadow); }

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
  overflow: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  min-width: 0;
  max-width: min(42vw, 280px);
}
.brand > span {
  min-width: 0;
  overflow: hidden;
}
.brand__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: contain;
}
.brand__name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: 0.15rem;
  min-width: 0;
}
.nav a {
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
  line-height: 1.35;
  white-space: nowrap;
}
.nav-item--mega {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-item__trigger {
  white-space: nowrap;
  line-height: 1.35;
}
.nav a:hover { color: var(--navy); background: var(--bg); }
.nav a.is-active {
  color: var(--navy);
  background: rgba(85, 201, 195, 0.15);
  font-weight: 700;
}

.nav__cta {
  margin-right: 0.5rem;
  padding: 0.55rem 1rem !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav__cta:hover { background: var(--navy-m) !important; color: var(--white) !important; }
.nav__cta--outline {
  margin-right: 0.35rem;
  padding: 0.55rem 1rem !important;
  background: transparent !important;
  color: var(--navy) !important;
  border: 2px solid var(--navy) !important;
  font-weight: 700 !important;
}
.nav__cta--outline:hover {
  background: var(--bg) !important;
  color: var(--navy) !important;
}
.nav__accounts {
  color: var(--orange-d) !important;
  font-weight: 800 !important;
}
.nav__accounts:hover {
  color: var(--navy) !important;
  background: var(--orange-l) !important;
}
.nav__cta--tool {
  margin-right: 0;
  padding: 0.5rem 0.85rem !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: 2px solid var(--navy) !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta--tool:hover {
  background: var(--navy-m) !important;
  border-color: var(--navy-m) !important;
}
.nav__cta--tool-alt {
  background: var(--teal-d) !important;
  border-color: var(--teal-d) !important;
}
.nav__cta--tool-alt:hover {
  background: #008080 !important;
  border-color: #008080 !important;
}
.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-inline-start: auto;
  padding-inline-start: 0.75rem;
}
.nav__tools .ann-bell {
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .brand__tag { display: none; }
}
@media (max-width: 1200px) and (min-width: 961px) {
  .nav a { padding: 0.45rem 0.55rem; font-size: 0.76rem; }
  .nav__cta--tool { padding: 0.45rem 0.65rem !important; font-size: 0.72rem !important; }
}

/* ─── منوی کشویی مناطق ─── */
.nav-item--mega {
  position: relative;
}
.nav-item--mega-empty .nav-item__caret {
  display: none;
}
.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.nav-item--mega .nav-item__trigger {
  font-size: 0.8rem;
  padding: 0.5rem 0.7rem;
  flex-shrink: 0;
}
.nav-item__caret {
  font-size: 0.65rem;
  opacity: 0.55;
  transition: transform var(--ease);
}
.nav-item--mega.is-open .nav-item__caret,
.nav-item--mega:hover .nav-item__caret {
  transform: rotate(180deg);
}
.nav-mega {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 120;
  min-width: 260px;
  max-width: 320px;
  margin-top: 0.25rem;
  padding: 0.4rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
@media (min-width: 961px) {
  .nav-item--mega:hover .nav-mega,
  .nav-item--mega.is-open .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.nav-item--mega.is-open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-mega__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: min(70vh, 420px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
}
.nav-mega__track::-webkit-scrollbar { width: 4px; }
.nav-mega__track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}
.nav-mega__item {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  padding: 0.6rem 0.85rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  opacity: 0;
  transform: translateY(4px);
  animation: megaSlideIn 0.22s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.03s);
  transition: background var(--ease);
}
.nav-mega__item:last-child {
  border-bottom: none;
}
.nav-item--mega:hover .nav-mega__item,
.nav-item--mega.is-open .nav-mega__item {
  animation-name: megaSlideIn;
}
@keyframes megaSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-mega__item:hover {
  background: var(--bg);
}
.nav-mega__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}
.nav-mega__hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  white-space: normal;
}
.nav-mega__all {
  display: block;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-d);
  text-align: right;
}
.nav-mega__all:hover { color: var(--navy); }
.nav-mega__empty {
  margin: 0;
  padding: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

/* ─── هیرو ─── */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(85, 201, 195, 0.22), transparent),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(245, 157, 35, 0.18), transparent),
    linear-gradient(155deg, var(--navy-d) 0%, var(--navy) 45%, #006060 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(85, 201, 195, 0.12), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.45;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
}
.hero__card-title {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.stat {
  padding: 1rem 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.2;
}
.stat span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── نوار اعتماد ─── */
.trust-bar {
  background: linear-gradient(180deg, #eef7f6 0%, #e4f2f1 100%);
  border-bottom: 1px solid rgba(0, 77, 77, 0.08);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1.1rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-bar__inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 77, 77, 0.1);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 45, 45, 0.05);
}
.trust-bar__inner span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy-d);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}

/* ─── دکمه‌ها ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-d); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--block { width: 100%; }

/* ─── بخش‌ها ─── */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--white); }
.section--dark {
  background: var(--navy-d);
  color: var(--white);
}

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.75rem;
}
.section__label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange-d);
  letter-spacing: 0.08em;
}
.section__label--light { color: var(--teal); }
.section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
}
.section__title--light { color: var(--white); }
.section__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.9;
}
.section__desc--left { text-align: right; }

/* ─── خدمات ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bento-card {
  padding: 1.65rem 1.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.bento-card:hover {
  border-color: rgba(85, 201, 195, 0.5);
  box-shadow: var(--shadow);
}

.bento-tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bento-tool-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.2rem;
  background: var(--white);
  border: 1px solid rgba(85, 201, 195, 0.35);
  border-right: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  box-shadow: 0 2px 12px rgba(0, 45, 45, 0.04);
}
.bento-tool-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.bento-tool-card:nth-child(even) {
  border-right-color: var(--teal-d);
}
.bento-tool-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, rgba(85, 201, 195, 0.22), rgba(0, 77, 77, 0.06));
  color: var(--navy);
  border-radius: 12px;
  border: 1px solid rgba(85, 201, 195, 0.35);
  flex-shrink: 0;
}
.bento-tool-card__icon svg { width: 22px; height: 22px; }
.bento-tool-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
}
.bento-tool-card p {
  margin: 0;
  flex: 1;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
.bento-tool-card__cta {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--teal-d);
}
.bento-tool-card:hover .bento-tool-card__cta { color: var(--navy); }

.svc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(0, 77, 77, 0.08);
  color: var(--navy);
  border-radius: 10px;
  flex-shrink: 0;
}
.svc-icon svg { width: 20px; height: 20px; }
.bento-card > .svc-icon { margin-bottom: 0.85rem; }
.svc-icon--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--teal);
}

.bento-card h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
}
.bento-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
}

.bento-card__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
}
.bento-card__link:hover { text-decoration: underline; }

.bento-card__badge {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  border-radius: 6px;
}

/* ─── چرا ما ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pillar {
  position: relative;
  overflow: visible;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  transition: box-shadow var(--ease);
}
.pillar:hover { box-shadow: var(--shadow); }
.pillar__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-m));
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 45, 45, 0.15);
}
.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.pillar p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── تعرفه ─── */
.tariff-teaser {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.tariff-teaser__desc {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.tariff-teaser__search {
  display: flex;
  gap: 0.5rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}
.tariff-teaser__search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  color: var(--white);
  outline: none;
}
.tariff-teaser__search input::placeholder { color: rgba(255, 255, 255, 0.45); }
.tariff-teaser__hints {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.chip {
  padding: 0.3rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--ease);
}
.chip:hover { background: rgba(85, 201, 195, 0.25); }

.tariff-teaser__form-wrap {
  position: relative;
}
.tariff-live {
  margin-top: 0.55rem;
  padding: 0.45rem;
  background: rgba(8, 20, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}
.tariff-live__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 280px;
  overflow: auto;
}
.tariff-live__item {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  transition: background var(--ease);
}
.tariff-live__item:hover {
  background: rgba(85, 201, 195, 0.18);
}
.tariff-live__code {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
  direction: ltr;
  text-align: left;
}
.tariff-live__title {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}
.tariff-live__isic {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(85, 201, 195, 0.18);
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 128, 128, 0.28);
  direction: ltr;
}
.tariff-live__more {
  display: block;
  margin-top: 0.45rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  color: var(--teal);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tariff-live__more:hover { color: var(--white); }
.tariff-live__status {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.tariff-live__paywall {
  padding: 0.65rem 0.7rem 0.7rem;
}
.tariff-live__paywall-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.tariff-live__paywall-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(232, 146, 10, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(232, 146, 10, 0.35);
}
.tariff-live__paywall-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
.tariff-live__paywall-title {
  margin: 0 0 0.2rem;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.45;
}
.tariff-live__paywall-text {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.tariff-live__paywall-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.5rem;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}
.tariff-live__paywall-meter-value {
  font-weight: 800;
  color: var(--teal);
}
.tariff-live__paywall-meter-track {
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.tariff-live__paywall-meter-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  border-radius: inherit;
}
.tariff-live__paywall-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.tariff-live__paywall-btn {
  flex: 1 1 auto;
  min-width: min(100%, 7.5rem);
  padding: 0.45rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: background var(--ease), border-color var(--ease);
}
.tariff-live__paywall-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}
.tariff-live__paywall-btn--primary {
  color: var(--navy);
  background: var(--teal);
  border-color: var(--teal);
}
.tariff-live__paywall-btn--primary:hover {
  background: #6dd9d3;
  border-color: #6dd9d3;
}

/* ─── مناطق آزاد / ویژه ─── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.zone-card {
  display: block;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.zone-card.is-active {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  grid-column: 1 / -1;
}
.zone-card__link {
  display: block;
  padding: 1.25rem;
  cursor: pointer;
  transition: background var(--ease);
}
.zone-card__link:hover { background: var(--bg); }
.zone-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.zone-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
}
.zone-card__summary {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zone-card__more {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal-d);
}
.zone-card__link:hover .zone-card__more { color: var(--navy); }
.zone-card__detail {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px dashed var(--line);
  animation: zoneReveal 0.35s ease;
}
.zone-card__detail p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.8;
}
.zone-card__detail p:last-child { margin-bottom: 0; }
.zone-card__source a {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-d);
}
.zone-card__source a:hover { color: var(--navy); }
@keyframes zoneReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.zones-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── فروشگاه / محصولات ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  max-height: 120px;
  background: var(--bg);
  padding: 0.65rem;
}
.product-card__media img {
  width: 100%;
  max-width: 88px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}
.product-card__placeholder {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.product-card__placeholder--lg {
  width: 120px;
  height: 120px;
  font-size: 2.2rem;
}
.product-card__body {
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product-card__title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.55;
}
.product-card__title a { color: var(--navy); }
.product-card__title a:hover { color: var(--teal-d); }
.product-card__summary {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__price-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.product-card__price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-d);
}
.product-card__price--sale {
  color: var(--navy);
}
.product-card__price-old {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card__discount-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
}
.home-quota-strip {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}
.home-quota-strip__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}
.home-quota-strip__head strong { color: var(--teal); }
.home-quota-strip__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}
.home-quota-strip__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 999px;
  transition: width 0.25s ease;
}
.home-quota-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--orange);
  border-radius: 999px;
  white-space: nowrap;
}
.home-quota-strip__cta:hover { filter: brightness(1.05); }
.home-quota-strip.is-exhausted .home-quota-strip__fill { background: #ef4444; }
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.section__foot {
  margin-top: 1.5rem;
  text-align: center;
}
.page-products .products-shell,
.page-product .product-shell {
  padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
  min-height: 100vh;
}
.products-page-head {
  margin-bottom: 1.5rem;
}
.products-page-head h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
}
.products-page-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.product-detail__media {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
}
.product-detail__media img {
  max-width: 100%;
  height: auto;
}
.product-detail__info h1 {
  margin: 0.5rem 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}
.product-detail__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  line-height: 1.75;
}
.product-detail__price {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange-d);
}
.product-detail__body p {
  margin: 0 0 0.75rem;
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ─── مشتریان ─── */
.logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.logo-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.logo-card__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.logo-card strong {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
}
.logo-card small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

/* ─── اخبار ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.news-card__img {
  height: 130px;
  background: linear-gradient(135deg, var(--navy-m), var(--teal-d));
}
.news-card__img--warm { background: linear-gradient(135deg, #c97a08, var(--orange)); }
.news-card__img--teal { background: linear-gradient(135deg, #003838, var(--teal)); }
.news-card__body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-d);
  margin-bottom: 0.4rem;
}
.news-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
}
.news-card p {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.65;
}
.news-card a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy-m);
}
.news-card a:hover { text-decoration: underline; }

/* ─── تماس ─── */
.consult {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.branches { margin-top: 1.25rem; }
.branches li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.branches li:last-child { border-bottom: none; }
.branches strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.branches span {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-card__title {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(85, 201, 195, 0.2);
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* ─── فوتر ─── */
.footer {
  padding: 3rem 0 0;
  background: var(--navy-d);
  color: rgba(255, 255, 255, 0.8);
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__tag { color: rgba(255, 255, 255, 0.5); }
.footer__about {
  margin: 1rem 0 0;
  max-width: 280px;
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--teal);
}
.footer li { margin-bottom: 0.45rem; }
.footer a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--ease);
}
.footer a:hover { color: var(--white); }
.footer__bottom {
  padding: 1.25rem 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}
.footer__bottom--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  text-align: right;
}
.footer__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.footer__trust-item--zarinpal,
.footer__trust-item--enamad {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  min-height: 72px;
  min-width: 72px;
}
.footer__zarinpal-link,
.footer__enamad-link {
  display: inline-block;
  line-height: 0;
}
.footer__trust-item--zarinpal a,
.footer__zarinpal-link {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}
.footer__trust-item--zarinpal img,
.footer__zarinpal-img,
.footer__enamad-img {
  display: block;
  width: 72px;
  height: auto;
  cursor: pointer;
}
.footer__enamad-img {
  width: 90px;
}
.site-footer--trust {
  margin-top: auto;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-d) 100%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
.site-footer__bar {
  max-width: var(--container, 1120px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ─── صفحه تعرفه: assets/css/tariff-page.css ─── */

/* ─── صفحه منطقه ─── */
.page-zone .zone-shell {
  padding: calc(var(--nav-h) + 1.5rem) 0 3rem;
  min-height: 100vh;
}
.zone-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.zone-breadcrumb a:hover { color: var(--navy); }
.zone-hero {
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-m) 55%, var(--teal-d) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.zone-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.zone-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.45;
}
.zone-hero__lead {
  margin: 0;
  max-width: 52rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}
.zone-content {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.zone-content p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.85;
}
.zone-content p:last-child { margin-bottom: 0; }
.zone-loading,
.zone-error {
  color: var(--muted);
  font-size: 0.9rem;
}
.zone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn--outline:hover {
  border-color: var(--teal);
  background: var(--bg);
}
.zone-siblings {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.zone-siblings h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.zone-siblings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}
.zone-sibling {
  padding: 0.7rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.zone-sibling:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

/* ─── ریسپانسیو ─── */
@media (max-width: 960px) {
  .hero__grid,
  .tariff-teaser,
  .consult,
  .footer__grid { grid-template-columns: 1fr; }
  .bento,
  .logos,
  .pillars,
  .news-grid,
  .zones-grid { grid-template-columns: 1fr; }
  .bento-tools { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-item--mega { width: 100%; }
  .nav__tools {
    flex-direction: column;
    align-items: stretch;
    margin-inline-start: 0;
    padding-inline-start: 0;
  }
  .nav__tools .ann-bell {
    align-self: flex-end;
  }
  .nav-item--mega .nav-mega {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0.35rem 0.25rem;
  }
  .nav-mega {
    position: static;
    min-width: 0;
    max-width: none;
    margin-top: 0.35rem;
    padding: 0.5rem;
    box-shadow: none;
    border: 1px dashed var(--line);
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    pointer-events: none;
    transition: max-height 0.35s ease, visibility 0.35s, padding 0.35s;
  }
  .nav-item--mega.is-open .nav-mega {
    visibility: visible;
    max-height: 360px;
    pointer-events: auto;
  }
  body.nav-mega-active .topbar {
    box-shadow: var(--shadow);
  }
  .nav-mega__track {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 280px;
  }
  .nav-mega__item {
    flex: 0 0 100%;
    opacity: 1;
    transform: none;
    animation: none;
  }
  .zone-siblings__grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  .trust-bar__inner { gap: 0.75rem 1.5rem; }
}

@media (max-width: 520px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .tariff-teaser__search { flex-direction: column; }
  .tariff-teaser__search .btn { width: 100%; }
  .bento-tools { grid-template-columns: 1fr; gap: 0.65rem; }
  .section { padding: 2.75rem 0; }
}

.platform-paths {
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(85, 201, 195, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(232, 146, 10, 0.08), transparent 50%),
    var(--bg);
}

.platform-paths__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (max-width: 1100px) {
  .platform-paths__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .platform-paths__grid { grid-template-columns: 1fr; }
}

.platform-path {
  --path-accent: #3aada7;
  --path-soft: rgba(58, 173, 167, 0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.25rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(238, 247, 246, 0.95) 100%);
  border: 1px solid rgba(0, 77, 77, 0.12);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 45, 45, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.platform-path::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--path-accent), transparent 85%);
}

.platform-path::after {
  content: "";
  position: absolute;
  inset-inline-start: -20%;
  top: -30%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, var(--path-soft), transparent 70%);
  pointer-events: none;
}

.platform-path:nth-child(1) {
  --path-accent: #3aada7;
  --path-soft: rgba(58, 173, 167, 0.18);
}
.platform-path:nth-child(2) {
  --path-accent: #e8920a;
  --path-soft: rgba(232, 146, 10, 0.16);
}
.platform-path:nth-child(3) {
  --path-accent: #0a6363;
  --path-soft: rgba(10, 99, 99, 0.14);
}
.platform-path:nth-child(4) {
  --path-accent: #c97a08;
  --path-soft: rgba(201, 122, 8, 0.14);
}

.platform-path:hover {
  border-color: var(--path-accent);
  box-shadow: 0 16px 36px rgba(0, 45, 45, 0.12);
  transform: translateY(-4px);
}

.platform-path__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy-d);
  background: var(--path-soft);
  border-radius: 999px;
  margin-bottom: 0.15rem;
}

.platform-path h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.platform-path p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.platform-path__cta {
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--path-accent);
}
