/* =========================================================
   GLOBAL PREMIUM WEBSITE THEME
   FINAL CLEAN VERSION
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');



/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

  --primary: #5b52ff;
  --primary-light: #7c74ff;

  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border-color: rgba(15, 23, 42, 0.08);

  --glass-bg: rgba(255, 255, 255, 0.65);

  --shadow-sm:
    0 4px 10px rgba(15, 23, 42, 0.04);

  --shadow-md:
    0 10px 30px rgba(15, 23, 42, 0.06);

  --shadow-lg:
    0 20px 60px rgba(15, 23, 42, 0.08);

  --shadow-xl:
    0 30px 80px rgba(15, 23, 42, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --container: 1280px;

  --transition: all .35s ease;
}



/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {

  font-family:
    'Plus Jakarta Sans',
    sans-serif;

  background:
    radial-gradient(circle at top left,
      rgba(124, 58, 237, 0.10),
      transparent 28%),

    radial-gradient(circle at bottom right,
      rgba(59, 130, 246, 0.08),
      transparent 28%),

    var(--bg-primary);

  color: var(--text-primary);

  line-height: 1.7;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}



/* =========================================================
   COMMON
========================================================= */

.container {

  width: 100%;
  max-width: var(--container);

  margin-inline: auto;

  padding-inline: 24px;
}

section {
  padding: 70px 0;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.mt-4 {
  margin-top: 10px;
}

.mt-3 {
  margin-top: 8px;
}

button,
input,
textarea {

  border: none;
  outline: none;
  font-family: inherit;
}

button {
  cursor: pointer;
}



/* =========================================================
   TYPOGRAPHY
========================================================= */

h1 {

  font-size: clamp(52px, 7vw, 88px);

  line-height: .98;

  letter-spacing: -4px;

  font-weight: 800;
}

h2 {

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1.05;

  letter-spacing: -3px;

  font-weight: 800;
}

h3 {

  font-size: 26px;

  font-weight: 650;
}

h4 {

  font-size: 22px;

  font-weight: 700;
}

p {

  font-size: 18px;

  color: var(--text-secondary);
}



/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {

  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 45px;

  padding-inline: 34px;

  border-radius: 999px;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;

  font-size: 15px;
  font-weight: 600;

  box-shadow:
    0 15px 40px rgba(91, 82, 255, .25);

  transition: var(--transition);
}

.btn-primary:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 22px 50px rgba(91, 82, 255, .32);
}

.btn-primary:active {

  transform:
    translateY(-1px);
}

@media(max-width:576px) {

  .btn-primary {
    width: 100%;
  }

}

/* =========================================================
   CARD
========================================================= */

.card {

  background: var(--glass-bg);

  backdrop-filter: blur(24px);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  border-radius: var(--radius-lg);

  box-shadow: var(--shadow-md);

  transition: var(--transition);
}

.card:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-xl);
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background:
    rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(18px);

  border-bottom:
    1px solid rgba(255, 255, 255, 0.55);

  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.04);

}



/* =========================================================
   NAV WRAPPER
========================================================= */

.nav-wrapper {

  height: 82px;

  display: grid;

  grid-template-columns:
    80px 1fr auto;

  align-items: center;
}





/* =========================================================
   LOGO
========================================================= */

/* ==========================================
   LOGO
========================================== */

.logo {

  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;
}

/* ==========================================
   LOGO IMAGE
========================================== */

.logo img {

  width: 60px;

  flex-shrink: 0;

  filter:
    drop-shadow(0 10px 24px rgba(108, 99, 255, .12));

  animation:
    logoAssemble 1s cubic-bezier(.19, 1, .22, 1) forwards;
}

/* ==========================================
   TEXT
========================================== */
.logo-text {

  display: flex;

  align-items: center;

  gap: 10px;

  line-height: 1;
}

.brand-main {

  font-size: 34px;

  font-weight: 900;

  letter-spacing: -2px;

  color: #0F172A;

  position: relative;
}

.brand-main::after {

  content: "";

  position: absolute;

  bottom: -6px;

  left: 0;

  width: 100%;

  height: 3px;

  border-radius: 10px;

  background:
    linear-gradient(90deg,
      #6C63FF,
      #8B7DFF);

  transform: scaleX(.8);

  transform-origin: left;
}

#typing-text {

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #6C63FF;

  min-width: 120px;
}

/* ==========================================
   CURSOR
========================================== */

#typing-text::after {

  content: "|";

  margin-left: 2px;

  color: #6C63FF;

  animation:
    blink .8s infinite;
}

@keyframes blink {

  50% {
    opacity: 0;
  }

}

/* ==========================================
   LOGO ANIMATION
========================================== */

@keyframes logoAssemble {

  0% {

    opacity: 0;

    transform:
      scale(.8) rotate(-5deg);

  }

  60% {

    opacity: 1;

    transform:
      scale(1.05) rotate(2deg);

  }

  100% {

    opacity: 1;

    transform:
      scale(1) rotate(0deg);

  }

}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 42px;
}

.nav-links a {

  position: relative;

  font-size: 15px;

  font-weight: 500;

  color: var(--text-secondary);

  transition: var(--transition);
}

.nav-links a::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;
  height: 2px;

  border-radius: 999px;

  background: var(--primary);

  transition: var(--transition);
}

.nav-links a:hover {

  color: var(--text-primary);
}

.nav-links a:hover::after {

  width: 100%;
}



/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {

  display: flex;

  justify-content: flex-end;
}



/* =========================================================
   MOBILE TOGGLE
========================================================= */

/* =========================================================
   MOBILE TOGGLE
========================================================= */

.menu-toggle {

  width: 52px;
  height: 52px;

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(14px);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  transition: var(--transition);

  box-shadow: var(--shadow-sm);
}



/* LINES */

.menu-toggle span {

  width: 22px;
  height: 2px;

  border-radius: 999px;

  background: var(--text-primary);

  transition: var(--transition);
}



/* ACTIVE */

.menu-toggle.active span:nth-child(1) {

  transform:
    translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {

  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {

  transform:
    translateY(-7px) rotate(-45deg);
}



/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

  position: fixed;

  top: 72px;
  left: 0;

  width: 100%;

  height: calc(100vh - 72px);

  padding: 16px;

  background:
    rgba(255, 255, 255, 0.97);

  backdrop-filter: blur(24px);

  border-top:
    1px solid rgba(255, 255, 255, 0.5);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity .35s ease,
    visibility .35s ease;

  z-index: 999;

  overflow-y: auto;
}



/* ACTIVE */

.mobile-menu.active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}



/* =========================================================
   MENU CONTENT
========================================================= */

.mobile-menu-content {

  display: flex;

  flex-direction: column;

  gap: 10px;

  animation:
    mobileMenuFade .35s ease;
}



/* =========================================================
   MOBILE LINKS
========================================================= */

.mobile-menu-content a {

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 12px 18px;

  border-radius: 16px;

  background:
    rgba(248, 250, 252, 0.9);

  color: var(--text-primary);

  font-size: 16px;

  font-weight: 600;

  transition: var(--transition);
}



/* HOVER */

.mobile-menu-content a:hover {

  background: white;

  color: var(--primary);

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);
}



/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-btn {

  width: 100%;

  height: 54px;

  margin-top: 4px;
  background-color: var(--primary) !important;
  color: #ffff !important;
}




/* =========================================================
   ANIMATION
========================================================= */

@keyframes mobileMenuFade {

  from {

    opacity: 0;

    transform: translateY(10px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }

}



/* =========================================================
   DESKTOP RESET
========================================================= */




/* =========================================================
   HERO
========================================================= */

.hero {

  min-height: 100vh;

  display: flex;

  align-items: center;

  padding: 150px 0 120px;
}



/* =========================================================
   GRID SYSTEM
========================================================= */

.grid-2 {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;
}

.grid-3 {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.grid-4 {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;
}



/* =========================================================
   FOOTER
========================================================= */

.footer {

  padding: 120px 0 40px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.4),
      rgba(248, 250, 252, 0.95));
}

.footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1fr;

  gap: 60px;
}

.footer .logo-image {

  width: 200px;
}

.footer-description {

  max-width: 320px;

  line-height: 1.9;

  font-size: 16px;
}



/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-title {

  position: relative;

  font-size: 20px;

  font-weight: 700;

  margin-bottom: 28px;

  padding-bottom: 14px;
}

.footer-title::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      var(--primary),
      var(--primary-light));
}



/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.footer-links a {

  width: fit-content;

  color: var(--text-secondary);

  transition: var(--transition);
}

.footer-links a:hover {

  color: var(--primary);

  transform: translateX(4px);
}



/* =========================================================
   SOCIAL
========================================================= */

.footer-social {

  display: flex;

  align-items: center;

  gap: 14px;
}

.social-icon {

  width: 54px;
  height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: var(--glass-bg);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  color: var(--text-primary);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}

.social-icon:hover {

  transform: translateY(-6px);

  color: white;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));
}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

  margin-top: 80px;

  padding-top: 30px;

  border-top:
    1px solid var(--border-color);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom-links {

  display: flex;

  align-items: center;

  gap: 24px;
}

.logo-icon {

  display: flex;

  align-items: center;

  justify-content: center;
  margin-bottom: 30px;
  margin-left: 40px;
}

/* FOOTER LOGO */

.footer .logo-image {

  width: 120px;

  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.footer-brand {

  max-width: 320px;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {

  padding: 70px 0 40px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.4),
      rgba(248, 250, 252, 0.96));
}



/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr 1fr;

  align-items: start;

  gap: 60px;
}



/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

  max-width: 320px;
}



/* =========================================================
   LOGO
========================================================= */

.logo {

  display: inline-flex;

  align-items: center;
}



/* LOGO WRAPPER */

.logo-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 26px;
}



/* FOOTER LOGO */

.footer .logo-image {

  width: 120px;

  height: auto;

  object-fit: contain;

  display: block;

  filter:
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.12));

  transition: var(--transition);
}



/* HOVER */

.footer .logo:hover .logo-image {

  transform: translateY(-2px);

  filter:
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.16));
}



/* =========================================================
   DESCRIPTION
========================================================= */

.footer-description {

  max-width: 320px;

  line-height: 1.9;

  font-size: 16px;

  color: var(--text-secondary);
}



/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-title {

  position: relative;

  font-size: 20px;

  font-weight: 700;

  margin-bottom: 28px;

  padding-bottom: 14px;
}



/* TITLE LINE */

.footer-title::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: 0;

  width: 42px;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      var(--primary),
      var(--primary-light));
}



/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

  display: flex;

  flex-direction: column;

  gap: 18px;
}



/* LINKS */

.footer-links a {

  width: fit-content;

  color: var(--text-secondary);

  transition: var(--transition);
}



/* HOVER */

.footer-links a:hover {

  color: var(--primary);

  transform: translateX(4px);
}



/* =========================================================
   CONTACT
========================================================= */

.footer-contact {

  display: flex;

  flex-direction: column;

  gap: 16px;

  color: var(--text-secondary);

  line-height: 1.8;
}



/* =========================================================
   SOCIAL
========================================================= */

.footer-social {

  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 28px;
}



/* ICON */

.social-icon {

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: var(--glass-bg);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, 0.5);

  color: var(--text-primary);

  box-shadow: var(--shadow-sm);

  transition: var(--transition);
}



/* HOVER */

.social-icon:hover {

  transform: translateY(-5px);

  color: white;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow: var(--shadow-md);
}



/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

  margin-top: 70px;

  padding-top: 32px;

  border-top:
    1px solid var(--border-color);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  flex-wrap: wrap;
}



/* COPYRIGHT */

.footer-bottom p {

  color: var(--text-secondary);
}



/* BOTTOM LINKS */

.footer-bottom-links {

  display: flex;

  align-items: center;

  gap: 24px;
}



/* LINKS */

.footer-bottom-links a {

  color: var(--text-secondary);

  transition: var(--transition);
}



/* HOVER */

.footer-bottom-links a:hover {

  color: var(--primary);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {}


@media(max-width:768px) {

  .footer {

    padding: 60px 0 30px;
  }

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom {

    flex-direction: column;

    align-items: flex-start;
  }

}


@media(max-width:480px) {

  .footer .logo-image {

    width: 100px;
  }

  .social-icon {

    width: 44px;
    height: 44px;
  }

  .footer-bottom-links {

    gap: 18px;

    flex-wrap: wrap;
  }

}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #edf2f7;
}

::-webkit-scrollbar-thumb {

  background:
    linear-gradient(180deg,
      var(--primary),
      var(--primary-light));

  border-radius: 999px;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media(max-width:1100px) {
  /* =========================================================
   MOBILE TOGGLE
========================================================= */

  .menu-toggle {

    width: 52px;
    height: 52px;

    border-radius: 16px;

    background:
      rgba(255, 255, 255, 0.7);

    backdrop-filter: blur(14px);

    border:
      1px solid rgba(255, 255, 255, 0.5);

    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
  }



  /* LINES */

  .menu-toggle span {

    width: 22px;
    height: 2px;

    border-radius: 999px;

    background: var(--text-primary);

    transition: var(--transition);
  }



  /* ACTIVE */

  .menu-toggle.active span:nth-child(1) {

    transform:
      translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {

    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {

    transform:
      translateY(-7px) rotate(-45deg);
  }



  /* =========================================================
   MOBILE MENU
========================================================= */

  .mobile-menu {

    position: fixed;

    top: 72px;
    left: 0;

    width: 100%;

    height: calc(100vh - 72px);

    padding: 16px;

    background:
      rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(24px);

    border-top:
      1px solid rgba(255, 255, 255, 0.5);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
      opacity .35s ease,
      visibility .35s ease;

    z-index: 999;

    overflow-y: auto;
  }



  /* ACTIVE */

  .mobile-menu.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
  }



  /* =========================================================
   MENU CONTENT
========================================================= */

  .mobile-menu-content {

    display: flex;

    flex-direction: column;

    gap: 10px;

    animation:
      mobileMenuFade .35s ease;
  }



  /* =========================================================
   MOBILE LINKS
========================================================= */

  .mobile-menu-content a {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 12px 18px;

    border-radius: 16px;

    background:
      rgba(248, 250, 252, 0.9);

    color: var(--text-primary);

    font-size: 16px;

    font-weight: 600;

    transition: var(--transition);
  }



  /* HOVER */

  .mobile-menu-content a:hover {

    background: white;

    color: var(--primary);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
  }



  /* =========================================================
   MOBILE BUTTON
========================================================= */

  .mobile-btn {

    width: 100%;

    height: 54px;

    margin-top: 4px;

  }

  .footer-grid {

    grid-template-columns:
      1fr 1fr;

    gap: 50px;
  }

  /* =========================================================
   ANIMATION
========================================================= */

  @keyframes mobileMenuFade {

    from {

      opacity: 0;

      transform: translateY(10px);
    }

    to {

      opacity: 1;

      transform: translateY(0);
    }

  }



  /* =========================================================
   DESKTOP RESET
========================================================= */

  @media(min-width:1101px) {

    .mobile-menu {

      opacity: 0 !important;

      visibility: hidden !important;

      pointer-events: none !important;
    }

  }

  .mobile-menu-content {

    display: flex;
  }

  .nav-wrapper {

    grid-template-columns:
      1fr auto;
  }

  .nav-links,
  .nav-actions {

    display: none;
  }

  .menu-toggle {

    display: flex;
  }

}


@media(max-width:768px) {

  section {
    padding: 60px 0;
  }

  .container {
    padding-inline: 10px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {

    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .nav-wrapper {
    height: 82px;
  }

  .mobile-menu {
    top: 82px;
  }

  .footer {

    padding: 60px 0 30px;
  }

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom {

    flex-direction: column;

    align-items: flex-start;
  }

}


@media(max-width:480px) {

  h1 {
    letter-spacing: -2px;
  }

  @media(max-width:480px) {
    .logo {
      justify-content: flex-start;
    }

    .logo-image {
      width: 48px;
    }


  }

  .footer .logo-image {

    width: 100px;
  }

  .social-icon {

    width: 44px;
    height: 44px;
  }

  .footer-bottom-links {

    gap: 18px;

    flex-wrap: wrap;
  }

  .menu-toggle {

    width: 48px;
    height: 48px;
  }

}


/* =========================================================
   HERO
========================================================= */
.hero {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;
}

.hero-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

.hero-content {

  max-width: 620px;
}

.hero-title {

  font-size: clamp(60px, 6vw, 78px);

  line-height: .95;

  letter-spacing: -3px;

  margin: 20px 0;
}

.hero-description {

  font-size: 20px;

  line-height: 1.8;

  max-width: 520px;
}

.hero-buttons {

  display: flex;

  gap: 16px;

  margin-top: 40px;
}

.hero-users {

  margin-top: 40px;

  font-weight: 600;
}

.hero-visual {

  display: flex;

  justify-content: center;

  align-items: center;
}

/* ==========================================
   PHONE
========================================== */

.phone-mockup {

  width: 300px;

  max-width: 100%;

  background: #111827;

  padding: 10px;

  border-radius: 40px;

  position: relative;

  overflow: hidden;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .15);

  animation:
    floatPhone 5s ease-in-out infinite;
}

/* ==========================================
   NOTCH
========================================== */

.phone-notch {

  width: 120px;

  height: 24px;

  background: #000;

  border-radius: 999px;

  margin: 0 auto 10px;
}

/* ==========================================
   SCREEN
========================================== */

.phone-screen {

  height: 540px;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  position: relative;
}

/* ==========================================
   SCREEN SLIDER
========================================== */

.screen-slider {

  animation:
    phoneScroll 12s infinite ease-in-out;
}

.screen-slider img {

  width: 100%;

  height: 580px;

  object-fit: cover;

  display: block;
}

/* ==========================================
   FLOATING PHONE
========================================== */

@keyframes floatPhone {

  0%,
  100% {

    transform:
      translateY(0);
  }

  50% {

    transform:
      translateY(-12px);
  }
}

/* ==========================================
   SCREEN CHANGE
========================================== */

@keyframes phoneScroll {

  0%,
  20% {

    transform:
      translateY(0);
  }

  25%,
  45% {

    transform:
      translateY(-580px);
  }

  50%,
  70% {

    transform:
      translateY(-1160px);
  }

  75%,
  95% {

    transform:
      translateY(-1740px);
  }

  100% {

    transform:
      translateY(0);
  }
}

/* ==========================================
   HERO PARTICLES
========================================== */

.hero-particles {

  position: absolute;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 1;
}

.particle {

  position: absolute;

  opacity: .5;

  animation:
    floatBlink 6s ease-in-out infinite;
}

/* ==========================================
   STAR
========================================== */

.star {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: #8b5cf6;

  box-shadow:
    0 0 10px #8b5cf6,
    0 0 20px #8b5cf6;
}

/* ==========================================
   CIRCLE
========================================== */

.circle {

  width: 14px;

  height: 14px;

  border-radius: 50%;

  background: #06b6d4;

  box-shadow:
    0 0 10px #06b6d4,
    0 0 20px #06b6d4;
}

/* ==========================================
   DIAMOND
========================================== */

.diamond {

  width: 12px;

  height: 12px;

  background: #ec4899;

  transform: rotate(45deg);

  box-shadow:
    0 0 10px #ec4899;
}

/* ==========================================
   PLUS
========================================== */

.plus {

  width: 14px;

  height: 3px;

  background: #f59e0b;
}

.plus::before {

  content: "";

  position: absolute;

  width: 3px;

  height: 14px;

  background: #f59e0b;

  left: 5px;

  top: -5px;
}

/* ==========================================
   HEXAGON
========================================== */

.hexagon {

  width: 14px;

  height: 14px;

  background: #6366f1;

  clip-path:
    polygon(25% 0%,
      75% 0%,
      100% 50%,
      75% 100%,
      25% 100%,
      0% 50%);

  box-shadow:
    0 0 10px #6366f1;
}

/* ==========================================
   POSITIONS
========================================== */

.particle:nth-child(1) {
  top: 5%;
  left: 5%;
}

.particle:nth-child(2) {
  top: 10%;
  left: 15%;
}

.particle:nth-child(3) {
  top: 8%;
  left: 28%;
}

.particle:nth-child(4) {
  top: 15%;
  left: 40%;
}

.particle:nth-child(5) {
  top: 6%;
  left: 55%;
}

.particle:nth-child(6) {
  top: 12%;
  left: 70%;
}

.particle:nth-child(7) {
  top: 8%;
  left: 85%;
}

.particle:nth-child(8) {
  top: 22%;
  left: 10%;
}

.particle:nth-child(9) {
  top: 28%;
  left: 22%;
}

.particle:nth-child(10) {
  top: 18%;
  left: 38%;
}

.particle:nth-child(11) {
  top: 35%;
  left: 52%;
}

.particle:nth-child(12) {
  top: 30%;
  left: 68%;
}

.particle:nth-child(13) {
  top: 40%;
  left: 82%;
}

.particle:nth-child(14) {
  top: 50%;
  left: 12%;
}

.particle:nth-child(15) {
  top: 58%;
  left: 28%;
}

.particle:nth-child(16) {
  top: 48%;
  left: 45%;
}

.particle:nth-child(17) {
  top: 62%;
  left: 60%;
}

.particle:nth-child(18) {
  top: 55%;
  left: 78%;
}

.particle:nth-child(19) {
  top: 72%;
  left: 18%;
}

.particle:nth-child(20) {
  top: 82%;
  left: 35%;
}

.particle:nth-child(21) {
  top: 75%;
  left: 52%;
}

.particle:nth-child(22) {
  top: 88%;
  left: 68%;
}

.particle:nth-child(23) {
  top: 78%;
  left: 82%;
}

.particle:nth-child(24) {
  top: 92%;
  left: 15%;
}

.particle:nth-child(25) {
  top: 90%;
  left: 92%;
}

/* ==========================================
   DELAYS
========================================== */

.particle:nth-child(odd) {

  animation-delay: 1s;
}

.particle:nth-child(3n) {

  animation-delay: 2s;
}

.particle:nth-child(4n) {

  animation-delay: 3s;
}

.particle:nth-child(5n) {

  animation-delay: 4s;
}

/* ==========================================
   ANIMATION
========================================== */

@keyframes floatBlink {

  0%,
  100% {

    opacity: .2;

    transform:
      translateY(0) scale(1);
  }

  50% {

    opacity: 1;

    transform:
      translateY(-15px) scale(1.6);
  }
}

.hero-title {

  display: flex;

  flex-direction: column;

  gap: 2px;

  font-size: clamp(60px, 5vw, 78px);

  line-height: .9;

  letter-spacing: -4px;

  font-weight: 900;

  color: #071133;

  margin-bottom: 24px;
}

.hero-title .outline {

  background:
    linear-gradient(135deg,
      #071133 0%,
      #5b52ff 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  display: block;
}

.hero-title .accent {

  display: block;

  color: #5b52ff;

  font-weight: 900;
}

.hero-badges {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 20px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .75);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, .6);

  box-shadow:
    0 10px 30px rgba(91, 82, 255, .08);

  margin-bottom: 24px;
}

.badge-icon {

  width: 34px;

  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b5cf6);

  color: #fff;

  font-size: 16px;
}

.hero-badges span {

  font-size: 14px;

  font-weight: 600;

  color: #071133;

  letter-spacing: .3px;
}

.badge-status {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 6px rgba(34, 197, 94, .15);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:768px) {

  .hero-grid {

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .hero-title {

    font-size: 44px;
  }

  .phone-mockup {

    width: 250px;
  }

  .phone-screen {

    height: 520px;
  }

  .screen-slider img {

    height: 520px;
  }
}

/* =========================================================
   HOW IT WORKS
========================================================= */


.how-it-works {

  position: relative;

  overflow: hidden;

  background: #f5f9ff;
}

.how-it-works::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    repeating-radial-gradient(circle at 20% 30%,

      transparent 0,

      transparent 35px,

      rgba(91, 82, 255, .035) 36px,

      rgba(91, 82, 255, .035) 38px),

    repeating-radial-gradient(circle at 80% 70%,

      transparent 0,

      transparent 45px,

      rgba(139, 92, 246, .03) 46px,

      rgba(139, 92, 246, .03) 48px);

  opacity: .8;

  z-index: 0;

  pointer-events: none;
}

.how-it-works::before {

  animation:
    patternFloat 25s ease-in-out infinite alternate;
}

@keyframes patternFloat {

  from {

    transform:
      translateX(0) translateY(0) scale(1);
  }

  to {

    transform:
      translateX(-30px) translateY(-20px) scale(1.05);
  }
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

  max-width: 680px;

  margin-inline: auto;

  text-align: center;
}



/* =========================================================
   SECTION BADGE
========================================================= */

.section-badge {

  width: fit-content;

  margin-inline: auto;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  border-radius: 999px;
}



/* DOT */

.section-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* TEXT */

.section-badge {

  font-size: 14px;

  font-weight: 600;

  color: var(--primary);
}



/* =========================================================
   SECTION DESCRIPTION
========================================================= */

.section-heading p {

  max-width: 560px;
  margin-inline: auto;
}


.steps-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 70px;
}

