@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB.TTF") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB_BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB_BOLD.TTF") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSans";
  src: url("../../font/IRANSANSWEB_BOLD.TTF") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #171a1f;
  --black-2: #0f1216;
  --orange: #f5a400;
  --orange-2: #ffb000;
  --white: #ffffff;
  --text: #171a1f;
  --muted: #5f6673;
  --line: #e6e9ee;
  --soft: #f7f8fa;
  --shadow: 0 18px 45px rgba(23, 26, 31, 0.11);
  --shadow-soft: 0 10px 28px rgba(23, 26, 31, 0.08);
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 48%, #ffffff 100%);
  font-family: "IRANSans", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: right;
  opacity: 0;
  animation: pageFadeIn 0.32s ease forwards;
}

body.menu-open {
  overflow: hidden;
}

body.is-leaving {
  pointer-events: none;
  animation: pageFadeOut 0.32s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pageFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.is-leaving {
    opacity: 1;
    animation: none;
  }
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: relative;
  z-index: 60;
  background: var(--white);
}

.logo-panel {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.logo-panel-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-logo img {
  width: 205px;
  height: auto;
}

.header-quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
}

.phone-quick,
.support-quick {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: #ffffff;
  border: 2px solid #f0f0f0;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(23, 26, 31, 0.06);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.phone-quick {
  gap: 9px;
  padding: 0 14px 0 16px;
  font-size: 15px;
  font-weight: 900;
  direction: rtl;
}

.phone-quick img,
.support-quick img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.support-quick {
  width: 44px;
  padding: 0;
  cursor: pointer;
}

.phone-quick:hover,
.phone-quick:focus-visible,
.support-quick:hover,
.support-quick:focus-visible {
  color: var(--black);
  border-color: rgba(245, 164, 0, 0.65);
  box-shadow: 0 12px 24px rgba(245, 164, 0, 0.18);
  transform: translateY(-2px);
}

.floating-chat {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 120;
  direction: rtl;
}

.kayako-chat-bridge {
  display: none;
}

.floating-chat-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  background: #f5a400;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(245, 164, 0, 0.28);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.floating-chat-toggle img {
  position: relative;
  z-index: 2;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.floating-chat-toggle span {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(245, 164, 0, 0.45);
  border-radius: inherit;
  animation: floatingChatPulse 2.1s ease-out infinite;
}

.floating-chat-toggle:hover,
.floating-chat-toggle:focus-visible {
  background: #ff7a00;
  box-shadow: 0 20px 42px rgba(255, 122, 0, 0.36);
  transform: translateY(-3px);
}

.floating-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(23, 26, 31, 0.12);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(23, 26, 31, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-chat.is-open .floating-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-chat-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #171a1f 0%, #2f333b 100%);
}

.floating-chat-head strong,
.floating-chat-head span {
  display: block;
}

.floating-chat-head strong {
  font-size: 15px;
  font-weight: 900;
}

.floating-chat-head span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.floating-chat-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.floating-chat-close svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  fill: none;
}

.floating-chat-close:hover,
.floating-chat-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(4deg);
}

.floating-chat-body {
  position: relative;
  padding: 10px;
  background: #f6f7f9;
}

.floating-chat-frame {
  position: relative;
  height: clamp(430px, calc(100vh - 180px), 640px);
  overflow: hidden;
  background: #ffffff;
  border-radius: 14px;
}

.floating-chat-frame:empty::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(23, 26, 31, 0.12);
  border-top-color: #f5a400;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: floatingChatLoader 0.8s linear infinite;
}

.floating-chat-frame > div,
.floating-chat-frame [id^="swiftiframecontainer"] {
  width: 100%;
  height: 100%;
}

.floating-chat-frame iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
  background: #ffffff;
}

