/* =========================================================
   SISFORTY WEBSITE
   ========================================================= */

:root {
  --primary: hwb(263 3% 1%);
  --primary-dark: hsl(216, 78%, 40%);
  --primary-soft: #eaf3ff;

  --dark: hsl(219, 22%, 15%);
  --text: #596579;
  --muted: #7c8799;

  --white: #ffffff;
  --light: #f7f9fc;
  --border: #e8edf4;

  --shadow-sm: 0 5px 20px rgba(23, 32, 51, 0.06);
  --shadow-md: 0 15px 45px rgba(23, 32, 51, 0.1);

  --radius: 14px;
}

/* =========================================================
   GLOBAL
   ========================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;

  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  color: var(--text);
  background: var(--white);

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-padding {
  padding: 100px 0;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 9999;

  background: rgba(255, 255, 255, 0.96);

  border-bottom: 1px solid transparent;

  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);

  border-bottom-color: var(--border);

  box-shadow: var(--shadow-sm);
}

.site-header .navbar {
  min-height: 74px;
}

.sisforty-brand,
.footer-brand {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  font-size: 21px;

  font-weight: 800;

  color: var(--dark);
}

.sisforty-brand:hover,
.footer-brand:hover {
  color: var(--dark);
}

.brand-mark {
  width: 34px;
  height: 34px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--primary);

  color: #fff;

  font-size: 18px;
  font-weight: 800;

  box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
}

.brand-text {
  line-height: 1;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  position: relative;

  padding: 10px 14px !important;

  border-radius: 8px;

  color: #566174 !important;

  font-size: 14px;
  font-weight: 600;

  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--primary) !important;

  background: var(--primary-soft);
}

.nav-link.active {
  color: var(--primary) !important;

  background: var(--primary-soft);
}

.header-actions {
  display: flex;

  align-items: center;

  gap: 8px;
}

.btn {
  border-radius: 8px;

  font-weight: 600;

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);

  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);

  border-color: var(--primary-dark);

  box-shadow: 0 7px 18px rgba(13, 110, 253, 0.22);
}

.btn-login {
  padding: 8px 15px;

  color: var(--dark);

  background: transparent;
}

.btn-login:hover {
  color: var(--primary);

  background: var(--primary-soft);
}

.btn-register {
  padding: 9px 17px;
}

.navbar-toggler {
  border: 0;

  padding: 8px;

  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;

  padding-top: 150px;
  padding-bottom: 100px;

  min-height: 760px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.hero-background {
  position: absolute;

  width: 650px;
  height: 650px;

  right: -220px;
  top: 60px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(13, 110, 253, 0.12) 0%, rgba(13, 110, 253, 0) 70%);

  pointer-events: none;
}

.hero-content {
  position: relative;

  z-index: 2;

  padding-right: 30px;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 7px 12px;

  border-radius: 50px;

  background: var(--primary-soft);

  color: var(--primary);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.8px;
}

.badge-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--primary);

  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.hero-content h1 {
  margin-top: 22px;
  margin-bottom: 20px;

  max-width: 650px;

  color: var(--dark);

  font-size: clamp(42px, 5vw, 68px);

  line-height: 1.05;

  letter-spacing: -2.5px;

  font-weight: 800;
}

.hero-content h1 span {
  display: inline;

  color: var(--primary);
}

.hero-description {
  max-width: 590px;

  margin-bottom: 30px;

  color: var(--text);

  font-size: 17px;

  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.hero-buttons .btn {
  padding: 12px 20px;
}

.hero-buttons i {
  margin-left: 5px;
}

.hero-info {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;

  margin-top: 25px;
}

.hero-info div {
  display: flex;

  align-items: center;

  gap: 7px;

  color: var(--muted);

  font-size: 13px;
}

.hero-info i {
  color: #198754;
}

/* =========================================================
   HERO DASHBOARD
   ========================================================= */

.hero-dashboard {
  position: relative;

  padding-left: 30px;
}

.dashboard-window {
  position: relative;

  width: 100%;

  border-radius: 16px;

  overflow: hidden;

  background: #fff;

  border: 1px solid #e3e9f1;

  box-shadow: 0 35px 80px rgba(23, 32, 51, 0.13), 0 8px 25px rgba(13, 110, 253, 0.06);

  transform: perspective(1200px) rotateY(-3deg);

  transition: transform 0.4s ease;
}