.step-card {

  padding: 35px;

  border-radius: 28px;

  background: #fff;

  border: 1px solid rgba(15, 23, 42, .05);

  transition: .4s ease;

  position: relative;

  overflow: hidden;
}

.step-card:hover {

  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .08);
}

.step-top {

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.step-number {

  font-size: 14px;

  font-weight: 700;

  color: #64748b;

  letter-spacing: 1px;
}

.step-icon {

  width: 72px;

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 22px;

  color: #fff;

  transition: .4s ease;
}

/* Step 1 */

.step-card:nth-child(1) .step-icon {

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b5cf6);
}

/* Step 2 */

.step-card:nth-child(2) .step-icon {

  background:
    linear-gradient(135deg,
      #06b6d4,
      #3b82f6);
}

/* Step 3 */

.step-card:nth-child(3) .step-icon {

  background:
    linear-gradient(135deg,
      #22c55e,
      #16a34a);
}

.step-icon svg {

  width: 32px;

  height: 32px;
}

.step-card:hover .step-icon {

  transform:
    translateY(-4px) scale(1.05);
}

.step-card h3 {

  margin-top: 28px;

  font-size: 28px;

  line-height: 1.15;

  font-weight: 800;

  color: #071133;
}

.step-card p {

  margin-top: 16px;

  font-size: 16px;

  line-height: 1.8;

  color: #64748b;
}

.active-step {

  transform: translateY(-15px);

  border: 1px solid rgba(91, 82, 255, .15);

  box-shadow:
    0 25px 60px rgba(91, 82, 255, .12);
}

.step-card {

  transform-style: preserve-3d;

  transition: .4s;
}

.step-card:hover {

  transform:
    translateY(-10px);
}

.active-step::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background:
    linear-gradient(90deg,
      #5b52ff,
      #8b5cf6);
}

@media(max-width:991px) {

  .steps-grid {

    grid-template-columns: 1fr;

    gap: 24px;
  }

  .active-step {

    transform: none;
  }
}

@media(max-width:480px) {

  .section-heading {
    text-align: left;
  }

  .section-badge {
    margin-inline: 0;
  }

  .section-badge {
    padding: 10px 18;
  }

  .card .section-heading p {
    margin-inline: 0;
  }

  .step-card {

    padding: 28px 22px;
  }

  .step-number {

    font-size: 46px;

    opacity: 1;
  }

  .step-card h3 {
    max-width: 100%;
  }

}


/* =========================================================
   DASHBOARD SECTION
========================================================= */

.dashboard-section {

  position: relative;

  overflow: hidden;
}



/* =========================================================
   DASHBOARD GRID
========================================================= */

.dashboard-grid {

  display: grid;

  grid-template-columns: .95fr 1.05fr;

  align-items: center;

  gap: 40px;
}



/* =========================================================
   DASHBOARD PREVIEW
========================================================= */

.dashboard-preview {

  position: relative;

  padding: 28px;

  border-radius: 38px;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 250, 252, 0.96));

  border:
    1px solid rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(24px);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.12);
}



/* GLOW */

.dashboard-preview::after {

  content: '';

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background:
    rgba(91, 82, 255, 0.10);

  filter: blur(80px);

  top: -100px;
  right: -100px;

  pointer-events: none;
}



/* =========================================================
   TOP AREA
========================================================= */

.dashboard-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 34px;
}



/* =========================================================
   USER
========================================================= */

.dashboard-user {

  display: flex;

  align-items: center;

  gap: 16px;
}



/* AVATAR */

.dashboard-avatar {

  width: 58px;
  height: 58px;

  border-radius: 20px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;

  font-size: 22px;

  font-weight: 700;

  box-shadow:
    0 16px 34px rgba(91, 82, 255, 0.28);
}



/* USER TEXT */

.dashboard-user h4 {

  font-size: 20px;

  margin-bottom: 4px;
}

.dashboard-user p {

  font-size: 14px;

  color: var(--text-secondary);
}



/* =========================================================
   LIVE BADGE
========================================================= */

.dashboard-status-badge {

  padding: 10px 18px;

  border-radius: 999px;

  background:
    rgba(34, 197, 94, 0.12);

  color: #16a34a;

  font-size: 13px;

  font-weight: 700;

  border:
    1px solid rgba(34, 197, 94, 0.14);
}



/* =========================================================
   STATS
========================================================= */

.dashboard-stats {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 30px;
  margin-top: 10px;
}



/* STAT CARD */

.dashboard-stat {

  padding: 24px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.68);

  border:
    1px solid rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(20px);

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05);
}



/* LABEL */

.dashboard-stat span {

  display: block;

  font-size: 14px;

  color: var(--text-secondary);

  margin-bottom: 10px;
}



/* VALUE */

.dashboard-stat h3 {

  font-size: 40px;

  line-height: 1;

  letter-spacing: -2px;
}



/* =========================================================
   ACTIVITY AREA
========================================================= */

.dashboard-activity {

  padding: 12px 0;
}



/* ITEM */

.activity-item {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding-block: 14px;

  border-bottom:
    1px solid rgba(15, 23, 42, 0.06);
}



/* LAST */

.activity-item:last-child {

  border-bottom: none;
}



/* =========================================================
   DOT
========================================================= */

.activity-dot {

  width: 12px;
  height: 12px;

  border-radius: 50%;

  margin-top: 8px;

  background: #ef4444;

  box-shadow:
    0 0 0 8px rgba(239, 68, 68, 0.12);

  flex-shrink: 0;
}



/* SUCCESS */

.success-dot {

  background: #22c55e;

  box-shadow:
    0 0 0 8px rgba(34, 197, 94, 0.12);
}



/* TEXT */

.activity-item h4 {

  font-size: 18px;

  margin-bottom: 6px;
}

.activity-item p {

  font-size: 15px;

  color: var(--text-secondary);
}



/* =========================================================
   CONTENT SIDE
========================================================= */

.dashboard-content h2 {

  font-size: clamp(44px, 5vw, 56px);

  line-height: .94;

  letter-spacing: -3px;

  max-width: 700px;
  margin: 20px;
}


/* =========================================================
   FEATURES
========================================================= */

.dashboard-features {

  display: flex;

  flex-direction: column;

  gap: 18px;
}



/* FEATURE */

.dashboard-feature {
  width: fit-content;

  min-width: 320px;
  display: flex;

  align-items: center;

  gap: 14px;

  padding: 18px 20px;

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.6);

  border:
    1px solid rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(18px);

  transition: var(--transition);
}



/* HOVER */

.dashboard-feature:hover {

  transform:
    translateX(8px);

  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.06);
}



/* CHECK */

.feature-check {

  width: 34px;
  height: 34px;

  border-radius: 12px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(135deg,
      #22c55e,
      #16a34a);

  color: white;

  font-size: 15px;

  font-weight: 700;

  flex-shrink: 0;

  box-shadow:
    0 12px 24px rgba(34, 197, 94, 0.24);
}



/* TEXT */

.dashboard-feature span {

  font-size: 16px;

  font-weight: 500;
}



/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:992px) {

  .dashboard-grid {

    grid-template-columns: 1fr;

    gap: 60px;
  }

  .dashboard-content {
    max-width: 100%;
  }

}

@media(max-width:768px) {

  .dashboard-grid {
    gap: 50px;
  }

  .dashboard-preview {

    padding: 28px;

    border-radius: 34px;
  }

  .dashboard-top {

    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .dashboard-stat h3 {
    font-size: 32px;
  }

  .dashboard-content h2 {

    max-width: 320px;

    font-size: clamp(34px, 8vw, 42px);

    line-height: .98;

    letter-spacing: -2px;

    margin-bottom: 16px;
  }

  .dashboard-content p {

    max-width: 330px;

    font-size: 17px;

    line-height: 1.8;
  }

}

@media(max-width:480px) {

  .dashboard-preview {

    padding: 22px;

    border-radius: 28px;
  }

  .dashboard-avatar {

    width: 48px;
    height: 48px;

    font-size: 17px;
  }

  .dashboard-user h4 {
    font-size: 17px;
  }

  .dashboard-feature {

    padding: 15px 16px;

    border-radius: 18px;
  }

  .dashboard-content h2 {

    max-width: 290px;

    font-size: 38px;

    line-height: .96;
  }

  .dashboard-content p {

    max-width: 310px;

    font-size: 16px;
    margin-left: 15px;
  }

}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fd);
}

.services-section::before {
  top: 80px;
  content: "";

  position: absolute;

  inset: 0;

  background:
    url("../images/bg-2.jpg") center center / cover no-repeat;

  opacity: .15;

  filter: brightness(.5);

  pointer-events: none;

  z-index: 0;

}

.section-heading,
.services-grid {

  position: relative;

  z-index: 2;
}


.services-title {

  font-size: clamp(52px, 6vw, 82px);

  line-height: .92;

  letter-spacing: -3px;

  font-weight: 900;

  color: #071133;

  max-width: 1000px;

  margin: 0 auto;
}

.services-title span {

  display: block;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b7fff);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

.services-section .section-heading p {

  max-width: 700px;

  margin: 24px auto 0;

  font-size: 21px;

  line-height: 1.8;

  color: #5f6475;
}

.services-section {

  position: relative;

  overflow: hidden;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 50px;

  margin-top: 56px;
}



/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

  position: relative;

  padding: 36px 30px;

  min-height: 300px;

  overflow: hidden;

  border-radius: 32px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 1));

  border:
    1px solid rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(24px);

  transition: .45s ease;

  isolation: isolate;
}



/* HOVER */

.service-card:hover {

  transform:
    translateY(-14px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.12);
}

.service-card::after {

  content: '';

  position: absolute;

  top: 0;
  left: 30px;

  width: 80px;
  height: 4px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      var(--primary),
      transparent);
}


/* =========================================================
   CARD GLOW
========================================================= */

.service-card::before {

  content: '';

  position: absolute;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    rgba(91, 82, 255, 0.10);

  filter: blur(70px);

  top: -100px;
  right: -100px;

  opacity: 0;

  transition: .5s ease;

  z-index: -1;
}



/* SHOW GLOW */

.service-card:hover::before {

  opacity: 1;
}

.services-title {
  font-size: clamp(54px, 5vw, 60px);

  line-height: .95;

  letter-spacing: -3px;

  max-width: 900px;

  margin-inline: auto;
  margin-top: 10px;
}


/* =========================================================
   ACTIVE CARD
========================================================= */

.active-service {

  transform:
    translateY(-24px);

  border:
    1px solid rgba(91, 82, 255, 0.14);

  box-shadow:
    0 30px 80px rgba(91, 82, 255, 0.12);
}

/* =========================================================
   STAGGER CARD LAYOUT
========================================================= */

.service-card:nth-child(2),
.service-card:nth-child(6) {

  transform:
    translateY(30px);
}



.service-card:nth-child(4),
.service-card:nth-child(8) {

  transform:
    translateY(-20px);
}

/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {

  position: relative;

  width: 78px;
  height: 78px;

  border-radius: 26px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 22px;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;

  box-shadow:
    0 22px 40px rgba(91, 82, 255, 0.22);

  overflow: hidden;

  transition: .45s ease;
}



/* SHINE EFFECT */

.service-icon::before {

  content: '';

  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.4),
      transparent);

  opacity: .7;
}



/* SVG */

.service-icon svg {

  width: 34px;
  height: 34px;

  stroke: currentColor;

  position: relative;

  z-index: 2;

  transition: .45s ease;
}



/* ICON HOVER */

.service-card:hover .service-icon {

  transform:
    rotate(-8deg) scale(1.08);
}



/* SVG HOVER */

.service-card:hover .service-icon svg {

  transform:
    scale(1.1);
}



/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card h3 {

  font-size: 30px;

  line-height: 1.12;

  margin-bottom: 18px;

  letter-spacing: -1px;

  transition: .35s ease;
}



/* TITLE HOVER */

.service-card:hover h3 {

  color: var(--primary);
}



/* =========================================================
   DESCRIPTION
========================================================= */

.service-card p {

  font-size: 17px;

  line-height: 1.9;

  color: var(--text-secondary);

  margin-bottom: 30px;
}



/* =========================================================
   LINK
========================================================= */

.service-link {

  position: absolute;

  left: 30px;
  bottom: 30px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: 15px;

  font-weight: 600;

  color: var(--primary);

  transition: .35s ease;
}



/* LINK HOVER */

.service-card:hover .service-link {

  gap: 14px;
}



/* =========================================================
   FLOATING ANIMATION
========================================================= */

@keyframes floatingCard {

  0% {

    transform:
      translateY(0px);
  }

  50% {

    transform:
      translateY(-10px);
  }

  100% {

    transform:
      translateY(0px);
  }

}



/* ACTIVE FLOAT */

.active-service {

  animation:
    floatingCard 4s ease-in-out infinite;
}



/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   RESPONSIVE
========================================================= */

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .services-grid {

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
  }

}

@media(max-width:992px) {

  .services-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  /* REMOVE STAGGER EFFECT */

  .service-card:nth-child(2),
  .service-card:nth-child(4),
  .service-card:nth-child(6),
  .service-card:nth-child(8) {

    transform: translateY(0);
  }

  .active-service {

    transform: translateY(0);
  }

}

@media(max-width:768px) {

  .services-grid {

    grid-template-columns: 1fr;

    gap: 22px;
  }

  /* SECTION HEADING */

  .services-title {

    max-width: 320px;

    font-size: clamp(34px, 8vw, 42px);

    line-height: .96;

    letter-spacing: -2px;

    margin-top: 14px;
    margin-bottom: 16px;
  }

  .services-section .section-heading p {

    max-width: 330px;

    font-size: 16px;

    line-height: 1.8;

    margin-top: 0;
  }

  /* CARD */

  .service-card {

    min-height: auto;

    padding: 30px 24px 72px;

    border-radius: 28px;
  }

  /* ICON */

  .service-icon {

    width: 60px;
    height: 60px;

    border-radius: 20px;

    margin-bottom: 20px;
  }

  .service-icon svg {

    width: 28px;
    height: 28px;
  }

  /* TITLE */

  .service-card h3 {

    font-size: 24px;

    line-height: 1.1;

    margin-bottom: 14px;
  }

  /* TEXT */

  .service-card p {

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 24px;
  }

  /* LINK */

  .service-link {

    left: 24px;
    bottom: 24px;

    font-size: 14px;
  }

}

@media(max-width:480px) {

  .services-grid {
    gap: 20px;
  }

  /* HEADING */

  .services-title {

    max-width: 290px;

    font-size: 38px;

    line-height: .95;

    letter-spacing: -2px;
  }

  .services-section .section-heading p {

    max-width: 310px;

    font-size: 15px;
  }

  /* CARD */

  .service-card {

    padding: 26px 22px 64px;

    border-radius: 24px;
  }

  /* ICON */

  .service-icon {

    width: 56px;
    height: 56px;

    border-radius: 18px;
  }

  .service-icon svg {

    width: 26px;
    height: 26px;
  }

  /* TITLE */

  .service-card h3 {

    font-size: 22px;

    margin-bottom: 12px;
  }

  /* DESCRIPTION */

  .service-card p {

    font-size: 15px;

    line-height: 1.75;
  }

  /* LINK */

  .service-link {

    left: 22px;
    bottom: 22px;
  }

}

/* =========================================================
   TESTIMONIALS
========================================================= */
/* =====================================
   TESTIMONIAL SECTION
===================================== */

.testimonials-section {
  padding: 120px 0;
  overflow: hidden;
}

.testimonialSwiper {
  padding: 30px 0 80px;
}

/* =====================================
   TESTIMONIAL CARD
===================================== */

.testimonial-card {
  height: 420px;
  perspective: 1200px;
}

.testimonial-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .8s ease;
  transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-inner {
  transform: rotateY(180deg);
}

/* =====================================
   FRONT & BACK
===================================== */

.testimonial-front,
.testimonial-back {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* =====================================
   FRONT SIDE
===================================== */

.testimonial-front {
  background: #ffffff;
  border: 1px solid #edf2f7;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .05);
}

.testimonial-front img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 4px solid rgba(109, 93, 252, .15);
}

.testimonial-front h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.testimonial-front span {
  color: #64748b;
  font-size: 15px;
}

.testimonial-stars {
  margin-top: 20px;
  font-size: 20px;
  color: #f59e0b;
  letter-spacing: 2px;
}

/* =====================================
   BACK SIDE
===================================== */

.testimonial-back {
  background: linear-gradient(135deg,
      #6366f1,
      #8b5cf6);

  color: white;

  transform: rotateY(180deg);

  padding: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-back h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.testimonial-back p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .9);
}

/* =====================================
   ACTIVE SLIDE
===================================== */

.swiper-slide {
  transition: .4s ease;
}

.swiper-slide-active {
  transform: scale(1.05);
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: .8;
}

/* =====================================
   SWIPER NAVIGATION
===================================== */

.swiper-button-prev,
.swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #6366f1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #6366f1;
  color: #fff;
}

/* =====================================
   PAGINATION
===================================== */

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #6366f1;
  width: 30px;
  border-radius: 20px;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

  .testimonial-card {
    height: 380px;
  }

  .testimonial-front,
  .testimonial-back {
    padding: 30px;
  }

  .testimonial-front img {
    width: 90px;
    height: 90px;
  }

  .testimonial-front h3 {
    font-size: 20px;
  }

  .testimonial-back h4 {
    font-size: 20px;
  }

  .testimonial-back p {
    font-size: 15px;
  }

  .swiper-slide-active {
    transform: scale(1);
  }
}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

  position: relative;

  overflow: hidden;
}

