:root {
  --vts-gradient-primary: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #111111;
}

a {
  cursor: pointer;
}

.highlighted-heading {
  background: var(--vts-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  margin: auto;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

header .top-nav {
  display: none;
}

.header.scrolled {
  top: 0;
}

.top-nav {
  font-size: 16px;
  background: white;
  display: flex;
  padding: 8px 32px;
  border-bottom: #00575b 2px solid;
}
.nav-container {
  max-width: 1240px;
  width: 100%;
  margin: 0px auto;
  border-radius: 50px;
  background: white;
  box-shadow: 0px 4px 16px 1px rgb(0 0 0 / 18%);
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.logo img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  color: #111;
  font-weight: 500;
  font-size: 16px;
  font-style: normal;
  line-height: 18px;
}

.nav-links .nav-cta {
  background: linear-gradient(90deg, #2c8d8a, #1e585b);
  background-size: 200% 100%;
  background-position: left center;
  color: white;
  border-radius: 9999px;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  transition: background-position 0.3s ease-in-out;
}

.nav-links .nav-cta:hover {
  background-position: right center;
}

.nav-links .nav-cta .call-icon-light {
  display: block;
  width: 20px;
  margin-right: 10px;
}

.nav-links .nav-cta .call-icon-dark {
  display: none;
}

.navigation-btn-hamburger {
  display: none;
}

.nav-call-btn {
  display: block;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-top: -8px;
}

.hamburger-white {
  color: #fff;
}

.top-nav .region-nav-dropdown {
  position: relative;
  display: inline-flex;
}

.top-nav p {
  font-weight: 600;
  margin: auto 0;
}

.top-nav .region-toggle {
  cursor: pointer;
  padding: 0 8px;
  font-weight: 600;
  color: #2c8d8a;
  white-space: nowrap;
}

.top-nav .region-toggle span .down-arrow-dark,
.top-nav .region-toggle span .up-arrow-dark,
.top-nav .region-toggle span .down-arrow-light,
.top-nav .region-toggle span .up-arrow-light {
  width: 12px;
  margin-left: 4px;
  transition: all 0.3s ease-in-out;
}

.top-nav .region-toggle span .down-arrow-light,
.top-nav .region-toggle span .up-arrow-light {
  display: none;
}

.top-nav .region-toggle span .up-arrow-dark {
  display: none;
}

.top-nav .region-toggle span .down-arrow-dark {
  display: inline-block;
}

.top-nav .region-nav-dropdown:hover .region-toggle span .down-arrow-dark {
  display: none;
}

.top-nav .region-nav-dropdown:hover .region-toggle span .up-arrow-dark {
  display: inline-block;
}

.top-nav .region-menu {
  z-index: 999999 !important;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 4px 40px 0 #00000026;
  min-width: 120px;
}

.top-nav .region-menu a {
  display: block;
  padding: 12px 16px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}

.top-nav .region-menu a:hover {
  background-color: #e3f4ec;
}

.top-nav .region-nav-dropdown:hover .region-menu {
  display: block;
  transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
  background: #00575b;
  color: white;
  text-align: center;
  position: relative;
  display: flex;
  width: 100%;
  overflow: visible;
  align-items: center;
  flex-direction: column;
  padding: 12rem 2rem 29rem;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(42, 245, 247, 0.45) 0%,
      rgba(0, 87, 80, 1) 51%,
      rgba(123, 253, 255, 0) 93%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(42, 245, 247, 0.45) 0%,
      rgba(0, 87, 80, 1) 51%,
      rgba(123, 253, 255, 0) 93%
    );
  pointer-events: none;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
  mix-blend-mode: screen;
}

.hero-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: auto;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-main img {
  display: flex;
  width: 100%;
  margin: auto;
  max-width: 250px;
}

.hero-main .hero-subtitle {
  font-size: 30px;
  font-weight: 700;
}

.hero-main p {
  font-size: 22px;
  line-height: 30px;
  max-width: 650px;
  margin: auto;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-content p {
  font-size: 22px;
}

.hero-dashboard {
  max-width: 1280px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 0;
}

.hero-cta {
  background: none;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 38px;
}

.dashboard-mockup {
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
}

.dashboard-mockup img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.dashboard-header {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-nav {
  display: flex;
  gap: 1rem;
}

.nav-item {
  padding: 0.5rem 1rem;
  background: #e2e8f0;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #64748b;
}

.nav-item.active {
  background: #2dd4bf;
  color: white;
}

.dashboard-content {
  padding: 2rem;
  background: white;
  min-height: 300px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.chart-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-placeholder {
  background: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #3b82f6 100%);
  height: 180px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.chart-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.mini-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-chart {
  height: 60px;
  background: linear-gradient(45deg, #22c55e, #16a34a);
  border-radius: 6px;
  position: relative;
}

.mini-chart:nth-child(2) {
  background: linear-gradient(45deg, #f59e0b, #d97706);
}

.stats-placeholder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2dd4bf;
  text-align: left;
}

.stat-item h4 {
  color: #0d9488;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-item p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.user-profile {
  background: #2dd4bf;
  color: white;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing Section */
.pricing {
  padding: 4rem 2rem 0;
  background: white;
  text-align: center;
}

.pricing h2 {
  font-size: 56px;
  line-height: 70px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111111;
}

.pricing h2 span {
  background: var(--vts-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.pricing-subtitle {
  background: #e1ffed;
  border-radius: 50px;
  color: #111;
  font-weight: 600;
  margin-bottom: 38px;

  display: inline-flex;
  border-radius: 9999px;
  gap: 0.5rem;
}

.pricing-subtitle .label {
  padding: 0 1rem;
  color: #1e4b43;
  font-size: 24px;
  line-height: 30px;
  margin: auto 0;
}

.pricing-subtitle .price {
  background: linear-gradient(to right, #2c8d8a 0%, #1e585b);
  color: white;
  border-radius: 9999px;
  font-size: 28px;
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-subtitle .label p {
  margin: 0;
}

.pricing-subtitle .price p {
  margin: 0;
}

.implementation-p {
  color: var(--vts-gradient-primary);
  font-weight: 700;
  font-size: 28.81px;
  line-height: 32px;
  text-align: center;
}

.pricing-grid {
  background: linear-gradient(to bottom, #fff 0%, #3efff91a 80%, #fff 100%);
  box-shadow: 0px 0px 34px 0px rgba(62, 255, 249, 0.1);
  padding: 0;
  margin: 30px auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  width: 230px;
  background: white;
  text-align: center;
  border: 2px solid #2c8d8a;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.pricing-card .book-btn {
  color: #1e585b !important;
  text-align: center;
  justify-content: center;
  margin-left: -20px;
  border-radius: 0;
  padding: 0;
  padding-bottom: 5px !important;
}

.pricing-card .book-btn .get-quote {
  border-bottom: 1px solid #1e585b;
}

.pricing-card .book-btn .call-icon-quote {
  opacity: 0;
  transform: translateX(10px);
  visibility: hidden;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
}

.pricing-card:hover {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  box-shadow: 0px 0px 34px 0px rgba(62, 255, 249, 0.2);
}

.pricing-card:hover .book-btn .call-icon-quote {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  margin-right: 0.5rem;
}

.pricing-card .pricing-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-price {
  font-size: 26px;
  font-weight: bold;
  color: var(--vts-gradient-primary);
  margin-bottom: 1rem;
}

.pricing-card .quote-button {
  text-align: center;
}

.pricing-card .pricing-features {
  list-style: none;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #666;
}

/* Modules Section */
.modules {
  padding: 6rem 2rem 6rem;
  text-align: center;
  margin: auto;
}

.modules h2 {
  margin-bottom: 38px;
  color: var(--vts-gradient-primary);
  font-weight: 600;
  font-size: 57px;
  line-height: 72px;
  text-align: center;
}

.modules h2 span {
  color: #111;
}

.modules-container {
  max-width: 95%;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  margin-bottom: 40px;
}

.module-accordion {
  background: #f0f9f4;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.module-header {
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  background: white;
  padding: 20px 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid #1e585b;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.module-header span {
  background: var(
    --Brand-gradient,
    linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: all 0.3s ease-in-out;
}

.module-header:hover {
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
  color: white !important;
  transition: all 0.3s ease-in-out;
}

.module-header:hover span {
  background: unset;
  color: white !important;
  -webkit-text-fill-color: unset;
  transition: all 0.3s ease-in-out;
}

.module-header.active {
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
  color: white !important;
  transition: all 0.3s ease-in-out;
  border-radius: 20px 20px 0 0;
}

.module-header.active span {
  background: unset;
  color: white !important;
  -webkit-text-fill-color: unset;
  transition: all 0.3s ease-in-out;
}

.module-header.secondary {
  border: 2px solid #2c8d8a;
}

.module-icon {
  display: none;
}

.module-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 0;
  overflow: hidden;
  background: #f0f9f4;
  transition: all 0.3s ease-in-out;
}

.module-content.active {
  max-height: 800px;
  padding: 42px 20px;
}

.module-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem 1rem;
  align-items: center;
}

.feature-card {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.feature-card .feature-icon {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.feature-card .feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-card .feature-title {
  color: #111;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.cmn-btn {
  margin: 0 auto;
}

.book-btn {
  background: linear-gradient(90deg, #2c8d8a, #1e585b);
  background-size: 200% 100%;
  /* Makes the background twice as wide */
  background-position: left center;
  /* Start at right */
  color: white;
  border-radius: 9999px;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  transition: background-position 0.3s ease-in-out;
}

.book-btn:hover {
  background-position: right center;
  /* Move background to left on hover */
}

/* Comparison Table */
.comparison {
  padding: 6rem 2rem;
  background: white;
}

.comparison h2 {
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  color: var(--vts-gradient-primary);
}

.comparison p {
  color: #6d6d6d;
  text-align: center;
  margin: 24px auto 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.comparison-table.desktop {
  /* max-width: 1240px; */
  margin: 0 auto;
  overflow-x: auto;
  margin-bottom: 16px !important;
  display: block;
}

.comparison-note {
  padding: 0 2%;
}

.savings {
  max-width: 1240px;
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
  color: white;
  padding: 26px 50px;
  border-radius: 20px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 28.81px;
  line-height: 32px;
  letter-spacing: -0.99px;
  text-align: center;
}

.savings span {
  font-weight: 700;
  font-size: 28.81px;
  line-height: 32px;
  margin: auto 0;
  text-align: center;
}

.btn-bg {
  background: white !important;
  color: #00575b;
  padding: 10px 28px;
}

.table-grid .cell-row {
  display: flex;
  gap: 20px;
}

.cell {
  width: 100%;
  max-width: 250px;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.cell.label {
  text-align: left;
  font-weight: bold;
  min-width: 250px;
}

.cell-header {
  font-weight: bold;
  text-align: center;
  padding: 38px 1rem;
  color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.nested-label {
  display: flex;
  justify-content: flex-start;
}

.inner-label {
  margin: auto;
  font-weight: bold;
}

.cell.sub-labels {
  justify-content: space-between;
  padding: 0;
}

.cell.sub-labels div {
  padding: 16px;
  text-align: left;
}

.cell.sub-labels.light-red div:nth-child(2) {
  background: #fef2ec;
}

.sub-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  font-weight: normal;
  font-size: 0.95rem;
  color: #333;
}

.erpnext {
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
}

.zoho {
  background: linear-gradient(90deg, #f75f40 0%, #de441e 100%);
}

.odoo {
  background: linear-gradient(90deg, #6bc7de 0%, #457fa4 100%), #4e90b1;
}

.light-green {
  background: #e3f4ec;
}

.cell-row:nth-child(even) .light-green {
  background: #f3faf6;
}

.light-red {
  background: #fde2d5;
}

.cell-row:nth-child(even) .light-red {
  background: #fef2ec;
}

.light-blue {
  background: #e4f5f9;
}

.cell-row:nth-child(even) .light-blue {
  background: #f3fbfc;
}

.highlight {
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
  color: white;
  font-weight: bold;
}

.checkmark {
  font-size: 1.5rem;
  text-align: center;
  color: #136963;
}

.cross {
  font-size: 1.5rem;
  color: #d9534f;
}

.comparison-legend {
  display: flex;
  max-width: 1000px;
  justify-content: space-between;
  gap: 50px;
  margin: auto;
  font-size: 16px;
  font-weight: 600;
}

.comparison-legend .legend-item {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;

  span {
    vertical-align: middle;
    margin-left: 8px;
  }
}

.responsive-comparison-table {
  display: none;
}

.responsive-comparison-table .comparison-table {
  display: none;
}

.responsive-comparison-table .comparison-table.active {
  display: block;
}

.responsive-comparison-table .comparison-table table td,
.responsive-comparison-table .comparison-table table th {
  padding-left: 20px;
}

.responsive-comparison-table .tab-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9fafb;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  /* Left-right padding adjusted for icon */
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  min-width: 180px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
}

.responsive-comparison-table .tab-select:hover {
  background-color: #ffffff;
  border-color: #9ca3af;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.responsive-comparison-table .tab-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.responsive-comparison-table .tab-select option {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  background-color: #ffffff;
  padding: 0.75rem 1rem;
}

.erpnext-table-logo {
  background: var(--vts-gradient-primary);
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.zoho-table-logo {
  background: linear-gradient(90deg, #f75f40 0%, #de441e 100%);
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.odoo-table-logo {
  background: linear-gradient(90deg, #6bc7de 0%, #457fa4 100%), #4e90b1;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.table-erpnext thead th {
  background: var(--vts-gradient-primary);
  color: #fff;
}

.table-zoho thead th {
  background: linear-gradient(90deg, #f75f40 0%, #de441e 100%);
  color: #fff;
}

.table-odoo thead th {
  background: linear-gradient(90deg, #6bc7de 0%, #457fa4 100%), #4e90b1;
  color: #fff;
}

/* Define stripe colors as CSS variables for each table type */
.table-erpnext.table-striped {
  --bs-table-striped-bg-odd: #f3faf6;
  /* Light Green */
  --bs-table-striped-bg-even: #e3f4ec;
  /* Dark Green */
}

.table-zoho.table-striped {
  --bs-table-striped-bg-odd: #fef2ec;
  /* Light Orange */
  --bs-table-striped-bg-even: #fde2d5;
  /* Dark Orange */
}

.table-odoo.table-striped {
  --bs-table-striped-bg-odd: #f3fbfc;
  /* Light Blue */
  --bs-table-striped-bg-even: #e4f5f9;
  /* Dark Blue */
}

.table-erpnext .bg-dark-green {
  --bs-table-bg-type: var(--vts-gradient-primary) !important;
  background: var(--vts-gradient-primary) !important;
  background-color: var(--vts-gradient-primary) !important;
}

/* Apply background colors to odd/even rows using these variables */
.table-erpnext.table-striped > tbody > tr:nth-of-type(odd) > *,
.table-zoho.table-striped > tbody > tr:nth-of-type(odd) > *,
.table-odoo.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: var(--bs-table-striped-bg-odd) !important;
}

.table-erpnext.table-striped > tbody > tr:nth-of-type(even),
.table-zoho.table-striped > tbody > tr:nth-of-type(even),
.table-odoo.table-striped > tbody > tr:nth-of-type(even) {
  --bs-table-bg-type: var(--bs-table-striped-bg-even) !important;
}

/* Why Choose Us */
.why-choose {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  background: #f2f9f4;
}

.why-choose-content {
  max-width: 1350px;
  background: white;
  padding: 50px;
  border-radius: 20px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.timeline-list ul {
  list-style: none;
  margin: 0;
  position: relative;
  font-family: "Arial", sans-serif;
  padding-left: 0px !important;
}

.timeline-list ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: #14716f;
}

.timeline-list li {
  position: relative;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.4;
  padding-left: 20px;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #14716f;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #14716f;
}

.timeline-list li span {
  color: #000;
}

.timeline-list li strong {
  color: #14716f;
  font-weight: 700;
}

#industries {
  margin: auto;
  padding: 60px 0;
  background: #f2f9f4;
}

#industries h2 {
  font-weight: 600;
  font-size: 57px;
  line-height: 72px;
  margin-bottom: 2rem;
  color: #111;
  margin: auto;
  text-align: center;
  text-transform: capitalize;
}

#industries h2 span {
  background: var(--vts-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

#industries .cmn-btn {
  display: flex;
  justify-content: center;
  margin: 38px auto auto;
}

.why-choose h2 {
  font-weight: 600;
  font-size: 57px;
  line-height: 72px;
  margin-bottom: 2rem;
  color: #111;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--Black, #111);
  text-align: left;
  font-family: "SF UI Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.feature-list li span {
  color: var(--vts-gradient-primary);
}

.feature-list li::before {
  content: "✓";
  color: var(--vts-gradient-primary);
  font-weight: bold;
  margin-right: 8px;
}

.industries {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem auto;
  max-width: 910px;
}

.industries .custom-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 910px;
}

.industries .custom-row .custom-col {
  flex: 1;
}

.industries .custom-row .custom-col.retail .industry-tag,
.industries .custom-row .custom-col.pharma .industry-tag {
  padding-left: 42px;
}

.industry-tag {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  margin: 0 16px;
  border-radius: 8px;
  text-align: center;
  color: #111;
  min-width: 238px;
}

.industry-tag img {
  width: 62px;
  height: 62px;
}

.industry-tag h6 {
  color: #111;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.stats-section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 30px;
  max-width: 1240px;
  margin: auto;
}

.stat {
  background: white;
  min-width: 320px;
  border-radius: 10px;
  border: 1px solid #2c8d8a;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.stat-number {
  font-size: 38px;
  font-weight: bold;
  color: var(--vts-gradient-primary);
  text-align: center;
  font-family: "SF UI Display";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px;
}

.stat-label {
  color: #111;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

/* Clients */
.clients {
  max-width: 1240px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 100px 2rem;
  background: white;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
}

.clients h2 {
  font-size: 57px;
  color: #111;
  font-weight: 600;
  margin-bottom: 52px;
}

.clients h2 span {
  color: var(--vts-gradient-primary);
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #2c8d8a 0%, #1e585b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
  background: #1e585b;
  color: white;
  padding: 60px 0;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-info {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info .footer-logo {
  width: 180px;
  margin-bottom: 30px;
}

.footer-info .footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-info h3 {
  font-size: 28.81px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.footer-info p {
  font-size: 21.34px;
  font-style: normal;
  font-weight: 300;
  line-height: 28.5px;
}

.footer-contact {
  text-align: center;
  padding: 32px;
  border: 1px solid white;
  border-radius: 20px;
}

.footer-contact h3 {
  font-size: 28.81px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.footer-email p {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 5px;
}

.footer-email p a {
  color: white;
  text-decoration: none;
}

.qr-code {
  width: 162px;
  height: 162px;
  background: white;
  border-radius: 8px;
  margin-top: 15px;
  padding: 6px;
  display: inline-block;
}

.qr-code img {
  width: 100%;
}

.nav-cta-btn {
  align-items: center;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1200px) {
  .stats-section {
    justify-content: center;
  }

  .nav-links {
    gap: 18px;
    padding-left: 0;
  }

  .nav-links .nav-cta {
    font-size: 14px;
    padding: 8px 16px;
  }

  .nav-links .nav-cta img {
    width: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .pricing-subtitle .label {
    padding-top: 10px;
  }

  .nav-call-btn {
    display: none;
  }

  .navigation-btn-hamburger {
    display: flex;
    align-items: center;
    /* gap: 10px; */
  }

  .call-btn-nav-outside .nav-cta-btn {
    background: linear-gradient(90deg, #2c8d8a, #1e585b);
    background-size: 200% 100%;
    background-position: left center;
    color: white;
    border-radius: 9999px;
    font-size: 16px;
    padding: 8px 18px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    min-width: 138px;
    gap: 10px;
    transition: background-position 0.3s ease-in-out;
  }

  .call-btn-nav-outside .nav-cta-btn img {
    width: 20px;
  }

  header {
    position: sticky !important;
  }

  .header.scrolled {
    background: white;
  }

  .header.scrolled .nav-container {
    margin: unset;
  }

  .hamburger {
    display: block;
    z-index: 1100;
    margin-left: auto;
    color: #000;
  }

  .hamburger.hamburger-white {
    position: relative;
    top: -60px;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 60%;
    background: var(--vts-gradient-primary);
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    padding-top: 8px;
  }

  #nav-menu.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: flex-start;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    color: #fff;
  }

  .nav-container {
    z-index: 1000;
    margin: auto;
    width: 100%;
    padding: 8px 16px;
    border-radius: unset;
  }

  .top-nav .region-menu {
    margin-left: 20px;
  }

  .hero {
    padding: 5rem 2rem 24rem;
  }

  .hero h1 {
    font-size: 38px !important;
    line-height: 34px !important;
    margin-bottom: 20px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: 24px;
  }

  .pricing-subtitle {
    margin-top: 20px;
    flex-direction: column;
    gap: 20px;
    border-radius: 8px !important;
  }

  .pricing-subtitle .price {
    border-radius: 0 0 5px 5px !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .savings {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px;
  }

  .why-choose {
    padding: 24px !important;
  }

  .why-choose-content {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 50px 24px;
  }

  .modules {
    padding: 48px 24px 54px !important;
  }

  .comparison-legend {
    margin: auto;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .stats-section {
    justify-content: center !important;
  }

  .stat {
    padding: 20px !important;
  }

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

  .footer-content {
    justify-content: center !important;
  }

  .footer-contact {
    text-align: center;
    padding: 25px 48px;
  }

  .nav-links .nav-cta {
    background: #fff;
    color: var(--vts-gradient-primary);
    width: fit-content;
    padding: 14px 28px 14px 20px;
    margin-left: 18px;
    display: flex;
    margin-top: 14px;
  }

  .nav-links .nav-cta .call-icon-light {
    display: none;
  }

  .nav-links .nav-cta .call-icon-dark {
    display: block;
    width: 20px;
    margin-right: 10px;
  }

  .header {
    top: 0;
  }

  .pricing-grid {
    gap: 30px;
  }

  .comparison p {
    margin: 24px auto 12px;
  }

  .responsive-comparison-table {
    display: block;
  }

  .comparison-table.desktop {
    display: none;
  }

  .why-choose h2 {
    max-width: 350px;
  }

  .why-choose h2,
  .clients h2,
  .pricing h2,
  #industries h2,
  .modules h2 {
    font-size: 36px;
    line-height: 42px;
  }

  .book-btn {
    width: fit-content;
    margin: auto;
  }
}

@media screen and (max-width: 992px) {
  .why-choose h2,
  .clients h2,
  .pricing h2,
  #industries h2,
  .modules h2,
  .comparison h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .industries .custom-row .custom-col.retail .industry-tag,
  .industries .custom-row .custom-col.pharma .industry-tag {
    padding-left: 0;
  }

  .comparison {
    padding: 2rem 0 4rem;
  }

  .timeline-list ul::before {
    bottom: 32px;
  }

  .hero {
    padding: 5rem 2rem 20rem;
  }

  .pricing-card .book-btn .call-icon-quote {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    margin-right: 0.5rem;
  }

  .top-nav {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 767px) {
  .timeline-list ul::before {
    bottom: 16px;
  }

  .hero {
    padding: 2rem 2rem 16rem;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  section .container {
    padding: 0 !important;
  }
}

@media screen and (max-width: 576px) {
  .hero {
    padding: 4rem 2rem 14rem;
  }

  .hero-main {
    gap: 8px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: 26px !important;
    max-width: 300px;
    margin: 0 auto 16px;
  }

  .call-btn-nav-outside .nav-cta-btn {
    font-size: 14px;
    padding: 6px 12px;
  }

  .call-btn-nav-outside .nav-cta-btn img {
    width: 18px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    max-width: 100px;
  }
  .hero {
    padding: 4rem 1rem 8rem;
  }

  .hero-main img {
    max-width: 150px;
  }

  .pricing-subtitle .price {
    font-size: 22px;
  }
}

@media screen and (max-width: 380px) {
  .call-btn-nav-outside .nav-cta-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .call-btn-nav-outside .nav-cta-btn img {
    width: 18px;
    display: none;
  }
}