.dashboard-window:hover {
  transform: perspective(1200px) rotateY(0deg);
}

.dashboard-topbar {
  height: 43px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 15px;

  background: #f8fafd;

  border-bottom: 1px solid var(--border);

  font-size: 11px;

  color: #768195;
}

.window-dots {
  display: flex;

  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #c8d0dc;
}

.dashboard-body {
  display: flex;

  min-height: 390px;
}

.dashboard-sidebar {
  width: 55px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 12px;

  padding: 14px 0;

  background: #172033;
}

.sidebar-logo {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 10px;

  border-radius: 7px;

  background: var(--primary);

  color: #fff;

  font-size: 12px;
  font-weight: 800;
}

.sidebar-menu {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 7px;

  color: #8f9aab;

  font-size: 14px;
}

.sidebar-menu.active {
  color: #fff;

  background: rgba(255, 255, 255, 0.12);
}

.dashboard-main {
  flex: 1;

  padding: 20px;

  background: #f8fafd;
}

.dashboard-heading {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 18px;
}

.dashboard-heading small {
  display: block;

  color: #8b95a5;

  font-size: 9px;

  margin-bottom: 3px;
}

.dashboard-heading h4 {
  margin: 0;

  color: var(--dark);

  font-size: 15px;
}

.fake-avatar {
  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary-soft);

  color: var(--primary);

  font-size: 11px;
  font-weight: 700;
}

.dashboard-stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 9px;

  margin-bottom: 12px;
}

.stat-card {
  position: relative;

  padding: 12px;

  border-radius: 9px;

  background: #fff;

  border: 1px solid var(--border);

  box-shadow: 0 3px 10px rgba(23, 32, 51, 0.03);
}

.stat-icon {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 7px;

  border-radius: 6px;

  background: var(--primary-soft);

  color: var(--primary);

  font-size: 11px;
}

.stat-card small {
  display: block;

  margin-bottom: 2px;

  color: #8a94a4;

  font-size: 8px;
}

.stat-card strong {
  color: var(--dark);

  font-size: 17px;
}

.dashboard-chart {
  padding: 14px;

  border-radius: 9px;

  background: #fff;

  border: 1px solid var(--border);
}

.chart-header {
  display: flex;

  justify-content: space-between;

  margin-bottom: 12px;

  color: var(--dark);

  font-size: 10px;
}

.chart-header span {
  color: #8c96a7;
}

.fake-chart {
  position: relative;

  height: 120px;

  overflow: hidden;

  background: repeating-linear-gradient(to bottom, transparent 0, transparent 29px, #eef2f7 30px);
}

.chart-line {
  position: absolute;

  width: 120%;
  height: 90px;

  left: -5px;
  top: 15px;

  border-top: 2px solid var(--primary);

  transform: rotate(-4deg) skewX(-12deg);
}

.chart-point {
  position: absolute;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--primary);

  border: 2px solid #fff;

  box-shadow: 0 0 0 1px var(--primary);
}

.point-1 {
  left: 12%;
  top: 75%;
}

.point-2 {
  left: 32%;
  top: 50%;
}

.point-3 {
  left: 51%;
  top: 57%;
}

.point-4 {
  left: 72%;
  top: 25%;
}

.point-5 {
  left: 90%;
  top: 15%;
}

/* =========================================================
   STATS
   ========================================================= */

.stats-section {
  padding: 45px 0;

  background: #fff;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.simple-stat {
  text-align: center;

  padding: 10px;
}

.simple-stat strong {
  display: block;

  margin-bottom: 4px;

  color: var(--dark);

  font-size: 32px;

  font-weight: 800;
}

.simple-stat span {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
  max-width: 720px;

  margin: 0 auto;
}

.section-label,
.download-label {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--primary);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}

.section-heading h2 {
  margin-bottom: 15px;

  color: var(--dark);

  font-size: clamp(30px, 4vw, 43px);

  line-height: 1.15;

  letter-spacing: -1px;

  font-weight: 800;
}

.section-heading h2 span {
  color: var(--primary);
}