.faq-title {
  font-size: clamp(56px, 5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -4px;
  color: #0b132b;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title span {
  display: block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.word {
  display: inline-block;
  margin-right: 12px;
}

.highlight {
  display: block;
}

/* =========================================================
   FAQ WRAPPER
========================================================= */

.faq-wrapper {

  display: flex;

  flex-direction: column;

  gap: 24px;

  max-width: 1100px;

  margin:
    80px auto 0;
}



/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {

  position: relative;

  overflow: hidden;

  border-radius: 34px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.92),
      rgba(248, 250, 252, 0.96));

  border:
    1px solid rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(24px);

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.04);
}



/* TOP GLOW LINE */

.faq-item::before {

  content: '';

  position: absolute;

  top: 0;
  left: 42px;

  width: 120px;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      transparent,
      var(--primary),
      transparent);

  opacity: 0;

  transition: .45s ease;
}



/* HOVER */

.faq-item:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.08);
}



/* SHOW TOP LINE */

.faq-item:hover::before,
.active-faq::before {

  opacity: 1;
}



/* =========================================================
   ACTIVE FAQ
========================================================= */

.active-faq {

  border:
    1px solid rgba(91, 82, 255, 0.14);

  box-shadow:
    0 24px 70px rgba(91, 82, 255, 0.10);
}



/* =========================================================
   QUESTION
========================================================= */

.faq-question {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 24px 32px;

  background: transparent;

  border: none;

  cursor: pointer;

  text-align: left;
}


/* QUESTION TEXT */

.faq-question span {

  flex: 1;

  font-size: 22px;

  font-weight: 600;

  line-height: 1.3;

  letter-spacing: -.5px;

  color: var(--text-primary);
}


/* =========================================================
   ICON
========================================================= */

.faq-icon {

  position: relative;

  width: 30px;
  height: 30px;

  border-radius: 22px;

  flex-shrink: 0;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 18px 34px rgba(91, 82, 255, 0.18);

  transition: .45s ease;
}



/* HORIZONTAL LINE */

.faq-icon span:first-child {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: white;

  transform:
    translate(-50%, -50%);
}



/* VERTICAL LINE */

.faq-icon span:last-child {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 2px;
  height: 18px;

  border-radius: 999px;

  background: white;

  transform:
    translate(-50%, -50%);

  transition: .4s ease;
}



/* ACTIVE */

.active-faq .faq-icon {

  transform:
    rotate(180deg);
}



/* REMOVE + */

.active-faq .faq-icon span:last-child {

  opacity: 0;
}



/* =========================================================
   ANSWER
========================================================= */

.faq-answer {

  max-height: 0;

  overflow: hidden;

  opacity: 0;

  padding:
    0 42px;

  transition:
    max-height .45s ease,
    opacity .35s ease,
    padding .45s ease;
}



/* OPEN ANSWER */

.active-faq .faq-answer {

  max-height: 300px;

  opacity: 1;

  padding:
    0 42px 38px 42px;
}



/* ANSWER TEXT */

.faq-answer p {

  max-width: 90%;

  font-size: 17px;

  line-height: 1.9;

  color: var(--text-secondary);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:768px) {

  .faq-wrapper {
    padding: 0 10px;
    gap: 20px;
  }

  .faq-question {

    min-height: 100px;

    padding: 28px;
  }

  .faq-question span {

    font-size: 21px;
  }

  .faq-answer {

    padding:
      0 28px;
  }

  .active-faq .faq-answer {

    padding:
      0 28px 28px 28px;
  }

  .faq-answer p {

    max-width: 100%;
  }

  .faq-icon {

    width: 52px;
    height: 52px;

    border-radius: 18px;
  }

}



@media(max-width:480px) {

  .faq-question {

    min-height: 90px;

    padding: 24px 22px;

    gap: 18px;
  }

  .faq-question span {

    font-size: 18px;

    line-height: 1.5;
  }

  .faq-answer {

    padding:
      0 22px;
  }

  .active-faq .faq-answer {

    padding:
      0 22px 24px 22px;
  }

  .faq-answer p {

    font-size: 16px;

    line-height: 1.8;
  }

  .faq-icon {

    width: 48px;
    height: 48px;

    border-radius: 16px;
  }

  .section-heading {
    padding: 0 10px;
  }

}

/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
  position: relative;
  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #f8f9ff 0%,
      #ffffff 100%);
}

/* BACKGROUND GLOW */

.trust-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background:
    repeating-linear-gradient(-45deg,
      rgba(91, 82, 255, .04) 0px,
      rgba(91, 82, 255, .04) 1px,
      transparent 1px,
      transparent 40px);

  pointer-events: none;
}

/* =========================================================
   SECTION CONTENT
========================================================= */

.trust-section .container {
  position: relative;
  z-index: 2;
}

.stats-title {

  font-size: clamp(40px, 4vw, 60px);

  font-weight: 900;

  line-height: .92;

  letter-spacing: -2px;

  color: #071133;

  max-width: 1000px;

  margin: 0 auto;
}

.stats-title span {

  display: block;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b7fff);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* =========================================================
   METRICS GRID
========================================================= */

.metrics-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 70px;
}

/* =========================================================
   METRIC CARD
========================================================= */

.metric-card {
  position: relative;

  text-align: center;

  padding: 42px 28px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .72);

  border:
    1px solid rgba(255, 255, 255, .6);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 10px 40px rgba(108, 99, 255, .08);

  transition:
    .4s ease;
}

/* HOVER */

.metric-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 24px 60px rgba(108, 99, 255, .12);
}

/* FEATURED CARD */

.featured-metric {
  background:
    linear-gradient(135deg,
      #7b6dff,
      #5d50ff);

  transform:
    scale(1.03);
}

/* NUMBER */

.metric-card h3 {
  font-size: 56px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  color: var(--heading-color);

  margin-bottom: 14px;
}

/* FEATURED NUMBER */

.featured-metric h3 {
  color: white;
}

/* TEXT */

.metric-card p {
  font-size: 16px;
  line-height: 1.7;

  color: var(--text-light);

  margin: 0;
}

/* FEATURED TEXT */

.featured-metric p {
  color: rgba(255, 255, 255, .8);
}

/* =========================================================
   TRUSTED BY
========================================================= */

.trusted-by {
  margin-top: 90px;

  text-align: center;
}

/* LABEL */

.trusted-by span {
  display: inline-block;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--text-light);

  margin-bottom: 28px;
}

/* =========================================================
   LOGOS WRAPPER
========================================================= */

.trusted-logos {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 18px;
}

/* =========================================================
   LOGO PILL
========================================================= */

.logo-pill {
  padding: 16px 28px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .78);

  border:
    1px solid rgba(255, 255, 255, .7);

  backdrop-filter: blur(12px);

  box-shadow:
    0 8px 30px rgba(108, 99, 255, .06);

  font-size: 15px;
  font-weight: 600;

  color: var(--heading-color);

  transition:
    .35s ease;
}

/* HOVER */

.logo-pill:hover {
  transform:
    translateY(-4px);

  background:
    linear-gradient(135deg,
      #7b6dff,
      #5d50ff);

  color: white;

  box-shadow:
    0 18px 40px rgba(108, 99, 255, .14);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:768px) {

  .trust-section {
    padding: 60px 0;
  }

  .metric-card {
    padding: 36px 24px;
  }

  .metric-card h3 {
    font-size: 46px;
  }

}

@media(max-width:576px) {

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card h3 {
    font-size: 40px;
  }

  .trusted-logos {
    gap: 14px;
  }

  .logo-pill {
    width: 100%;
  }

}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;
}

/* =========================================================
   CTA BOX
========================================================= */

.cta-box {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1.1fr .9fr;

  align-items: center;

  gap: 40px;

  padding: 80px;

  border-radius: 40px;

  background:
    linear-gradient(135deg,
      #5d50ff,
      #7b6dff);

  box-shadow:
    0 30px 80px rgba(93, 80, 255, .22);
}

/* =========================================================
   GLOW
========================================================= */

.cta-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(80px);

  opacity: .45;
}

.cta-glow-1 {
  width: 300px;
  height: 300px;

  background: #ffffff;

  top: -120px;
  right: -80px;
}

.cta-glow-2 {
  width: 240px;
  height: 240px;

  background: #8f88ff;

  bottom: -100px;
  left: -80px;
}

/* =========================================================
   CONTENT
========================================================= */

.cta-content {
  position: relative;
  z-index: 5;
}

/* BADGE */

.cta-content .section-badge {
  background:
    rgba(255, 255, 255, .14);

  border:
    1px solid rgba(255, 255, 255, .18);

  color: white;
}

/* TITLE */

.cta-content h2 {
  max-width: 620px;

  font-size: clamp(46px, 5vw, 72px);

  line-height: .95;
  letter-spacing: -3px;

  font-weight: 800;

  color: white;
}

/* TEXT */

.cta-content p {
  max-width: 520px;

  font-size: 18px;
  line-height: 1.8;

  color:
    rgba(255, 255, 255, .78);
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 18px;
}

/* =========================================================
   RIGHT VISUAL
========================================================= */

.cta-pattern {
  position: relative;

  min-height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   PATTERN CIRCLES
========================================================= */

.pattern-circle {
  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, .14);

  background:
    rgba(255, 255, 255, .05);

  backdrop-filter: blur(12px);
}

/* CIRCLE 1 */

.circle-1 {
  width: 320px;
  height: 320px;
}

/* CIRCLE 2 */

.circle-2 {
  width: 220px;
  height: 220px;
}

/* CIRCLE 3 */

.circle-3 {
  width: 120px;
  height: 120px;

  background:
    rgba(255, 255, 255, .12);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .cta-box {
    grid-template-columns: 1fr;

    padding: 70px 50px;

    text-align: center;
  }

  .cta-content h2,
  .cta-content p {
    margin-inline: auto;
  }

  .cta-buttons {
    justify-content: center;
  }

}

@media(max-width:576px) {

  .cta-section {
    padding: 90px 0;
  }

  .cta-box {
    padding: 50px 28px;

    border-radius: 30px;
  }

  .cta-content h2 {
    font-size: 42px;

    letter-spacing: -2px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-pattern {
    min-height: 260px;
  }

  .circle-1 {
    width: 220px;
    height: 220px;
  }

  .circle-2 {
    width: 150px;
    height: 150px;
  }

  .circle-3 {
    width: 80px;
    height: 80px;
  }

}


/* ================================================== 
  about page css
 ==================================================  */
/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
  position: relative;
  overflow: hidden;

  padding: 120px 0 120px;

  background:
    linear-gradient(180deg,
      #f7f5ff 0%,
      #ffffff 100%);
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */

.about-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  opacity: .35;

  pointer-events: none;
}

.about-glow-1 {
  width: 320px;
  height: 320px;

  background:
    rgba(108, 92, 255, .18);

  top: -120px;
  left: -100px;
}

.about-glow-2 {
  width: 260px;
  height: 260px;

  background:
    rgba(140, 130, 255, .14);

  bottom: -80px;
  right: -80px;
}

/* =========================================================
   GRID
========================================================= */

.about-hero-grid {
  display: grid;

  grid-template-columns: 1.05fr .95fr;

  align-items: center;

  gap: 80px;
}

/* =========================================================
   CONTENT
========================================================= */

.about-hero-content {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 22px;

  width: 100%;

  min-width: 0;

  overflow: hidden;
}

/* =========================================================
   TITLE
========================================================= */

.about-title {
  font-size: clamp(65px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #0b132b;
  max-width: 750px;
  margin-bottom: 32px;
}


.about-title span {
  display: block;
  background: linear-gradient(135deg,
      #6366f1,
      #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.about-description {
  max-width: 680px;

  font-size: 18px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =========================================================
   BUTTONS
========================================================= */
.about-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 16px;
}

/* =========================================================
   TRUST ROW
========================================================= */

.about-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 28px;

  padding-top: 18px;
}

.trust-item h4 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.trust-item p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
}

.trust-divider {
  width: 1px;
  height: 42px;

  background:
    rgba(15, 23, 42, .08);
}

.about-trust-row {
  position: relative;
  margin-top: 70px;
}

.about-trust-row::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      #6366f1,
      #8b5cf6);
}

/* =========================================================
   VISUAL
========================================================= */

.about-hero-visual {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 620px;
}

/* =========================================================
   MAIN CARD
========================================================= */

.about-main-card {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 480px;

  padding: 36px;

  border-radius: 36px;

  background:
    rgba(255, 255, 255, .78);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255, 255, 255, .65);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, .08);
}

.about-hero-content {
  position: relative;
}

.about-hero-content::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(99, 102, 241, .08);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
}

/* =========================================================
   CARD TOP
========================================================= */

.about-card-top {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 32px;
}

.about-logo {
  width: 72px;
  height: 72px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;

  font-size: 24px;
  font-weight: 700;
}

.about-platform-info h4 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 6px;
}

.about-platform-info p {
  color: var(--text-light);
}

/* =========================================================
   PREVIEW
========================================================= */

.about-dashboard-preview {
  margin-bottom: 34px;
}

.preview-bar {
  width: 120px;
  height: 10px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      var(--primary),
      transparent);

  margin-bottom: 26px;
}

.preview-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}

.preview-box {
  height: 90px;

  border-radius: 22px;

  background: #f4f5fb;
}

.active-box {
  background:
    linear-gradient(135deg,
      rgba(108, 92, 255, .14),
      rgba(108, 92, 255, .05));
}

/* =========================================================
   STATS
========================================================= */

.about-stats {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.about-stat {
  padding: 22px;

  border-radius: 22px;

  background: #f8f8fc;
}

.about-stat h3 {
  font-size: 32px;

  margin-bottom: 8px;
}

.about-stat p {
  font-size: 14px;

  color: var(--text-light);
}

/* =========================================================
   FLOATING CARD
========================================================= */

.about-floating-card {
  position: absolute;

  right: 20px;
  bottom: 30px;

  z-index: 3;

  width: 260px;

  padding: 26px;

  border-radius: 28px;

  background:
    rgba(255, 255, 255, .88);

  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, .08);
  box-shadow:
    0 25px 50px rgba(15, 23, 42, .08);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;

  border-radius: 999px;

  background:
    rgba(108, 92, 255, .08);

  color: var(--primary);

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 18px;
}

.about-floating-card h4 {
  font-size: 22px;

  line-height: 1.2;

  margin-bottom: 14px;
}

.about-floating-card p {
  font-size: 15px;

  line-height: 1.8;

  color: var(--text-light);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

  .about-hero-grid {
    gap: 60px;
  }

  .about-title {
    font-size: clamp(52px, 6vw, 68px);
  }

}

@media(max-width:992px) {

  .about-hero {
    padding: 140px 0 100px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;

    gap: 70px;
  }

  .about-hero-visual {
    min-height: 560px;
  }

}

@media(max-width:768px) {

  .about-title {

    max-width: 100%;

    font-size: clamp(40px, 10vw, 52px);

    line-height: .95;

    letter-spacing: -2px;
  }

  .about-description {

    max-width: 100%;

    font-size: 17px;

    line-height: 1.85;
  }

  .about-main-card {
    padding: 30px;

    border-radius: 30px;
  }

  .about-floating-card {

    width: 230px;

    right: 10px;
    bottom: 20px;
  }

}

