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

:root {
  --color-primary: #D42027;
  --color-primary-light: #FCB922;
  --color-dark: #120036;
  --color-bg: #fff;
  --font-family: 'Plus Jakarta Sans', -apple-system, Roboto, Helvetica, sans-serif;
  --max-width: 1440px;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* REUSABLE CLASSES */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* FIXED HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  gap: 20px;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 15px 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  max-width: 200px;
  width: 100%;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #2c4161;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: #d42027;
}

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

.nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: #d42027;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-outline {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 21px;
  background: #fff;
  color: #2c4161;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #2c4161;
}

.logo-icon img {
  width: 100%;
}

.btn-primary {
  padding: 8px 16px;
  background: #d42027;
  color: #fff;
  border: none;
  border-radius: 21px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.btn-primary:hover {
  background: #b71c1c;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  border-radius: 2px;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 8px;
}

.hamburger-line:nth-child(3) {
  top: 16px;
}

body.menu-open .hamburger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

body.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobile Nav Dropdown */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 0 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  max-height: 100vh;
  height: 100vh;
}

body.menu-open .mobile-nav {

  padding: 20px 20px 30px;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: #d42027;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.mobile-nav-buttons a {
  text-align: center;
}

.hero-visual img {
  /* aspect-ratio: 1/1; */
  height: 580px;
  max-width: 500px;
  width: 100%;
  object-fit: fill;
  object-position: bottom right;
}

.section-hero-container {
  background-color: #f7f7f7;
}

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

  .header-right {
    display: none;
  }

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

/* HERO SECTION */
.hero {
  padding: 160px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 140px 0 60px;
    gap: 60px;
  }
}

.hero-content {
  flex: 1;
  padding-bottom: 80px;
  max-width: 700px;
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #000;
  letter-spacing: -0.02em;
  padding-top: 70px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }
}

.hero p {
  font-size: 23px;
  color: #2c4161;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 30px;
}

.hero .sub-desc-small {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #2c4161;
}

/* .features-grid:last-of-type .feature-icon img {
  background-color: #fff;
}

.features-grid:last-of-type .feature-icon img {
      width: 60px;
    height: 60px;
    border-radius: 12px;
} */

@media (max-width: 1024px) {
  .hero p {
    margin: 0 auto 32px;
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 16px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
}

.btn-demo {
  padding: 14px 28px;
  background: #d42027;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.25);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-demo:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

.btn-explore {
  padding: 14px 28px;
  border: 1px solid #2c4161;
  border-radius: 30px;
  background: #fff;
  color: #2c4161;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-explore:hover {
  background: #f9f9f9;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 500px;
  width: 100%;
}

/* .hero-visual img,
.visual-img-container img {
  width: 100%;
} */

/* DASHBOARD HERO PAGINATION */
.dashboard-pagination {
  position: absolute !important;
  bottom: 40px !important;
  left: 100px !important;
  width: auto !important;
  text-align: left;
  z-index: 10;
  transform: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboardHeroSwiper {
  max-width: 1240px;
}

.dashboardHeroSwiper .container {
  padding: 0;
}

.dashboard-pagination {
  left: 0 !important;
}

.dashboard-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D1D5DB !important;
  opacity: 1 !important;
  border-radius: 50%;
  margin: 0 !important;
  transition: all 0.4s ease;
}

.dashboard-pagination .swiper-pagination-bullet-active {
  width: 32px;
  height: 10px;
  border-radius: 20px;
  background: #D42027 !important;
}

@media (max-width: 1024px) {
  .dashboard-pagination {
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center;
    bottom: 20px !important;
    justify-content: center;
  }
}

.phone-mockup {
  width: 300px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  padding: 12px;
  border: 10px solid #000;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #fdfdfd;
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid #f0f0f0;
}

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

.phone-greeting {
  font-size: 12px;
  color: #888;
  margin-bottom: 2px;
}

.phone-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.profile-pic {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pending-card {
  background: linear-gradient(135deg, #f05252, #d42027);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.2);
}

.pending-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pending-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.pending-text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 4px;
}

.action-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #f5f5f5;
}

.action-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #fff5f5;
  color: #d42027;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.action-meta {
  font-size: 10px;
  color: #888;
  margin-bottom: 6px;
  font-weight: 500;
}

.action-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.4;
}