.section-heading p {
  margin: 0 auto;

  max-width: 620px;

  color: var(--text);

  line-height: 1.7;
}

/* =========================================================
   FEATURES
   ========================================================= */

.features-section {
  background: #f8fafd;
}

.feature-card {
  height: 100%;

  padding: 28px;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  background: #fff;

  box-shadow: var(--shadow-sm);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(13, 110, 253, 0.25);

  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 11px;

  background: var(--primary-soft);

  color: var(--primary);

  font-size: 21px;
}

.feature-card h4 {
  margin-bottom: 11px;

  color: var(--dark);

  font-size: 17px;

  font-weight: 700;
}

.feature-card p {
  min-height: 67px;

  margin-bottom: 15px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.7;
}

.feature-link {
  color: var(--primary);

  font-size: 13px;

  font-weight: 700;
}

.feature-link i {
  margin-left: 3px;
}

/* =========================================================
   ADVANTAGES
   ========================================================= */

.advantages-section {
  background: #fff;
}

.advantages-content {
  padding-right: 50px;
}

.advantages-content h2 {
  margin-bottom: 18px;

  color: var(--dark);

  font-size: clamp(30px, 4vw, 43px);

  line-height: 1.15;

  letter-spacing: -1px;

  font-weight: 800;
}

.advantages-content > p {
  margin-bottom: 30px;

  line-height: 1.75;
}

.advantage-item {
  display: flex;

  gap: 15px;

  margin-bottom: 20px;
}

.advantage-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: var(--primary-soft);

  color: var(--primary);
}

.advantage-item h5 {
  margin: 0 0 4px;

  color: var(--dark);

  font-size: 15px;
}

.advantage-item p {
  margin: 0;

  font-size: 13px;

  line-height: 1.6;
}

/* =========================================================
   MAP
   ========================================================= */

.mapping-preview {
  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 16px;

  background: #f8fafd;

  box-shadow: var(--shadow-md);
}

.map-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 16px 18px;

  background: #fff;

  border-bottom: 1px solid var(--border);
}

.map-header small {
  display: block;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.7px;
}

.map-header strong {
  display: block;

  margin-top: 2px;

  color: var(--dark);

  font-size: 14px;
}

.map-header button {
  width: 32px;
  height: 32px;

  border: 0;

  border-radius: 7px;

  background: var(--primary-soft);

  color: var(--primary);
}

.map-area {
  position: relative;

  height: 390px;

  overflow: hidden;

  background: linear-gradient(
      30deg,
      transparent 48%,
      rgba(210, 218, 229, 0.7) 49%,
      rgba(210, 218, 229, 0.7) 51%,
      transparent 52%
    ),
    linear-gradient(
      120deg,
      transparent 48%,
      rgba(210, 218, 229, 0.7) 49%,
      rgba(210, 218, 229, 0.7) 51%,
      transparent 52%
    ),
    #eef4eb;

  background-size: 110px 110px;
}

.map-road {
  position: absolute;

  background: #fff;

  box-shadow: 0 0 0 1px #dbe2d8;
}

.road-1 {
  width: 120%;
  height: 30px;

  top: 45%;

  left: -10%;

  transform: rotate(-18deg);
}

.road-2 {
  width: 30px;
  height: 120%;

  top: -10%;
  left: 53%;

  transform: rotate(22deg);
}

.road-3 {
  width: 120%;
  height: 20px;

  top: 70%;
  left: -10%;

  transform: rotate(9deg);
}

.map-marker {
  position: absolute;

  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  border: 3px solid #fff;

  color: #fff;

  font-size: 9px;

  font-weight: 800;

  box-shadow: 0 5px 12px rgba(13, 110, 253, 0.25);

  animation: markerPulse 2.5s infinite;
}

.marker-1 {
  left: 15%;
  top: 22%;
}

.marker-2 {
  left: 34%;
  top: 18%;
}

.marker-3 {
  left: 67%;
  top: 20%;
}

.marker-4 {
  left: 79%;
  top: 42%;
}

.marker-5 {
  left: 26%;
  top: 54%;
}

.marker-6 {
  left: 49%;
  top: 62%;
}

.marker-7 {
  left: 73%;
  top: 70%;
}