@media(max-width:480px) {

  .about-hero {
    padding: 120px 0 70px;
  }

  .about-title {
    font-size: 38px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-trust-row {

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item h4 {
    font-size: 24px;
  }

  .about-hero-visual {
    min-height: auto;
  }

  .about-main-card {

    padding: 24px;

    border-radius: 26px;
  }

  .about-card-top {
    margin-bottom: 26px;
  }

  .about-logo {

    width: 62px;
    height: 62px;

    border-radius: 20px;

    font-size: 20px;
  }

  .preview-grid {
    gap: 12px;
  }

  .preview-box {

    height: 74px;

    border-radius: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    padding: 20px;
  }

  .about-floating-card {

    position: relative;

    width: 100%;

    right: auto;
    bottom: auto;

    margin-top: 20px;

    border-radius: 24px;
  }

  .about-hero-visual {

    display: flex;
    flex-direction: column;

    align-items: stretch;

    min-height: auto;
  }

  .about-main-card {

    max-width: 100%;

    width: 100%;
  }

  .about-floating-card {

    position: relative;

    width: 100%;

    right: auto;
    bottom: auto;

    margin-top: 20px;
  }

  .about-dashboard-preview {

    overflow: hidden;
  }

  .preview-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================================================
   PURPOSE SECTION
========================================================= */

.purpose-section {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

/* GRID PATTERN */

.purpose-section::before {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: .9;

  background-image:

    /* Filled center square */

    linear-gradient(rgba(99, 102, 241, .12),
      rgba(99, 102, 241, .12)),

    /* Horizontal grid lines */

    linear-gradient(rgba(99, 102, 241, .05) 1px,
      transparent 1px),

    /* Vertical grid lines */

    linear-gradient(90deg,
      rgba(99, 102, 241, .05) 1px,
      transparent 1px);

  /* 5 × 5 grid group */

  background-size:
    250px 250px,
    50px 50px,
    50px 50px;

  /* Center square in each group */

  background-position:
    100px 100px,
    0 0,
    0 0;

  background-repeat:
    repeat,
    repeat,
    repeat;
}

/* Soft center glow */

.purpose-section::before {

  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background-image:

    linear-gradient(rgba(99, 102, 241, .12),
      rgba(99, 102, 241, .12)),

    linear-gradient(rgba(99, 102, 241, .05) 1px,
      transparent 1px),

    linear-gradient(90deg,
      rgba(99, 102, 241, .05) 1px,
      transparent 1px);

  background-size:
    250px 250px,
    50px 50px,
    50px 50px;

  background-position:
    100px 100px,
    0 0,
    0 0;

  background-repeat:
    repeat,
    repeat,
    repeat;

  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {

  from {
    background-position:
      100px 100px,
      0 0,
      0 0;
  }

  to {
    background-position:
      350px 350px,
      50px 50px,
      50px 50px;
  }

}

.purpose-section::after {

  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(circle,
      rgba(99, 102, 241, .10),
      transparent 70%);

  filter: blur(80px);

  animation: glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {

  0%,
  100% {
    transform:
      translate(-50%, -50%) scale(1);
  }

  50% {
    transform:
      translate(-50%, -50%) scale(1.15);
  }

}

.purpose-title {
  font-size: clamp(56px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #0b132b;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.purpose-title span {
  display: block;

  background: linear-gradient(135deg,
      #6366f1,
      #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 1.8;
  color: #64748b;
}

/* =========================================================
   GRID
========================================================= */

.purpose-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-top: 80px;
}

/* =========================================================
   CARD
========================================================= */

.purpose-card {

  position: relative;

  padding: 42px 36px;

  border-radius: 34px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, .85);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 10px 30px rgba(15, 23, 42, .04),
    0 20px 60px rgba(15, 23, 42, .05);

  transition: .4s ease;
}

.purpose-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .08);
}

/* =========================================================
   FEATURED CARD
========================================================= */

.featured-purpose {

  background:
    linear-gradient(135deg,
      #635bff,
      #7b72ff);

  color: white;

  transform:
    translateY(-18px);
}

.featured-purpose p {

  color:
    rgba(255, 255, 255, .82);
}

/* =========================================================
   ICON
========================================================= */

.purpose-icon {

  width: 78px;
  height: 78px;

  border-radius: 26px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 34px;

  font-size: 34px;

  background:
    rgba(99, 91, 255, .08);

  box-shadow:
    inset 0 0 0 1px rgba(99, 91, 255, .06);
}

.featured-purpose .purpose-icon {

  background:
    rgba(255, 255, 255, .14);

  box-shadow:
    none;
}

/* =========================================================
   TITLE
========================================================= */

.purpose-card h3 {

  max-width: 260px;

  font-size: 40px;

  line-height: .96;

  letter-spacing: -2px;

  margin-bottom: 22px;

  color: inherit;
}

/* =========================================================
   TEXT
========================================================= */

.purpose-card p {

  font-size: 17px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .purpose-grid {
    gap: 24px;
  }

  .purpose-card h3 {
    font-size: 32px;
    line-height: 1.05;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .purpose-grid {

    grid-template-columns: 1fr;

    gap: 24px;
  }

  .featured-purpose {
    transform: none;
  }

  .purpose-card {

    min-height: auto;

    padding: 38px 34px;
  }

  .purpose-card h3 {

    font-size: 42px;

    line-height: 1;

    letter-spacing: -2px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .purpose-section {
    padding: 100px 0;
  }

  .purpose-grid {
    margin-top: 50px;
  }

  .purpose-card {

    padding: 32px 26px;

    border-radius: 28px;
  }

  .purpose-icon {

    width: 64px;
    height: 64px;

    border-radius: 20px;

    margin-bottom: 24px;
  }

  .purpose-card h3 {

    max-width: 280px;

    font-size: 28px;

    line-height: 1.08;

    letter-spacing: -1.5px;

    margin-bottom: 16px;
  }

  .purpose-card p {

    max-width: 100%;

    font-size: 16px;

    line-height: 1.8;
  }

  .purpose-section h2 {

    font-size: clamp(36px, 5vw, 64px);

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {

  .purpose-section {
    padding: 80px 0;
  }

  .purpose-card {

    padding: 28px 22px;

    border-radius: 24px;
  }

  .purpose-icon {

    width: 58px;
    height: 58px;

    border-radius: 18px;

    font-size: 22px;
  }

  .purpose-card h3 {

    max-width: 240px;

    font-size: 24px;

    line-height: 1.12;

    letter-spacing: -1px;
  }

  .purpose-card p {

    font-size: 15px;

    line-height: 1.75;
  }
}

/* =====================================================
   IMPACT SECTION
===================================================== */
/* =====================================================
   IMPACT SECTION
===================================================== */

.impact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(108, 99, 255, 0.12),
      transparent 70%);
  pointer-events: none;
}

/* =====================================================
   HEADING
===================================================== */

.impact-section .section-heading {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.impact-section h2 {
  font-size: clamp(56px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.impact-section h2 span {
  display: block;
  background: linear-gradient(135deg,
      #6c63ff,
      #8b7dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-section .section-heading p {
  max-width: 720px;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* =====================================================
   GRID
===================================================== */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 80px;
}

/* =====================================================
   CARD
===================================================== */

.impact-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 32px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.06),
    0 2px 8px rgba(15, 23, 42, 0.04);

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.impact-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.12),
    0 10px 25px rgba(108, 99, 255, 0.12);
}

/* =====================================================
   FEATURED CARD
===================================================== */

.featured-impact {
  background: linear-gradient(135deg,
      #6c63ff 0%,
      #8b7dff 100%);

  color: #fff;

  transform: translateY(-20px);

  box-shadow:
    0 25px 60px rgba(108, 99, 255, 0.3);
}

.featured-impact:hover {
  transform: translateY(-30px);
}

.featured-impact h3,
.featured-impact p {
  color: #fff;
}

/* =====================================================
   NUMBER
===================================================== */

.impact-number {
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: #6c63ff;
}

.white-number {
  color: #fff;
}

/* =====================================================
   TITLE
===================================================== */

.impact-card h3 {
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--heading-color);
}

/* =====================================================
   TEXT
===================================================== */

.impact-card p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
}

/* =====================================================
   DECORATIVE CORNER
===================================================== */

.impact-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle,
      rgba(108, 99, 255, 0.08),
      transparent 70%);
}

.featured-impact::after {
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.15),
      transparent 70%);
}

/* =====================================================
   DESKTOP
===================================================== */

@media (max-width: 1200px) {
  .impact-grid {
    gap: 24px;
  }

  .impact-card {
    padding: 38px 30px;
  }

  .impact-card h3 {
    font-size: 1.5rem;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .featured-impact {
    transform: translateY(0);
  }

  .featured-impact:hover {
    transform: translateY(-10px);
  }

  .impact-section {
    padding: 100px 0;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .impact-section {
    padding: 90px 0;
  }

  .impact-grid {
    margin-top: 60px;
    gap: 20px;
  }

  .impact-card {
    padding: 32px 26px;
    border-radius: 28px;
  }

  .impact-number {
    font-size: 44px;
    letter-spacing: -2px;
    margin-bottom: 18px;
  }

  .impact-card h3 {
    font-size: 1.4rem;
  }

  .impact-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .impact-section h2 {
    letter-spacing: -2px;
    line-height: 1;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .impact-number {
    font-size: 38px;
  }

  .impact-card h3 {
    font-size: 1.25rem;
  }

  .impact-card p {
    font-size: 14px;
  }

  .impact-section h2 {
    font-size: 2.4rem;
  }
}

/* =====================================================
   RETAILER SECTION
===================================================== */
/* =====================================================
   RETAILER STORY SECTION
===================================================== */

.retailer-story-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* =====================================================
   BACKGROUND GLOW
===================================================== */

.retailer-story-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -250px;
  right: -200px;

  border-radius: 50%;

  background: #6C63FF;

  opacity: .08;

  filter: blur(120px);

  pointer-events: none;
}

.retailer-story-section::after {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  bottom: -200px;
  left: -150px;

  border-radius: 50%;

  background: #8B7DFF;

  opacity: .06;

  filter: blur(120px);

  pointer-events: none;
}

/* =====================================================
   WRAPPER
===================================================== */

.story-wrapper {
  position: relative;
  z-index: 2;

  max-width: 1100px;

  margin: 0 auto;
}

/* =====================================================
   BADGE
===================================================== */

.our-story {
  display: flex;
  align-items: center;
  justify-content: center;
  width: full;
}

/* =====================================================
   HEADING
===================================================== */

.story-wrapper-title {

  max-width: 1000px;

  margin: 24px auto;

  text-align: center;

  font-size: clamp(2.8rem, 5vw, 4.8rem);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: 800;

  color: #0F172A;
}

.story-wrapper-title span {

  display: block;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b5cf6);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* =====================================================
   INTRO
===================================================== */

.story-intro {

  max-width: 760px;

  margin: 0 auto;

  text-align: center;

  font-size: 1.3rem;

  line-height: 1.9;

  color: var(--text-light);
}

/* =====================================================
   STORY HIGHLIGHT
===================================================== */

.story-highlight {

  position: relative;

  margin: 100px auto;

  max-width: 950px;

  padding: 80px 60px;

  text-align: center;

  border-radius: 40px;

  background:
    linear-gradient(135deg,
      rgba(108, 99, 255, .05),
      rgba(139, 125, 255, .08));

  border: 1px solid rgba(108, 99, 255, .08);

  overflow: hidden;
}

.story-highlight::before {

  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -120px;
  right: -120px;

  border-radius: 50%;

  background: #6C63FF;

  opacity: .08;

  filter: blur(100px);
}

.story-highlight::after {

  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  bottom: -100px;
  left: -100px;

  border-radius: 50%;

  background: #8B7DFF;

  opacity: .06;

  filter: blur(90px);
}

.story-highlight p {

  position: relative;

  z-index: 2;

  max-width: 850px;

  margin: 0 auto;

  font-size: clamp(2rem, 4vw, 3.5rem);

  line-height: 1.15;

  letter-spacing: -2px;

  font-weight: 600;

  color: #0F172A;
}

/* =====================================================
   STORY CONTENT
===================================================== */

.story-content {

  max-width: 900px;

  margin: 0 auto;
}

/* =====================================================
   CHAPTER
===================================================== */

.story-chapter {

  display: flex;

  align-items: center;

  gap: 18px;

  margin: 100px 0 30px;

  font-size: .95rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 4px;

  color: #6C63FF;
}

.story-chapter::before {

  content: "";

  width: 70px;

  height: 2px;

  background: #6C63FF;
}

/* =====================================================
   PARAGRAPHS
===================================================== */

.story-content p {

  font-size: 1.18rem;

  line-height: 2;

  color: #475569;

  margin-bottom: 40px;
}

/* Drop Cap */

.story-content p:first-of-type::first-letter {

  float: left;

  font-size: 5rem;

  line-height: 1;

  font-weight: 700;

  margin-right: 14px;

  color: #6C63FF;
}

/* =====================================================
   MISSION & VISION
===================================================== */

.story-content blockquote {

  margin: 90px 0;

  padding: 50px;

  border-radius: 36px;

  background: #fff;

  border: 1px solid rgba(108, 99, 255, .08);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .05);

  font-size: 1.5rem;

  line-height: 1.7;

  font-weight: 500;

  color: #0F172A;
}

.story-content blockquote strong {

  display: block;

  margin-bottom: 18px;

  color: #6C63FF;

  font-size: .9rem;

  text-transform: uppercase;

  letter-spacing: 3px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {

  .story-wrapper h2 {

    font-size: 4rem;

    letter-spacing: -3px;
  }

  .story-highlight {

    padding: 60px 40px;
  }

  .story-highlight p {

    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {

  .retailer-story-section {

    padding: 90px 0;
  }

  .story-wrapper h2 {

    font-size: 3rem;

    letter-spacing: -2px;
  }

  .story-intro {

    font-size: 1.1rem;
  }

  .story-highlight {

    padding: 50px 30px;

    margin: 70px auto;
  }

  .story-highlight p {

    font-size: 1.8rem;
  }

  .story-content p {

    font-size: 1rem;

    line-height: 1.9;
  }

  .story-content blockquote {

    padding: 35px;

    font-size: 1.2rem;
  }

  .story-chapter {

    margin: 70px 0 24px;
  }
}

@media (max-width: 480px) {

  .story-wrapper h2 {

    font-size: 2.4rem;
  }

  .story-highlight p {

    font-size: 1.5rem;
  }

  .story-content blockquote {

    padding: 28px;

    border-radius: 24px;
  }

  .story-content p:first-of-type::first-letter {

    font-size: 4rem;
  }
}

/* =====================================================
   SECURITY SECTION
===================================================== */

.security-section {

  position: relative;

  padding: 140px 0;

  overflow: hidden;
}

/* =====================================================
   BACKGROUND
===================================================== */

.security-bg {

  position: absolute;

  inset: 0;

  background-image: url("../images/bg-security.png");

  background-size: cover;

  background-position: center;

  opacity: .5;

  pointer-events: none;
}

.security-section::before {

  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -250px;
  right: -250px;

  border-radius: 50%;

  background: #6C63FF;

  opacity: .08;

  filter: blur(140px);
}

.security-section::after {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  bottom: -200px;
  left: -200px;

  border-radius: 50%;

  background: #8B7DFF;

  opacity: .05;

  filter: blur(140px);
}

/* =====================================================
   LAYOUT
===================================================== */

.security-layout {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  align-items: center;

  position: relative;

  z-index: 2;
}

/* =====================================================
   CONTENT
===================================================== */

.security-content {

  max-width: 650px;
}

.security-content h2 {

  max-width: 650px;
}

.security-lead {

  font-size: 1.35rem;

  line-height: 1.8;

  font-weight: 500;

  color: #0F172A;

  margin-bottom: 28px;
}

.security-content p {

  font-size: 1.08rem;

  line-height: 2;

  color: var(--text-light);

  margin-bottom: 22px;
}

/* =====================================================
   QUOTE
===================================================== */

.security-content blockquote {

  margin-top: 50px;

  padding: 32px 0 32px 28px;

  border-left: 4px solid #6C63FF;

  font-size: 1.4rem;

  line-height: 1.8;

  font-weight: 500;

  color: #0F172A;

  max-width: 580px;
}

/* =====================================================
   TRUST PANEL
===================================================== */

.security-principles {

  position: relative;

  padding: 36px;

  border-radius: 36px;

  background: rgba(255, 255, 255, .75);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(108, 99, 255, .08);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .05);

  overflow: hidden;
}

/* Glow */

.security-principles::before {

  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -120px;
  right: -120px;

  border-radius: 50%;

  background: #6C63FF;

  opacity: .08;

  filter: blur(80px);
}

/* =====================================================
   PRINCIPLE CARD
===================================================== */

.principle-card {

  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 15px 13px;

  border-bottom: 1px solid rgba(15, 23, 42, .08);

  transition: .35s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}

.principle-card:last-child {

  border-bottom: none;
}

.principle-card:hover {

  transform: translateX(8px);
}

/* =====================================================
   NUMBER
===================================================== */

.principle-number {

  width: 54px;
  height: 54px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background: linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  color: #fff;

  font-size: 15px;

  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(108, 99, 255, .25);
}

/* =====================================================
   CARD CONTENT
===================================================== */

.principle-card h3 {

  font-size: 22px;

  line-height: 1.2;

  margin-bottom: 8px;

  letter-spacing: -.5px;
}

.principle-card p {

  margin: 0;

  font-size: 15px;

  line-height: 1.8;

  color: var(--text-light);
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .security-layout {

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .security-principles {

    padding: 30px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .security-section {

    padding: 100px 0;
  }

  .security-lead {

    font-size: 1.15rem;
  }

  .security-content p {

    font-size: 1rem;

    line-height: 1.9;
  }

  .security-content blockquote {

    font-size: 1.15rem;

    padding-left: 20px;
  }

  .security-principles {

    padding: 24px;
  }

  .principle-card {

    gap: 16px;
  }

  .principle-number {

    width: 48px;
    height: 48px;

    font-size: 14px;

    border-radius: 14px;
  }

  .principle-card h3 {

    font-size: 20px;
  }

  .principle-card p {

    font-size: 14px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {

  .security-section {

    padding: 90px 0;
  }

  .security-principles {

    padding: 20px;
  }

  .security-content blockquote {

    font-size: 1rem;
  }

  .principle-card h3 {

    font-size: 18px;
  }
}

/* =====================================================
   ABOUT CTA SECTION
===================================================== */
/* =====================================================
   ABOUT CTA SECTION
===================================================== */

.about-cta-section {

  position: relative;

  padding: 140px 0;

  overflow: hidden;
}

/* =====================================================
   CTA BOX
===================================================== */

.about-cta-box {

  position: relative;

  overflow: hidden;

  padding: 100px 80px;

  border-radius: 48px;

  text-align: center;

  background:
    linear-gradient(135deg,
      #6C63FF 0%,
      #8478FF 50%,
      #9B90FF 100%);

  box-shadow:
    0 40px 100px rgba(108, 99, 255, .18);
}

/* =====================================================
   GLOWS
===================================================== */

.cta-glow {

  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.glow-1 {

  width: 380px;
  height: 380px;

  top: -180px;
  left: -120px;

  background: #ffffff;

  opacity: .12;
}

.glow-2 {

  width: 420px;
  height: 420px;

  bottom: -220px;
  right: -150px;

  background: #ffffff;

  opacity: .08;
}

/* =====================================================
   CONTENT
===================================================== */

.about-cta-content {

  position: relative;

  z-index: 2;

  max-width: 1000px;

  margin: auto;
}

/* =====================================================
   BADGE
===================================================== */

.about-cta-content .badge {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 22px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .12);

  border: 1px solid rgba(255, 255, 255, .18);

  backdrop-filter: blur(20px);

  color: #fff;

  font-size: 15px;

  font-weight: 600;
}

/* =====================================================
   TITLE
===================================================== */

.about-cta-content h2 {

  color: #fff;

  font-size: clamp(3rem, 5vw, 5rem);

  line-height: .95;

  letter-spacing: -3px;

  max-width: 900px;

  margin-left: auto;
  margin-right: auto;
}

.about-cta-content h2 span {

  display: block;

  color: rgba(255, 255, 255, .92);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.about-cta-content p {

  max-width: 700px;

  margin-left: auto;
  margin-right: auto;

  font-size: 1.15rem;

  line-height: 1.9;

  color: rgba(255, 255, 255, .85);
}

/* =====================================================
   FEATURES
===================================================== */

.about-cta-features {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;
  margin: 20px 0;
}

.cta-feature {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 14px 22px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .10);

  border: 1px solid rgba(255, 255, 255, .15);

  color: #fff;

  font-weight: 500;

  backdrop-filter: blur(20px);

  transition: .3s ease;
}

.cta-feature:hover {

  transform: translateY(-4px);

  background: rgba(255, 255, 255, .16);
}

.cta-feature span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #fff;

  box-shadow:
    0 0 12px #fff;
}

/* =====================================================
   BUTTONS
===================================================== */

.about-cta-buttons {

  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

.about-cta-buttons .btn-primary {

  padding: 16px 34px;

  border: none;

  border-radius: 999px;

  background: #fff;

  color: #6C63FF;

  font-weight: 700;

  cursor: pointer;

  transition: .3s ease;
}

.about-cta-buttons .btn-primary:hover {

  transform: translateY(-4px);
}

.about-cta-buttons .btn-secondary {

  padding: 16px 34px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, .25);

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(20px);

  color: #fff;

  font-weight: 600;

  cursor: pointer;

  transition: .3s ease;
}

.about-cta-buttons .btn-secondary:hover {

  background: rgba(255, 255, 255, .15);

  transform: translateY(-4px);
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .about-cta-box {

    padding: 80px 50px;
  }

  .about-cta-content h2 {

    font-size: 4rem;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .about-cta-section {

    padding: 100px 0;
  }

  .about-cta-box {

    padding: 70px 30px;

    border-radius: 36px;
  }

  .about-cta-content h2 {

    font-size: 2.8rem;

    letter-spacing: -2px;
  }

  .about-cta-content p {

    font-size: 1rem;
  }

  .about-cta-features {

    gap: 12px;
  }

  .cta-feature {

    width: 100%;

    justify-content: center;
  }

  .about-cta-buttons {

    flex-direction: column;
  }

  .about-cta-buttons button {

    width: 100%;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {

  .about-cta-box {

    padding: 60px 24px;
  }

  .about-cta-content h2 {

    font-size: 2.3rem;
  }
}


/* =========================================
   CONTACT HERO
========================================= */

/* =========================================================
CONTACT HERO
========================================================= */

.contact-hero {


  position: relative;

  overflow: hidden;

  padding: 120px 0;

  background:
    radial-gradient(circle at top left,
      rgba(108, 99, 255, .12),
      transparent 40%),
    linear-gradient(180deg,
      #f8f9ff,
      #ffffff);


}

.contact-hero::before {


  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(108, 99, 255, .04) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(108, 99, 255, .04) 1px,
      transparent 1px);

  background-size: 50px 50px;

  mask-image:
    radial-gradient(circle,
      black 40%,
      transparent 85%);

  pointer-events: none;


}

/* =========================================================
GRID
========================================================= */

.contact-grid {


  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 80px;


}

/* =========================================================
CONTENT
========================================================= */

.contact-content {


  position: relative;

  z-index: 2;


}

.contact-content h1 {

  font-size: clamp(3rem, 6vw, 5rem);

  line-height: .95;

  font-weight: 800;

  color: #0f172a;
}

.contact-content h1 span {

  display: block;

  background:
    linear-gradient(135deg,
      #635BFF 0%,
      #8B7DFF 40%,
      #A855F7 100%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;

  position: relative;

  filter:
    drop-shadow(0 10px 25px rgba(99, 91, 255, .25));
}

.contact-content p {


  max-width: 620px;

  font-size: 1.05rem;

  line-height: 1.9;

  color: #667085;


}

/* =========================================================
BADGE
========================================================= */

.section-badge {


  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .75);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, .8);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .06);

  font-size: .9rem;

  font-weight: 600;

  color: #4f46e5;


}

.section-badge span {


  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #6C63FF;

  box-shadow:
    0 0 12px #6C63FF;


}

/* =========================================================
BUTTONS
========================================================= */

.hero-buttons {


  display: flex;

  gap: 18px;

  margin-top: 40px;


}

.btn-primary {


  position: relative;

  overflow: hidden;

  padding: 16px 32px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  color: #fff;

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  box-shadow:
    0 15px 40px rgba(108, 99, 255, .25);

  transition: .4s;


}

.btn-primary:hover {


  transform: translateY(-4px);


}

.btn-secondary {


  padding: 8px 20px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  color: #6C63FF;

  border: 1px solid rgba(108, 99, 255, .2);

  background: #fff;

  transition: .4s;


}

.btn-secondary:hover {


  transform: translateY(-4px);


}

/* =========================================================
TRUST
========================================================= */

.hero-trust {


  display: flex;

  gap: 40px;

  margin-top: 60px;


}

.trust-item h3 {


  font-size: 2rem;

  color: #6C63FF;

  margin-bottom: 6px;


}

.trust-item span {


  color: #667085;

  font-size: .95rem;


}

/* =========================================================
VISUAL
========================================================= */
/* =========================================================
CONTACT VISUAL
========================================================= */

.contact-visual {


  position: relative;

  height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;


}

/* =========================================================
ORBIT RINGS
========================================================= */

.orbit-ring {


  position: absolute;

  top: 50%;
  left: 50%;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  border: 1px solid rgba(108, 99, 255, .18);

  transform: translate(-50%, -50%);

  z-index: 1;


}

.orbit-ring:nth-child(2) {


  width: 520px;
  height: 520px;

  border-color: rgba(108, 99, 255, .12);


}

.orbit-ring-2 {


  width: 620px;
  height: 620px;

  border-color: rgba(108, 99, 255, .08);


}

/* =========================================================
GLOWS
========================================================= */

.glow-orb {


  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;


}

.orb-1 {


  width: 250px;
  height: 250px;

  top: 30px;
  right: 40px;

  background:
    rgba(108, 99, 255, .22);


}

.orb-2 {


  width: 180px;
  height: 180px;

  bottom: 40px;
  left: 30px;

  background:
    rgba(108, 99, 255, .15);


}

/* =========================================================
HUB
========================================================= */

.support-hub {


  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  z-index: 10;


}

.hub-circle {


  width: 180px;
  height: 180px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  box-shadow:
    0 0 60px rgba(99, 91, 255, .35),
    0 0 120px rgba(99, 91, 255, .15);


}

.hub-circle::before {


  content: "";

  position: absolute;

  inset: -20px;

  border-radius: 50%;

  border: 1px solid rgba(108, 99, 255, .15);


}

.hub-circle::after {


  content: "";

  position: absolute;

  inset: -40px;

  border-radius: 50%;

  border: 1px solid rgba(108, 99, 255, .08);


}

.hub-logo {


  color: #fff;

  font-size: 3rem;

  font-weight: 800;

  letter-spacing: 2px;


}

/* =========================================================
NODE WRAPPERS
========================================================= */

.node-wrapper {


  position: absolute;

  z-index: 20;


}

.node-top {


  top: 80px;
  left: 50%;

  transform: translateX(-50%);


}

.node-left {


  top: 50%;
  left: 60px;

  transform: translateY(-50%);


}

.node-right {


  top: 50%;
  right: 60px;

  transform: translateY(-50%);


}

.node-bottom {


  bottom: 80px;
  left: 50%;

  transform: translateX(-50%);


}

/* =========================================================
NODES
========================================================= */

.icon-node {


  width: 100px;
  height: 100px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .78);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, .9);

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, .08);

  transition:
    box-shadow .4s ease,
    scale .4s ease;


}

.icon-node:hover {


  scale: 1.08;

  box-shadow:
    0 25px 60px rgba(108, 99, 255, .25);


}

.icon-node svg {


  width: 38px;
  height: 38px;

  stroke: #635BFF;

  stroke-width: 1.8;


}

.icon-node span {


  position: absolute;

  bottom: -35px;

  white-space: nowrap;

  font-size: .9rem;

  font-weight: 700;

  color: #111827;


}

/* =========================================================
CONNECTORS
========================================================= */

.connector {


  position: absolute;

  z-index: 2;


}

.connector-top {


  top: 190px;
  left: 50%;

  width: 2px;
  height: 100px;

  transform: translateX(-50%);

  background:
    rgba(108, 99, 255, .25);


}

.connector-bottom {


  bottom: 190px;
  left: 50%;

  width: 2px;
  height: 100px;

  transform: translateX(-50%);

  background:
    rgba(108, 99, 255, .25);


}

.connector-left {


  top: 50%;
  left: 170px;

  width: 120px;
  height: 2px;

  background:
    rgba(108, 99, 255, .25);


}

.connector-right {


  top: 50%;
  right: 170px;

  width: 120px;
  height: 2px;

  background:
    rgba(108, 99, 255, .25);


}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px) {


  .contact-visual {

    height: 450px;
  }

  .hub-circle {

    width: 130px;
    height: 130px;
  }

  .hub-logo {

    font-size: 2rem;
  }

  .icon-node {

    width: 70px;
    height: 70px;
  }

  .icon-node svg {

    width: 26px;
    height: 26px;
  }

  .icon-node span {

    font-size: .7rem;
  }

  .orbit-ring {

    width: 260px;
    height: 260px;
  }

  .orbit-ring:nth-child(2) {

    width: 340px;
    height: 340px;
  }

  .orbit-ring-2 {

    display: none;
  }

  .node-left {
    left: 0;
  }

  .node-right {
    right: 0;
  }


}

.contact-form-section {

  background:

    linear-gradient(135deg,
      #f8f8ff 0%,
      #eef1ff 50%,
      #ffffff 100%);
}

.contact-form-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:

    linear-gradient(rgba(99, 91, 255, .05) 1px,
      transparent 1px),

    linear-gradient(90deg,
      rgba(99, 91, 255, .05) 1px,
      transparent 1px);

  background-size: 50px 50px;

  pointer-events: none;
}

.contact-info-panel {

  position: sticky;

  top: 120px;

  padding: 40px;

  border-radius: 32px;

  background:
    rgba(255, 255, 255, .8);

  backdrop-filter:
    blur(20px);

  border:
    1px solid rgba(255, 255, 255, .8);

  box-shadow:
    0 25px 80px rgba(15, 23, 42, .08);
}

.contact-info-panel h2 {

  font-size: 3rem;

  line-height: 1;

  margin: 25px 0;
}

.contact-info-panel h2 span {

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);
  background-clip: var(--text-muted);
  -webkit-background-clip: text;

  color: transparent;
}

.contact-info-panel p {

  color: #64748b;

  line-height: 1.8;
}

.contact-info-list {

  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 18px;
}

.info-card {

  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px;

  border-radius: 22px;

  background: #fff;

  text-decoration: none;

  transition: .4s;

  border:
    1px solid rgba(226, 232, 240, .8);
}

.info-card:hover {

  transform:
    translateX(8px);

  box-shadow:
    0 20px 40px rgba(99, 91, 255, .12);
}

.info-icon {

  width: 64px;
  height: 64px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 20px;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  color: #fff;

  position: relative;

  overflow: hidden;
}

.info-icon::before {

  content: "";

  position: absolute;

  inset: -50%;

  background:
    linear-gradient(transparent,
      rgba(255, 255, 255, .4),
      transparent);

  transform:
    rotate(25deg);

  animation:
    shine 6s linear infinite;
}

.info-icon svg {

  width: 28px;
  height: 28px;

  position: relative;

  z-index: 2;

  stroke: white;
}

.info-content {

  display: flex;

  flex-direction: column;
}

.info-content span {

  font-size: .85rem;

  color: #64748b;
}

.info-content strong {

  margin-top: 4px;

  color: #0f172a;

  font-size: 1rem;

  font-weight: 700;
}

.contact-form-wrapper {

  position: relative;

  padding: 50px;

  border-radius: 36px;

  background:
    rgba(255, 255, 255, .85);

  backdrop-filter:
    blur(25px);

  border:
    1px solid rgba(255, 255, 255, .9);

  box-shadow:
    0 40px 120px rgba(15, 23, 42, .08);
}

.form-header {

  margin-bottom: 40px;
}

.form-header span {

  color: #635BFF;

  font-weight: 600;

  letter-spacing: .08em;

  text-transform: uppercase;
}

.form-header h3 {

  margin-top: 12px;

  font-size: 2.5rem;

  line-height: 1.1;

  color: #0f172a;
}

.form-header p {

  margin-top: 15px;

  color: #64748b;

  max-width: 500px;
}

.form-row {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 20px;
}

.form-group {

  margin-bottom: 22px;
}

.form-group label {

  display: block;

  margin-bottom: 10px;

  font-weight: 600;

  color: #334155;
}

.form-group input,
.form-group textarea {

  width: 100%;

  border: none;

  padding: 18px 20px;

  border-radius: 18px;

  background:
    #f8fafc;

  transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {

  outline: none;

  background: #fff;

  box-shadow:
    0 0 0 4px rgba(99, 91, 255, .12);
}

.submit-btn {

  width: 100%;

  border: none;

  cursor: pointer;

  padding: 18px;

  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  color: #fff;

  font-size: 1rem;

  font-weight: 700;

  transition: .4s;
}

.submit-btn:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 25px 60px rgba(99, 91, 255, .25);
}

@keyframes shine {

  0% {

    transform:
      translateX(-200%) rotate(25deg);
  }

  100% {

    transform:
      translateX(300%) rotate(25deg);
  }
}

@media(max-width:992px) {

  .contact-grid {

    grid-template-columns: 1fr;
  }

  .contact-info-panel {

    position: relative;

    top: auto;
  }

  .form-row {

    grid-template-columns: 1fr;
  }
}

.input-wrapper,
.textarea-wrapper {

  position: relative;
}

.input-wrapper svg {

  position: absolute;

  left: 18px;
  top: 50%;

  transform: translateY(-50%);

  width: 18px;
  height: 18px;

  color: #635BFF;
}

.textarea-wrapper svg {

  position: absolute;

  left: 18px;
  top: 22px;

  width: 18px;
  height: 18px;

  color: #635BFF;
}

.input-wrapper input {

  padding-left: 50px;
}

.textarea-wrapper textarea {

  padding-left: 50px;
  padding-top: 18px;
}

.submit-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;
}

.submit-btn svg {

  width: 18px;
  height: 18px;

  transition: .3s;
}

.submit-btn:hover svg {

  transform: translateX(5px);
}

/* =========================================================
BUSINESS SUPPORT SECTION
========================================================= */

.business-support-section {

  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #111827 0%,
      #0f172a 100%);
}

/* =========================================================
BACKGROUND GLOW
========================================================= */

.business-support-section::before {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    rgba(99, 91, 255, .18);

  filter: blur(120px);

  top: -250px;
  left: -150px;
}

.business-support-section::after {

  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  border-radius: 50%;

  background:
    rgba(139, 125, 255, .15);

  filter: blur(100px);

  bottom: -200px;
  right: -100px;
}

/* =========================================================
GRID
========================================================= */

.business-support-grid {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* =========================================================
LEFT CONTENT
========================================================= */

.support-content h2 {

  font-size:
    clamp(3rem, 5vw, 4.8rem);

  line-height: .95;

  font-weight: 800;

  color: white;

  margin: 25px 0;
}

.support-content h2 span {

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  -webkit-background-clip: text;

  color: transparent;
}

.support-content p {

  max-width: 520px;

  font-size: 1.05rem;

  line-height: 1.9;

  color:
    rgba(255, 255, 255, .65);
}

/* =========================================================
STACK
========================================================= */

.support-stack {

  display: flex;

  flex-direction: column;

  gap: 24px;
}

/* =========================================================
CARD
========================================================= */

.support-card {

  display: flex;

  align-items: flex-start;

  gap: 22px;

  padding: 28px;

  border-radius: 28px;

  background:
    rgba(255, 255, 255, .05);

  backdrop-filter:
    blur(20px);

  border:
    1px solid rgba(255, 255, 255, .08);

  transition: .45s;

  position: relative;

  overflow: hidden;
}

.support-card:hover {

  transform:
    translateY(-8px);

  border-color:
    rgba(99, 91, 255, .35);

  box-shadow:
    0 20px 60px rgba(99, 91, 255, .15);
}

/* =========================================================
FEATURED CARD
========================================================= */

.featured-support {

  background:
    linear-gradient(135deg,
      #635BFF,
      #7C73FF);

  border: none;

  transform:
    scale(1.03);
}

.featured-support:hover {

  transform:
    scale(1.03) translateY(-8px);
}

/* =========================================================
ICON
========================================================= */

.support-icon {

  width: 70px;
  height: 70px;

  min-width: 70px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  color: white;

  position: relative;

  overflow: hidden;
}

.featured-support .support-icon {

  background:
    rgba(255, 255, 255, .15);

  backdrop-filter:
    blur(10px);
}

.support-icon::before {

  content: "";

  position: absolute;

  inset: -50%;

  background:
    linear-gradient(transparent,
      rgba(255, 255, 255, .35),
      transparent);

  transform:
    rotate(25deg);

  animation:
    iconShine 5s linear infinite;
}

.support-icon svg {

  width: 32px;
  height: 32px;

  position: relative;

  z-index: 2;
}

/* =========================================================
CONTENT
========================================================= */

.support-card-content h3 {

  color: white;

  font-size: 1.3rem;

  font-weight: 700;

  margin-bottom: 10px;
}

.support-card-content p {

  color:
    rgba(255, 255, 255, .65);

  line-height: 1.8;
}

.featured-support p {

  color:
    rgba(255, 255, 255, .85);
}

/* =========================================================
CARD GLOW
========================================================= */

.support-card::after {

  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background:
    rgba(99, 91, 255, .15);

  filter: blur(60px);

  top: -100px;
  right: -100px;

  opacity: 0;

  transition: .5s;
}

.support-card:hover::after {

  opacity: 1;
}

/* =========================================================
ANIMATION
========================================================= */

@keyframes iconShine {

  0% {

    transform:
      translateX(-200%) rotate(25deg);
  }

  100% {

    transform:
      translateX(300%) rotate(25deg);
  }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .business-support-grid {

    grid-template-columns: 1fr;

    gap: 60px;
  }

  .support-content {

    text-align: center;
  }

  .support-content p {

    margin: auto;
  }
}

@media(max-width:768px) {

  .support-card {

    flex-direction: column;

    text-align: center;

    align-items: center;
  }

  .featured-support {

    transform: none;
  }

  .featured-support:hover {

    transform: translateY(-8px);
  }
}

/* =====================================================
   DEVICES HERO SECTION
===================================================== */

.devices-hero-section {

  position: relative;

  overflow: hidden;

  padding: 150px 0 110px;

  background:
    radial-gradient(circle at top right,
      rgba(108, 99, 255, .10),
      transparent 42%),
    #f7f7fc;
}

/* =====================================================
   BACKGROUND GLOW
===================================================== */

.devices-hero-section::before {

  content: '';

  position: absolute;

  top: 80px;
  right: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(108, 99, 255, .12),
      transparent 70%);

  pointer-events: none;
}

/* =====================================================
   HERO WRAPPER
===================================================== */

.devices-hero-wrapper {

  display: grid;

  grid-template-columns: 1.05fr .95fr;

  align-items: center;

  gap: 40px;

  min-height: 720px;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.devices-hero-content {

  max-width: 620px;

  position: relative;

  z-index: 2;
}

/* =====================================================
   BADGE
===================================================== */

.devices-hero-badge {

  width: fit-content;

  padding: 13px 20px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 30px;
}

/* =====================================================
   TITLE
===================================================== */

.devices-hero-title {

  font-size: clamp(58px, 6vw, 82px);

  line-height: .92;

  letter-spacing: -4px;

  color: var(--dark);

  margin-bottom: 28px;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.devices-hero-description {

  max-width: 540px;

  font-size: 18px;

  line-height: 1.95;

  color: var(--text-light);
}

/* =====================================================
   BUTTONS
===================================================== */

.devices-hero-buttons {

  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 42px;
}

/* =====================================================
   TRUST ROW
===================================================== */

.devices-hero-trust-row {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 18px;

  margin-top: 34px;
}

.devices-hero-trust-row span {

  font-size: 15px;

  font-weight: 600;

  color: #1F2937;
}

.devices-trust-line {

  width: 32px;
  height: 1px;

  background:
    rgba(15, 23, 42, .12);
}

/* =====================================================
   RIGHT VISUAL
===================================================== */

.devices-hero-visual {

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  min-height: 100%;
}

/* =====================================================
   PHONE STACK
===================================================== */

.devices-phone-stack {

  position: relative;

  width: 520px;

  height: 620px;
}

/* =====================================================
   PHONE BASE
===================================================== */

.devices-phone {

  position: absolute;

  width: 300px;
  height: 590px;

  border-radius: 46px;

  background:
    linear-gradient(180deg,
      #151515,
      #050505);

  border:
    10px solid #090909;

  box-shadow:
    0 30px 80px rgba(15, 23, 42, .18);
}

/* =====================================================
   PHONE POSITIONS
===================================================== */

/* BACK */

.devices-phone-back {

  top: 70px;
  left: 40px;

  opacity: .16;

  transform: rotate(-13deg);
}

/* MIDDLE */

.devices-phone-middle {

  top: 35px;
  left: 85px;

  opacity: .34;

  transform: rotate(-7deg);
}

/* FRONT */

.devices-phone-front {

  top: 0;
  left: 130px;

  z-index: 3;

  overflow: hidden;
}

/* =====================================================
   SCREEN CONTENT
===================================================== */

.devices-screen-content {

  height: 100%;

  padding: 28px;

  background:
    linear-gradient(180deg,
      #fbfbff,
      #f1f2ff);
}

/* =====================================================
   SCREEN TOP
===================================================== */

.devices-screen-top {

  display: flex;

  gap: 8px;

  margin-bottom: 34px;
}

.devices-screen-dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    rgba(108, 99, 255, .22);
}

/* =====================================================
   SCREEN CARDS
===================================================== */

.devices-screen-card {

  padding: 28px;

  border-radius: 30px;

  background: white;

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .06);

  margin-bottom: 22px;
}

.devices-screen-card h3 {

  font-size: 28px;

  line-height: 1.05;

  letter-spacing: -1px;

  margin-bottom: 12px;

  color: var(--dark);
}

.devices-screen-card p {

  font-size: 15px;

  line-height: 1.8;

  color: var(--text-light);
}

/* =====================================================
   SMALL CARD
===================================================== */

.devices-screen-card.small {

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);
}

.devices-screen-card.small h3 {

  color: white;
}

.devices-screen-card.small p {

  color:
    rgba(255, 255, 255, .82);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .devices-hero-wrapper {

    gap: 30px;
  }

  .devices-phone-stack {

    transform: scale(.92);
  }

  .devices-hero-title {

    font-size: clamp(52px, 6vw, 72px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .devices-hero-section {

    padding: 140px 0 100px;
  }

  .devices-hero-wrapper {

    grid-template-columns: 1fr;

    gap: 50px;

    min-height: auto;
  }

  .devices-hero-content {

    max-width: 100%;
  }

  .devices-hero-visual {
    justify-content: center;
  }

  .devices-phone-stack {

    width: 480px;

    height: 560px;

    transform: scale(.9);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .devices-hero-section {

    padding: 130px 0 90px;
  }

  .devices-hero-title {

    font-size: clamp(42px, 10vw, 58px);

    line-height: .94;

    letter-spacing: -2px;
  }

  .devices-hero-description {

    font-size: 17px;

    line-height: 1.9;
  }

  .devices-hero-buttons {

    flex-direction: column;

    align-items: stretch;
  }

  .devices-hero-buttons .btn-primary,
  .devices-hero-buttons .btn-secondary {

    width: 100%;
  }

  .devices-hero-trust-row {

    gap: 14px;
  }

  .devices-phone-stack {

    width: 360px;

    height: 480px;

    transform: scale(.8);
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {


  .devices-hero-section {

    padding: 120px 0 80px;
  }

  .devices-hero-visual {
    margin-left: -60px;
  }

  .devices-hero-title {

    font-size: 38px;

    line-height: .96;

    letter-spacing: -1.5px;
  }

  .devices-hero-description {

    font-size: 16px;

    line-height: 1.85;
  }

  .devices-hero-trust-row {

    flex-direction: column;

    align-items: flex-start;
  }

  .devices-trust-line {

    display: none;
  }

  .devices-phone-stack {

    width: 300px;

    height: 420px;

    transform: scale(.68);
  }

  .devices-phone-front {

    left: 110px;
  }

  .devices-screen-card {

    padding: 22px;
  }

  .devices-screen-card h3 {

    font-size: 22px;
  }

  .devices-screen-card p {

    font-size: 14px;
  }

}


/* =====================================================
   STATS SECTION
===================================================== */

.stats-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fc);
}

/* =====================================================
   TOP CONTENT
===================================================== */

.stats-top {

  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

/* =====================================================
   BADGE
===================================================== */

.stats-top .section-badge {

  width: fit-content;

  margin-inline: auto;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;
}

/* =====================================================
   HEADING
===================================================== */

.stats-top h2 {

  margin-top: 28px;

  font-size: clamp(46px, 5vw, 60px);

  line-height: .95;

  letter-spacing: -3px;

  color: var(--dark);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.stats-top p {

  max-width: 760px;

  margin: 28px auto 0;

  font-size: 18px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =====================================================
   GRID
===================================================== */

.stats-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 80px;
}

/* =====================================================
   CARD
===================================================== */

.stat-card {

  position: relative;

  padding: 38px 32px;

  border-radius: 34px;

  background: white;

  border:
    1px solid rgba(15, 23, 42, .05);

  transition: .4s ease;

  overflow: hidden;

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .04);
}

/* =====================================================
   HOVER
===================================================== */

.stat-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, .08);
}

/* =====================================================
   TOP GLOW
===================================================== */

.stat-card::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(90deg,
      #6C63FF,
      #8B7DFF);
}

/* =====================================================
   ICON
===================================================== */

.stat-icon {

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background:
    rgba(108, 99, 255, .10);

  color: #6C63FF;

  font-size: 24px;

  font-weight: 700;

  margin-bottom: 28px;
}

/* =====================================================
   NUMBER
===================================================== */

.stat-card h3 {

  font-size: clamp(38px, 4vw, 54px);

  line-height: 1;

  letter-spacing: -2px;

  margin-bottom: 18px;

  color: var(--dark);
}

/* =====================================================
   TEXT
===================================================== */

.stat-card p {

  font-size: 16px;

  line-height: 1.85;

  color: var(--text-light);
}

/* =====================================================
   FEATURED CARD
===================================================== */

.stat-card:nth-child(2) {

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  transform:
    translateY(-14px);
}

.stat-card:nth-child(2) h3,
.stat-card:nth-child(2) p {

  color: white;
}

.stat-card:nth-child(2) .stat-icon {

  background:
    rgba(255, 255, 255, .16);

  color: white;
}

.stat-card:nth-child(2)::before {

  background:
    rgba(255, 255, 255, .22);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .stats-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:768px) {

  .stats-section {

    padding: 110px 0;
  }

  .stats-top h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .stats-top p {

    font-size: 17px;
  }

  .stats-grid {

    gap: 20px;

    margin-top: 60px;
  }

  .stat-card {

    padding: 34px 28px;

    border-radius: 28px;
  }

  .stat-card:nth-child(2) {

    transform: translateY(0);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:580px) {

  .stats-grid {

    grid-template-columns: 1fr;
  }

  .stats-section {

    padding: 60px 0;
  }

  .stats-top h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .stats-top p {

    font-size: 16px;

    line-height: 1.85;
  }

  .stat-card {

    padding: 30px 24px;

    border-radius: 24px;
  }

  .stat-icon {

    width: 58px;
    height: 58px;

    border-radius: 18px;

    font-size: 22px;

    margin-bottom: 24px;
  }

  .stat-card h3 {

    font-size: 38px;
  }

  .stat-card p {

    font-size: 15px;
  }
}

/* =====================================================
   SHOWCASE SECTION
===================================================== */

.showcase-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fc);
}

/* =====================================================
   WRAPPER
===================================================== */

.showcase-wrapper {

  display: grid;

  grid-template-columns: 1.02fr .98fr;

  gap: 70px;

  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.showcase-content {

  max-width: 620px;
}

/* =====================================================
   BADGE
===================================================== */

.showcase-content .section-badge {

  width: fit-content;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;
}

/* =====================================================
   HEADING
===================================================== */

.showcase-content h2 {

  font-size: clamp(48px, 5vw, 60px);

  line-height: .96;

  letter-spacing: -3px;

  color: var(--dark);

  margin-bottom: 26px;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.showcase-content p {

  font-size: 18px;

  line-height: 1.95;

  color: var(--text-light);
}

/* =====================================================
   FEATURES
===================================================== */

.showcase-features {

  display: flex;

  flex-direction: column;

  gap: 22px;

  margin-top: 48px;
}

/* =====================================================
   FEATURE ITEM
===================================================== */

.showcase-feature-item {

  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 26px;

  border-radius: 28px;

  background: white;

  border:
    1px solid rgba(15, 23, 42, .05);

  transition: .35s ease;

  box-shadow:
    0 10px 35px rgba(15, 23, 42, .04);
}

/* =====================================================
   HOVER
===================================================== */

.showcase-feature-item:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 20px 55px rgba(15, 23, 42, .08);
}

/* =====================================================
   ICON
===================================================== */

.showcase-feature-icon {

  width: 66px;
  height: 66px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background:
    rgba(108, 99, 255, .08);

  color: #6C63FF;
}

/* =====================================================
   FEATURE CONTENT
===================================================== */

.showcase-feature-content h3 {

  font-size: 24px;

  line-height: 1.1;

  letter-spacing: -1px;

  margin-bottom: 10px;

  color: var(--dark);
}

.showcase-feature-content p {

  font-size: 15px;

  line-height: 1.85;

  color: var(--text-light);
}

/* =====================================================
   DASHBOARD VISUAL
===================================================== */

.showcase-dashboard-visual {

  position: relative;

  display: flex;

  justify-content: center;
}

/* =====================================================
   DASHBOARD CARD
===================================================== */

.showcase-dashboard-card {

  width: 100%;

  max-width: 520px;

  padding: 36px;

  border-radius: 38px;

  background:
    linear-gradient(180deg,
      #111827,
      #0F172A);

  color: white;

  box-shadow:
    0 30px 80px rgba(15, 23, 42, .16);

  transform:
    translateY(-20px);
}

/* =====================================================
   HEADER
===================================================== */

.showcase-dashboard-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 34px;
}

/* =====================================================
   LABEL
===================================================== */

.showcase-dashboard-label {

  display: inline-block;

  margin-bottom: 12px;

  padding: 8px 14px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .08);

  color:
    rgba(255, 255, 255, .82);

  font-size: 13px;

  font-weight: 600;
}

/* =====================================================
   HEADER TITLE
===================================================== */

.showcase-dashboard-header h3 {

  font-size: 32px;

  line-height: 1.05;

  letter-spacing: -1.5px;
}

/* =====================================================
   STATUS
===================================================== */

.showcase-dashboard-status {

  padding: 10px 16px;

  border-radius: 999px;

  background:
    rgba(74, 222, 128, .14);

  color: #4ADE80;

  font-size: 14px;

  font-weight: 700;
}

/* =====================================================
   ANALYTICS
===================================================== */

.showcase-analytics-box {

  padding: 24px;

  border-radius: 26px;

  background:
    rgba(255, 255, 255, .05);

  margin-bottom: 24px;
}

/* =====================================================
   ANALYTICS TOP
===================================================== */

.showcase-analytics-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 18px;
}

.showcase-analytics-top span {

  font-size: 15px;

  color:
    rgba(255, 255, 255, .75);
}

.showcase-analytics-top strong {

  font-size: 28px;

  letter-spacing: -1px;
}

/* =====================================================
   BAR
===================================================== */

.showcase-analytics-bar {

  width: 100%;

  height: 10px;

  border-radius: 999px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, .08);
}

/* =====================================================
   FILL
===================================================== */

.showcase-analytics-fill {

  width: 98%;

  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(90deg,
      #6C63FF,
      #8B7DFF);
}

/* =====================================================
   DASHBOARD ITEMS
===================================================== */

.showcase-dashboard-items {

  display: flex;

  flex-direction: column;

  gap: 18px;
}

/* =====================================================
   ITEM
===================================================== */

.showcase-dashboard-item {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  padding: 22px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, .05);
}

/* =====================================================
   ITEM ICON
===================================================== */

.showcase-item-icon {

  width: 52px;
  height: 52px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    rgba(108, 99, 255, .14);

  color: #A5B4FC;
}

/* =====================================================
   ITEM CONTENT
===================================================== */

.showcase-item-content h4 {

  font-size: 18px;

  line-height: 1.1;

  margin-bottom: 8px;
}

.showcase-item-content p {

  font-size: 14px;

  line-height: 1.7;

  color:
    rgba(255, 255, 255, .68);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .showcase-wrapper {

    gap: 50px;
  }

  .showcase-dashboard-card {

    padding: 32px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .showcase-section {

    padding: 120px 0;
  }

  .showcase-wrapper {

    grid-template-columns: 1fr;

    gap: 70px;
  }

  .showcase-content {

    max-width: 100%;
  }

  .showcase-dashboard-card {

    transform: translateY(0);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .showcase-section {

    padding: 100px 0;
  }

  .showcase-content h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .showcase-content p {

    font-size: 17px;
  }

  .showcase-feature-item {

    padding: 22px;

    border-radius: 24px;
  }

  .showcase-feature-icon {

    width: 58px;
    height: 58px;

    border-radius: 18px;
  }

  .showcase-feature-content h3 {

    font-size: 22px;
  }

  .showcase-dashboard-card {

    padding: 28px;

    border-radius: 30px;
  }

  .showcase-dashboard-header h3 {

    font-size: 28px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px) {

  .showcase-section {

    padding: 60px 0;
  }

  .showcase-content h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .showcase-content p {

    font-size: 16px;

    line-height: 1.85;
  }

  .showcase-features {

    gap: 18px;
  }

  .showcase-feature-item {

    flex-direction: column;

    padding: 20px;

    border-radius: 22px;
  }

  .showcase-feature-content h3 {

    font-size: 20px;
  }

  .showcase-dashboard-card {

    padding: 24px 20px;

    border-radius: 26px;
  }

  .showcase-dashboard-header {

    flex-direction: column;

    align-items: flex-start;
  }

  .showcase-dashboard-header h3 {

    font-size: 24px;
  }

  .showcase-dashboard-item {

    padding: 18px;
  }

  .showcase-item-icon {

    width: 46px;
    height: 46px;

    border-radius: 16px;
  }
}

/* =====================================================
   WORKFLOW SECTION
===================================================== */

.workflow-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fc);
}

/* =====================================================
   HEADING
===================================================== */

.workflow-heading {

  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

/* =====================================================
   BADGE
===================================================== */

.workflow-heading .section-badge {

  width: fit-content;

  margin-inline: auto;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;
}

/* =====================================================
   TITLE
===================================================== */

.workflow-heading h2 {

  margin-top: 28px;

  font-size: clamp(48px, 5vw, 60px);

  line-height: .96;

  letter-spacing: -3px;

  color: var(--dark);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.workflow-heading p {

  max-width: 960px;

  margin: 28px auto 0;

  font-size: 18px;

  line-height: 1.95;

  color: var(--text-light);
}

.works-title {

  font-size: clamp(42px, 4.5vw, 64px);

  line-height: .95;

  letter-spacing: -3px;

  font-weight: 900;

  color: #071133;

  margin-bottom: 24px;
}

.works-title-accent {

  display: block;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b5cf6);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* =====================================================
   WRAPPER
===================================================== */

.workflow-wrapper {

  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  margin-top: 90px;
}

/* =====================================================
   CARD
===================================================== */

.workflow-card {

  position: relative;

  padding: 36px 30px;

  border-radius: 34px;

  background: white;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, .05);

  transition: .35s ease;

  z-index: 2;
}

/* =====================================================
   HOVER
===================================================== */

.workflow-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 28px 70px rgba(15, 23, 42, .08);
}

/* =====================================================
   NUMBER
===================================================== */

.workflow-number {

  width: 62px;
  height: 62px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  margin-bottom: 28px;

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  color: white;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: -1px;
}

/* =====================================================
   CARD TITLE
===================================================== */

.workflow-card h3 {

  font-size: 28px;

  line-height: 1.08;

  letter-spacing: -1px;

  margin-bottom: 16px;

  color: var(--dark);
}

/* =====================================================
   CARD TEXT
===================================================== */

.workflow-card p {

  font-size: 15px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =====================================================
   CONNECTOR LINE
===================================================== */

.workflow-line {

  position: absolute;

  top: 88px;

  height: 2px;

  background:
    linear-gradient(90deg,
      rgba(108, 99, 255, .15),
      rgba(108, 99, 255, .35));

  z-index: 1;
}

/* =====================================================
   LINE POSITIONS
===================================================== */

.workflow-line:nth-of-type(2) {

  left: 22%;
  width: 12%;
}

.workflow-line:nth-of-type(4) {

  left: 47%;
  width: 12%;
}

.workflow-line:nth-of-type(6) {

  left: 72%;
  width: 12%;
}

/* =====================================================
   FEATURED CARD
===================================================== */

.workflow-card:nth-child(3) {

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  transform:
    translateY(-14px);
}

.workflow-card:nth-child(3) h3,
.workflow-card:nth-child(3) p {

  color: white;
}

.workflow-card:nth-child(3) .workflow-number {

  background:
    rgba(255, 255, 255, .16);

  color: white;
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .workflow-wrapper {

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
  }

  .workflow-line {
    display: none;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:768px) {

  .workflow-section {

    padding: 110px 0;
  }

  .workflow-heading h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .workflow-heading p {

    font-size: 17px;
  }

  .workflow-wrapper {

    margin-top: 60px;
  }

  .workflow-card {

    padding: 30px 24px;

    border-radius: 28px;
  }

  .workflow-card:nth-child(3) {

    transform: translateY(0);
  }

  .workflow-number {

    width: 56px;
    height: 56px;

    border-radius: 18px;

    font-size: 18px;

    margin-bottom: 22px;
  }

  .workflow-card h3 {

    font-size: 24px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:580px) {

  .workflow-section {

    padding: 60px 0;
  }

  .workflow-wrapper {

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .workflow-heading h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .workflow-heading p {

    font-size: 16px;

    line-height: 1.85;
  }

  .workflow-card {

    padding: 26px 22px;

    border-radius: 24px;
  }

  .workflow-number {

    width: 52px;
    height: 52px;

    border-radius: 16px;

    font-size: 17px;
  }

  .workflow-card h3 {

    font-size: 22px;

    margin-bottom: 14px;
  }

  .workflow-card p {

    font-size: 14px;
  }
}

/* =====================================================
   SECURITY SECTION
===================================================== */

.security-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fc);
}

/* =====================================================
   BACKGROUND GLOW
===================================================== */

.security-section::before {

  content: '';

  position: absolute;

  top: 120px;
  right: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(108, 99, 255, .10),
      transparent 70%);

  pointer-events: none;
}

/* =====================================================
   HEADING
===================================================== */

.security-heading {

  max-width: 820px;

  margin: 0 auto;

  text-align: center;
}

/* =====================================================
   BADGE
===================================================== */

.security-heading .section-badge {

  width: fit-content;

  margin-inline: auto;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;
}

/* =====================================================
   TITLE
===================================================== */

.security-heading h2 {

  margin-top: 28px;

  font-size: clamp(48px, 5vw, 60px);

  line-height: .96;

  letter-spacing: -3px;

  color: var(--dark);
}

/* =====================================================
   DESCRIPTION
===================================================== */

.security-heading p {

  max-width: 760px;

  margin: 28px auto 0;

  font-size: 18px;

  line-height: 1.95;

  color: var(--text-light);
}

/* =====================================================
   GRID
===================================================== */

.security-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;

  margin-top: 80px;
}

/* =====================================================
   CARD
===================================================== */

.security-card {

  position: relative;

  overflow: hidden;

  padding: 34px 30px;

  border-radius: 32px;

  background: white;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .04);

  transition: .35s ease;
}

/* =====================================================
   TOP ACCENT
===================================================== */

.security-card::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(90deg,
      #6C63FF,
      #8B7DFF);
}

/* =====================================================
   HOVER
===================================================== */

.security-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 28px 70px rgba(15, 23, 42, .08);
}

/* =====================================================
   FEATURED CARD
===================================================== */

.security-card:nth-child(2) {

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  transform:
    translateY(-14px);
}

.security-card:nth-child(2) h3,
.security-card:nth-child(2) p {

  color: white;
}

.security-card:nth-child(2) .security-icon {

  background:
    rgba(255, 255, 255, .16);

  color: white;
}

.security-card:nth-child(2)::before {

  background:
    rgba(255, 255, 255, .20);
}

/* =====================================================
   ICON
===================================================== */

.security-icon {

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 22px;

  margin-bottom: 28px;

  background:
    rgba(108, 99, 255, .10);

  color: #6C63FF;
}

/* =====================================================
   TITLE
===================================================== */

.security-card h3 {

  font-size: 28px;

  line-height: 1.08;

  letter-spacing: -1px;

  margin-bottom: 16px;

  color: var(--dark);
}

/* =====================================================
   TEXT
===================================================== */

.security-card p {

  font-size: 15px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .security-grid {

    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:768px) {

  .security-section {

    padding: 110px 0;
  }

  .security-heading h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .security-heading p {

    font-size: 17px;
  }

  .security-grid {

    gap: 20px;

    margin-top: 60px;
  }

  .security-card {

    padding: 30px 24px;

    border-radius: 28px;
  }

  .security-card:nth-child(2) {

    transform: translateY(0);
  }

  .security-icon {

    width: 58px;
    height: 58px;

    border-radius: 18px;

    margin-bottom: 24px;
  }

  .security-card h3 {

    font-size: 24px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:580px) {

  .security-section {

    padding: 60px 0;
  }

  .security-grid {

    grid-template-columns: 1fr;

    gap: 18px;
  }

  .security-heading h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .security-heading p {

    font-size: 16px;

    line-height: 1.85;
  }

  .security-card {

    padding: 26px 22px;

    border-radius: 24px;
  }

  .security-icon {

    width: 52px;
    height: 52px;

    border-radius: 16px;
  }

  .security-card h3 {

    font-size: 22px;

    margin-bottom: 14px;
  }

  .security-card p {

    font-size: 14px;
  }
}

/* =====================================================
   RETAILER GROWTH SECTION
===================================================== */

.retailer-growth-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fc);
}

/* =====================================================
   WRAPPER
===================================================== */

.retailer-growth-wrapper {

  display: grid;

  grid-template-columns: .95fr 1.05fr;

  gap: 70px;

  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.retailer-growth-left {

  max-width: 560px;
}

/* =====================================================
   BADGE
===================================================== */

.retailer-growth-badge {

  width: fit-content;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(108, 99, 255, .08);

  border:
    1px solid rgba(108, 99, 255, .12);

  color: #6C63FF;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 28px;
}

/* =====================================================
   TITLE
===================================================== */

.retailer-growth-left h2 {

  font-size: clamp(48px, 5vw, 60px);

  line-height: .96;

  letter-spacing: -3px;

  color: var(--dark);

  margin-bottom: 26px;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.retailer-growth-left p {

  font-size: 18px;

  line-height: 1.95;

  color: var(--text-light);

  margin-bottom: 42px;
}

/* =====================================================
   RIGHT CONTENT
===================================================== */

.retailer-growth-right {

  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* =====================================================
   BENEFIT CARD
===================================================== */

.retailer-benefit-card {

  display: flex;

  align-items: flex-start;

  gap: 22px;

  padding: 30px;

  border-radius: 30px;

  background: white;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .04);

  transition: .35s ease;
}

/* =====================================================
   HOVER
===================================================== */

.retailer-benefit-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    0 28px 70px rgba(15, 23, 42, .08);
}

/* =====================================================
   NUMBER
===================================================== */

.retailer-benefit-number {

  width: 64px;
  height: 64px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  color: white;

  font-size: 20px;

  font-weight: 700;

  letter-spacing: -1px;
}

/* =====================================================
   CONTENT
===================================================== */

.retailer-benefit-content h3 {

  font-size: 26px;

  line-height: 1.08;

  letter-spacing: -1px;

  margin-bottom: 12px;

  color: var(--dark);
}

.retailer-benefit-content p {

  font-size: 15px;

  line-height: 1.9;

  color: var(--text-light);
}

/* =====================================================
   FEATURED CARD
===================================================== */

.retailer-benefit-card:nth-child(2) {

  background:
    linear-gradient(135deg,
      #6C63FF,
      #8B7DFF);

  transform:
    translateX(18px);
}

.retailer-benefit-card:nth-child(2) .retailer-benefit-content h3,

.retailer-benefit-card:nth-child(2) .retailer-benefit-content p {

  color: white;
}

.retailer-benefit-card:nth-child(2) .retailer-benefit-number {

  background:
    rgba(255, 255, 255, .16);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .retailer-growth-wrapper {

    gap: 50px;
  }

  .retailer-benefit-card {

    padding: 26px;
  }

  .retailer-benefit-content h3 {

    font-size: 24px;
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:992px) {

  .retailer-growth-section {

    padding: 120px 0;
  }

  .retailer-growth-wrapper {

    grid-template-columns: 1fr;

    gap: 60px;
  }

  .retailer-growth-left {

    max-width: 100%;
  }

  .retailer-benefit-card:nth-child(2) {

    transform: translateX(0);
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px) {

  .retailer-growth-section {

    padding: 100px 0;
  }

  .retailer-growth-left h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .retailer-growth-left p {

    font-size: 17px;
  }

  .retailer-growth-right {

    gap: 18px;
  }

  .retailer-benefit-card {

    padding: 24px;

    border-radius: 24px;
  }

  .retailer-benefit-number {

    width: 56px;
    height: 56px;

    border-radius: 18px;

    font-size: 18px;
  }

  .retailer-benefit-content h3 {

    font-size: 22px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:580px) {

  .retailer-growth-section {

    padding: 60px 0;
  }

  .retailer-growth-left h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .retailer-growth-left p {

    font-size: 16px;

    line-height: 1.85;
  }

  .retailer-benefit-card {

    flex-direction: column;

    padding: 22px;

    border-radius: 22px;
  }

  .retailer-benefit-number {

    width: 52px;
    height: 52px;

    border-radius: 16px;

    font-size: 17px;
  }

  .retailer-benefit-content h3 {

    font-size: 20px;

    margin-bottom: 10px;
  }

  .retailer-benefit-content p {

    font-size: 14px;
  }
}

/* =====================================================
   CTA SECTION
===================================================== */

.cta-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      #0F172A,
      #111827);
}

/* =====================================================
   BACKGROUND GLOW
===================================================== */

.cta-section::before {

  content: '';

  position: absolute;

  top: -180px;
  right: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(rgba(108, 99, 255, .20),
      transparent 70%);

  pointer-events: none;
}

/* =====================================================
   WRAPPER
===================================================== */

.cta-wrapper {

  position: relative;

  z-index: 2;

  max-width: 920px;

  margin: 0 auto;

  text-align: center;
}

/* =====================================================
   BADGE
===================================================== */

.cta-badge {

  width: fit-content;

  margin-inline: auto;

  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, .08);

  border:
    1px solid rgba(255, 255, 255, .10);

  color: rgba(255, 255, 255, .85);

  font-size: 14px;

  font-weight: 600;
}

/* =====================================================
   TITLE
===================================================== */

.cta-wrapper h2 {

  margin-top: 30px;

  font-size: clamp(52px, 6vw, 60px);

  line-height: .94;

  letter-spacing: -3px;

  color: white;
}

/* =====================================================
   DESCRIPTION
===================================================== */

.cta-wrapper p {

  max-width: 760px;

  margin: 30px auto 0;

  font-size: 18px;

  line-height: 1.95;

  color:
    rgba(255, 255, 255, .72);
}

/* =====================================================
   BUTTONS
===================================================== */

.cta-buttons {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 16px;

  margin-top: 42px;
}

/* =====================================================
   STATS
===================================================== */

.cta-stats {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-wrap: wrap;

  gap: 30px;

  margin-top: 70px;
}

/* =====================================================
   DIVIDER
===================================================== */

.cta-divider {

  width: 1px;
  height: 60px;

  background:
    rgba(255, 255, 255, .10);
}

/* =====================================================
   STAT
===================================================== */

.cta-stat {

  min-width: 180px;
}

.cta-stat h3 {

  font-size: clamp(42px, 4vw, 58px);

  line-height: 1;

  letter-spacing: -2px;

  color: white;

  margin-bottom: 10px;
}

.cta-stat span {

  font-size: 15px;

  font-weight: 500;

  color:
    rgba(255, 255, 255, .68);
}

/* =====================================================
   LAPTOP
===================================================== */

@media(max-width:1200px) {

  .cta-wrapper h2 {

    font-size: clamp(46px, 6vw, 72px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:768px) {

  .cta-section {

    padding: 110px 0;
  }

  .cta-wrapper h2 {

    font-size: clamp(38px, 8vw, 54px);

    letter-spacing: -2px;
  }

  .cta-wrapper p {

    font-size: 17px;
  }

  .cta-stats {

    gap: 22px;

    margin-top: 55px;
  }

  .cta-divider {

    display: none;
  }

  .cta-stat {

    min-width: 160px;
  }

  .cta-stat h3 {

    font-size: 40px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:580px) {

  .cta-section {

    padding: 60px 0;
  }

  .cta-wrapper h2 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .cta-wrapper p {

    font-size: 16px;

    line-height: 1.85;
  }

  .cta-buttons {

    flex-direction: column;

    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {

    width: 100%;
  }

  .cta-stats {

    flex-direction: column;

    gap: 26px;

    margin-top: 50px;
  }

  .cta-stat {

    min-width: 100%;
  }

  .cta-stat h3 {

    font-size: 36px;
  }

  .cta-stat span {

    font-size: 14px;
  }
}

/* =========================================================
   EMI HERO SECTION
========================================================= */

.emi-hero {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
      rgba(91, 82, 255, 0.08),
      transparent 35%),
    radial-gradient(circle at bottom right,
      rgba(0, 224, 196, 0.06),
      transparent 35%),
    #070b14;
}

/* SOFT BACKGROUND GLOW */

.emi-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: rgba(91, 82, 255, 0.18);
  filter: blur(120px);
  z-index: 0;
}

.emi-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  background: rgba(0, 224, 196, 0.12);
  filter: blur(120px);
  z-index: 0;
}

/* =========================================================
   GRID
========================================================= */

.emi-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.emi-hero-content {
  max-width: 650px;
}

/* BADGE */

.emi-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #b8c0ff;
  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(10px);
}

.emi-hero .badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c73ff;
}

/* TITLE */

.emi-hero-title {
  margin-top: 28px;

  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -2px;

  color: #ffffff;
  font-weight: 800;
}

/* DESCRIPTION */

.emi-hero-description {
  margin-top: 28px;

  max-width: 620px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.9;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 42px;
}

/* PRIMARY BUTTON */

.hero-buttons .btn-primary {
  padding: 16px 28px;
  border-radius: 18px;
  border: none;

  background: linear-gradient(135deg,
      #6a5cff,
      #4d7cff);

  color: #fff;
  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;
  box-shadow:
    0 12px 30px rgba(91, 82, 255, 0.35);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(91, 82, 255, 0.45);
}

/* SECONDARY BUTTON */

.hero-buttons .btn-secondary {
  padding: 16px 28px;
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.04);

  color: #1f2797;

  font-size: 15px;
  font-weight: 600;

  backdrop-filter: blur(10px);

  transition: 0.35s ease;
  cursor: pointer;
}

.hero-buttons .btn-secondary:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   TRUST ROW
========================================================= */

.emi-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;

  margin-top: 50px;
}

.emi-hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.emi-hero-trust strong {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.emi-hero-trust span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.emi-trust-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================================
   RIGHT VISUAL
========================================================= */

.emi-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* MAIN CARD */

.emi-preview {
  position: relative;

  width: 100%;
  max-width: 430px;

  padding: 38px;

  border-radius: 32px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.45);
}

/* CARD TOP */

.emi-preview-top {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.emi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d2a8;
}

/* SMALL TITLE */

.emi-preview h3 {
  margin-top: 28px;

  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* PRICE */

.emi-price {
  margin-top: 12px;

  font-size: 62px;
  font-weight: 800;
  line-height: 1;

  color: #ffffff;
}

.emi-price span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
}

/* DESCRIPTION */

.emi-preview p {
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* PROGRESS */

.emi-progress {
  margin-top: 30px;

  width: 100%;
  height: 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  overflow: hidden;
}

.emi-progress-fill {
  width: 82%;
  height: 100%;

  border-radius: inherit;

  background: linear-gradient(90deg,
      #6a5cff,
      #00d2a8);
}

/* STATS */

.emi-preview-stats {
  display: flex;
  justify-content: space-between;

  margin-top: 34px;
}

.emi-preview-stats strong {
  display: block;

  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.emi-preview-stats span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* STATUS CARD */

.emi-status-card {
  margin-top: 28px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;

  border-radius: 16px;

  background: rgba(0, 210, 168, 0.12);

  border: 1px solid rgba(0, 210, 168, 0.18);

  color: #cffff3;
  font-size: 14px;
  font-weight: 600;
}

.emi-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d2a8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {

  .emi-hero {
    padding: 110px 0 90px;
  }

  .emi-hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .emi-hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .emi-hero-trust {
    justify-content: center;
  }

  .emi-hero-description {
    margin-inline: auto;
  }

  .emi-preview {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .emi-hero {
    padding: 100px 0 80px;
  }

  .emi-hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .emi-hero-description {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .emi-preview {
    padding: 30px;
    border-radius: 28px;
  }

  .emi-price {
    font-size: 48px;
  }

  .emi-preview-stats {
    gap: 20px;
  }

  .emi-hero-trust {
    gap: 18px;
  }

  .emi-trust-divider {
    display: none;
  }
}

/* =========================================================
   EMI PLANS SECTION
========================================================= */

.emi-plans-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at top right,
      rgba(91, 82, 255, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom left,
      rgba(0, 210, 168, 0.06),
      transparent 30%),
    #0b101c;

  overflow: hidden;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.emi-plans-section .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

/* BADGE */

.emi-plans-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #b8c0ff;

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(12px);
}

.emi-plans-section .badge::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #6a5cff;
}

/* TITLE */

.emi-plans-section h2 {
  margin-top: 28px;

  color: #ffffff;

  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.1;
  letter-spacing: -1.5px;

  font-weight: 800;
}

/* DESCRIPTION */

.emi-plans-section .section-heading p {
  margin-top: 24px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 18px;
  line-height: 1.9;
}

/* =========================================================
   GRID
========================================================= */

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =========================================================
   PLAN CARD
========================================================= */

.emi-plan-card {
  position: relative;

  padding: 38px 32px;

  border-radius: 30px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  transition: 0.4s ease;

  overflow: hidden;
}

/* HOVER */

.emi-plan-card:hover {
  transform: translateY(-10px);

  border-color: rgba(106, 92, 255, 0.35);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45);
}

/* FEATURED PLAN */

.featured-plan {
  border: 1px solid rgba(106, 92, 255, 0.4);

  background:
    linear-gradient(180deg,
      rgba(106, 92, 255, 0.16),
      rgba(255, 255, 255, 0.04));

  transform: translateY(-14px);
}

/* POPULAR BADGE */

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(106, 92, 255, 0.18);

  border: 1px solid rgba(106, 92, 255, 0.28);

  color: #d8d3ff;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

/* PLAN DURATION */

.emi-plan-duration {
  display: inline-flex;
  align-items: center;

  padding: 10px 16px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;
}

/* PRICE */

.emi-plan-price {
  margin-top: 28px;

  color: #ffffff;

  font-size: 56px;
  font-weight: 800;

  line-height: 1;
  letter-spacing: -2px;
}

/* DESCRIPTION */

.emi-plan-card p {
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.8;

  min-height: 72px;
}

/* =========================================================
   FEATURES
========================================================= */

.emi-plan-features {
  margin-top: 28px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  list-style: none;
  padding: 0;
}

.emi-plan-features li {
  position: relative;

  padding-left: 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 15px;
}

/* CHECK ICON */

.emi-plan-features li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: #00d2a8;

  font-weight: 700;
}

/* =========================================================
   BUTTON
========================================================= */

.emi-plan-card .btn-primary {
  width: 100%;

  margin-top: 34px;

  padding: 16px 20px;

  border: none;
  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #6a5cff,
      #4d7cff);

  color: #ffffff;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;

  box-shadow:
    0 12px 25px rgba(91, 82, 255, 0.25);
}

.emi-plan-card .btn-primary:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(91, 82, 255, 0.35);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .emi-plans-section {
    padding: 100px 0;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: translateY(0);
  }

  .emi-plans-section h2 {
    font-size: 2.8rem;
  }

  .emi-plan-card {
    padding: 32px 26px;
  }

  .emi-plan-price {
    font-size: 48px;
  }

  .emi-plans-section .section-heading p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =========================================================
   EMI PROCESS SECTION
========================================================= */

.emi-process-section {
  position: relative;
  padding: 120px 0;

  background:
    radial-gradient(circle at top left,
      rgba(106, 92, 255, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom right,
      rgba(0, 210, 168, 0.06),
      transparent 30%),
    #070b14;

  overflow: hidden;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.emi-process-section .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

/* BADGE */

.emi-process-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #b8c0ff;

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(10px);
}

.emi-process-section .badge::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #6a5cff;
}

/* TITLE */

.emi-process-section h2 {
  margin-top: 28px;

  color: #ffffff;

  font-size: clamp(2.5rem, 5vw, 4.2rem);

  line-height: 1.1;
  letter-spacing: -1.5px;

  font-weight: 800;
}

/* =========================================================
   GRID
========================================================= */

.emi-process-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 28px;
}

/* CONNECTING LINE */

.emi-process-grid::before {
  content: "";

  position: absolute;

  top: 42px;
  left: 8%;

  width: 84%;
  height: 2px;

  background:
    linear-gradient(90deg,
      rgba(106, 92, 255, 0.3),
      rgba(0, 210, 168, 0.3));

  z-index: 0;
}

/* =========================================================
   PROCESS CARD
========================================================= */

.emi-process-card {
  position: relative;
  z-index: 2;

  padding: 40px 32px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  transition: 0.4s ease;
}

/* HOVER */

.emi-process-card:hover {
  transform: translateY(-10px);

  border-color: rgba(106, 92, 255, 0.35);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   NUMBER BOX
========================================================= */

.icon-box {
  position: relative;

  width: 84px;
  height: 84px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      #6a5cff,
      #4d7cff);

  color: #ffffff;

  font-size: 28px;
  font-weight: 800;

  box-shadow:
    0 15px 35px rgba(91, 82, 255, 0.35);
}

/* SOFT GLOW */

.icon-box::before {
  content: "";

  position: absolute;
  inset: -10px;

  border-radius: inherit;

  background: rgba(106, 92, 255, 0.2);

  filter: blur(20px);

  z-index: -1;
}

/* =========================================================
   CARD TITLE
========================================================= */

.emi-process-card h3 {
  margin-top: 30px;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  line-height: 1.3;
}

/* DESCRIPTION */

.emi-process-card p {
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

  .emi-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emi-process-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {

  .emi-process-section {
    padding: 100px 0;
  }

  .emi-process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .emi-process-section h2 {
    font-size: 2.8rem;
  }

  .emi-process-card {
    padding: 34px 26px;
  }

  .icon-box {
    width: 74px;
    height: 74px;

    font-size: 24px;
    border-radius: 22px;
  }

  .emi-process-card h3 {
    font-size: 22px;
  }

  .emi-process-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================================
   EMI TRUST SECTION
========================================================= */

.emi-trust-section {
  position: relative;
  padding: 120px 0;

  background:
    radial-gradient(circle at top right,
      rgba(106, 92, 255, 0.08),
      transparent 30%),
    radial-gradient(circle at bottom left,
      rgba(0, 210, 168, 0.06),
      transparent 30%),
    #0b101c;

  overflow: hidden;
}

/* =========================================================
   WRAPPER
========================================================= */

.emi-trust-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.emi-trust-content {
  max-width: 620px;
}

/* BADGE */

.dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #b8c0ff;

  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(12px);
}

.dark-badge::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #6a5cff;
}

/* TITLE */

.emi-trust-content h2 {
  margin-top: 28px;

  color: #ffffff;

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  line-height: 1.08;
  letter-spacing: -1.5px;

  font-weight: 800;
}

/* DESCRIPTION */

.emi-trust-content p {
  margin-top: 28px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 18px;
  line-height: 1.9;
}

/* =========================================================
   STATS
========================================================= */

.emi-trust-stats {
  display: flex;
  align-items: center;
  gap: 60px;

  margin-top: 50px;
}

.emi-trust-stats h3 {
  color: #ffffff;

  font-size: 48px;
  font-weight: 800;

  line-height: 1;
}

.emi-trust-stats span {
  display: block;

  margin-top: 10px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 15px;
}

/* =========================================================
   RIGHT CARDS
========================================================= */

.emi-trust-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* TRUST CARD */

.emi-trust-card {
  position: relative;

  padding: 32px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  transition: 0.4s ease;
}

/* HOVER */

.emi-trust-card:hover {
  transform: translateY(-8px);

  border-color: rgba(106, 92, 255, 0.35);

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.4);
}

/* ICON */

.emi-trust-card .icon-box {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(135deg,
      #6a5cff,
      #4d7cff);

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(91, 82, 255, 0.3);
}

/* TITLE */

.emi-trust-card h3 {
  margin-top: 24px;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;

  line-height: 1.3;
}

/* DESCRIPTION */

.emi-trust-card p {
  margin-top: 16px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .emi-trust-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .emi-trust-content {
    max-width: 100%;
    text-align: center;
  }

  .emi-trust-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .emi-trust-section {
    padding: 100px 0;
  }

  .emi-trust-content h2 {
    font-size: 2.8rem;
  }

  .emi-trust-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .emi-trust-stats {
    flex-direction: column;
    gap: 30px;
  }

  .emi-trust-stats h3 {
    font-size: 42px;
  }

  .emi-trust-card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .emi-trust-card h3 {
    font-size: 22px;
  }

  .emi-trust-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .emi-trust-card .icon-box {
    width: 56px;
    height: 56px;

    font-size: 20px;
    border-radius: 16px;
  }
}

/* =========================================================
   MSF SERVICES HERO
========================================================= */
/* =========================================================
SERVICES HERO
========================================================= */

.msf-services-hero {

  position: relative;

  padding: 120px 0;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #f8f9ff 0%,
      #ffffff 100%);
}

/* =========================================================
BACKGROUND GLOWS
========================================================= */

.msf-services-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.msf-shape-one {

  width: 500px;
  height: 500px;

  background:
    rgba(99, 91, 255, .12);

  top: -180px;
  left: -180px;
}

.msf-shape-two {

  width: 400px;
  height: 400px;

  background:
    rgba(139, 125, 255, .10);

  bottom: -120px;
  right: -120px;
}

/* =========================================================
LAYOUT
========================================================= */

.msf-services-wrapper {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* =========================================================
LEFT CONTENT
========================================================= */

.msf-services-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 20px;

  border-radius: 999px;

  background:
    rgba(99, 91, 255, .08);

  color: #635BFF;

  font-weight: 600;
}

.msf-services-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #635BFF;
}

.msf-services-title {

  margin-top: 25px;

  font-size:
    clamp(56px, 6vw, 60px);

  line-height: .95;

  font-weight: 700;

  color: #0f172a;
}

.msf-services-title span {

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);
  background-clip: var(--text-muted);
  -webkit-background-clip: text;

  color: transparent;
}

.msf-services-description {

  margin-top: 30px;

  max-width: 600px;

  font-size: 1.05rem;

  line-height: 1.9;

  color: #64748b;
}

.msf-services-buttons {

  display: flex;

  gap: 18px;

  margin-top: 40px;
}

.msf-services-btn-secondary {

  padding: 16px 28px;

  border-radius: 999px;

  border:
    1px solid rgba(99, 91, 255, .15);

  text-decoration: none;

  color: #635BFF;

  font-weight: 600;
}

/* =========================================================
VISUAL WRAPPER
========================================================= */

.msf-services-visual {

  position: relative;

  height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* =========================================================
CENTER CORE
========================================================= */

.service-core {

  position: relative;

  width: 280px;
  height: 280px;

  border-radius: 36px;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: #fff;

  z-index: 5;

  box-shadow:
    0 30px 80px rgba(99, 91, 255, .25);

  overflow: hidden;
}

.service-core::before {

  content: "";

  position: absolute;

  inset: -2px;

  border-radius: 36px;

  padding: 1px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .5),
      transparent);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  pointer-events: none;
}

.service-core::after {

  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .15);

  filter: blur(80px);

  top: -50px;
  left: -50px;
}

.core-logo {

  position: relative;

  z-index: 2;
}

.core-logo img {

  width: 90px;

  margin-bottom: 18px;
}

.core-title {

  margin-top: 25px;

  font-size:
    clamp(56px, 5vw, 60px);

  line-height: .95;

  font-weight: 700;

  color: #0f172a;
}

.core-title span {

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);
  background-clip: var(--text-muted);
  -webkit-background-clip: text;

  color: transparent;
}

.service-core h4 {

  position: relative;

  z-index: 2;

  font-size: 2rem;

  font-weight: 700;
}

.service-core p {

  position: relative;

  z-index: 2;

  margin-top: 10px;

  font-size: .9rem;

  color:
    rgba(255, 255, 255, .8);

  max-width: 180px;

  line-height: 1.6;
}

/* =========================================================
ORBIT RING
========================================================= */

.service-core-ring {

  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  border:
    1px dashed rgba(99, 91, 255, .18);

  z-index: 1;
}

/* =========================================================
SERVICE BOXES
========================================================= */

.service-box {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 14px;

  width: 220px;

  padding: 18px 20px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, .88);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, .9);

  box-shadow:
    0 20px 60px rgba(15, 23, 42, .08);

  transition: .4s ease;

  z-index: 10;
}

