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

body {
  overflow-x: hidden;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  --primary-color: 1, 84, 130;
  --input-color: 128, 128, 128;
  --title-color: 2, 6, 23;
  --content-color: 82, 82, 82;
  --subtitle-color: 101, 116, 137;
  --border-color: 128, 128, 128;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --main-color: 15, 59, 94;
}

ul,
ol,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: calc(22px + 38 * (100vw - 320px) / 1600);
  font-weight: 700;
  margin-bottom: 0;
}

h2 {
  font-size: calc(20px + 20 * (100vw - 320px) / 1600);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

h3 {
  font-size: calc(20px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

h4 {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

h5 {
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

p {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(var(--content-color), 1);
}

section,
.section-t-space {
  padding-top: calc(40px + 40 * (100vw - 320px) / 1600);
}

.section-b-space {
  padding-bottom: calc(40px + 40 * (100vw - 320px) / 1600);
}

.custom-container {
  padding-inline: calc(25px + 75 * (100vw - 320px) / 1600);
}

/******* Button *****/
.btn-primary {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  color: rgba(var(--primary-color), 1);
  background-color: rgba(var(--white), 1);
  border-color: rgba(var(--primary-color), 1);
}

/***** Section Title ******/
.section-title {
  text-align: center;
  padding-bottom: 50px;
}
.section-title h2 {
  line-height: 1.1;
  font-weight: 800;
  color: rgba(var(--title-color), 1);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.section-title h2 span {
  position: relative;
  display: inline-block;
  color: rgba(var(--primary-color), 1);
}
.section-title p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(var(--subtitle-color), 1);
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    padding: 20px 16px;
  }
  .section-title p {
    font-size: 16px;
    line-height: 1.7;
  }
}
/****** header *****/
header {
  position: fixed;
  background-color: rgba(var(--white), 1);
  padding: 16px 0;
  border-bottom: 1px solid rgba(var(--border-color), 0.11);
  width: 100%;
  z-index: 8;
  box-shadow: rgba(17, 12, 46, 0.1) 2px 1px 20px 0px;
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}
header .main-navbar {
  display: flex;
  align-items: center;
  gap: 50px;
}
header .logo img {
  width: 100%;
  height: 30px;
}
header .nav-links {
  display: flex;
  gap: 50px;
}
header .nav-links .drawer-header {
  display: none;
}
header .nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(var(--subtitle-color), 1);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--primary-color), 1);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
header .nav-links a:hover {
  color: rgba(var(--primary-color), 1);
}
header .nav-links a:hover::after {
  transform: scaleX(1);
}
header .nav-actions-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #0f3b5e;
  cursor: pointer;
  z-index: 11;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
header .mobile-menu-toggle .menu-close {
  display: none;
}
header .mobile-menu-toggle:hover {
  transform: scale(1.08);
}
@media (max-width: 1200px) {
  header .main-navbar {
    gap: 25px;
  }
  header .nav-links {
    gap: 25px;
  }
}
@media (max-width: 991px) {
  header .mobile-menu-toggle {
    display: block;
  }
  header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 30px 40px;
    transition: right 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10;
  }
  header .nav-links .drawer-header {
    display: flex !important;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(var(--border-color), 0.08);
  }
  header .nav-links .drawer-header .drawer-close {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f3b5e;
    cursor: pointer;
    transition: color 0.2s ease;
  }
  header .nav-links .drawer-header .drawer-close i {
    font-size: 24px;
    color: rgba(var(--primary-color), 1);
  }
  header .nav-links .drawer-header .drawer-close:hover {
    color: rgba(var(--primary-color), 1);
  }
  header .nav-links a {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding-block: 8px;
  }
}
@media (max-width: 991px) and (max-width: 576px) {
  header .nav-actions-group {
    gap: 12px;
  }
  header .nav-actions .btn-primary {
    padding: 6px 14px;
    font-size: 14px;
  }
  header .mobile-menu-toggle {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  header .menu-toggle-checkbox {
    display: none;
  }
  header .menu-toggle-checkbox:checked ~ .main-navbar .nav-links {
    right: 0;
  }
  header .menu-toggle-checkbox:checked ~ .nav-actions-group .mobile-menu-toggle {
    display: none !important;
  }
}

/****** Hero Section ******/
.hero-section {
  background: linear-gradient(135deg, rgb(248, 250, 255) 0%, rgb(241, 245, 250) 100%);
  padding-block: calc(40px + 100 * (100vw - 320px) / 1600) calc(40px + 40 * (100vw - 320px) / 1600);
  min-height: 100%;
}
.hero-section .hero-content {
  padding-right: 40px;
}
.hero-section .hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(var(--primary-color), 0.08);
  border: 1px solid rgba(var(--primary-color), 0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 30px;
}
.hero-section .hero-content .hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(var(--primary-color), 1);
  border-radius: 50%;
}
.hero-section .hero-content .hero-title {
  font-size: calc(24px + 32 * (100vw - 320px) / 1600);
  font-weight: 800;
  color: rgba(var(--main-color), 1);
  line-height: 1.2;
  margin-bottom: calc(12px + 12 * (100vw - 320px) / 1600);
}
.hero-section .hero-content .hero-title .highlight {
  color: rgba(var(--primary-color), 1);
}
.hero-section .hero-content .hero-text {
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  line-height: 1.6;
  color: rgba(var(--content-color), 0.8);
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.hero-section .hero-content .hero-buttons {
  display: flex;
  gap: 16px;
}
.hero-section .hero-content .hero-buttons .btn-outline {
  background-color: transparent;
  color: rgba(var(--primary-color), 1);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid rgba(var(--primary-color), 1);
  transition: all 0.3s ease;
}
.hero-section .hero-content .hero-buttons .btn-outline:hover {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}
.hero-section .hero-content .hero-buttons .btn-primary {
  padding: 10px 24px;
}
.hero-section .hero-image-wrapper {
  position: relative;
  width: 100%;
  padding: 20px;
}
.hero-section .hero-image-wrapper .dashboard-mockup {
  width: 100%;
  height: calc(200px + 230 * (100vw - 320px) / 1600);
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(var(--primary-color), 0.01);
  border: 1px solid rgba(var(--primary-color), 0.06);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero-section .hero-image-wrapper .dashboard-mockup {
    background-color: transparent;
    box-shadow: none;
    border: none;
  }
}
.hero-section .hero-image-wrapper .dashboard-mockup .swiper-slide {
  width: 720px !important;
  height: calc(200px + 230 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .hero-section .hero-image-wrapper .dashboard-mockup .swiper-slide {
    background: transparent;
    width: 100% !important;
  }
}
.hero-section .hero-image-wrapper .dashboard-mockup .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}
.hero-section .hero-image-wrapper .floating-card {
  position: absolute;
  background: rgba(var(--white), 1);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-section .hero-image-wrapper .floating-card.float-1, .hero-section .hero-image-wrapper .floating-card.float-2 {
    display: none;
  }
}
.hero-section .hero-image-wrapper .floating-card.float-1 {
  bottom: 40px;
  left: -40px;
  animation: float-up-down 4s ease-in-out infinite;
}
.hero-section .hero-image-wrapper .floating-card.float-2 {
  top: 40px;
  right: -40px;
  animation: float-up-down 5s ease-in-out infinite 1s;
}
.hero-section .hero-image-wrapper .floating-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.hero-section .hero-image-wrapper .floating-card .icon-box.response-icon {
  background-color: rgba(var(--primary-color), 0.05);
  color: #4f46e5;
}
.hero-section .hero-image-wrapper .floating-card .icon-box.call-icon {
  background-color: rgba(var(--primary-color), 0.05);
  color: #3b82f6;
}
.hero-section .hero-image-wrapper .floating-card .card-text {
  display: flex;
  flex-direction: column;
}
.hero-section .hero-image-wrapper .floating-card .card-text span {
  font-size: 13px;
  color: rgba(var(--content-color), 1);
  font-weight: 600;
}
.hero-section .hero-image-wrapper .floating-card .card-text strong {
  font-size: 20px;
  color: #0f172a;
  font-weight: 800;
}

@keyframes float-up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 991px) {
  .hero-section .hero-content {
    padding-top: 80px;
    padding-right: 0;
    text-align: center;
    margin-bottom: calc(25px + 35 * (100vw - 320px) / 1600);
  }
  .hero-section .hero-content .hero-buttons {
    justify-content: center;
  }
  .hero-section .hero-image-wrapper {
    padding: 0;
  }
  .hero-section .hero-image-wrapper .floating-card.float-1 {
    left: -10px;
    bottom: 20px;
  }
  .hero-section .hero-image-wrapper .floating-card.float-2 {
    right: -10px;
    top: 20px;
  }
}
/****** Logo Section ******/
.logo-section {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 50%, rgba(255, 255, 255, 0.9) 100%);
  padding: 45px 0;
  border-top: 1px solid rgba(var(--primary-color), 0.06);
  border-bottom: 1px solid rgba(var(--primary-color), 0.06);
  overflow: hidden;
  position: relative;
}
.logo-section::before, .logo-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.logo-section::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-section::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.logo-section .logo-wrapper {
  display: flex;
  width: 100%;
}
.logo-section .logo-wrapper .logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.logo-section .logo-wrapper .logo-track:hover {
  animation-play-state: paused;
}
.logo-section .logo-wrapper .logo-track .logo-item {
  background: rgba(var(--white), 0.8);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--primary-color), 0.08);
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 220px;
  flex-shrink: 0;
}
.logo-section .logo-wrapper .logo-track .logo-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo-section .logo-wrapper .logo-track .logo-item span {
  font-size: 14px;
  font-weight: 700;
  color: #0f3b5e;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-section .logo-wrapper .logo-track .logo-item:hover {
  background: rgb(255, 255, 255);
  border-color: rgba(var(--primary-color), 0.25);
  box-shadow: 0 10px 25px rgba(var(--primary-color), 0.08);
  transform: translateY(-4px);
}
.logo-section .logo-wrapper .logo-track .logo-item:hover svg {
  transform: scale(1.15) rotate(4deg);
}
@media (max-width: 768px) {
  .logo-section {
    padding: 30px 0;
  }
  .logo-section::before, .logo-section::after {
    width: 60px;
  }
  .logo-section .logo-wrapper .logo-track {
    gap: 16px;
  }
  .logo-section .logo-wrapper .logo-track .logo-item {
    padding: 10px 18px;
    border-radius: 12px;
    gap: 10px;
    width: 160px;
  }
  .logo-section .logo-wrapper .logo-track .logo-item svg {
    width: 20px;
    height: 20px;
  }
  .logo-section .logo-wrapper .logo-track .logo-item span {
    font-size: 11px;
  }
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}
/****** workflow Section ******/
.workflow-section .workflow-card {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--primary-color), 0.16);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
  box-shadow: 0px 14px 11px rgba(var(--primary-color), 0.02);
}
@media (max-width: 991px) {
  .workflow-section .workflow-card .card-text {
    text-align: center;
  }
}
.workflow-section .workflow-card .icon-box {
  font-size: 24px;
  color: rgba(var(--primary-color), 1);
  margin-bottom: calc(12px + 8 * (100vw - 320px) / 1600);
}
.workflow-section .workflow-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  margin-bottom: 12px;
}
.workflow-section .workflow-card p {
  font-size: 15px;
  color: rgba(var(--content-color), 0.8);
  line-height: 1.6;
  margin-bottom: calc(15px + 9 * (100vw - 320px) / 1600);
}
.workflow-section .workflow-card .action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.workflow-section .workflow-card .action-buttons .badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(var(--primary-color), 0.08);
  color: rgba(var(--primary-color), 1);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.workflow-section .workflow-card .action-buttons .badge-btn i {
  font-size: 16px;
}
.workflow-section .workflow-card .card-content-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.workflow-section .workflow-card .card-content-wrap .card-text {
  flex: 1;
}
.workflow-section .workflow-card .card-content-wrap .card-visual {
  flex: 1;
}
@media (max-width: 991px) {
  .workflow-section .workflow-card .card-content-wrap {
    flex-direction: column;
  }
  .workflow-section .workflow-card .card-content-wrap .card-text {
    text-align: center;
  }
  .workflow-section .workflow-card .card-content-wrap .action-buttons {
    justify-content: center;
  }
}
.workflow-section .workflow-card .calendar-widget {
  background-color: rgb(248, 250, 255);
  border-radius: 8px;
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  border: 1px solid rgba(var(--border-color), 0.05);
}
.workflow-section .workflow-card .calendar-widget .cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 16px;
}
.workflow-section .workflow-card .calendar-widget .cal-header span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}
.workflow-section .workflow-card .calendar-widget .cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: calc(15px + 10 * (100vw - 320px) / 1600);
  text-align: center;
}
.workflow-section .workflow-card .calendar-widget .cal-body span {
  font-size: 13px;
  color: #475569;
  width: calc(20px + 12 * (100vw - 320px) / 1600);
  height: calc(20px + 12 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 4px;
}
.workflow-section .workflow-card .calendar-widget .cal-body span.active {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(var(--primary-color), 0.3);
}
.workflow-section .workflow-card .mock-form .form-group {
  margin-bottom: 16px;
}
.workflow-section .workflow-card .mock-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgb(248, 250, 255);
  border: 1px solid rgba(var(--border-color), 0.1);
  border-radius: 6px;
  font-size: 14px;
  color: #475569;
  outline: none;
}
.workflow-section .workflow-card .mock-form .form-group input::placeholder {
  color: #94a3b8;
}
.workflow-section .workflow-card .mock-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 15px;
}