.marker-8 {
  left: 12%;
  top: 78%;
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.25);
  }

  50% {
    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.25), 0 0 0 7px rgba(13, 110, 253, 0.08);
  }
}

/* =========================================================
   DOWNLOAD
   ========================================================= */

.download-section {
  padding: 80px 0;

  background: #f8fafd;
}

.download-box {
  position: relative;

  overflow: hidden;

  padding: 60px;

  border-radius: 22px;

  background: linear-gradient(135deg, #0d6efd, #084298);

  color: #fff;

  box-shadow: 0 25px 60px rgba(13, 110, 253, 0.25);
}

.download-box::after {
  content: '';

  position: absolute;

  width: 350px;
  height: 350px;

  right: -130px;
  top: -130px;

  border-radius: 50%;

  border: 50px solid rgba(255, 255, 255, 0.06);
}

.download-label {
  color: rgba(255, 255, 255, 0.75);
}

.download-box h2 {
  max-width: 600px;

  margin-bottom: 15px;

  font-size: clamp(30px, 4vw, 43px);

  line-height: 1.15;

  letter-spacing: -1px;

  font-weight: 800;
}

.download-box p {
  max-width: 580px;

  margin-bottom: 25px;

  color: rgba(255, 255, 255, 0.8);

  line-height: 1.7;
}

.download-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.download-buttons .btn {
  padding: 12px 18px;
}

.windows-preview {
  position: relative;

  z-index: 2;

  width: 220px;

  margin: 0 auto;

  padding: 30px 20px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.18);

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

.windows-logo {
  margin-bottom: 12px;

  font-size: 55px;

  line-height: 1;
}

.windows-preview strong {
  font-size: 20px;
}

.windows-preview span {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;
}

.windows-preview small {
  margin-top: 15px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
  background: #fff;
}

.faq-accordion {
  max-width: 850px;

  margin: 45px auto 0;
}

.faq-accordion .accordion-item {
  margin-bottom: 10px;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 10px !important;

  background: #fff;
}

.faq-accordion .accordion-button {
  padding: 19px 20px;

  color: var(--dark);

  font-size: 14px;

  font-weight: 700;

  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);

  background: var(--primary-soft);
}

.faq-accordion .accordion-body {
  padding: 0 20px 20px;

  color: var(--text);

  font-size: 14px;

  line-height: 1.7;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 100px 0;

  background: #f8fafd;
}

.cta-content {
  max-width: 750px;

  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 15px;

  color: var(--dark);

  font-size: clamp(32px, 4vw, 48px);

  font-weight: 800;

  letter-spacing: -1px;
}

.cta-content p {
  margin-bottom: 25px;

  line-height: 1.7;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 70px 0 25px;

  background: #172033;

  color: #aeb7c7;
}

.footer-brand {
  color: #fff;

  margin-bottom: 18px;
}

.footer-brand:hover {
  color: #fff;
}

.footer-description {
  max-width: 420px;

  margin: 0;

  color: #8f99aa;

  font-size: 13px;

  line-height: 1.8;
}

.site-footer h6 {
  margin-bottom: 18px;

  color: #fff;

  font-size: 13px;

  font-weight: 700;
}

.site-footer ul {
  list-style: none;

  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer li a {
  color: #8f99aa;

  font-size: 13px;

  transition: color 0.2s ease;
}

.site-footer li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 55px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #7e899b;

  font-size: 12px;
}

.social-links {
  display: flex;

  gap: 8px;
}

.social-links a {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 7px;

  background: rgba(255, 255, 255, 0.06);

  color: #9ca7b8;

  transition: all 0.2s ease;
}

