body {
  background-color: hsl(0 0% 100%);
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body.sidebar-open {
  overflow: hidden;
}

.container {
  max-width: 1360px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.blueBtn {
  background: linear-gradient(135deg, #2463eb, #4f8cff, #2463eb);
  background-size: 200% 200%;
  background-position: left center;
  border-radius: 10px;
  min-height: 38px;
  padding: 10px 18px;
  max-width: max-content;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: none;
  transition:
    background-position 0.4s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.blueBtn:hover {
  box-shadow: 0 8px 20px rgba(36, 99, 235, 0.3);
  transform: translateY(-2px);
  background-position: right center;
}

.simpleBtn {
  color: #ffffff;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 10px 15px;
  max-width: max-content;
  width: 100%;
  transition: transform 0.2s ease, background-color 0.3s ease;
  border-radius: 10px;
}

.simpleBtn:hover {
  transform: translateY(-2px);
}

.flexClass {
  display: flex;
  align-items: center;
  gap: 10px;
}

.colClass {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.navBg{
   background-image: url(../assets/header-bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.nav {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
 
  position: relative;
  z-index: 1000;
}

.navImg {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
}

.navA {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 8px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  color: #ffffffd1;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.2s ease;
}

.navA:hover {
  color: #7db0ff;
  border-bottom: 1px solid #7db0ff;
  transform: translateY(-2px);
}

.desktopMenu,
.desktopActions {
  display: flex;
}

.hamburgerBtn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(10px);
  position: relative;
}

.hamburgerBtn span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.hamburgerBtn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburgerBtn.active span:nth-child(2) {
  opacity: 0;
}

.hamburgerBtn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 38, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #07163d 0%, #0a245f 100%);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
}

.mobile-sidebar.show {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.closeSidebarBtn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, transform 0.2s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-2px);
}

.mobile-sidebar-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.mobileFullBtn {
  max-width: 100%;
  width: 100%;
}

.mobile-sidebar .simpleBtn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 20px 0 50px 0;
  background-image: url(../assets/header-bg.png);
  background-size: cover;
  background-position: top;
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
}

.hero-left {
  flex: 1;
  max-width: 620px;
}

.hero-left h1 {
  font-size: 57px;
  line-height: 1.04;
  font-weight: 700;
  color: #fff;
}

.hero-left h1 span {
  color: #66a6ff;
}

.hero-left p {
  margin-top: 22px;
  color: #ffffffb2;
  font-size: 18px;
  line-height: 1.6;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  border-bottom: 1px solid #ffffff38;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.heroBtn {
  min-height: 47px;
  padding-left: 22px;
  padding-right: 22px;
}

.watchBtn {
  min-height: 47px;
  border: 1px solid #fff;
  color: #fff;
  background-color: #2463eb1a;
  padding-left: 22px;
  padding-right: 22px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.hero-stat-item {
  gap: 2px;
  border-right: 1px solid #ffffff38;
  padding-right: 30px;
  min-width: 140px;
}

.hero-stat-item.noBorder {
  border-right: none;
  padding-right: 0;
}

.statH2 {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
}

.statSpan {
  color: #ffffffb2;
  font-size: 14px;
}

.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.main-img {
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: floatY 6s ease-in-out infinite;
  will-change: transform;
  display: block;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-card {
  position: absolute;
  bottom: -32px;
  left: 10px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatX 5s ease-in-out infinite;
  will-change: transform;
  animation-delay: 1s;
}

@keyframes floatX {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}

.floating-card .icon {
  background: #d1fae5;
  color: #16a34a;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card p {
  font-size: 14px;
  color: #555;
}

.floating-card h3 {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .hero-inner {
    gap: 50px;
  }

  .hero-left h1 {
    font-size: 50px;
  }
}

@media (max-width: 992px) {
  .desktopMenu,
  .desktopActions {
    display: none;
  }

  .hamburgerBtn {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 70px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stat-item {
    align-items: center;
  }

  .hero-right {
    width: 100%;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
    animation: none;
  }
}

@media (max-width: 768px) {
  .nav {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .heroBtn,
  .watchBtn {
    width: 100%;
    max-width: 100%;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stat-item {
    min-width: calc(50% - 9px);
    border-right: none;
    padding-right: 0;
    align-items: center;
  }

  .hero-stat-item.noBorder {
    min-width: 100%;
  }

  .statH2 {
    font-size: 24px;
  }

  .main-img {
    max-width: 100%;
  }


}

@media (max-width: 576px) {


  .hero {
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .hero-left h1 {
    font-size: 33px;
    line-height: 1.1;
  }

  .hero-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 18px;
  }

  .blueBtn,
  .simpleBtn {
    font-size: 14px;
  }

  .hero-buttons {
    padding-bottom: 24px;
  }

  .hero-stats {
    margin-top: 28px;
    flex-direction: column;
    align-items: center;
  }

  .hero-stat-item,
  .hero-stat-item.noBorder {
    min-width: 100%;
    width: 100%;
    border-right: none;
    padding-right: 0;
    padding-bottom: 12px;
    align-items: center;
  }

 

  .mobile-sidebar {
    width: 100%;
    max-width: 320px;
  }
}

/* WHO IT'S FOR SECTION */
.who-section {
  background: #f4f7fc;
  padding: 60px 0px;
}

.who-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.who-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #dfe9ff;
  color: #2463eb;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.who-header h2 {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #07163d;
}

.who-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #5d7193;
  max-width: 850px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.who-card {
  background: #ffffff;
  border: 1px solid #dbe3f1;
  border-radius: 24px;
  padding: 20px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
  cursor: pointer;
}

.who-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(25, 50, 100, 0.12);
  border-color: #a9c3ff;
}

.who-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #e9eef9;
  color: #2463eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.who-icon-box svg {
  width: 34px;
  height: 34px;
}

.who-card:hover .who-icon-box {
  transform: scale(1.08);
  background: linear-gradient(135deg, #2463eb, #4f8cff);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(36, 99, 235, 0.25);
}

.who-card h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #07163d;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #5d7193;
}

/* RESPONSIVE */
@media (max-width: 1024px) {


  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {


  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .who-icon-box svg {
    width: 30px;
    height: 30px;
  }


  .who-card p {
    font-size: 15px;
  }
}

@media (max-width: 620px) {
 

  .who-header h2 {
    font-size: 28px;
  }
}

/* PROBLEMS WE SOLVE SECTION */
.problems-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}

.problems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(36, 99, 235, 0.06) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.5;
}

.problems-section > * {
  position: relative;
  z-index: 2;
}

.problems-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.problems-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
 padding: 12px 22px;
  border-radius: 999px;
  background: #ffe8ea;
  color: #ef4444;
    font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.problems-header h2 {
font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #07163d;
}

.problems-header p {
 font-size: 16px;
  line-height: 1.7;
  color: #5d7193;
  max-width: 850px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 15px;

}

.problem-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe3f1;
 border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  backdrop-filter: blur(8px);
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: #b7ccff;
  box-shadow: 0 20px 50px rgba(36, 99, 235, 0.10);
}

.problem-top,
.problem-solution {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
}

.danger-icon {
  background: #fff1f2;
  color: #ef4444;
}

.solution-icon {
  background: #e8f0ff;
  color: #2463eb;
}

.problem-card:hover .danger-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(239, 68, 68, 0.12);
}

.problem-card:hover .solution-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(36, 99, 235, 0.16);
}

.problem-content {
  flex: 1;
}

.problem-content h3 {
  font-size: 20px;
  line-height: 1.3;
  color: #07163d;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #7083a3;
}

.problem-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dbe3f1, transparent);
}