/****** Features Grid Section ******/
.features-grid-section .feature-grid-card {
  position: relative;
  overflow: hidden;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--primary-color), 0.14);
  border-radius: 18px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.45s ease;
}
.features-grid-section .feature-grid-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-color), 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.features-grid-section .feature-grid-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(var(--primary-color), 0.25);
  box-shadow: 0 20px 35px rgba(var(--primary-color), 0.08), 0 8px 18px rgba(var(--primary-color), 0.05);
}
.features-grid-section .feature-grid-card:hover::before {
  opacity: 1;
}
.features-grid-section .feature-grid-card:hover .icon-wrap {
  transform: rotate(-6deg) scale(1.08);
  background-color: rgba(var(--primary-color), 0.14);
}
.features-grid-section .feature-grid-card:hover .icon-wrap i {
  transform: scale(1.1);
}
.features-grid-section .feature-grid-card:hover h4 {
  color: rgba(var(--primary-color), 1);
}
.features-grid-section .feature-grid-card .icon-wrap {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--primary-color), 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.features-grid-section .feature-grid-card .icon-wrap i {
  font-size: 24px;
  color: rgba(var(--main-color), 1);
  transition: all 0.4s ease;
}
.features-grid-section .feature-grid-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--main-color), 1);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.features-grid-section .feature-grid-card p {
  font-size: 15px;
  color: rgba(var(--content-color), 0.8);
  line-height: 1.7;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/****** Logic Cards Section ******/
.logic-cards-section .logic-card {
  background: rgba(var(--primary-color), 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--primary-color), 0.2);
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.logic-cards-section .logic-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--primary-color), 0.5);
}
.logic-cards-section .logic-card .card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logic-cards-section .logic-card .card-content .icon-box {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--primary-color), 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: rgba(var(--primary-color), 1);
  transition: transform 0.3s ease, color 0.3s ease;
}
.logic-cards-section .logic-card .card-content .icon-box:hover {
  transform: rotate(12deg) scale(1.15);
  color: rgba(var(--primary-color), 0.7);
}
.logic-cards-section .logic-card .card-content h4 {
  width: calc(100% - 50px - 20px);
  font-size: 20px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  margin-bottom: 6px;
}
.logic-cards-section .logic-card p {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(var(--content-color), 0.85);
  margin-bottom: 0;
}
.logic-cards-section .logic-card:hover .icon-box {
  transform: scale(1.1);
}
.logic-cards-section .logic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-color), 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.logic-cards-section:hover .icon-box {
  transform: scale(1.1);
}