.social-links a:hover {
  color: #fff;

  background: var(--primary);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
  position: fixed;

  right: 20px;
  bottom: 20px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 9px;

  background: var(--primary);

  color: #fff;

  opacity: 0;

  visibility: hidden;

  transform: translateY(10px);

  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);

  transition: all 0.25s ease;

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .site-header .navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    margin-top: 10px;

    padding: 10px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fff;

    box-shadow: var(--shadow-md);
  }

  .navbar-nav {
    gap: 2px;
  }

  .nav-link {
    width: 100%;

    padding: 10px 12px !important;
  }

  .header-actions {
    margin-top: 8px;

    padding-top: 10px;

    border-top: 1px solid var(--border);

    justify-content: flex-end;
  }

  .hero-section {
    padding-top: 120px;

    min-height: auto;
  }

  .hero-content {
    padding-right: 0;

    margin-bottom: 55px;
  }

  .hero-dashboard {
    padding-left: 0;
  }

  .advantages-content {
    padding-right: 0;

    margin-bottom: 45px;
  }

  .download-box {
    padding: 45px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 75px 0;
  }

  .hero-section {
    padding-top: 105px;

    padding-bottom: 70px;
  }

  .hero-content h1 {
    font-size: 42px;

    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-info {
    gap: 10px 15px;
  }

  .dashboard-window {
    transform: none;
  }

  .dashboard-body {
    min-height: 320px;
  }

  .dashboard-sidebar {
    width: 45px;
  }

  .dashboard-main {
    padding: 13px;
  }

  .stat-card {
    padding: 8px;
  }

  .stat-card strong {
    font-size: 14px;
  }

  .fake-chart {
    height: 90px;
  }

  .stats-section {
    padding: 30px 0;
  }

  .simple-stat strong {
    font-size: 25px;
  }

  .feature-card {
    padding: 23px;
  }

  .feature-card p {
    min-height: auto;
  }

  .map-area {
    height: 300px;
  }

  .download-section {
    padding: 60px 0;
  }

  .download-box {
    padding: 35px 25px;
  }

  .windows-preview {
    margin-top: 35px;
  }

  .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 35px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-badge {
    font-size: 9px;
  }

  .dashboard-stats {
    gap: 5px;
  }

  .dashboard-heading h4 {
    font-size: 13px;
  }

  .dashboard-topbar {
    height: 36px;
  }

  .dashboard-body {
    min-height: 280px;
  }

  .dashboard-sidebar {
    width: 38px;

    gap: 7px;
  }

  .sidebar-logo,
  .sidebar-menu {
    transform: scale(0.85);
  }

  .dashboard-main {
    padding: 9px;
  }

  .stat-card {
    padding: 6px;
  }

  .stat-icon {
    width: 21px;
    height: 21px;

    margin-bottom: 4px;
  }

  .stat-card small {
    font-size: 7px;
  }

  .stat-card strong {
    font-size: 12px;
  }

  .chart-header {
    font-size: 8px;
  }

  .map-area {
    height: 270px;
  }

  .map-marker {
    width: 29px;
    height: 29px;

    font-size: 7px;
  }

  .download-box h2 {
    font-size: 30px;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-buttons .btn {
    width: 100%;
  }
}
/* =========================================================
   WHATSAPP CONTACT BUTTON
========================================================= */

.whatsapp-button {
  position: fixed;

  right: 22px;
  bottom: 75px;

  z-index: 9998;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 12px 17px;

  border-radius: 50px;

  background: #25d366;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);

  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-button i {
  font-size: 22px;

  line-height: 1;
}

.whatsapp-button:hover {
  color: #fff;

  background: #20bd5a;

  transform: translateY(-3px);

  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* MOBILE */

@media (max-width: 575.98px) {
  .whatsapp-button {
    right: 16px;
    bottom: 72px;

    width: 48px;
    height: 48px;

    justify-content: center;

    padding: 0;
  }

  .whatsapp-button span {
    display: none;
  }

  .whatsapp-button i {
    font-size: 24px;
  }
}

/* =========================================================
   HERO IMAGE FRAME
========================================================= */

.hero-image-wrapper {
  position: relative;
  padding: 14px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 24px;

  background: #ffffff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

  overflow: hidden;
}

/* IMAGE */

.hero-image {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 16px;

  object-fit: cover;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HOVER */

.hero-image-wrapper:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.015);
}

/* MOBILE */

@media (max-width: 991.98px) {
  .hero-image-wrapper {
    margin-top: 30px;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-image {
    border-radius: 14px;
  }
}

@media (max-width: 575.98px) {
  .hero-image-wrapper {
    padding: 7px;
    border-radius: 16px;
  }

  .hero-image {
    border-radius: 12px;
  }
}