.action-author {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.author-avatar {
  width: 16px;
  height: 16px;
  background: #e0e0e0;
  border-radius: 50%;
  display: inline-block;
}

.stats-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.stat-box {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #f5f5f5;
}

.stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #000;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 10px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-badge {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: transform 0.3s;
}

.floating-badge:hover {
  transform: translateY(-5px);
}

.ai-badge {
  top: 80px;
  right: -50px;
}

@media (max-width: 480px) {
  .ai-badge {
    right: -10px;
    top: 40px;
  }
}

.ai-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f05252, #ff8a65);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.ai-text {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}

.multilingual-badge {
  bottom: 60px;
  left: -70px;
}

@media (max-width: 480px) {
  .multilingual-badge {
    left: -10px;
    bottom: 60px;
  }
}

.globe-icon {
  width: 36px;
  height: 36px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 16px;
}

.multi-text {
  font-size: 11px;
  color: #666;
}

.multi-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 2px;
}

/* SECTION COMMONS */
.section-pad {
  padding: 70px 0;
}

.visuals {
  background-color: #f6f8fc;
}


@media (max-width: 768px) {
  .section-pad {
    padding: 40px 0;
  }
}

.section-label {
  font-size: 18px;
  font-weight: 500;
  color: #2c4161;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #2c4161;
}

.section-title {
  font-size: 50px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: normal;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
    line-height: 35px;
  }
}

.section-desc {
  font-size: 18px;
  color: #2c4161;
  max-width: 948px;
  margin-bottom: 40px;
  line-height: 27px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/* FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.features-grid:last-of-type {
  margin-bottom: 0;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: #eee;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #f1f3f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #2c4161;
  font-size: 35px;
  transition: all 0.3s;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  color: #000;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #000;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 15px;
  color: #2c4161;
  line-height: 21px;
  font-weight: 500;
}

/* PRODUCT VISUALS */
.visuals-content {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .visuals-content {
    flex-direction: column;
    gap: 60px;
    padding: 40px 0;
  }
}

.visuals-text {
  display: flex;
  gap: 84px;
  /* align-items: center; */
}

.visual-left {
  max-width: 659px;
  width: 100%;
}

.visuals-text .section-desc {
  max-width: 500px;
  width: 100%;
}

.visuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  background: #fff;
  border-radius: 30px;
}

.visual-column {
  /* background: #fff; */
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* border: 1px solid #f0f0f0; */
  display: flex;
  flex-direction: column;
}

/* .visual-column:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: #eee;
} */

.visual-img-container {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  /* background: #f8f9fa; */
  position: relative;
  padding: 20px;
  max-width: 520px;
}

.visual-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* transition: transform 0.6s ease; */
}

/* .visual-column:hover .visual-img-container img {
  transform: scale(1.05);
} */

.visual-content-box {
  padding: 20px 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.visual-content-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  line-height: normal;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.visual-content-box p {
  font-size: 17px;
  color: #2c4161;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.visual-points {
  list-style: none;
  padding: 0;
  margin: 0;
  /* margin-top: auto; */
}

.visual-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #2c4161;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.visual-points li:last-child {
  margin-bottom: 0;
}

.visual-points li i {
  color: #d42027;
  margin-top: 2px;
  font-size: 18px;
}

.app-badge img {
  max-width: 150px;

}

@media (max-width: 768px) {
  .visuals-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .visual-content-box {
    padding: 10px 20px 40px;
  }

  .visuals-text {
    flex-direction: column;
    gap: 20px;
  }

  .visuals-text .section-desc,
  .visual-left {
    max-width: 100%;
  }

  .visuals-grid .visual-column:last-child:nth-child(odd) .visual-img-container {
    max-width: 250px;
  }
}

/* Center the last column if it's on its own row */
.visuals-grid .visual-column:last-child:nth-child(odd) {
  grid-column: span 2;
  justify-self: center;
  /* max-width: calc(50% - 20px); */
  /* max-width: 100%; */
  /* width: 100%; */
  flex-direction: row;
}