.floating-chat-message {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.floating-chat-launch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 16px;
  color: #171a1f;
  background: #f5a400;
  border: 1px solid rgba(23, 26, 31, 0.1);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(245, 164, 0, 0.2);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-chat-launch:hover,
.floating-chat-launch:focus-visible {
  background: #ffb000;
  box-shadow: 0 14px 28px rgba(245, 164, 0, 0.28);
  transform: translateY(-1px);
}

@keyframes floatingChatPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.86);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes floatingChatLoader {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.menu-panel {
  padding: 10px 0 14px;
  background: #ffffff;
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

body.has-scrolled .site-header {
  padding-bottom: var(--sticky-menu-height, 84px);
}

body.has-scrolled .menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  padding: 8px 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--white);
  background: linear-gradient(180deg, #22262d 0%, var(--black) 48%, #11151a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(23, 26, 31, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar.container {
  width: min(1480px, calc(100% - 18px));
}

.brand,
.main-logo,
.menu-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.menu-logo img {
  width: 62px;
  height: auto;
}

.menu-logo {
  width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition: width 0.25s ease, max-width 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
}

body.has-scrolled .menu-logo {
  width: 62px;
  max-width: 62px;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  flex: 1 1 auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
  z-index: 89;
}

.nav-menu > .nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  color: #f7f8fa;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.submenu-indicator {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.82;
  transform: rotate(-45deg) translateY(-1px);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.has-submenu:hover .submenu-indicator,
.has-submenu:focus-within .submenu-indicator,
.has-submenu.is-submenu-open .submenu-indicator {
  opacity: 1;
  transform: rotate(135deg) translateY(1px);
}

.nav-menu > .nav-item > .nav-link:hover,
.nav-menu > .nav-item > .nav-link:focus-visible,
.nav-menu > .nav-item > .nav-link.is-active {
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 90;
  width: min(680px, calc(100vw - 24px));
  padding: 16px;
  margin: 0;
  background: rgba(17, 21, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: stretch;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mega-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 78px;
  padding: 12px;
  color: #f7f8fa;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mega-link-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange-2);
  background: rgba(245, 164, 0, 0.11);
  border: 1px solid rgba(245, 164, 0, 0.22);
  border-radius: 12px;
}

.mega-link-icon .menu-svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-link-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mega-link strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.mega-link small {
  color: #bfc7d2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.75;
}

.mega-link:hover,
.mega-link:focus-visible,
.mega-link.is-active {
  background: rgba(245, 164, 0, 0.14);
  border-color: rgba(245, 164, 0, 0.42);
  transform: translateY(-2px);
}

.mega-link:hover .mega-link-icon,
.mega-link:focus-visible .mega-link-icon,
.mega-link.is-active .mega-link-icon {
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-color: transparent;
}

.mega-visual {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  min-height: 100%;
  padding: 13px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 15%, rgba(245, 164, 0, 0.25), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  text-align: center;
}

.mega-visual svg {
  width: min(190px, 100%);
  height: auto;
}

.mega-visual span {
  color: #f7f8fa;
  font-size: 13px;
  font-weight: 900;
}

.has-submenu.is-submenu-open > .nav-link {
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  direction: ltr;
}

.system-menu {
  position: relative;
  display: inline-flex;
}

.system-login-toggle {
  gap: 8px;
}

.system-login-toggle .submenu-indicator {
  transform: rotate(-45deg) translateY(-1px);
}

.system-menu:hover .system-login-toggle .submenu-indicator,
.system-menu:focus-within .system-login-toggle .submenu-indicator,
.system-menu.is-submenu-open .system-login-toggle .submenu-indicator {
  transform: rotate(135deg) translateY(1px);
}

.login-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.login-btn {
  min-height: 46px;
  padding: 0 13px;
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  box-shadow: 0 12px 22px rgba(245, 164, 0, 0.28);
  direction: rtl;
  font-size: 13px;
  white-space: nowrap;
}

.login-btn-secondary {
  color: #f7f8fa;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.system-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 95;
  width: 230px;
  padding: 9px;
  direction: rtl;
  background: rgba(17, 21, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.system-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
  z-index: 94;
}

.system-menu:hover .system-dropdown,
.system-menu:focus-within .system-dropdown,
.system-menu.is-submenu-open .system-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.system-dropdown a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: #f7f8fa;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  direction: rtl;
  text-align: right;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.system-dropdown a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--orange-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245, 164, 0, 0.12);
}

.system-dropdown a:hover,
.system-dropdown a:focus-visible {
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  transform: translateX(-2px);
}

.system-dropdown a:hover::before,
.system-dropdown a:focus-visible::before {
  background: var(--black);
  box-shadow: 0 0 0 4px rgba(23, 26, 31, 0.12);
}

.cart-btn {
  position: relative;
  color: var(--white);
}

.cart-btn svg {
  width: 27px;
  height: 27px;
}

.cart-btn span {
  position: absolute;
  top: -11px;
  right: -12px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange-2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--black);
  background: var(--orange-2);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245, 164, 0, 0.22);
}