.problem-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf3ff;
  color: #2463eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.solution-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2463eb;
  margin-bottom: 8px;
}

.problem-content h4 {
  font-size: 16px;
  line-height: 1.75;
  color: #07163d;
  font-weight: 600;
  margin: 0;
}

/* RESPONSIVE */


@media (max-width: 992px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {


  .problems-header h2 {
    font-size: 34px;
  }


  .problem-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .problem-icon svg {
    width: 22px;
    height: 22px;
  }

  .problem-content h3 {
    font-size: 18px;
  }

  .problem-content p,
  .problem-content h4 {
    font-size: 15px;
    line-height: 1.7;
  }

}

@media (max-width: 576px) {
 

  .problems-badge {
    font-size: 13px;
    padding: 9px 16px;
    margin-bottom: 16px;
  }

  .problems-header h2 {
    font-size: 28px;
  }

  .problems-header p {
    font-size: 15px;
  }

  .problem-card {
    padding: 20px 18px;
  }

  .problem-top,
  .problem-solution {
    flex-direction: row;
    align-items: flex-start;
  }

  .problem-content h3 {
    font-size: 19px;
  }

  .problem-arrow {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
/* EVERYTHING YOU NEED SECTION */
.excellence-section {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.excellence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(36, 99, 235, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.excellence-section > * {
  position: relative;
  z-index: 2;
}

.excellence-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px auto;
}

.excellence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;

  border-radius: 999px;
  background: #e8f0ff;
  color: #2463eb;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.excellence-header h2 {
 font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #07163d;
  margin-bottom: 15px;
}

.excellence-header p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #6a7da0;
}

.excellence-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 15px;
  align-items: center;
}

.feature-group + .feature-group {
  margin-top: 34px;
}

.feature-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.group-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2463eb, #78a9ff);
  box-shadow: 0 0 0 6px rgba(36, 99, 235, 0.10);
  flex-shrink: 0;
}