.visuals-grid .visual-column:last-child:nth-child(odd) .visual-img-container {
  max-width: 300px;
  aspect-ratio: unset;
}

.visuals-grid .visual-column:last-child:nth-child(odd) .visual-content-box {
  padding: 20px;
}

@media (max-width: 768px) {
  .visuals-grid .visual-column:last-child:nth-child(odd) {
    grid-column: span 1;
    max-width: 100%;
  }
}

.visual-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
}

.v-card-1 {
  transform: translateY(40px);
}

@media (max-width: 768px) {
  .v-card-1 {
    transform: none;
  }
}

.visual-img {
  position: relative;
  height: 280px;
  background: #f5f5f5;
  overflow: hidden;
}

.visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-img i {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.visual-base-bg1 {
  background: linear-gradient(135deg, #ff8a65, #e53935);
}

.visual-base-bg2 {
  background: linear-gradient(135deg, #9e9e9e, #616161);
}

.visual-overlay {
  padding: 20px;
  background: #fff;
}

.detection-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff5f5;
  color: #d42027;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #ffdcdc;
}

.generate-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px;
  background: #fff;
  border: 2px solid #d42027;
  color: #d42027;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.generate-btn:hover {
  background: #d42027;
  color: #fff;
}

/* CHALLENGES SECTION */
.challenges-header {
  text-align: center;
  margin-bottom: 73px;
}

.challenges-header .section-label {
  justify-content: center;
}

.challenges-header .section-label::before {
  display: none;
}

.challenges-header p {
  margin: 0 auto;
  max-width: 948px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  max-width: 1010px;
  width: 100%;
  margin: 0 auto;
  gap: 60px;
}

@media (max-width: 768px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.challenge-box h3 {
  font-size: 38px;
  font-weight: 400;
  color: #0f1c30;
  line-height: 48px;
  margin-bottom: 20px;
}

.challenge-list {
  list-style: none;
}

.challenge-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 18px;
  color: #2c4161;
  font-weight: 600;
  line-height: normal;
}

.challenge-list li:last-child {
  border-bottom: none;
}

.list-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #fff;
  margin-top: 2px;
}

.problems .list-icon {
  background: #fee2e2;
  color: #d41e25;
}

.solutions .list-icon {
  background: #d41e25;
  color: #fff;
}

/* FAQ SECTION */
.faq {
  background: #f6f8fc;
  padding: 91px 0;
}

.faq-inner {
  margin: 0 auto;
  display: flex;
  gap: 56px;
}

@media (max-width: 800px) {
  .faq-inner {
    flex-direction: column;
    gap: 40px;
  }
}

.faq-left {
  flex: 1;
}

.faq-right {
  flex: 2;
}

.faq h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 52px;
  color: #000;
  letter-spacing: -0.02em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #ddd;
}

.faq-item.active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-color: #eee;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding: 15px 17px;
  cursor: pointer;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  color: #120036;
  gap: 17px;
}

.faq-question span {
  width: 100%;
}