/****** License Section ******/
.license-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  border-top: 1px solid rgba(var(--primary-color), 0.05);
  border-bottom: 1px solid rgba(var(--primary-color), 0.05);
}
.license-section .license-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(var(--primary-color), 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--primary-color), 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.license-section .license-spotlight-left {
  position: absolute;
  left: -10%;
  top: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--primary-color), 0.16) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.license-section .license-spotlight-right {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.license-section .custom-container {
  position: relative;
  z-index: 2;
}
.license-section .section-title {
  margin-bottom: 50px;
}
.license-section .section-title .badge-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(var(--primary-color), 1);
  background: rgba(var(--primary-color), 0.15);
  border: 1px solid rgba(var(--primary-color), 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.license-section .section-title h2 {
  line-height: 1.1;
  font-weight: 800;
  color: rgba(var(--title-color), 1);
  font-size: calc(24px + 20 * (100vw - 320px) / 1600);
  margin-bottom: 15px;
}
.license-section .section-title h2 .highlight-text {
  background: linear-gradient(135deg, rgba(var(--primary-color), 1) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.license-section .section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(var(--content-color), 0.8);
}
.license-section .license-row {
  margin-inline: auto;
  max-width: 1100px;
}
.license-section .license-card {
  background-color: #ffffff;
  border: 1px solid rgba(var(--primary-color), 0.08);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .license-section .license-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.license-section .license-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(var(--primary-color), 0.15);
  border-color: rgba(var(--primary-color), 0.35);
}
.license-section .license-card:hover .panel-badge-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(var(--primary-color), 0.2);
  color: #ffffff;
}
.license-section .license-card.extended-card {
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.03);
}
.license-section .license-card.extended-card:hover {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(168, 85, 247, 0.15);
}
.license-section .license-card.extended-card:hover .panel-badge-icon {
  background-color: rgba(168, 85, 247, 0.25);
  color: #ffffff;
}
.license-section .license-card.extended-card .panel-badge-icon {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}
.license-section .license-card .panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .license-section .license-card .panel-header {
    gap: 15px;
  }
}
.license-section .license-card .panel-header .panel-badge-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--primary-color), 0.1);
  color: rgba(var(--primary-color), 1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.license-section .license-card .panel-header .panel-meta {
  position: relative;
  flex-grow: 1;
}
.license-section .license-card .panel-header .panel-meta h3 {
  font-size: 22px;
  font-weight: 800;
  color: rgba(var(--title-color), 1);
  margin-bottom: 6px;
}
.license-section .license-card .panel-header .panel-meta h3 .blue-text {
  color: #3b82f6;
}
.license-section .license-card .panel-header .panel-meta h3 .gold-text {
  color: #a855f7;
}
.license-section .license-card .panel-header .panel-meta p {
  font-size: 13.5px;
  color: rgba(var(--content-color), 0.8);
  margin-bottom: 0;
  line-height: 1.45;
}
.license-section .license-card .panel-header .panel-meta .popular-tag {
  position: absolute;
  top: -24px;
  right: -26px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(var(--primary-color), 1) 0%, #a855f7 100%);
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(var(--primary-color), 0.3);
}
.license-section .license-card .panel-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--primary-color), 0.08) 0%, transparent 100%);
  margin-bottom: 28px;
}
.license-section .license-card .panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.license-section .license-card .panel-features li {
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}
.license-section .license-card .panel-features li:hover {
  transform: translateX(3px);
}
.license-section .license-card .panel-features li.allowed {
  color: rgba(var(--title-color), 1);
  font-weight: 500;
}
.license-section .license-card .panel-features li.allowed .check-dot {
  width: 24px;
  height: 24px;
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.license-section .license-card .panel-features li.denied {
  color: rgba(var(--content-color), 0.5);
}
.license-section .license-card .panel-features li.denied .cross-dot {
  width: 24px;
  height: 24px;
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0.6;
}

/****** Testimonial Section ******/
.testimonial-section {
  background: linear-gradient(180deg, #f8faff 0%, #eef2f7 50%, #e8edf5 100%);
  position: relative;
  overflow: hidden;
  padding-block: 100px 80px;
}
.testimonial-section .testimonial-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(var(--primary-color), 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--primary-color), 0.012) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.testimonial-section .testimonial-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--primary-color), 0.07) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.testimonial-section .custom-container {
  position: relative;
  z-index: 2;
}
.testimonial-section .testimonial-slider {
  padding: 20px 10px 40px;
  position: relative;
}
.testimonial-section .testimonial-card {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--primary-color), 0.06);
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 12px 30px rgba(var(--primary-color), 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.testimonial-section .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04), 0 20px 45px rgba(var(--primary-color), 0.1);
  border-color: rgba(var(--primary-color), 0.15);
}
.testimonial-section .testimonial-card:hover .quote-icon i {
  color: rgba(var(--primary-color), 0.35);
  transform: scale(1.15) rotate(-8deg);
}
.testimonial-section .testimonial-card .card-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.testimonial-section .testimonial-card .rating {
  display: flex;
  gap: 4px;
}
.testimonial-section .testimonial-card .rating i {
  color: #ffb800;
  font-size: 16px;
}
.testimonial-section .testimonial-card .quote-icon {
  position: absolute;
  top: -8px;
  right: 8px;
  opacity: 0.5;
}
.testimonial-section .testimonial-card .quote-icon i {
  font-size: 60px;
  color: rgba(var(--primary-color), 0.12);
  transition: all 0.35s ease;
}
.testimonial-section .testimonial-card .feedback {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(var(--content-color), 0.85);
  margin-bottom: 15px;
  font-weight: 400;
  flex-grow: 1;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-section .testimonial-card .author-details {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(var(--primary-color), 0.08);
  padding-top: 18px;
  margin-top: auto;
}
.testimonial-section .testimonial-card .author-details .author-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: rgba(var(--white), 1);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.testimonial-section .testimonial-card .author-details .author-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(var(--title-color), 1);
  margin-bottom: 2px;
  text-align: left;
}
.testimonial-section .testimonial-card .author-details .author-info span {
  display: block;
  font-size: 13px;
  color: rgba(var(--subtitle-color), 1);
  font-weight: 500;
  text-align: left;
}