.feature-group-title h3 {
  font-size: 18px;
  color: #07163d;
  font-weight: 700;
  margin: 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.admin-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #dbe5f3;
  border-radius: 20px;
  padding: 22px 18px;
  min-height: 185px;
  box-shadow: 0 8px 24px rgba(19, 40, 84, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  backdrop-filter: blur(8px);
}

.admin-card:hover {
  transform: translateY(-8px);
  border-color: #b8ccff;
  box-shadow: 0 18px 36px rgba(36, 99, 235, 0.12);
}

.admin-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4ff, #dfeaff);
  color: #2463eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.admin-card:hover .admin-icon {
  transform: scale(1.07);
  box-shadow: 0 10px 22px rgba(36, 99, 235, 0.16);
}

.admin-icon svg {
  width: 22px;
  height: 22px;
}

.admin-card h4 {
  font-size: 17px;
  line-height: 1.4;
  color: #07163d;
  font-weight: 700;
  margin-bottom: 10px;
}

.admin-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #6a7da0;
}

.mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mobile-feature-item {
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(19, 40, 84, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.mobile-feature-item:hover {
  transform: translateY(-6px);
  border-color: #b8ccff;
  box-shadow: 0 16px 32px rgba(36, 99, 235, 0.10);
}

.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4ff;
  color: #2463eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-icon svg {
  width: 18px;
  height: 18px;
}

.mobile-feature-item h5 {
  font-size: 15px;
  line-height: 1.4;
  color: #07163d;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.mobile-feature-item p {
  font-size: 13px;
  line-height: 1.65;
  color: #6a7da0;
  margin: 0;
}

/* RIGHT */
.excellence-right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}


.phone-preview {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 270px;
  object-fit: contain;
  filter: drop-shadow(0 32px 55px rgba(24, 39, 75, 0.22));
  transition: transform 0.4s ease;
  border-radius: 20px;
  animation: floatY 6s ease-in-out infinite;
  will-change: transform;
  display: block;
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}




/* RESPONSIVE */
@media (max-width: 1200px) {
  .excellence-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .excellence-right {
    order: -1;
  }

}

@media (max-width: 992px) {
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .excellence-section {
    padding: 85px 0;
  }

  .excellence-header {
    margin-bottom: 40px;
  }

  .excellence-header h2 {
    font-size: 34px;
  }

  .excellence-header p {
    font-size: 16px;
  }

  .admin-grid,
  .mobile-feature-grid {
    grid-template-columns: 1fr;
  }

  .admin-card {
    min-height: auto;
  }

  .phone-preview {
    max-width: 220px;
  }

  .floating-chip {
    font-size: 12px;
    padding: 8px 12px;
  }

  
}