.service-box:hover {

  transform:
    translateY(-8px) scale(1.03);

  box-shadow:
    0 30px 80px rgba(99, 91, 255, .15);
}

.service-box svg {

  width: 28px;
  height: 28px;

  color: #635BFF;

  flex-shrink: 0;
}

.service-box span {

  font-size: 1rem;

  font-weight: 600;

  color: #0f172a;
}

/* =========================================================
POSITIONS
========================================================= */

.service-1 {

  top: 20px;

  left: 50%;

  transform: translateX(-50%);
}

.service-2 {

  left: -10px;

  top: 50%;

  transform: translateY(-50%);
}

.service-3 {

  right: -10px;

  top: 50%;

  transform: translateY(-50%);
}

.service-4 {

  bottom: 30px;

  left: 20px;
}

.service-5 {

  bottom: 30px;

  right: 20px;
}

/* =========================================================
CONNECTOR LINES
========================================================= */

.service-box::before {

  content: "";

  position: absolute;

  width: 40px;
  height: 2px;

  background:
    rgba(99, 91, 255, .15);
}

.service-2::before {

  right: -40px;

  top: 50%;
}

.service-3::before {

  left: -40px;

  top: 50%;
}

.service-1::before {

  width: 2px;
  height: 40px;

  left: 50%;

  bottom: -40px;
}

