﻿:root {
      --green: #25D366;
      --green-dark: #16a956;
      --green-soft: #dcf8e6;
      --dark: #0B141A;
      --bg: #F7FDF9;
      --surface: #ffffff;
      --surface-2: #eef9f2;
      --text: #10221a;
      --muted: #62706a;
      --border: rgba(11, 20, 26, 0.1);
      --shadow: 0 18px 45px rgba(11, 20, 26, 0.09);
      --radius: 18px;
      --header-height: 76px;
    }

    body.dark {
      --bg: #0B141A;
      --surface: #121f26;
      --surface-2: #172932;
      --text: #f4fff8;
      --muted: #a8b8b0;
      --border: rgba(255, 255, 255, 0.1);
      --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
      --green-soft: rgba(37, 211, 102, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(37, 211, 102, 0.14), transparent 34rem),
        var(--bg);
      color: var(--text);
      line-height: 1.7;
      transition: background 0.25s ease, color 0.25s ease;
    }

    body[dir="ltr"] {
      font-family: "IBM Plex Sans", Segoe UI, Arial, sans-serif;
    }

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

    button {
      font: inherit;
    }

    .preloader {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at 50% 42%, rgba(37, 211, 102, 0.18), transparent 18rem),
        var(--bg);
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .preloader.loaded {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-card {
      display: grid;
      justify-items: center;
      gap: 18px;
      padding: 28px;
    }

    .preloader-logo {
      width: min(180px, 52vw);
      height: auto;
      animation: preloaderPulse 1.4s ease-in-out infinite;
    }

    .preloader-dots {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .preloader-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      animation: preloaderDot 0.9s ease-in-out infinite;
    }

    .preloader-dots span:nth-child(2) {
      animation-delay: 0.12s;
    }

    .preloader-dots span:nth-child(3) {
      animation-delay: 0.24s;
    }

    @keyframes preloaderPulse {
      0%,
      100% {
        transform: translateY(0) scale(1);
        opacity: 0.92;
      }

      50% {
        transform: translateY(-4px) scale(1.03);
        opacity: 1;
      }
    }

    @keyframes preloaderDot {
      0%,
      100% {
        transform: translateY(0);
        opacity: 0.45;
      }

      50% {
        transform: translateY(-6px);
        opacity: 1;
      }
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      min-height: var(--header-height);
      background: color-mix(in srgb, var(--bg) 88%, transparent);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(18px);
    }

    .nav {
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 1.35rem;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .logo-img {
      display: block;
      width: auto;
      height: 42px;
      object-fit: contain;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .nav-links a {
      padding: 8px 12px;
      border-radius: 999px;
      transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a.active {
      color: var(--green-dark);
      background: var(--green-soft);
      box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.25);
      outline: none;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn,
    .menu-toggle {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border: 1px solid var(--border);
      border-radius: 12px;
      color: var(--text);
      background: var(--surface);
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .icon-btn:hover,
    .menu-toggle:hover {
      transform: translateY(-2px);
      color: var(--green-dark);
      border-color: rgba(37, 211, 102, 0.45);
    }

    .menu-toggle {
      display: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 10px 20px;
      border: 1px solid transparent;
      border-radius: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: #07130d;
      background: var(--green);
      box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
    }

    .btn-primary:hover {
      background: #36de75;
    }

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

    .back-to-top {
position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 60;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 140px;
    color: #ffffff;
    background: #23d666;
    box-shadow: 0 14px 32px rgba(11, 20, 26, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .back-to-top:hover,
    .back-to-top:focus-visible {
      box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
      transform: translateY(-2px);
      outline: none;
    }

    section {
      padding: 84px 0;
    }

    .hero {
      padding: 82px 0 72px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 46px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 18px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--green-soft);
      font-weight: 800;
      font-size: 0.9rem;
    }

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

    h1 {
      margin-bottom: 20px;
      font-size: clamp(2.25rem, 5vw, 3.7rem);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .hero-text {
      max-width: 690px;
      color: var(--muted);
      font-size: 1.08rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 30px 0 24px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .hero-points li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: color-mix(in srgb, var(--surface) 82%, transparent);
      color: var(--muted);
      font-size: 0.92rem;
    }

    .hero-points svg {
      color: var(--green-dark);
      flex: 0 0 auto;
    }

    .dashboard-mockup {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 520px;
    }

    .hero-image {
      display: block;
      width: min(100%, 620px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 28px 38px rgba(11, 20, 26, 0.14));
    }

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

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #073314;
      background: var(--green);
      font-weight: 800;
      font-size: 0.8rem;
    }

    .mockup-window {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 14px;
      min-height: 430px;
    }

    .sidebar-panel,
    .chat-panel {
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--surface);
      padding: 14px;
      overflow: hidden;
    }

    .metric {
      padding: 14px;
      margin-bottom: 10px;
      border-radius: 16px;
      background: var(--surface-2);
    }

    .metric strong {
      display: block;
      font-size: 1.4rem;
      line-height: 1.2;
    }

    .metric span,
    .conversation span {
      color: var(--muted);
      font-size: 0.82rem;
    }

    .conversation {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }

    .avatar {
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--green-soft);
    }

    .chat-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      font-weight: 800;
    }

    .chat-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 20px 0;
    }

    .bubble {
      max-width: 84%;
      padding: 12px 14px;
      border-radius: 18px;
      background: var(--surface-2);
      color: var(--text);
      font-size: 0.92rem;
    }

    .bubble.sent {
      align-self: flex-end;
      color: #062412;
      background: #d8ffe6;
    }

    body[dir="rtl"] .bubble.sent {
      align-self: flex-start;
    }

    .composer {
      display: flex;
      gap: 8px;
      align-items: center;
      padding: 10px;
      border-radius: 16px;
      background: var(--surface-2);
      color: var(--muted);
      font-size: 0.88rem;
    }

    .section-head {
      max-width: 720px;
      margin: 0 auto 38px;
      text-align: center;
    }

    .section-head h2 {
      margin-bottom: 12px;
      font-size: clamp(1.75rem, 3vw, 2.75rem);
      line-height: 1.2;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1rem;
    }

    .grid {
      display: grid;
      gap: 18px;
    }

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

    .features-grid,
    .usecases-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card {
      height: 100%;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: 0 10px 26px rgba(11, 20, 26, 0.045);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(37, 211, 102, 0.42);
      box-shadow: var(--shadow);
    }

    .icon-box {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 14px;
      color: var(--green-dark);
      background: var(--green-soft);
    }

    .card h3 {
      margin-bottom: 8px;
      font-size: 1.06rem;
      line-height: 1.35;
    }

    .card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .feature-item,
    .usecase-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--surface);
      font-weight: 800;
    }

    .feature-item svg,
    .usecase-item svg {
      flex: 0 0 auto;
      color: var(--green-dark);
    }

    .stats-section {
      padding: 26px 0 70px;
    }

    .stats-band {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      padding: 28px 36px;
      border-radius: 22px;
      background: #beefc9;
      box-shadow: 0 16px 36px rgba(37, 211, 102, 0.14);
    }

    body.dark .stats-band {
      background: rgba(37, 211, 102, 0.16);
      border: 1px solid rgba(37, 211, 102, 0.22);
    }

    .stat-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      min-width: 0;
      text-align: center;
    }

    .stat-art {
      width: 76px;
      height: 76px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .stat-value {
      display: block;
      color: #17003a;
      font-size: clamp(2.1rem, 4vw, 3.35rem);
      line-height: 1;
      font-weight: 900;margin: 0 auto;
    text-align: center;
    }

    body.dark .stat-value {
      color: #f4fff8;
    }

    .stat-label {
      display: block;
      margin-top: 8px;
      color: #10221a;
      font-size: clamp(1rem, 1.8vw, 1.28rem);
      font-weight: 700;
      line-height: 1.35;
    }

    body.dark .stat-label {
      color: #d8f6e2;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      counter-reset: steps;
    }

    .step-card {
      position: relative;
      padding: 28px 24px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .step-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 16px;
      color: #07130d;
      background: var(--green);
      font-weight: 900;
      font-size: 1.1rem;
    }

    .api-showcase {
      padding: 72px 0;
      background: color-mix(in srgb, var(--surface-2) 62%, transparent);
    }

    .api-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
      gap: 46px;
      align-items: center;
    }

    .api-content h2 {
      margin-bottom: 16px;
      font-size: clamp(1.9rem, 3.6vw, 3.15rem);
      line-height: 1.18;
    }

    .api-content p {
      max-width: 620px;
      margin-bottom: 24px;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .api-benefits {
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .api-benefit {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px 15px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      font-weight: 800;
    }

    .api-benefit svg {
      flex: 0 0 auto;
      margin-top: 4px;
      color: var(--green-dark);
    }

    .api-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 460px;
    }

    .api-visual img {
      display: block;
      width: min(100%, 680px);
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 26px 42px rgba(37, 211, 102, 0.16))
    }

    .pricing-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }

    .price-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--surface);
      box-shadow: 0 10px 26px rgba(11, 20, 26, 0.045);
    }

    .price-card.popular {
      border-color: rgba(37, 211, 102, 0.7);
      box-shadow: var(--shadow);
    }

    .popular-badge {
      align-self: flex-start;
      margin-bottom: 14px;
      padding: 6px 11px;
      border-radius: 999px;
      color: #07130d;
      background: var(--green);
      font-weight: 900;
      font-size: 0.78rem;
    }

    .price {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 10px;
      margin: 8px 0 18px;
      color: var(--green-dark);
      font-size: 1.4rem;
      font-weight: 900;
    }

    .price-current {
      display: inline-block;
    }

    .price-period {
      display: inline-block;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .price-old {
      display: inline-block;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }

    .price-card ul {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0 0 24px;
      list-style: none;
      color: var(--muted);
    }

    .price-card li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .price-card li svg {
      flex: 0 0 auto;
      margin-top: 4px;
      color: var(--green-dark);
    }

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

    .faq-wrap {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--surface);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      border: 0;
      color: var(--text);
      background: transparent;
      cursor: pointer;
      text-align: inherit;
      font-weight: 900;
    }

    .faq-question svg {
      flex: 0 0 auto;
      transition: transform 0.2s ease;
    }

    .faq-item.active .faq-question svg {
      transform: rotate(180deg);
    }

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

    .faq-answer p {
      padding: 0 20px 18px;
      margin: 0;
      color: var(--muted);
    }

    .cta-band {
      padding: 46px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(37, 211, 102, 0.92), rgba(20, 157, 78, 0.92)),
        var(--green);
      color: #06140c;
      box-shadow: 0 24px 55px rgba(37, 211, 102, 0.28);
      text-align: center;
    }

    .cta-band h2 {
      margin-bottom: 12px;
      font-size: clamp(1.7rem, 3vw, 2.7rem);
      line-height: 1.2;
    }

    .cta-band p {
      max-width: 740px;
      margin: 0 auto 24px;
      color: rgba(6, 20, 12, 0.78);
    }

    .cta-band .btn {
      background: #07130d;
      color: #fff;
      box-shadow: none;
    }

    .partners-section {
      padding: 34px 0 82px;
      overflow: hidden;
    }

    .partners-carousel {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 22px;
      background: var(--surface);
      box-shadow: 0 14px 36px rgba(11, 20, 26, 0.06);
    }

    .partners-carousel::before,
    .partners-carousel::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 2;
      width: 90px;
      pointer-events: none;
    }

    .partners-carousel::before {
      inset-inline-start: 0;
      background: linear-gradient(90deg, var(--surface), transparent);
    }

    .partners-carousel::after {
      inset-inline-end: 0;
      background: linear-gradient(270deg, var(--surface), transparent);
    }

    .partners-track {
      padding: 22px;
    }

    .partners-carousel .swiper-wrapper {
      transition-timing-function: linear;
    }

    .partner-logo {
      width: auto;
      height: 136px;
      display: grid;
      place-items: center;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: 16px;
      /* background:#fff; */
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .partner-logo:hover {
      transform: translateY(-4px);
      border-color: rgba(37, 211, 102, 0.42);
    }

    .partner-logo img {
      display: block;
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    .footer {
      padding: 54px 0 24px;
      border-top: 1px solid var(--border);
      background: color-mix(in srgb, var(--surface) 64%, transparent);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 1fr);
      gap: 28px;
    }

    .footer p,
    .footer a,
    .footer-address {
      color: var(--muted);
    }

    .footer-address {
      display: block;
      line-height: 1.65;
    }

    .footer h3 {
      margin-bottom: 12px;
      font-size: 1rem;
    }

    .footer ul {
      display: grid;
      gap: 8px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .copyright {
      padding-top: 28px;
      margin-top: 32px;
      border-top: 1px solid var(--border);
      color: var(--muted);
      text-align: center;
      font-size: 0.92rem;
    }

    @media (max-width: 1060px) {
      .nav-links {
        position: fixed;
        inset: var(--header-height) 16px auto 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: var(--surface);
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 10px;
        border-radius: 10px;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible,
      .nav-links a.active {
        background: var(--surface-2);
      }

      .menu-toggle {
        display: inline-grid;
      }

      .hero-grid,
      .mockup-window,
      .api-grid {
        grid-template-columns: 1fr;
      }

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

      .stats-band {
        grid-template-columns: 1fr;
        padding: 26px 22px;
      }

      .api-visual {
        order: -1;
        min-height: auto;
      }
    }

    @media (max-width: 760px) {
      section {
        padding: 62px 0;
      }

      .container {
        width: min(100% - 24px, 1160px);
      }

      .nav {
        gap: 10px;
      }

      .logo {
        font-size: 1.08rem;
      }

      .logo-img {
        height: 36px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .nav-actions {
        gap: 6px;
      }

      .icon-btn,
      .menu-toggle {
        width: 38px;
        height: 38px;
        border-radius: 11px;
      }

      .header-cta {
        display: none;
      }

      .hero {
        padding-top: 54px;
      }

      .hero-grid {
        gap: 32px;
      }

      .api-showcase {
        padding: 54px 0;
      }

      .api-grid {
        gap: 28px;
      }

      .dashboard-mockup {
        order: -1;
      }

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

      .hero-actions .btn {
        white-space: normal;
      }

      .dashboard-mockup {
        min-height: auto;
      }

      .mockup-window {
        min-height: auto;
      }

      .services-grid,
      .features-grid,
      .usecases-grid,
      .steps,
      .pricing-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 30px 18px;
        border-radius: 22px;
      }

      .partners-carousel::before,
      .partners-carousel::after {
        width: 42px;
      }

      .partner-logo {
        width: 138px;
        height: 108px;
        padding: 14px;
      }

      .stats-section {
        padding: 12px 0 54px;
      }

      .stats-band {
        gap: 18px;
      }

      .stat-item {
        justify-content: space-between;
        text-align: start;
      }

      .stat-art {
        width: 62px;
        height: 62px;
      }
    }