@media (max-width: 576px) {
  .excellence-section {
    padding: 65px 0;
  }

  .excellence-badge {
    font-size: 13px;
    padding: 9px 16px;
    margin-bottom: 14px;
  }

  .excellence-header h2 {
    font-size: 28px;
  }

  .excellence-header p {
    font-size: 15px;
  }

  .feature-group-title h3 {
    font-size: 16px;
  }

  .admin-card,
  .mobile-feature-item {
    padding: 16px;
    border-radius: 16px;
  }

  .admin-card h4 {
    font-size: 16px;
  }

  .admin-card p,
  .mobile-feature-item p {
    font-size: 13px;
  }
  .phone-preview {
    max-width: 175px;
  }
}


/* EXPERIENCE DEMO SECTION */
.demo-live-section {
  background: linear-gradient(180deg, #0a1f5d 0%, #0d2a78 100%);
  padding: 72px 0 86px;
  position: relative;
  overflow: hidden;
}

.demo-live-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(89, 144, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
}

.demo-live-section > * {
  position: relative;
  z-index: 1;
}

.demo-live-container {
  max-width: 980px;
}

.demo-live-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.demo-live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.demo-live-header h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 12px;
}

.demo-live-header p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.demo-live-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.demo-live-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px 20px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 35px rgba(3, 12, 39, 0.22);
}

.demo-live-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.demo-live-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-live-icon-box svg {
  width: 20px;
  height: 20px;
}

.demo-live-card h3 {
  font-size: 21px;
  line-height: 1.25;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 3px;
}

.demo-live-card span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.demo-live-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 11px;
}

.demo-live-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.6;
}

.demo-live-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5e97ff;
}

.demo-live-btn {
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.demo-live-btn:hover {
  transform: translateY(-2px);
}

.demo-live-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2463eb, #4f8cff);
  box-shadow: 0 10px 24px rgba(36, 99, 235, 0.26);
}

.demo-live-btn-primary:hover {
  box-shadow: 0 14px 28px rgba(36, 99, 235, 0.34);
}

.demo-live-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.demo-live-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.demo-live-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.demo-live-note svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.demo-request-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.demo-request-card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px 20px;
  box-shadow: 0 24px 50px rgba(2, 10, 32, 0.28);
}

.demo-request-card h3 {
  font-size: 24px;
  line-height: 1.25;
  color: #07163d;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.demo-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.demo-field label {
  color: #07163d;
  font-size: 13px;
  font-weight: 600;
}

.demo-field input,
.demo-field select {
  height: 44px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d8e0ef;
  background: #ffffff;
  padding: 0 14px;
  color: #07163d;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.demo-field input::placeholder {
  color: #90a0bd;
}

.demo-field input:focus,
.demo-field select:focus {
  border-color: #2463eb;
  box-shadow: 0 0 0 3px rgba(36, 99, 235, 0.10);
}

.demo-request-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.demo-request-cancel,
.demo-request-submit {
  height: 44px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.demo-request-cancel {
  border: 1px solid #d8e0ef;
  background: #ffffff;
  color: #07163d;
}

.demo-request-submit {
  border: none;
  background: linear-gradient(135deg, #2463eb, #4f8cff);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(36, 99, 235, 0.18);
}

.demo-request-cancel:hover,
.demo-request-submit:hover {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .demo-live-section {
    padding: 64px 0 78px;
  }

  .demo-live-header h2 {
    font-size: 36px;
  }

  .demo-live-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .demo-live-section {
    padding: 56px 0 68px;
  }

  .demo-live-header {
    margin-bottom: 28px;
  }

  .demo-live-header h2 {
    font-size: 30px;
  }

  .demo-live-header p {
    font-size: 15px;
  }

  .demo-request-card {
    padding: 20px 16px 16px;
    border-radius: 16px;
  }

  .demo-request-card h3 {
    font-size: 21px;
  }

  .demo-request-grid,
  .demo-request-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .demo-live-section {
    padding: 48px 0 58px;
  }

  .demo-live-badge {
    font-size: 12px;
    min-height: 30px;
    padding: 6px 12px;
  }

  .demo-live-header h2 {
    font-size: 25px;
  }

  .demo-live-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  .demo-live-card h3 {
    font-size: 18px;
  }

  .demo-live-list li {
    font-size: 13px;
  }

  .demo-live-btn {
    min-height: 42px;
    font-size: 14px;
  }

  .demo-request-card h3 {
    font-size: 19px;
  }
}

.demo-request-wrap {
  margin-top: 28px;
}

.demo-request-wrap.is-hidden {
  display: none;
}

.demo-request-wrap.is-visible {
  display: flex;
  justify-content: center;
  animation: demoFadeUp 0.3s ease;
}

.demo-request-card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(8, 27, 77, 0.18);
  border: 1px solid rgba(36, 99, 235, 0.08);
}

.demo-request-card h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #07163d;
  text-align: center;
  margin-bottom: 24px;
}