.service-4::before {

  width: 2px;
  height: 40px;

  top: -40px;

  left: 50%;
}

.service-5::before {

  width: 2px;
  height: 40px;

  top: -40px;

  left: 50%;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px) {

  .msf-services-visual {

    height: auto;

    display: grid;

    gap: 20px;
  }

  .service-core,
  .service-box {

    position: relative;

    transform: none !important;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    margin: auto;
  }

  .service-box::before {

    display: none;
  }

}

/* =========================================================
CENTER CORE
========================================================= */

.service-core {

  width: 260px;
  height: 260px;

  border-radius: 40px;

  background:
    linear-gradient(135deg,
      #635BFF,
      #8B7DFF);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  color: white;

  box-shadow:
    0 30px 80px rgba(99, 91, 255, .25);

  position: relative;

  z-index: 5;
}

.core-logo img {

  width: 90px;

  margin-bottom: 20px;
}

.service-core h4 {

  font-size: 1.5rem;

  font-weight: 700;
}

/* =========================================================
SERVICE BOXES
========================================================= */

.service-box {

  position: absolute;

  width: 190px;

  padding: 20px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, .92);

  backdrop-filter: blur(20px);

  display: flex;

  align-items: center;

  gap: 14px;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, .08);

  transition: .4s;

  border:
    1px solid rgba(255, 255, 255, .8);
}