.menu-toggle svg {
  grid-area: 1 / 1;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.menu-close-icon {
  opacity: 0;
  transform: rotate(-45deg) scale(0.85);
}

.menu-toggle[aria-expanded="true"] .menu-open-icon {
  opacity: 0;
  transform: rotate(45deg) scale(0.85);
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.home-slider {
  position: relative;
  min-height: 720px;
  height: min(78vh, 790px);
  margin-top: 0;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.22) 0%, rgba(8, 10, 12, 0.43) 44%, rgba(8, 10, 12, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 10, 12, 0.45) 0%, rgba(8, 10, 12, 0.1) 36%, rgba(8, 10, 12, 0.53) 100%);
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.content-right {
  justify-content: flex-start;
}

.content-left {
  justify-content: flex-end;
}

.slide-copy {
  width: min(590px, 100%);
  padding: 34px 38px 38px;
  color: var(--white);
  background: rgba(12, 15, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 14px;
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.slide-copy h1,
.slide-copy h2 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0;
}

.slide-copy p {
  margin: 0 0 28px;
  color: #f4f6f8;
  font-size: 18px;
  font-weight: 600;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-width: 205px;
  min-height: 56px;
  padding: 0 25px;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
}

.btn:hover,
.login-btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(180deg, #252a31 0%, #12161b 100%);
}

.hero-control {
  position: absolute;
  top: 52%;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--black);
  background: var(--orange-2);
  border: 0;
  border-radius: 50%;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.hero-prev {
  right: 28px;
}

.hero-next {
  left: 28px;
}

.hero-dots {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 30px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--orange-2);
}

.features-preview {
  position: relative;
  z-index: 3;
  padding-bottom: 28px;
  background: #ffffff;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: -62px;
}

.feature-card,
.number-card,
.why-panel,
.testimonial-card,
.brand-strip span,
.page-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 178px;
  padding: 25px 21px 22px;
  text-align: center;
  border-radius: 18px;
}

.card-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--orange);
  background: #fff8e8;
  border: 1px solid #ffe7ad;
  border-radius: 13px;
  font-weight: 900;
}

.feature-card h2,
.feature-card h3,
.why-grid h3,
.testimonial-card h3 {
  margin: 12px 0 7px;
  color: var(--black);
  font-size: 18px;
  font-weight: 900;
}