/****** Footer Section ******/
.footer-stats-row {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.footer-stats-card {
  background: #161922;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}
@media (max-width: 1199px) {
  .footer-stats-card {
    padding: 28px 20px;
    gap: 18px;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .footer-stats-card {
    padding: 22px 18px;
    gap: 16px;
    border-radius: 16px;
  }
}
.footer-stats-card:hover {
  background: #1c202b;
  border-color: rgba(var(--primary-color), 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(var(--primary-color), 0.08);
}
.footer-stats-card:hover .stats-award-wreath img {
  transform: scale(1.08) rotate(3deg);
}
.footer-stats-card .stats-award-wreath {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .footer-stats-card .stats-award-wreath {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .footer-stats-card .stats-award-wreath {
    width: 70px;
    height: 70px;
  }
}
.footer-stats-card .stats-award-wreath img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}
.footer-stats-card .stats-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
@media (max-width: 1199px) {
  .footer-stats-card .stats-text h3 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .footer-stats-card .stats-text h3 {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.footer-stats-card .stats-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.45;
  font-weight: 500;
}
@media (max-width: 575px) {
  .footer-stats-card .stats-text p {
    font-size: 13px;
  }
}

.footer-section {
  background-color: #0b0e14;
  position: relative;
  overflow: hidden;
  padding-block: 100px 40px;
  border-top: 1px solid rgba(var(--primary-color), 0.15);
}
.footer-section .footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(var(--primary-color), 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(var(--primary-color), 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 80%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}
.footer-section .footer-spotlight-left {
  position: absolute;
  left: -15%;
  top: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--primary-color), 0.22) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.footer-section .footer-spotlight-right {
  position: absolute;
  right: -15%;
  top: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.footer-section .custom-container {
  position: relative;
  z-index: 2;
}
.footer-section .footer-top-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.footer-section .footer-top-wrap .footer-logo img {
  margin-bottom: 15px;
  height: 50px;
}
.footer-section .footer-top-wrap .footer-description {
  font-size: 16px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 32px;
  font-weight: 400;
}
.footer-section .footer-top-wrap .btn-footer-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: rgba(var(--white), 1);
  background: rgba(var(--primary-color), 0.12);
  border: 1px solid rgba(var(--primary-color), 0.4);
  padding: 12px 32px;
  border-radius: 50px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(var(--primary-color), 0.15);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-section .footer-top-wrap .btn-footer-cta:hover {
  background: rgba(var(--primary-color), 1);
  border-color: rgba(var(--primary-color), 1);
  box-shadow: 0 0 30px rgba(var(--primary-color), 0.5), 0 8px 20px rgba(var(--primary-color), 0.3);
  transform: translateY(-2px);
}
.footer-section .footer-bottom-bar {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.footer-section .footer-bottom-bar:hover {
  border-color: rgba(var(--primary-color), 0.15);
  background: rgba(255, 255, 255, 0.03);
}
.footer-section .footer-bottom-bar .copyright-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer-section {
    padding-block: 80px 30px;
  }
  .footer-section .footer-bottom-bar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 20px;
  }
}