.demo-request-form {
  width: 100%;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.demo-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-field label {
  font-size: 14px;
  font-weight: 600;
  color: #07163d;
}

.demo-field input,
.demo-field select {
  width: 100%;
  height: 50px;
  border: 1px solid #d8dfec;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #07163d;
  outline: none;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.demo-field input:focus,
.demo-field select:focus {
  border-color: #2463eb;
  box-shadow: 0 0 0 4px rgba(36, 99, 235, 0.08);
}

.demo-form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.demo-cancel-btn {
  height: 50px;
  border-radius: 12px;
  border: 1px solid #d8dfec;
  background: #ffffff;
  color: #07163d;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
}

.demo-cancel-btn:hover {
  background: #f6f8fc;
}

.demo-submit-btn {
  max-width: 100%;
  width: 100%;
  height: 50px;
  border-radius: 12px;
}

.simpleDemoBtn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 12px;
  min-height: 48px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.simpleDemoBtn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.demo-action-btn {
  width: 100%;
  max-width: 100%;
}

@keyframes demoFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .demo-request-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .demo-request-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .demo-form-actions {
    grid-template-columns: 1fr;
  }
}


/* WHY KUBES360 SECTION */
.why-ops-section {
  background: #f4f7fc;
  padding: 72px 0;
}

.why-ops-header {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 42px auto;
}

.why-ops-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #dfe9ff;
  color: #2463eb;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

.why-ops-header h2 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  color: #07163d;
  margin-bottom: 16px;
}

.why-ops-header p {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #5d7193;
}

.why-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
}

.why-ops-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid transparent;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease, border-color 0.32s ease;
}

.why-ops-card:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: #dbe5f3;
  box-shadow: 0 18px 42px rgba(18, 38, 82, 0.08);
  transform: translateY(-6px);
}

.why-ops-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 18px;
  background: #dfe9ff;
  color: #2463eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease, box-shadow 0.32s ease;
}

.why-ops-icon svg {
  width: 28px;
  height: 28px;
}

.why-ops-card:hover .why-ops-icon {
  background: linear-gradient(135deg, #2463eb, #4f8cff);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(36, 99, 235, 0.18);
}

.why-ops-content h3 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #07163d;
  margin-bottom: 10px;
}

.why-ops-content p {
  font-size: 15px;
  line-height: 1.85;
  color: #6a7da0;
}

.why-ops-cta {
  margin: 40px auto 0 auto;
  max-width: 820px;
  background: #ffffff;
  border: 1px solid #dbe5f3;
  border-radius: 24px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.why-ops-cta-copy h3 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #07163d;
  margin-bottom: 8px;
}

.why-ops-cta-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: #5d7193;
}

.why-ops-cta-btn {
  min-width: 188px;
  min-height: 60px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 700;
  padding-left: 28px;
  padding-right: 28px;
  box-shadow: 0 14px 28px rgba(36, 99, 235, 0.18);
}

@media (max-width: 1100px) {
  .why-ops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-ops-section {
    padding: 60px 0;
  }

  .why-ops-header {
    margin-bottom: 28px;
  }

  .why-ops-header h2 {
    font-size: 34px;
  }

  .why-ops-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-ops-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .why-ops-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
  }

  .why-ops-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-ops-content h3 {
    font-size: 18px;
  }

  .why-ops-cta {
    padding: 22px 18px;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .why-ops-cta-btn {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
  }
}