.feature-card p,
.why-grid p,
.testimonial-card p,
.number-card p,
.page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.feature-card a,
.number-card a,
.page-card a {
  display: inline-flex;
  margin-top: 9px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.numbers-section {
  padding: 56px 0 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.section-heading {
  margin-bottom: 31px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.section-heading p {
  position: relative;
  display: inline-block;
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.section-heading p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 16px);
  width: 42px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.section-heading-row h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.section-heading-row h2::after {
  content: "";
  width: 42px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.slider-shell {
  position: relative;
}

.number-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}

.number-slider::-webkit-scrollbar {
  display: none;
}

.number-card {
  flex: 0 0 calc((100% - 75px) / 4);
  min-height: 128px;
  padding: 20px 18px 15px;
  text-align: center;
  border-radius: 13px;
}

.number-card span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 1px 11px;
  color: #d48900;
  background: #fff2d2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.number-card h3 {
  margin: 9px 0 2px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--black);
  background: var(--orange-2);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 24px rgba(245, 164, 0, 0.25);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 34px;
  font-weight: 900;
}

.slider-prev {
  right: -10px;
}

.slider-next {
  left: -10px;
}

.why-section {
  padding: 18px 0 10px;
  background: var(--soft);
}

.why-panel {
  padding: 26px 26px 25px;
  border-radius: 16px;
}

.why-panel .section-heading {
  margin-bottom: 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.why-grid article {
  min-height: 128px;
  padding: 13px 19px 9px;
  border-left: 1px solid var(--line);
}

.why-grid article:last-child {
  border-left: 0;
}

.why-icon {
  min-width: 50px;
  height: 39px;
  display: inline-grid;
  place-items: center;
  margin-inline: auto;
  padding: 0 9px;
  color: var(--black);
  border: 2px solid #d6dbe2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.why-grid h3 {
  margin-top: 10px;
  font-size: 16px;
}

.stats-section {
  padding: 8px 0 30px;
  background: var(--soft);
}

.stats-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  padding: 28px 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 22%, rgba(245, 164, 0, 0.14), transparent 18%),
    radial-gradient(circle at 98% 100%, rgba(245, 164, 0, 0.16), transparent 18%),
    linear-gradient(180deg, #11151a 0%, #07090c 100%);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stats-bar article {
  text-align: center;
  padding: 2px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-bar article:last-child {
  border-left: 0;
}

.stats-bar strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 900;
  line-height: 1.15;
  direction: ltr;
}

.stats-bar p {
  margin: 8px 0 0;
  color: #f3f5f7;
  font-weight: 800;
}

.testimonials-section {
  padding: 25px 0 20px;
  background: #ffffff;
}

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

.testimonial-card {
  position: relative;
  min-height: 149px;
  padding: 24px 24px 15px;
  border-radius: 13px;
}

.quote-mark {
  position: absolute;
  top: 9px;
  left: 22px;
  color: var(--orange);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.customer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(180deg, #ffe4aa, var(--orange-2));
  border-radius: 50%;
  font-weight: 900;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 15px;
}

.testimonial-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.stars {
  margin-top: 7px;
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0;
  text-align: center;
}

.brands-section {
  padding: 4px 0 31px;
  background: #ffffff;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 23px;
}

.brand-strip span {
  min-height: 57px;
  display: grid;
  place-items: center;
  color: #727781;
  border-radius: 9px;
  font-size: 21px;
  font-weight: 900;
  filter: grayscale(1);
}

.cta-section {
  position: relative;
  z-index: 2;
  padding: 0;
  background: #ffffff;
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  min-height: 117px;
  padding: 24px 56px;
  color: var(--black);
  background: linear-gradient(135deg, var(--orange-2) 0%, #f5a400 68%, #f4a000 100%);
  border-radius: 12px;
  box-shadow: 0 22px 45px rgba(245, 164, 0, 0.28);
}

.cta-box h2 {
  margin: 0 0 5px;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 900;
  line-height: 1.35;
}

.cta-box p {
  margin: 0;
  color: #473100;
  font-size: 16px;
  font-weight: 700;
}

.site-footer {
  margin-top: 0;
  padding: 58px 0 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 6% 2%, rgba(245, 164, 0, 0.12), transparent 21%),
    linear-gradient(180deg, #1d2229 0%, #11161b 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-logo {
  margin-bottom: 17px;
}

.footer-logo img {
  width: 178px;
  height: auto;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--orange-2);
  font-size: 18px;
  font-weight: 900;
}

.footer-grid a,
.footer-grid p {
  color: #dce2ea;
  font-size: 14px;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
}

.footer-grid p {
  margin: 8px 0;
}

.footer-about p {
  max-width: 330px;
}

.footer-about {
  grid-column: span 2;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #f5f7fa;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.footer-grid span {
  color: var(--orange-2);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 19px;
  color: #c8ced7;
  font-size: 13px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  margin-top: 0;
  padding: 92px 0 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 26, 31, 0.96), rgba(23, 26, 31, 0.72)),
    url("../images/slider/slide-01.jpg") center/cover no-repeat;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 0 12px;
  font-size: clamp(33px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.45;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #edf0f4;
  font-size: 18px;
  font-weight: 600;
}

.page-section {
  padding: 58px 0;
  background: var(--soft);
}

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

.page-card {
  min-height: 168px;
  padding: 24px;
  border-radius: 16px;
}

.page-card h2,
.page-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
}

.page-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 25px;
  font-weight: 900;
}