.faq-icon {
  color: #8d9aa9;
  font-size: 17px;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 14px 24px 32px 54px;
  font-size: 20px;
  color: #2c4161;
  line-height: normal;
  display: none;
  font-weight: 500;
  border-top: 1px solid rgb(231, 231, 231);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CTA SECTION */
.cta-section {
  padding: 0 0 64px;
  background: linear-gradient(to bottom, #f6f8fc 0%, #f6f8fc 70%, #ffffff 100%);
}

.cta-box {
  background: linear-gradient(135deg,
      rgba(212, 32, 39, 1),
      rgba(252, 185, 34, 1));
  border-radius: 14px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 59px 84px 60px 60px;
  gap: 20px;
}

@media (max-width: 1024px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 30px 20px;
  }
}

.cta-text {
  flex: 1;
  max-width: 600px;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 48px;
}

@media (max-width: 768px) {
  .cta-text h2 {
    font-size: 28px;
  }
}

.cta-text p {
  font-size: 19px;
  font-weight: 600;
  line-height: 28px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.btn-white {
  padding: 14px 32px;
  background: #fff;
  color: #d42027;
  border: none;
  border-radius: 30px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  text-align: center;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* FOOTER */
.footer {
  padding: 0 0 30px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 16px;
  color: #2c4161;
  margin-bottom: 24px;
  max-width: 346px;
  line-height: 25px;
  font-weight: 500;
}

.app-badges {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .app-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-popup {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .contact-form-wrapper-in h3 {
    font-size: 22px;
  }
}

.app-badge i {
  font-size: 14px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 500;
  color: #2c4161;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 16px;
  color: #2c4161;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 600;
}

.footer-links-list a:hover {
  color: #d42027;
}

.section-hero {
  background-color: #f7f7f7;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.contact-item {
  display: flex;
  align-items: first baseline;
  gap: 12px;
  font-size: 16px;
  color: #2c4161;
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 500;
}

.contact-item i {
  color: #909baa;
  margin-top: 3px;
  font-size: 14px;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #d42027;
}

.social-links {
  display: flex;
  gap: 17px;
  margin-top: 27px;
}

.social-links a {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
}

.social-links a img {
  width: 100%;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e3e3e3;
  font-size: 14px;
  color: #2c4161;
  font-weight: 500;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: #2c4161;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #2c4161;
}

.hero-visual figure {
  display: flex;
}

@media (max-width: 1230px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-bottom: 0;
  }

  .visuals-text {
    flex-direction: column;
    gap: 20px;
  }

  .visuals-text .section-desc,
  .visual-left {
    max-width: 100%;
  }

}

@media (max-width: 768px) {
  .hero {
    gap: 20px;
    padding-top: 110px;
  }

  .challenge-box h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .challenge-list li {
    font-size: 16px;
  }

  .faq {
    padding: 40px 0;
  }

  .faq h2 {
    font-size: 32px;
    line-height: 35px;
  }

  .faq-inner {
    gap: 10px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    justify-content: center;
  }

  .cta-text p {
    font-size: 16px;
    line-height: 19px;
  }

  .challenges-header {
    margin-bottom: 35px;
  }

  .hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 22px;
  }

  .visuals-text {
    text-align: center;
    gap: 0;
  }

  .visuals-text .section-label {
    justify-content: center;
  }

  .faq-question {
    flex-direction: row;
  }

  .faq-answer {
    padding: 14px 14px 25px;
    font-size: 17px;
    line-height: 22px;
  }

  .feature-card {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .btn-white,
  .btn-outline-white {
    font-size: 17px;
  }

  .faq-question {
    font-size: 17px;
  }

  .footer-links-list li {
    margin-bottom: 4px;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Custom Language Switcher */
.language-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.lang-dropdown-trigger:hover {
  background: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lang-dropdown-trigger .arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.lang-dropdown-trigger.active .arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.lang-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-dropdown-item:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.lang-dropdown-item.selected {
  background: var(--color-bg-light);
  color: var(--color-primary);
  font-weight: 700;
}

.lang-dropdown-item.selected::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.18));
}


/* Popup Styles */
.popup-overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  display: block;
  opacity: 1;
}

.contact-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 450px;
  width: 90%;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-popup.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.contact-form-wrapper-in h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 25px;
}

.contact-form-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-bottom: 20px;
}

.contact-form-group {
  width: 100%;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  font-family: var(--font-family);
  background: #fff;
  border: 1px solid #E2E8F0;
  outline: none;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--color-primary);
}

.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 45px;
}

.btn-submit {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  height: 54px;
  margin-top: 10px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: #b81b21;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 32, 39, 0.2);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  font-size: 24px;
  color: #64748B;
  z-index: 1002;
}

.contact-popup-close::before,
.contact-popup-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #1e293b;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.contact-popup-close:hover::before,
.contact-popup-close:hover::after {
  background: #d42027;
}

.contact-popup-close::before {
  transform: rotate(45deg);
}

.contact-popup-close::after {
  transform: rotate(-45deg);
}

.contact-popup-close:hover {
  transform: rotate(90deg);
}