.service-box:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 30px 70px rgba(99, 91, 255, .15);
}

.service-box svg {

  width: 24px;
  height: 24px;

  color: #635BFF;

  flex-shrink: 0;
}

.service-box span {

  font-weight: 600;

  color: #0f172a;
}

/* =========================================================
POSITIONS
========================================================= */

.service-1 {

  top: 30px;

  left: 50%;

  transform:
    translateX(-50%);
}

.service-2 {

  left: 0;

  top: 50%;

  transform:
    translateY(-50%);
}

.service-3 {

  right: 0;

  top: 50%;

  transform:
    translateY(-50%);
}

.service-4 {

  bottom: 30px;

  left: 20%;
}

.service-5 {

  bottom: 30px;

  right: 20%;
}

/* =========================================================
CONNECTING LINES
========================================================= */

.service-core::before {

  content: "";

  position: absolute;

  inset: -70px;

  border-radius: 50%;

  border:
    1px dashed rgba(99, 91, 255, .2);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .msf-services-wrapper {

    grid-template-columns: 1fr;

    gap: 80px;
  }

  .msf-services-content {

    text-align: center;
  }

  .msf-services-description {

    margin-left: auto;
    margin-right: auto;
  }

  .msf-services-buttons {

    justify-content: center;
  }
}

@media(max-width:768px) {

  .msf-services-visual {

    height: auto;

    display: grid;

    gap: 20px;
  }

  .service-core,
  .service-box {

    position: relative;

    transform: none !important;

    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    margin: auto;
  }

  .service-core::before {

    display: none;
  }
}

/* =========================================================
   MSF CORE SERVICES
========================================================= */

.msf-core-services {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0),
      rgba(124, 58, 237, 0.03));
}



/* =========================================================
   SECTION HEADING
========================================================= */

.msf-core-services-heading {

  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}



/* =========================================================
   BADGE
========================================================= */

.msf-core-services-badge {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  margin-inline: auto;

  border-radius: 999px;
}

.msf-core-services-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* =========================================================
   GRID
========================================================= */

.msf-core-services-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 70px;
}



/* =========================================================
   FEATURED CARD
========================================================= */

.msf-featured-service-card {

  position: relative;

  grid-column: span 2;

  overflow: hidden;

  padding: 42px;

  border-radius: 34px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  border:
    1px solid rgba(124, 58, 237, 0.10);

  transition: var(--transition);
}



/* HOVER */

.msf-featured-service-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 30px 80px rgba(91, 82, 255, 0.14);
}



/* =========================================================
   FEATURED CONTENT
========================================================= */

.msf-featured-service-content {

  display: flex;

  align-items: flex-start;

  gap: 28px;
}



/* =========================================================
   FEATURED ICON
========================================================= */

.msf-featured-service-icon {

  min-width: 96px;

  width: 96px;
  height: 96px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 28px;

  background:
    rgba(255, 255, 255, 0.72);

  color: var(--primary);

  box-shadow:
    0 15px 40px rgba(91, 82, 255, 0.08);
}