.page-note {
  margin-top: 24px;
  padding: 22px 26px;
  color: var(--white);
  background: linear-gradient(180deg, #242a31, #11161b);
  border-radius: 16px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #f6d285;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: #ffffff;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 28px;
  align-items: start;
}

.content-flow,
.related-links {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.content-flow {
  padding: 30px;
}

.content-flow h2 {
  margin: 34px 0 12px;
  color: var(--black);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.55;
}

.content-flow h2:first-child {
  margin-top: 0;
}

.content-flow h3 {
  margin: 24px 0 9px;
  color: var(--black);
  font-size: 21px;
  font-weight: 900;
}

.content-flow p {
  margin: 0 0 15px;
  color: #3f4652;
  font-weight: 600;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 16px 0 22px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 38px 11px 13px;
  color: #2f3540;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 13px;
  color: var(--orange);
  font-weight: 900;
}

.content-actions,
.cta-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.related-links {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.related-links h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 19px;
  font-weight: 900;
}

.related-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 8px 13px;
  color: #222832;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-item summary {
  cursor: pointer;
  padding: 17px 19px;
  color: var(--black);
  font-size: 17px;
  font-weight: 900;
}

.faq-item p {
  padding: 0 19px 18px;
  margin: 0;
}

.data-note {
  margin: 24px 0 0;
  padding: 20px 22px;
  color: #2f3540;
  background: #fff8e8;
  border: 1px solid #ffe1a1;
  border-radius: 14px;
}

.data-note strong {
  display: block;
  margin-bottom: 6px;
  color: #8a5a00;
  font-weight: 900;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.pricing-table article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.pricing-table h3 {
  margin-top: 0;
}

.pricing-table strong {
  color: var(--orange);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 20px;
  align-items: start;
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #2f3540;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 164, 0, 0.14);
}

.code-sample {
  margin-top: 20px;
  overflow-x: auto;
  color: #f8fafc;
  background: #11161b;
  border-radius: 14px;
}

.code-sample pre {
  margin: 0;
  padding: 20px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.8;
}

.service-strip strong {
  direction: ltr;
}

@media (max-width: 1380px) {
  .nav-menu > .nav-item > .nav-link {
    padding-inline: 9px;
    font-size: 12px;
  }

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

  .login-btn-secondary {
    display: none;
  }
}

@media (max-width: 1240px) {
  .menu-logo img {
    width: 56px;
  }

  .nav-menu > .nav-item > .nav-link {
    padding-inline: 8px;
    font-size: 12px;
  }

  .login-btn {
    padding-inline: 14px;
  }
}

@media (max-width: 1260px) {
  .container {
    width: min(100% - 34px, var(--container));
  }

  .navbar {
    min-height: 70px;
    border-radius: 28px;
    gap: 18px;
  }

  .menu-logo img {
    width: 62px;
  }

  body.has-scrolled .menu-logo {
    width: 62px;
    max-width: 62px;
  }

  .menu-toggle {
    display: grid;
    order: 2;
  }

  .menu-logo {
    order: 1;
  }

  .nav-actions {
    order: 3;
    margin-right: auto;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 17px;
    right: 17px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    direction: rtl;
    gap: 8px;
    align-items: stretch;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding: 16px;
    background: rgba(17, 21, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .nav-menu a {
    width: 100%;
    font-size: 13px;
    justify-content: flex-start;
    text-align: right;
  }

  .nav-item {
    display: block;
  }

  .nav-menu > .nav-item > .nav-link {
    justify-content: flex-start;
    direction: rtl;
  }

  .nav-menu > .has-submenu > .nav-link .submenu-indicator {
    margin-right: auto;
  }

  .submenu {
    position: static;
    width: calc(100% - 22px);
    min-width: 0;
    display: none;
    margin-top: 7px;
    margin-right: 22px;
    margin-left: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-right: 2px solid rgba(245, 164, 0, 0.45);
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    display: none;
  }

  .has-submenu.is-submenu-open .submenu {
    display: block;
  }

  .mega-menu-grid,
  .mega-links {
    grid-template-columns: 1fr;
  }

  .mega-link {
    direction: rtl;
    text-align: right;
  }

  .mega-link {
    min-height: auto;
  }

  .mega-visual {
    display: none;
  }

  .home-slider {
    min-height: 690px;
    height: auto;
  }

  .slide-content {
    padding-block: 70px;
  }

  .feature-cards,
  .testimonial-grid,
  .brand-strip,
  .page-grid,
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .related-links {
    position: static;
  }

  .number-card {
    flex-basis: calc((100% - 25px) / 2);
  }

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

  .why-grid article,
  .why-grid article:last-child {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .stats-bar article:nth-child(2n) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

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

  .site-header {
    position: relative;
  }

  .navbar {
    gap: 9px;
    padding: 10px 12px;
  }

  .logo-panel-inner {
    min-height: 72px;
    gap: 12px;
  }

  .main-logo img {
    width: 160px;
  }

  .phone-quick {
    min-height: 40px;
    gap: 7px;
    padding-inline: 10px 12px;
    font-size: 13px;
  }

  .support-quick {
    width: 40px;
    min-height: 40px;
  }

  .phone-quick img,
  .support-quick img {
    width: 23px;
    height: 23px;
  }

  .floating-chat {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .floating-chat-toggle {
    width: 52px;
    height: 52px;
  }

  .floating-chat-toggle img {
    width: 29px;
    height: 29px;
  }

  .floating-chat-panel {
    bottom: 66px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }

  .floating-chat-body {
    padding: 8px;
  }

  .floating-chat-frame {
    height: clamp(360px, calc(100vh - 150px), 560px);
    border-radius: 12px;
  }

  .floating-chat-head {
    min-height: 58px;
    padding: 10px 13px;
  }

  .menu-logo img {
    width: 54px;
  }

  body.has-scrolled .menu-logo {
    width: 54px;
    max-width: 54px;
  }

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

  .cart-btn svg {
    width: 24px;
    height: 24px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-menu {
    grid-template-columns: 1fr;
    left: 12px;
    right: 12px;
  }

  .home-slider {
    min-height: 720px;
    margin-top: 0;
  }

  .hero-slide img {
    height: 100%;
  }

  .slide-content {
    align-items: end;
    justify-content: center;
    padding: 72px 0 86px;
  }

  .slide-copy {
    padding: 25px 22px;
    border-radius: 22px;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 30px;
    letter-spacing: 0;
  }

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

  .slide-actions,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-control {
    display: none;
  }

  .feature-cards,
  .why-grid,
  .stats-bar,
  .testimonial-grid,
  .brand-strip,
  .footer-grid,
  .page-grid,
  .check-list,
  .pricing-table {
    grid-template-columns: 1fr;
  }

  .feature-cards {
    margin-top: -48px;
  }

  .numbers-section {
    padding-top: 44px;
  }

  .number-slider {
    gap: 14px;
    scroll-snap-type: x mandatory;
  }

  .number-card {
    flex-basis: 86%;
    scroll-snap-align: start;
  }

  .slider-btn {
    display: none;
  }

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

  .section-heading p::before,
  .section-heading-row h2::after {
    width: 30px;
  }

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

  .why-grid article,
  .why-grid article:last-child {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }

  .stats-bar {
    padding-block: 14px;
  }

  .stats-bar article,
  .stats-bar article:nth-child(2n) {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-block: 17px;
  }

  .stats-bar article:last-child {
    border-bottom: 0;
  }

  .brand-strip {
    gap: 14px;
  }

  .cta-box {
    min-height: auto;
    padding: 28px 22px;
    text-align: center;
  }

  .site-footer {
    margin-top: 0;
    padding-top: 46px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-about {
    grid-column: auto;
  }

  .content-flow {
    padding: 22px;
  }

  .content-flow h2 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    margin-top: 0;
    padding: 70px 0 58px;
  }
}

@media (max-width: 430px) {
  .main-logo img {
    width: 132px;
  }

  .header-quick-links {
    gap: 7px;
  }

  .phone-quick {
    min-height: 38px;
    padding-inline: 8px 10px;
    font-size: 12px;
  }

  .support-quick {
    width: 38px;
    min-height: 38px;
  }

  .phone-quick img,
  .support-quick img {
    width: 22px;
    height: 22px;
  }

  .floating-chat-panel {
    width: calc(100vw - 18px);
  }

  .floating-chat-frame {
    height: clamp(340px, calc(100vh - 145px), 540px);
  }

  .menu-logo img {
    width: 48px;
  }

  .login-btn {
    padding-inline: 10px;
  }

  .login-btn-secondary {
    display: none;
  }

  .slide-copy h1,
  .slide-copy h2 {
    font-size: 27px;
  }
}