.contact-popup-close:hover::before,
.contact-popup-close:hover::after {
  background: var(--color-dark);
}

/* Hero Slider Section (Imported from stylesNew.css) */
.hero-slider-section {
  min-height: 400px;
  background: linear-gradient(90deg, #f46b2c 0%, #D42027 100%);
  position: relative;
  display: block !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: auto;
  overflow: hidden;
  z-index: 0;
}

.hero-sub-description {
  padding-top: 20px !important;
  display: inline-block;
}

.heroSwiper {
  width: 100%;
  height: auto;
  min-height: 400px;
}

.heroSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.heroSwiper .hero-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding-top: 102px;
  padding-bottom: 152px;
}

.heroSwiper .hero-content {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 40px;
  position: relative;
  margin: 80px 0 130px;
  min-height: 450px;
}

.heroSwiper .hero-phone-left {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  padding-bottom: 0;
  position: absolute;
  left: 88px;
  bottom: -24px;
}

.heroSwiper .hero-phone-left::after {
  position: absolute;
  content: '';
  background: url('../images/banner-right.svg') no-repeat 0 0;
  background-size: contain;
  width: 174px;
  height: 121px;
  top: 100px;
  left: calc(100% - 80px);
}

.heroSwiper .hero-phone-img-left {
  width: 100%;
  max-width: 360px;
  min-width: 140px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.heroSwiper .hero-text {
  color: var(--color-bg);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
}

.heroSwiper .hero-title {
  font-size: clamp(30px, 3.5vw, 56px);
  line-height: 1.15;
  margin-bottom: 12px;
  display: block;
  position: relative;
}

.heroSwiper .hero-title .line {
  position: absolute;
  background: url(../images/hero-line.svg) no-repeat 0 0;
  background-size: contain;
  bottom: -28px;
  left: 40%;
  transform: translateX(-50%);
  width: 146px;
  height: 17px;
}

.heroSwiper .hero-title-light {
  color: #fff;
  font-size: 64px;
  line-height: 1.2;
  display: block;
  font-weight: 300;
  font-size: clamp(40px, 3.333vw, 64px);
}

.heroSwiper .hero-title-bold {
  display: block;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  font-size: clamp(40px, 3.646vw, 70px);
}

.heroSwiper .hero-description {
  color: #fff;
  font-size: 23px;
  line-height: normal;
  max-width: 700px;
  padding: 60px 0 0;
}

.heroSwiper .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--color-bg);
  color: var(--color-primary);
  border-radius: 50px;
  border: 2px solid var(--color-bg);
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 30px;
  text-decoration: none;
}

.heroSwiper .cta-button:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(252, 185, 34, 0.4);
  border-color: var(--color-primary-light);
}

.hero-slider-section::after {
  position: absolute;
  content: '';
  background: url(../images/banner-curve.png) no-repeat bottom left;
  background-size: contain;
  left: 0;
  bottom: -1px;
  transform: translateY(1px);
  width: 100%;
  height: 152px;
  z-index: 1;
}

.heroSwiper .hero-phone-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: visible;
  position: absolute;
  right: 0;
  bottom: -240px;
}

.heroSwiper .hero-phone-right::after {
  position: absolute;
  content: '';
  background: url('../images/banner-left.svg') no-repeat 0 0;
  background-size: contain;
  width: 87px;
  height: 122px;
  top: -75px;
  left: 70px;
}

.heroSwiper .hero-phone-img-right {
  width: 100%;
  max-width: 460px;
  min-width: 145px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* Swiper Pagination Styles */
.heroSwiper .swiper-pagination {
  bottom: clamp(80px, 9.375vw, 180px) !important;
  z-index: 10;
}

.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.heroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary-light);
  width: 30px;
  border-radius: 6px;
}

/* Swiper Animations */
.heroSwiper .swiper-slide .hero-title,
.heroSwiper .swiper-slide .hero-description,
.heroSwiper .swiper-slide .cta-button,
.heroSwiper .swiper-slide .hero-phone-left,
.heroSwiper .swiper-slide .hero-phone-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.heroSwiper .swiper-slide-active .hero-title {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.3s;
}