@media (max-width: 576px) {
  .why-ops-section {
    padding: 54px 0;
  }

  .why-ops-badge {
    font-size: 13px;
    padding: 9px 16px;
    margin-bottom: 12px;
  }

  .why-ops-header h2 {
    font-size: 28px;
  }

  .why-ops-header p,
  .why-ops-content p,
  .why-ops-cta-copy p {
    font-size: 15px;
  }

  .why-ops-card {
    gap: 14px;
    padding: 16px 14px;
  }

  .why-ops-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .why-ops-content h3,
  .why-ops-cta-copy h3 {
    font-size: 18px;
  }
}


/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #07163d 0%, #06112f 100%);
  padding: 72px 0 34px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(36, 99, 235, 0.10), transparent 28%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr) minmax(260px, 0.9fr);
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2463eb, #4f8cff);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(36, 99, 235, 0.28);
}

.footer-brand h3,
.footer-links-col h4,
.footer-contact-col h4 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-description {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.footer-social-link {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.footer-social-link:hover {
  transform: translateY(-4px);
  background: rgba(79, 140, 255, 0.18);
  border-color: rgba(79, 140, 255, 0.28);
  box-shadow: 0 14px 26px rgba(14, 35, 82, 0.32);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.footer-links a,
.footer-contact-item {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact-item:hover {
  color: #7db0ff;
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-text:hover {
  color: rgba(255, 255, 255, 0.82);
  transform: none;
}

.footer-contact-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #7db0ff;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 58px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 34px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-description {
    font-size: 16px;
    line-height: 1.75;
  }

  .footer-links,
  .footer-contact-list {
    margin-top: 20px;
  }

  .footer-bottom {
    padding-top: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 52px 0 24px;
  }

  .footer-logo-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 24px;
  }

  .footer-brand h3 {
    font-size: 17px;
  }

  .footer-description {
    font-size: 15px;
  }

  .footer-social-link {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .footer-links a,
  .footer-contact-item,
  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 15px;
  }
}
/* pricing */


.gridPrice{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

  .mk-price {
    position: relative;
    border-radius: 28px;
    padding: 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  .mk-price::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(
      90deg,
      rgba(37, 99, 235, 0.9),
     #2463eb
    );
    opacity: 0.9;
  }

  .mk-price:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.08);
  }

  .mk-price.popular {
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow:
      0 24px 56px rgba(37, 99, 235, 0.12),
      0 12px 26px rgba(15, 23, 42, 0.06);
  }

  .mk-price-top {
    margin-bottom: 1rem;
  }

  .mk-price-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
  }

  .mk-price-value {
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 0.2rem;
    text-align: center;
  }

  .mk-price-sub {
    color: #6b7280;
    font-size: 0.96rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .mk-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.75rem;
  }

  .mk-price-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    color: #475467;
    line-height: 1.65;
    text-align: left;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
  }

  .mk-price-list li i {
    font-size: 1rem;
    line-height: 1.2;
    flex: 0 0 auto;
    margin-top: 0.15rem;
  }

  .mk-price-cta {
    margin-top: auto;
    padding-top: 0.35rem;
  }


  /* how its work */


  .process-section {
      padding: 80px 20px;
      overflow: hidden;
    }

    .section-top {
      text-align: center;
      margin-bottom: 60px;
    }

    .badge {
      display: inline-block;
      padding: 10px 20px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
      color:#2563eb;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .section-subtitle {
      max-width: 760px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.8;
      color:  #64748b;
    }

    .process-wrap {
      position: relative;
      margin-top: 30px;
    }

    .process-line {
      position: absolute;
      top: 36px;
      left: 8%;
      width: 84%;
      height: 2px;
      background: linear-gradient(to right, transparent,  #2563eb, transparent);
      z-index: 0;
    }

    .process-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .step {
      text-align: center;
      padding: 0 10px;
    }

    .step-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 22px;
      border-radius: 50%;
      background:#fff;
      border: 2px solid rgba(37, 99, 235, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step:hover .step-icon {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(37, 99, 235, 0.14);
    }

    .step-number {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #2563eb;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-icon svg {
      width: 28px;
      height: 28px;
      stroke:  #2563eb;
      stroke-width: 2;
      fill: none;
    }

    .step h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .step p {
      font-size: 16px;
      line-height: 1.8;
      color:  #64748b;
      max-width: 220px;
      margin: 0 auto;
    }

    @media (max-width: 991px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
      }

      .process-line {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .process-section {
        padding: 60px 16px;
      }

      .section-top {
        margin-bottom: 40px;
      }

      .section-subtitle {
        font-size: 16px;
        line-height: 1.7;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .step {
        text-align: left;
        padding-left: 84px;
        position: relative;
      }

      .step-icon {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: 62px;
        height: 62px;
      }

      .step h3 {
        font-size: 20px;
        margin-bottom: 10px;
      }

      .step p {
        max-width: 100%;
        margin: 0;
        font-size: 15px;
      }
    }
/* ============================================
   Compact typography and spacing refinements
   Theme and layout preserved
============================================ */

.blueBtn,
.simpleBtn {
  font-size: 15px;
  min-height: 36px;
  padding: 9px 16px;
  font-weight: 600;
}

.nav {
  padding-top: 16px;
  padding-bottom: 16px;
}

.navA {
  font-size: 15px;
  padding: 3px 7px;
}

.hero {
  padding: 16px 0 42px 0;
}

.hero-inner {
  gap: 72px;
}

.hero-left h1 {
  font-size: 52px;
  line-height: 1.06;
  font-weight: 700;
}

.hero-left p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.65;
}

.hero-buttons {
  gap: 16px;
  margin-top: 26px;
  padding-bottom: 24px;
}

.heroBtn,
.watchBtn {
  min-height: 44px;
  padding-left: 18px;
  padding-right: 18px;
}

.hero-stats {
  gap: 22px;
  margin-top: 34px;
}

.hero-stat-item {
  padding-right: 22px;
  min-width: 128px;
}

.statH2 {
  font-size: 24px;
  font-weight: 700;
}

.statSpan {
  font-size: 13px;
}

.floating-card {
  gap: 12px;
  padding: 12px 16px;
}

.floating-card h3 {
  font-size: 18px;
}

.who-section,
.problems-section,
.excellence-section,
.why-ops-section {
  padding: 52px 0;
}

.demo-live-section {
  padding: 62px 0 72px;
}

.site-footer {
  padding: 62px 0 28px;
}

.process-section {
  padding: 70px 20px;
}

.who-header,
.problems-header {
  margin: 0 auto 16px auto;
}

.excellence-header {
  margin: 0 auto 48px auto;
}

.why-ops-header,
.demo-live-header,
.section-top {
  margin-bottom: 28px;
}

.who-badge,
.problems-badge,
.excellence-badge,
.badge,
.demo-live-badge,
.why-ops-badge {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.who-header h2,
.problems-header h2,
.excellence-header h2,
.why-ops-header h2,
.demo-live-header h2,
.section-title {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  font-weight: 700;
}

.who-header p,
.problems-header p,
.excellence-header p,
.why-ops-header p,
.demo-live-header p,
.section-subtitle {
  font-size: 15px;
  line-height: 1.7;
}

.who-card,
.problem-card,
.admin-card,
.mobile-feature-item,
.demo-live-card,
.why-ops-card {
  padding: 18px;
}

.mk-price {
  padding: 1.4rem;
}

.who-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.who-icon-box svg {
  width: 30px;
  height: 30px;
}

.problem-icon {
  width: 50px;
  height: 50px;
}

.problem-icon svg,
.admin-icon svg,
.mini-icon svg,
.why-ops-icon svg {
  width: 20px;
  height: 20px;
}

.admin-icon,
.mini-icon {
  width: 42px;
  height: 42px;
}

.who-card h3,
.problem-content h3,
.admin-card h4,
.mobile-feature-item h5,
.demo-live-card h3,
.why-ops-content h3,
.why-ops-cta-copy h3,
.step h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.problem-content h4 {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.who-card p,
.problem-content p,
.admin-card p,
.mobile-feature-item p,
.mk-price-sub,
.demo-live-list li,
.why-ops-content p,
.why-ops-cta-copy p,
.step p,
.footer-description {
  font-size: 14px;
  line-height: 1.7;
}

.feature-group-title {
  margin-bottom: 16px;
}

.feature-group-title h3,
.footer-brand h3,
.footer-links-col h4,
.footer-contact-col h4,
.mk-price-title {
  font-size: 17px;
  font-weight: 700;
}

.mk-price-value {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.mk-price-top {
  margin-bottom: 0.85rem;
}

.mk-price-list {
  gap: 0.6rem;
  margin: 0 0 1rem;
}

.mk-price-list li {
  padding: 0.75rem 0.85rem;
  line-height: 1.55;
}

.mk-price-cta {
  padding-top: 0.2rem;
}

.demo-live-card-top {
  gap: 12px;
  margin-bottom: 14px;
}

.demo-live-icon-box {
  width: 40px;
  height: 40px;
}

.demo-live-icon-box svg {
  width: 18px;
  height: 18px;
}

.demo-live-list {
  gap: 9px;
  margin: 0 0 16px;
}

.demo-live-btn,
.simpleDemoBtn {
  font-size: 14px;
  min-height: 44px;
}

.why-ops-grid,
.footer-top {
  gap: 42px 24px;
}

.why-ops-card {
  gap: 12px;
}

.why-ops-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
}

.why-ops-cta {
  margin-top: 28px;
  padding: 22px 20px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-socials {
  gap: 12px;
  margin-top: 22px;
}

.footer-social-link {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links,
.footer-contact-list {
  gap: 14px;
  margin-top: 22px;
}

.footer-links a,
.footer-contact-item,
.footer-bottom p,
.footer-bottom-links a {
  font-size: 15px;
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom-links {
  gap: 22px;
}

.process-wrap {
  margin-top: 24px;
}

.process-grid {
  gap: 20px;
}

.step {
  padding: 0 8px;
}

.step-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
}

.step-number {
  width: 26px;
  height: 26px;
  font-size: 12px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1200px) {
  .hero-inner {
    gap: 44px;
  }

  .hero-left h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 36px;
  }

  .hero-left p,
  .who-header p,
  .problems-header p,
  .excellence-header p,
  .why-ops-header p,
  .demo-live-header p,
  .section-subtitle {
    font-size: 15px;
  }

  .who-section,
  .problems-section,
  .excellence-section,
  .why-ops-section,
  .demo-live-section {
    padding: 48px 0;
  }

  .site-footer {
    padding: 52px 0 24px;
  }

  .process-section {
    padding: 56px 16px;
  }

  .footer-top {
    gap: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .blueBtn,
  .simpleBtn {
    font-size: 14px;
    min-height: 34px;
    padding: 8px 14px;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .statH2 {
    font-size: 22px;
  }

  .who-header h2,
  .problems-header h2,
  .excellence-header h2,
  .why-ops-header h2,
  .demo-live-header h2,
  .section-title {
    font-size: 26px;
  }

  .who-card,
  .problem-card,
  .admin-card,
  .mobile-feature-item,
  .demo-live-card,
  .why-ops-card {
    padding: 16px;
  }

  .mk-price {
    padding: 1.2rem;
  }

  .step-icon {
    width: 58px;
    height: 58px;
  }

  .step {
    padding-left: 76px;
  }
}


/* PREMIUM SCROLL ANIMATION */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] {
  transform: translate3d(0, 46px, 0) scale(0.985);
  filter: blur(8px);
}

[data-reveal="left"] {
  transform: translate3d(-52px, 0, 0) scale(0.985);
  filter: blur(8px);
}

[data-reveal="right"] {
  transform: translate3d(52px, 0, 0) scale(0.985);
  filter: blur(8px);
}

[data-reveal="zoom"] {
  transform: translate3d(0, 30px, 0) scale(0.92);
  filter: blur(10px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-left > * {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  [data-reveal="up"],
  [data-reveal="left"],
  [data-reveal="right"],
  [data-reveal="zoom"],
  .hero-left > *,
  .main-img,
  .floating-card,
  .phone-preview {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