/* SVG */

.msf-featured-service-icon svg {

  width: 42px;
  height: 42px;
}



/* =========================================================
   FEATURED TEXT
========================================================= */

.msf-featured-service-text span {

  display: inline-block;

  margin-bottom: 14px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: .5px;

  color: var(--primary);
}

.msf-featured-service-text h3 {

  font-size: 42px;

  line-height: 1.05;

  letter-spacing: -2px;

  margin-bottom: 18px;
}

.msf-featured-service-text p {

  max-width: 520px;

  line-height: 1.9;
}



/* =========================================================
   SERVICE CARD
========================================================= */

.msf-service-card {

  position: relative;

  overflow: hidden;

  padding: 36px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(255, 255, 255, 0.6);

  transition: .45s cubic-bezier(.19, 1, .22, 1);
}



/* TOP GLOW */

.msf-service-card::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(90deg,
      var(--primary),
      var(--primary-light));

  opacity: 0;

  transition: var(--transition);
}



/* HOVER */

.msf-service-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.08);
}

.msf-service-card:hover::before {

  opacity: 1;
}



/* =========================================================
   SERVICE ICON
========================================================= */

.msf-service-icon {

  width: 76px;
  height: 76px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);

  transition: var(--transition);
}



/* SVG */

.msf-service-icon svg {

  width: 32px;
  height: 32px;

  transition: var(--transition);
}



/* HOVER ICON */

.msf-service-card:hover .msf-service-icon {

  transform:
    rotate(-6deg) scale(1.06);

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;
}



/* =========================================================
   TITLE
========================================================= */

.msf-service-card h4 {

  margin-bottom: 16px;

  font-size: 24px;

  line-height: 1.3;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-service-card p {

  line-height: 1.9;

  font-size: 16px;
}



/* =========================================================
   LINK
========================================================= */

.msf-service-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 24px;

  font-size: 15px;

  font-weight: 700;

  color: var(--primary);

  transition: var(--transition);
}



/* HOVER */

.msf-service-link:hover {

  transform: translateX(4px);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

  .msf-core-services-grid {

    grid-template-columns: repeat(2, 1fr);
  }

  .msf-featured-service-card {

    grid-column: span 2;
  }

}



@media(max-width:768px) {

  .msf-core-services {

    padding: 80px 0;
  }

  .msf-core-services-grid {

    grid-template-columns: 1fr;
  }

  .msf-featured-service-card {

    grid-column: span 1;

    padding: 34px;
  }

  .msf-featured-service-content {

    flex-direction: column;
  }

  .msf-featured-service-text h3 {

    font-size: 34px;
  }

}



@media(max-width:576px) {

  .msf-service-card {

    padding: 28px;
  }

  .msf-featured-service-icon {

    width: 82px;
    height: 82px;
  }

  .msf-service-icon {

    width: 68px;
    height: 68px;
  }

}

/* =========================================================
   MSF WORKING PROCESS
========================================================= */

.msf-working-process {

  position: relative;

  padding: 70px 0;
}



/* =========================================================
   SECTION HEADING
========================================================= */

.msf-process-heading {

  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}



/* BADGE */

.msf-process-badge {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  margin-inline: auto;

  border-radius: 999px;
}

.msf-process-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* =========================================================
   TIMELINE
========================================================= */

.msf-process-timeline {

  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin-top: 80px;
}



/* LINE */

.msf-process-timeline::before {

  content: '';

  position: absolute;

  top: 42px;
  left: 10%;

  width: 80%;
  height: 2px;

  background:
    linear-gradient(90deg,
      rgba(124, 58, 237, 0.2),
      rgba(59, 130, 246, 0.2));
}



/* =========================================================
   STEP
========================================================= */

.msf-process-step {

  position: relative;

  z-index: 2;
}



/* NUMBER */

.msf-process-number {

  width: 84px;
  height: 84px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-inline: auto;
  margin-bottom: 30px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;

  font-size: 22px;

  font-weight: 800;

  box-shadow:
    0 20px 50px rgba(91, 82, 255, 0.18);
}



/* =========================================================
   CARD
========================================================= */

.msf-process-card {

  padding: 34px;

  border-radius: 30px;

  text-align: center;

  transition: .45s cubic-bezier(.19, 1, .22, 1);
}



/* HOVER */

.msf-process-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.08);
}



/* =========================================================
   ICON
========================================================= */

.msf-process-icon {

  width: 78px;
  height: 78px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-inline: auto;
  margin-bottom: 24px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);

  transition: var(--transition);
}



/* SVG */

.msf-process-icon svg {

  width: 34px;
  height: 34px;
}



/* HOVER */

.msf-process-card:hover .msf-process-icon {

  transform:
    rotate(-6deg) scale(1.05);

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;
}



/* =========================================================
   TITLE
========================================================= */

.msf-process-card h4 {

  margin-bottom: 16px;

  font-size: 24px;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-process-card p {

  font-size: 16px;

  line-height: 1.9;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

  .msf-process-timeline {

    grid-template-columns: repeat(2, 1fr);
  }

  .msf-process-timeline::before {

    display: none;
  }

}



@media(max-width:768px) {

  .msf-working-process {

    padding: 80px 0;
  }

  .msf-process-timeline {

    grid-template-columns: 1fr;

    gap: 24px;
  }

}



@media(max-width:576px) {

  .msf-process-card {

    padding: 28px;
  }

  .msf-process-number {

    width: 74px;
    height: 74px;

    font-size: 20px;
  }

}

/* =========================================================
   MSF SECURITY SECTION
========================================================= */

.msf-security-section {

  position: relative;

  overflow: hidden;

  padding: 70px 0;

  background:
    linear-gradient(180deg,
      rgba(124, 58, 237, 0.03),
      rgba(59, 130, 246, 0.04));
}



/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.msf-security-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;
}

.msf-security-shape-one {

  top: -120px;
  left: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(124, 58, 237, 0.12);
}

.msf-security-shape-two {

  bottom: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(59, 130, 246, 0.10);
}



/* =========================================================
   HEADING
========================================================= */

.msf-security-heading {

  position: relative;

  z-index: 2;

  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}



/* =========================================================
   BADGE
========================================================= */

.msf-security-badge {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  margin-inline: auto;

  border-radius: 999px;
}

.msf-security-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* =========================================================
   GRID
========================================================= */

.msf-security-grid {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  margin-top: 70px;
}



/* =========================================================
   CARD
========================================================= */

.msf-security-card {

  position: relative;

  overflow: hidden;

  padding: 40px;

  border-radius: 32px;

  background:
    rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(24px);

  border:
    1px solid rgba(255, 255, 255, 0.6);

  transition:
    .45s cubic-bezier(.19, 1, .22, 1);
}



/* TOP BORDER */

.msf-security-card::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(90deg,
      var(--primary),
      var(--primary-light));

  opacity: 0;

  transition: var(--transition);
}



/* HOVER */

.msf-security-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.08);
}

.msf-security-card:hover::before {

  opacity: 1;
}



/* =========================================================
   ICON
========================================================= */

.msf-security-icon {

  width: 82px;
  height: 82px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);

  transition: var(--transition);
}



/* SVG */

.msf-security-icon svg {

  width: 34px;
  height: 34px;

  transition: var(--transition);
}



/* HOVER */

.msf-security-card:hover .msf-security-icon {

  transform:
    rotate(-6deg) scale(1.05);

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;
}



/* =========================================================
   TITLE
========================================================= */

.msf-security-card h4 {

  margin-bottom: 16px;

  font-size: 28px;

  line-height: 1.3;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-security-card p {

  font-size: 16px;

  line-height: 1.9;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .msf-security-grid {

    grid-template-columns: 1fr;
  }

}



@media(max-width:768px) {

  .msf-security-section {

    padding: 80px 0;
  }

}



@media(max-width:576px) {

  .msf-security-card {

    padding: 30px;
  }

  .msf-security-icon {

    width: 74px;
    height: 74px;
  }

}

/* =========================================================
   MSF PLATFORM SECTION
========================================================= */

.msf-platform-section {

  position: relative;

  padding: 70px 0;
}



/* =========================================================
   HEADING
========================================================= */

.msf-platform-heading {

  max-width: 760px;

  margin-inline: auto;

  text-align: center;
}



/* =========================================================
   BADGE
========================================================= */

.msf-platform-badge {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  margin-inline: auto;

  border-radius: 999px;
}

.msf-platform-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* =========================================================
   GRID
========================================================= */

.msf-platform-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 70px;
}



/* =========================================================
   CARD
========================================================= */

.msf-platform-card {

  position: relative;

  overflow: hidden;

  padding: 38px;

  border-radius: 32px;

  transition:
    .45s cubic-bezier(.19, 1, .22, 1);
}



/* HOVER */

.msf-platform-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.08);
}



/* =========================================================
   LARGE CARD
========================================================= */

.msf-platform-large {

  grid-column: span 2;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.08),
      rgba(59, 130, 246, 0.06));
}



/* =========================================================
   WIDE CARD
========================================================= */

.msf-platform-wide {

  grid-column: span 2;

  display: flex;

  align-items: center;

  gap: 28px;
}



/* =========================================================
   ICON
========================================================= */

.msf-platform-icon {

  width: 84px;
  height: 84px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 26px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);

  transition: var(--transition);
}



/* SVG */

.msf-platform-icon svg {

  width: 38px;
  height: 38px;

  transition: var(--transition);
}



/* HOVER */

.msf-platform-card:hover .msf-platform-icon {

  transform:
    rotate(-6deg) scale(1.05);

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;
}



/* =========================================================
   TITLE
========================================================= */

.msf-platform-card h3,
.msf-platform-card h4 {

  margin-bottom: 16px;

  line-height: 1.2;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-platform-card p {

  font-size: 16px;

  line-height: 1.9;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

  .msf-platform-grid {

    grid-template-columns: repeat(2, 1fr);
  }

  .msf-platform-large,
  .msf-platform-wide {

    grid-column: span 2;
  }

}



@media(max-width:768px) {

  .msf-platform-section {

    padding: 80px 0;
  }

  .msf-platform-grid {

    grid-template-columns: 1fr;
  }

  .msf-platform-large,
  .msf-platform-wide {

    grid-column: span 1;
  }

  .msf-platform-wide {

    flex-direction: column;

    align-items: flex-start;
  }

}



@media(max-width:576px) {

  .msf-platform-card {

    padding: 30px;
  }

  .msf-platform-icon {

    width: 74px;
    height: 74px;
  }

}

/* =========================================================
   MSF FINAL CTA
========================================================= */

.msf-final-cta {

  position: relative;

  overflow: hidden;

  padding: 70px 0;
}



/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.msf-cta-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  z-index: 0;
}

.msf-cta-shape-one {

  top: -120px;
  left: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(124, 58, 237, 0.14);
}

.msf-cta-shape-two {

  bottom: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(59, 130, 246, 0.12);
}



/* =========================================================
   WRAPPER
========================================================= */

.msf-final-cta-wrapper {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1.2fr .8fr;

  gap: 60px;

  align-items: center;

  padding: 70px;

  border-radius: 40px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.08),
      rgba(59, 130, 246, 0.06));

  border:
    1px solid rgba(124, 58, 237, 0.08);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.06);
}



/* =========================================================
   CONTENT
========================================================= */

.msf-final-cta-content {

  max-width: 620px;
}



/* =========================================================
   BADGE
========================================================= */

.msf-final-cta-badge {

  width: fit-content;

  padding: 14px 22px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.7);

  border:
    1px solid rgba(255, 255, 255, 0.6);

  font-size: 14px;

  font-weight: 700;

  color: var(--primary);

  box-shadow: var(--shadow-sm);
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-final-cta-content p {

  max-width: 540px;

  line-height: 1.9;
}



/* =========================================================
   BUTTONS
========================================================= */

.msf-final-cta-buttons {

  display: flex;

  align-items: center;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 40px;
}



/* =========================================================
   SECONDARY BUTTON
========================================================= */

.msf-final-cta-btn-secondary {

  height: 45px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding-inline: 34px;

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.75);

  border:
    1px solid rgba(255, 255, 255, 0.6);

  box-shadow: var(--shadow-sm);

  font-size: 15px;

  font-weight: 600;

  transition: var(--transition);
}



/* HOVER */

.msf-final-cta-btn-secondary:hover {

  transform: translateY(-4px);

  box-shadow: var(--shadow-md);
}



/* =========================================================
   STATS
========================================================= */

.msf-final-cta-stats {

  display: flex;

  flex-direction: column;

  gap: 24px;
}



/* =========================================================
   CARD
========================================================= */

.msf-final-cta-card {

  padding: 30px;

  border-radius: 28px;

  text-align: center;

  transition:
    .45s cubic-bezier(.19, 1, .22, 1);
}



/* HOVER */

.msf-final-cta-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.08);
}



/* =========================================================
   TITLE
========================================================= */

.msf-final-cta-card h3 {

  margin-bottom: 10px;

  font-size: 34px;

  color: var(--primary);
}



/* =========================================================
   DESCRIPTION
========================================================= */

.msf-final-cta-card p {

  font-size: 15px;

  line-height: 1.8;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .msf-final-cta-wrapper {

    grid-template-columns: 1fr;

    padding: 50px;
  }

}



@media(max-width:768px) {

  .msf-final-cta {

    padding: 80px 0;
  }

  .msf-final-cta-wrapper {

    padding: 40px 30px;
  }

}



@media(max-width:576px) {

  .msf-final-cta-buttons {

    flex-direction: column;
  }

  .msf-final-cta-btn-secondary,
  .btn-primary {

    width: 100%;
  }

}

/* =========================================================
   FAQ HERO
========================================================= */

.msf-faq-hero {

  position: relative;

  overflow: hidden;

  padding: 180px 0 100px;
}



/* =========================================================
   SHAPES
========================================================= */

.msf-faq-shape {

  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;
}

.msf-faq-shape-one {

  top: -120px;
  left: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(124, 58, 237, 0.12);
}

.msf-faq-shape-two {

  bottom: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background:
    rgba(59, 130, 246, 0.10);
}



/* =========================================================
   WRAPPER
========================================================= */

.msf-faq-hero-wrapper {

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 1fr .7fr;

  gap: 60px;

  align-items: center;
}



/* =========================================================
   BADGE
========================================================= */

.msf-faq-badge {

  width: fit-content;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 22px;

  border-radius: 999px;
}

.msf-faq-badge span {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  box-shadow:
    0 0 0 8px rgba(91, 82, 255, 0.12);
}



/* =========================================================
   CONTENT
========================================================= */

.msf-faq-content p {

  max-width: 560px;

  line-height: 1.9;
}



/* =========================================================
   INFO CARD
========================================================= */

.msf-faq-info-card {

  padding: 40px;

  border-radius: 32px;
}



/* ICON */

.msf-faq-info-icon {

  width: 84px;
  height: 84px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 28px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);
}

.msf-faq-info-card p {

  line-height: 1.9;

  margin: 18px 0 30px;
}



/* =========================================================
   FAQ SECTION
========================================================= */

.msf-faq-section {

  padding: 40px 0 120px;
}



/* =========================================================
   GRID
========================================================= */

.msf-faq-grid {

  display: flex;

  flex-direction: column;

  gap: 24px;

  max-width: 900px;

  margin-inline: auto;
}



/* =========================================================
   ITEM
========================================================= */

.msf-faq-item {

  overflow: hidden;

  border-radius: 28px;

  transition: var(--transition);
}



/* =========================================================
   QUESTION
========================================================= */

.msf-faq-question {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 30px;

  background: transparent;

  border: none;

  cursor: pointer;

  text-align: left;
}



/* TEXT */

.msf-faq-question span {

  font-size: 22px;

  font-weight: 700;

  line-height: 1.4;
}



/* =========================================================
   ICON
========================================================= */

.msf-faq-icon {

  min-width: 50px;

  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 16px;

  background:
    linear-gradient(135deg,
      rgba(124, 58, 237, 0.10),
      rgba(59, 130, 246, 0.08));

  color: var(--primary);

  font-size: 26px;

  font-weight: 700;

  transition: var(--transition);
}



/* =========================================================
   ANSWER
========================================================= */

.msf-faq-answer {

  max-height: 0;

  overflow: hidden;

  transition: .4s ease;
}



/* ACTIVE */

.msf-faq-item.active .msf-faq-answer {

  max-height: 300px;
}

.msf-faq-item.active .msf-faq-icon {

  transform: rotate(45deg);

  background:
    linear-gradient(135deg,
      var(--primary),
      var(--primary-light));

  color: white;
}



/* ANSWER TEXT */

.msf-faq-answer p {

  padding: 0 30px 30px;

  line-height: 1.9;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px) {

  .msf-faq-hero-wrapper {

    grid-template-columns: 1fr;
  }

}



@media(max-width:768px) {

  .msf-faq-hero {

    padding: 150px 0 80px;
  }

  .msf-faq-section {

    padding: 20px 0 80px;
  }

  .msf-faq-question span {

    font-size: 20px;
  }

}



@media(max-width:576px) {

  .msf-faq-question {

    padding: 24px;
  }

  .msf-faq-answer p {

    padding: 0 24px 24px;
  }

  .msf-faq-info-card {

    padding: 30px;
  }

}

/* ==========================================
   CERTIFICATIONS SECTION
========================================== */

.certifications {

  padding: 120px 0;

  position: relative;

  background:
    linear-gradient(180deg,
      #ffffff,
      #f8f8fd);

  overflow: hidden;
}

.trust-title {

  font-size: clamp(56px, 4.8vw, 60px);

  font-weight: 800;

  line-height: .9;

  letter-spacing: -3px;

  max-width: 900px;

  margin: 0 auto 20px;

  text-align: center;

  color: #071133;
}

.trust-title span {

  display: block;

  background:
    linear-gradient(135deg,
      #5b52ff,
      #8b7fff);

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
}

.cert-watermark {

  position: absolute;

  top: 120px;

  left: 50%;

  transform: translateX(-50%);

  font-size: 220px;

  font-weight: 900;

  letter-spacing: -10px;

  color: rgba(91, 82, 255, .06);

  z-index: 0;

  pointer-events: none;

  user-select: none;

  white-space: nowrap;
}

.cert-watermark {

  background:
    linear-gradient(90deg,
      rgba(91, 82, 255, .03),
      rgba(91, 82, 255, .12),
      rgba(91, 82, 255, .03));

  background-size: 300% 100%;

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;

  animation:
    watermarkShine 8s linear infinite;
}

@keyframes watermarkShine {

  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 300% 50%;
  }
}

.certificate-card {

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.certificate-card:hover {

  transform:
    translateY(-12px);

  box-shadow:
    0 30px 80px rgba(91, 82, 255, .15);
}

/* ==========================================
   GRID
========================================== */

.certifications-grid {

  display: grid;

  grid-template-columns:
    repeat(3, minmax(280px, 380px));

  justify-content: center;

  gap: 30px;

  margin-top: 70px;
}

/* ==========================================
   CARD
========================================== */

.certificate-card {

  background: #fff;

  border: 1px solid rgba(91, 82, 255, .08);

  border-radius: 28px;

  padding: 40px;

  min-height: 340px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  position: relative;

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border-color .4s ease;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .04);
}

.certificate-card:hover {

  transform:
    translateY(-10px);

  border-color:
    rgba(91, 82, 255, .25);

  box-shadow:
    0 30px 80px rgba(91, 82, 255, .12);
}

/* ==========================================
   IMAGE
========================================== */

.certificate-card img {

  width: 110px;

  height: 110px;

  object-fit: contain;

  display: block;

  margin: 0 auto 24px;
}

/* ==========================================
   TITLE
========================================== */

.certificate-card h3 {

  font-size: 32px;

  font-weight: 700;

  line-height: 1.2;

  color: #071133;

  margin-bottom: 14px;
}

/* ==========================================
   DESCRIPTION
========================================== */

.certificate-card p {

  font-size: 17px;

  line-height: 1.8;

  color: #6b7280;

  max-width: 280px;

  margin: 0 auto;
}

/* ==========================================
   FEATURED CARD
========================================== */

.featured {

  border: 2px solid #5b52ff;

  box-shadow:
    0 25px 80px rgba(91, 82, 255, .12);
}

.featured:hover {

  transform:
    translateY(-12px);

  box-shadow:
    0 35px 100px rgba(91, 82, 255, .18);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px) {

  .certifications-grid {

    grid-template-columns:
      repeat(2, minmax(280px, 380px));
  }
}

@media(max-width:768px) {

  .certifications {

    padding: 80px 0;
  }

  .certifications-grid {

    grid-template-columns: 1fr;

    max-width: 420px;

    margin: 60px auto 0;
  }

  .certificate-card {

    min-height: auto;

    padding: 35px;
  }

  .certificate-card h3 {

    font-size: 26px;
  }

  .certificate-card p {

    font-size: 16px;
  }
}

.video-showcase-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left,
      rgba(99, 102, 241, .08),
      transparent 40%),
    radial-gradient(circle at bottom right,
      rgba(139, 92, 246, .08),
      transparent 40%),
    #ffffff;
}

.videoSwiper {
  margin-top: 60px;
  padding-bottom: 80px;
}

.video-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  transition: .4s;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(99, 102, 241, .12);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}

.video-duration {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}

.video-content {
  padding: 24px;
}

.video-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.video-content p {
  color: #64748b;
  line-height: 1.7;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
}

.close-video {
  position: absolute;
  right: -10px;
  top: -50px;
  border: none;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}