.heroSwiper .swiper-slide-active .hero-description {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.5s;
}

.heroSwiper .swiper-slide-active .cta-button {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition-delay: 0.7s;
}

.heroSwiper .swiper-slide-active .hero-phone-left {
  opacity: 1 !important;
  transform: translateY(0) rotate(-10deg) !important;
  transition-delay: 0.4s;
}

.heroSwiper .swiper-slide-active .hero-phone-right {
  opacity: 1 !important;
  transform: translateY(0) rotate(5deg) !important;
  transition-delay: 0.6s;
}

.heroSwiper .hero-phone-img-left,
.heroSwiper .hero-phone-img-right {
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.heroSwiper .cta-button {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer;
}

.heroSwiper .cta-button:hover {
  background-color: #fbbf24 !important;
  /* Brighter yellow */
  color: #1a1a1a !important;
  /* transform: translateY(-8px) scale(1.05) !important; */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 1920px) {

  .hero-title {
    font-size: clamp(36px, 2.9167vw, 56px);
  }

  .hero-description {
    font-size: clamp(16px, 0.9375vw, 18px);
    max-width: clamp(400px, 30.4688vw, 585px);
    padding: 3.125vw 0 0;
  }

  .heroSwiper .hero-title-light {
    font-size: clamp(40px, 3.333vw, 64px);
  }

  .heroSwiper .hero-phone-left {
    left: 4.583vw;
    bottom: -1.25vw;
  }

  .heroSwiper .hero-phone-left::after {
    width: 9.0625vw;
    height: 6.3021vw;
    top: 5.2083vw;
    left: calc(100% - 4.1667vw);
  }

  .heroSwiper .hero-phone-right::after {
    width: 4.5313vw;
    height: 6.3542vw;
    top: -3.9063vw;
    left: 3.6458vw;
  }

  .heroSwiper .hero-phone-right {
    bottom: -12.5vw;
  }

  .heroSwiper .hero-phone-img-right {
    max-width: 23.958vw;
  }

  .heroSwiper .hero-phone-img-left {
    max-width: 18.75vw;
  }

  .hero-title .line {
    bottom: -1.458vw;
    width: 7.6042vw;
    height: 0.8854vw;
  }

  .section-title {
    font-size: clamp(28px, 2.604vw, 50px);
  }

  .section-description {
    font-size: clamp(16px, 1.1458vw, 22px);
    max-width: 48.9583vw;
  }

  .heroSwiper .cta-button {
    padding: clamp(10px, 0.8333vw, 15px) clamp(20px, 1.875vw, 36px);
    font-size: clamp(16px, 1.042vw, 20px);
  }

  .heroSwiper .hero-phone-right::after {
    width: 4.5313vw;
    height: 6.3542vw;
    top: -3.9063vw;
    left: 3.6458vw;
  }

  .heroSwiper .hero-content {
    margin: clamp(60px, 4.167vw, 80px) 0 clamp(60px, 6.771vw, 130px);
  }

}

@media (max-width: 1024px) {
  .heroSwiper .hero-container {
    flex-direction: column;
    padding-bottom: 100px;
  }

  .heroSwiper .hero-content {
    margin: 60px 0 60px;
    /* flex-direction: column; */
  }

  .hero-sub-description {
    padding-top: 10px !important;
  }

  .heroSwiper .hero-description {
    font-size: 18px;
    padding: 40px 0 0;
  }

  .heroSwiper .hero-container {
    padding-top: 80px;
  }

  .heroSwiper .cta-button {
    margin-top: 0px;
  }

  .heroSwiper .cta-button {
    padding: 10px 25px;
    font-size: 17px;
  }

  .heroSwiper .hero-phone-img-left,
  .heroSwiper .hero-phone-img-right {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  }

  .heroSwiper .swiper-pagination {
    bottom: 90px !important;
  }

}

@media (max-width: 768px) {
  .heroSwiper .hero-title-light {
    font-size: 40px !important;
  }

  .heroSwiper .hero-title-bold {
    font-size: 36px !important;
  }

  .heroSwiper .swiper-pagination {
    bottom: 75px !important;
  }

  .visuals-grid .visual-column:last-child:nth-child(odd) {
    flex-direction: column;
    width: 100%;
  }

  .visual-img-container {
    margin: auto;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .heroSwiper .hero-title-light {
    font-size: 32px !important;
  }

  .heroSwiper .hero-title-bold {
    font-size: 30px !important;
  }

  .heroSwiper .hero-description {
    font-size: 16px !important;
  }

  .heroSwiper .cta-button {
    padding: 12px 24px;
    font-size: 16px;
  }

  .heroSwiper .swiper-pagination {
    bottom: 50px !important;
  }



}

/* Product Video Showcase Modal - Premium Design */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  background: #0d0d0f;
  width: 100%;
  max-width: 1100px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal-overlay.show .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: #d42027;
  transform: rotate(90deg);
}

.video-modal-content {
  display: flex;
  min-height: 500px;
}

.video-player-main {
  flex: 1;
  background: #000;
  display: flex;
  flex-direction: column;
}

.video-aspect-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  background: #000;
}

.video-aspect-ratio video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-details {
  padding: 30px;
  background: #0d0d0f;
}

.video-details h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.video-details p {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
}

.video-playlist-aside {
  width: 300px;
  background: #141417;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.playlist-header {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.playlist-header h3 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.playlist-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.video-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.video-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.video-item.active {
  background: rgba(212, 32, 39, 0.15);
}

.video-item-thumb {
  width: 100px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #222;
}

.video-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-item.active .video-item-thumb img {
  opacity: 1;
}

.video-item-info h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
}

.video-item-info span {
  color: #666;
  font-size: 11px;
}

.video-item.active .video-item-info h4 {
  color: #fbbf24;
}


@media (max-width: 1260px) {
  .hero-visual img {
    height: 30.208vw;
    width: 26.042vw;
  }

  .dashboardHeroSwiper .hero {
    align-items: center !important;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    padding-bottom: 40px;
    max-width: 100%;
    text-align: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .dashboardHeroSwiper .dashboard-pagination {
    display: none;
  }

  .hero-visual img {
    height: 100%;
    max-width: 350px;
    min-width: 300px;
    width: 100%;
    max-height: 350px;
    object-position: bottom center;
  }

  .hero h1 {
    font-size: 40px;
    line-height: normal;
    margin-bottom: 24px;
    padding-top: 35px;
  }

  .dashboardHeroSwiper .hero {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero-buttons {
    align-items: center;
    justify-content: center;
  }


}


@media (max-width: 900px) {
  .video-modal-content {
    flex-direction: column;
  }

  .video-playlist-aside {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 250px;
  }

  .video-modal-container {
    max-height: 90vh;
    overflow-y: auto;
  }

  .hero h1 {
    font-size: 34px;
    padding-top: 35px;
  }

  
}

/* Dashboard Hero Swiper specific styles */
.dashboardHeroSwiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.dashboardHeroSwiper .hero {
  padding-top: 140px;
  padding-bottom: 0px;
}


.dashboardHeroSwiper .hero {
  align-items: flex-start;
}

.dashboardHeroSwiper .dashboard-pagination {
  bottom: 30px !important;
}

.dashboard-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  margin: 0 2px !important;
  transition: all 0.3s ease;
}

.dashboard-pagination .swiper-pagination-bullet-active {
  background: #d42027;
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .dashboardHeroSwiper .hero {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
    .hero-visual img {
        max-width: 350px;
        min-width: 200px;
        max-height: 300px;
    }

        .dashboardHeroSwiper .hero {
        padding-top: 68px;
    }
        .hero p {
        margin: 0 auto 15px;
    }
        .hero-content {
        padding-bottom: 30px;
    }
    .btn-demo,.btn-explore {
    padding: 10px 25px;
    font-size: 16px;
}
}

@media (max-width: 480px) {
  .app-badge {
    max-width: 150px;
    width: 100%;

  }

  .app-badge img {
    max-width: 150px;
    width: 100%;

  }

  .visuals-grid .visual-column:last-child:nth-child(odd) .visual-img-container {
    max-width: 200px;
  }
}