/* Preferred family (others commented in original kept intentional) */
@font-face {
  font-family: 'Basier Square';
  src: url('https://www.casefox.com/assets/font/BasierSquare-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Global Tokens */
:root {
  /* Typography */
  --default-font: 'Basier Square', sans-serif;
  --heading-font: 'Basier Square', sans-serif;
  --nav-font: 'Basier Square', sans-serif;
  --body-font-weight: 400;

  /* Palette */
  --background-color: #F8F9FB;
  --default-color: #0a0a0a;
  --heading-color: #0B3558;
  --accent-color: #0066f2;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav palette */
  --nav-color: #212529;
  --nav-hover-color: #0058D3;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd;

  /* Motion */
  scroll-behavior: smooth;
}

/* Color presets */
.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #0058D3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0058D3;
  --contrast-color: #ffffff;
}

/* Base */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: var(--body-font-weight);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */

.header {
  margin-top: 10px;
  color: var(--default-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.header .header-container {
  background-color: rgba(255, 255, 255, 0.807);
  border-radius: 15px;
  border: 2px solid rgba(0, 4, 255, 0.100);
  padding: 5px 25px;
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Scrolled state */
.scrolled .header { background-color: #ffffff00; }
.scrolled .header .logo h1 { color: #2d405f; }
.scrolled .navmenu ul li a,
.scrolled .navmenu ul li a:focus { color: #2d405f; }
.scrolled .navmenu ul li:hover > a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus { color: var(--accent-color); }
.scrolled .mobile-nav-toggle { color: #2d405f; }

/* Logo */
.header .logo {
  line-height: 1;
  padding-left: 5px;
  display: flex;
  align-items: center;
}
.header .logo img { max-height: 50px; margin-right: 0; }
.header .logo h1 {
  font-size: 24px; margin: 0; font-weight: 500;
  color: var(--default-color); transition: color 0.3s;
}

/* Buttons */
.header .btn-getstarted,
.header .btn-getstarted:focus { border: none; cursor: pointer; }
.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover { color: var(--contrast-color); }

.header .bbtn-getstarted,
.header .bbtn-getstarted:focus {
  color: var(--contrast-color);
  background: linear-gradient(to right, #350091 0%, #0a93e4 100%);
  font-size: 14px;
  padding: 10px 20px;
  margin: 0;
  border-radius: 7px;
  transition: 0.3s;
  border: none; cursor: pointer;
  font-family: var(--nav-font);
}
.header .bbtn-getstarted:hover,
.header .bbtn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Desktop Nav */
@media (min-width: 1210px) {
  .navmenu { padding: 0; }
  .navmenu ul {
    margin: 0; padding: 0; display: flex; list-style: none; align-items: center;
  }
  .navmenu li { position: relative; }
  .navmenu a,
  .navmenu a:focus {
    color: #10021c;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navmenu a i,
  .navmenu a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; transition: 0.3s; }
  .navmenu li:last-child a { padding-right: 0; }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus { color: #5d07a8a0; }

  /* Dropdown */
  .navmenu .dropdown ul{
    margin:0; padding:10px 0; display:block; position:absolute; visibility:hidden;
    left:14px; top:130%; opacity:0; transition:0.3s; border-radius:4px; z-index:99;
  }
  .navmenu .dropdown ul li { min-width: 200px; }
  .navmenu .dropdown ul a { padding:10px 20px; font-size:15px; }
  .navmenu .dropdown ul a i { font-size:12px; }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a { color: var(--nav-dropdown-hover-color); }
  .navmenu .dropdown:hover > ul { opacity:1; top:100%; visibility:visible; }
  .navmenu .dropdown .dropdown ul { top:0; left:-90%; visibility:hidden; }
  .navmenu .dropdown .dropdown:hover > ul { opacity:1; top:0; left:-100%; visibility:visible; }
}

/* Mobile Nav */
@media (max-width: 1210px) {
  .mobile-nav-toggle {
    color:#5c07a8; font-size:28px; line-height:0; margin-right:10px;
    cursor:pointer; transition:color .3s; display:block;
  }
  .navmenu { padding:0; z-index:9997; }
  .navmenu ul{
    display:none; list-style:none; position:absolute; inset:60px 20px 20px 20px;
    padding:10px 0; margin:0; border-radius:6px; background:var(--nav-mobile-background-color);
    overflow-y:auto; transition:.3s; z-index:9998; box-shadow:0 0 30px rgba(0,0,0,.1);
  }
  .navmenu a,
  .navmenu a:focus{
    color:var(--nav-dropdown-color); padding:10px 20px; font-family:var(--nav-font);
    font-size:17px; font-weight:500; display:flex; align-items:center; justify-content:space-between;
    white-space:nowrap; transition:.3s; text-decoration:none;
  }
  .navmenu a i,
  .navmenu a:focus i{
    font-size:12px; line-height:0; margin-left:5px; width:30px; height:30px; display:flex;
    align-items:center; justify-content:center; border-radius:50%;
    transition:.3s; background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover{ background-color: var(--accent-color); color: var(--contrast-color); }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{ color: var(--nav-dropdown-hover-color); }
  .navmenu .active i,
  .navmenu .active:focus i{ background-color: var(--accent-color); color: var(--contrast-color); transform: rotate(180deg); }
  .navmenu .dropdown ul{
    position:static; display:none; z-index:99; padding:10px 0; margin:10px 20px;
    background:var(--nav-dropdown-background-color);
    border:1px solid color-mix(in srgb, var(--default-color), transparent 90%); box-shadow:none;
    transition:all .5s ease-in-out;
  }
  .navmenu .dropdown ul ul{ background-color: rgba(33,37,41,0.1); }
  .navmenu .dropdown > .dropdown-active { display:block; background-color: rgba(33,37,41,0.03); }

  .mobile-nav-active { overflow:hidden; }
  .mobile-nav-active .mobile-nav-toggle{
    color:#2d405f; position:absolute; font-size:32px; top:15px; right:15px; margin-right:0; z-index:9999;
  }
  .mobile-nav-active .navmenu{
    position:fixed; overflow:hidden; inset:0; background:rgba(33,37,41,.8); transition:.3s;
  }
  .mobile-nav-active .navmenu > ul { display:block; }

  .scrolled .mobile-nav-toggle { color:#2d405f; }
  .scrolled.mobile-nav-active .mobile-nav-toggle { color:#2d405f; }
}

/* Header responsive tweaks */
@media (max-width: 1200px) {
  .header { padding-top: 0; }
  .header .header-container { margin-left:0; margin-right:0; padding:10px 5px 10px 15px; }
  .header .logo { order:1; }
  .header .btn-getstarted { order:2; margin:0 -10px 0 0; padding:6px 15px; margin-top:5px; }
  .navmenu { order:3; }
}

/* Login link */
.login-btn {
  display:inline-flex; align-items:center; text-decoration:none; color:#093444;
  font-size:16px; margin-right:8px; font-family:sans-serif;
}
.login-btn i { color:#093444; font-size:20px; margin-right:8px; }
.login-btn:hover { text-decoration: underline; }
@media (max-width: 499px) { .login-btn { display: none; } }

/* Utility containers (kept values exact) */
.ccustom-section{
  padding: 0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-380px; padding-bottom:20px;
}
@media (max-width:768px){
  .ccustom-section{
    padding:0; background-color:#ffffff00; border-radius:20px;
    border-top:3px solid rgba(255,255,255,0); margin-left:0; margin-top:-42px;
  }
}
.custom-section{
  padding:0 40px; padding-top:20px; background:#ffffff; border-radius:20px;
  border-top:3px solid rgb(7,7,77); margin-left:-272px; padding-bottom:15px;
}
.custom-container{
  max-width:1000px; min-width:1200px; margin:auto; display:flex; justify-content:space-between; gap:30px;
}
.custom-column{ width:30%; }
.custom-heading{
  font-weight:600; background:#f3f4f6; color:#374151; padding:8px 12px; border-radius:6px;
  margin-bottom:10px; font-size:16px; margin-left:-5px;
}
.custom-heading.custom-active{ background:#e5e7eb; }
.custom-item{ margin-bottom:-5px; }
.custom-title{
  display:inline-block; font-weight:600; color:#0f172a; text-decoration:none; font-size:15px; margin-left:-20px;
}
.custom-title:hover{ text-decoration: underline; }
.custom-item p{ color:#6b7280; font-size:11px; margin:-4px 0 0; }
.custom-see-all{ color:#6b7280; font-size:14px; text-decoration:none; }
.custom-see-all:hover{ text-decoration: underline; }
.custom-column img{ max-width:300px; height:auto; border-radius:10px; display:block; }
@media (max-width:768px){
  .custom-column img{ display:none; }
  .custom-section{
    padding:0; background:#ffffff00; border-radius:20px; border-top:3px solid rgba(255,255,255,0);
    margin-left:0; margin-top:-42px;
  }
  .custom-title{ margin-top:-25px; }
}
@media (max-width:910px){
  .custom-container{ flex-direction:column; }
  .custom-column{ width:100%; }
  .custom-item{ margin-bottom:5px; padding:10px; max-width:25%; }
}

@media(max-width:576px){
  .heading-sec{
    font-size:25px;
    text-align:center;
  }
}
/* =========================================================
   FOOTER
   ========================================================= */

.footer-v2{
  background-image:url('https://www.casefox.com/assets/img/footer-bg.png');
  font-size:15px; background-size:cover; color:#111;
}
.footer-v2 h5{ font-weight:600; color:#111; margin-bottom:16px; }
.footer-v2 ul{ list-style:none; padding-left:0; }
.footer-v2 ul li{ margin-bottom:10px; }
.footer-v2 ul li a{ text-decoration:none; color:#111; }
.footer-v2 ul li a:hover,
.footer-v2 .contact-sales{ text-decoration: underline; }
.footer-v2 .footer-top{ padding:60px 0; }
.footer-v2 .footer-bottom{
  background:#fff; padding:20px 0; border-top:1px solid #cfd8e1; font-size:14px;
}
.footer-v2 .social-icons a{
  margin-right:15px; color:#111; font-size:20px; display:inline-flex; align-items:center; gap:6px; text-decoration:none;
}
.footer-v2 .legal-links{ text-align:center; flex-grow:1; margin-top:10px; margin-left:0; }
.footer-v2 .legal-links a{ margin:0 12px; color:#111; text-decoration:none; }
.footer-v2 .app-buttons{ display:flex; gap:10px; }
.footer-v2 .app-buttons img{ height:40px; }
.footer-v2 .arrow{ font-weight:500; margin-left:5px; }
.footer-v2 .emoji{ font-size:16px; }
@media (max-width:768px){
  .footer-v2 .footer-bottom .container{ flex-direction:column; align-items:center; text-align:center; gap:20px; }
  .footer-v2 .legal-links a{ display:inline-block; margin:6px; }
  .footer-v2 .app-buttons{ justify-content:center; }
}

/* =========================================================
   UTILITIES (Scroll top, AOS mobile)
   ========================================================= */

.scroll-top{
  position:fixed; visibility:hidden; opacity:0; right:15px; bottom:-15px; z-index:99999;
  background-color:var(--accent-color); width:44px; height:44px; border-radius:50px; transition:all .4s;
}
.scroll-top i{ font-size:24px; color:var(--contrast-color); line-height:0; }
.scroll-top:hover{ background-color: color-mix(in srgb, var(--accent-color), transparent 20%); color: var(--contrast-color); }
.scroll-top.active{ visibility:visible; opacity:1; bottom:15px; }
@media screen and (max-width:768px){ [data-aos-delay]{ transition-delay:0 !important; } }

/* =========================================================
   SECTIONS & TITLES
   ========================================================= */

section,.section{
  color:var(--default-color); background-color:var(--background-color);
  padding: 140px 0; scroll-margin-top:90px; overflow:clip;
}
@media (max-width:1199px){ section,.section{ scroll-margin-top:66px; } }

/* =========================================================
   NDA STRIP
   ========================================================= */
.ledes-info-section {
  padding-top: 50px !important;
  padding-bottom: 60px !important;
}

.ledes-info-section .heading-sec {
  margin-bottom: 14px;
}

.ledes-info-section .ls-sub {
  margin: 0 0 34px;
  text-align: center;
}

.ledes-container {
  max-width: 1295px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 34px;
  padding: 42px 42px 42px 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eaf2ff 0%, #dce9ff 55%, #d4e3ff 100%);
  box-shadow:
    0 10px 30px rgba(38, 74, 150, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  position: relative;
}

.ledes-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 38%);
  pointer-events: none;
}

.ledes-visual {
  flex: 1 1 49%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
}

.ledes-visual img {
  position: relative;
  z-index: 1;
  scale:0.9;
  width: 100%;
  max-width: 610px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(18, 50, 120, 0.14));
}

.ledes-content {
  flex: 1 1 51%;
  max-width: 560px;
  position: relative;
  z-index: 1;
  padding: 36px 0;
}

.ledes-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.ledes-tab {
  border: 1px solid rgba(20, 67, 160, 0.10);
  background: rgba(255, 255, 255, 0.78);
  color: #234;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(31, 65, 133, 0.08);
  cursor: pointer;
  transition: all 0.28s ease;
  backdrop-filter: blur(8px);
}

.ledes-tab:hover,
.ledes-tab.active {
  background: #ffffff;
  color: #0b3558;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(31, 65, 133, 0.12);
}

.ledes-content h2 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.08;
  font-weight: 750;
  color: #081122;
  letter-spacing: -0.02em;
}

.ledes-content p {
  margin: 0 0 34px;
  max-width: 520px;
  font-size: 19px;
  line-height: 1.8;
  color: #2b3a55;
}

.ledes-line-wrap {
   position: relative;
  width: 100%;
  max-width: 520px;
  height: 4px;
  background: rgba(58, 84, 136, 0.18);
  border-radius: 999px;
  overflow: hidden;
}

.active-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2f5bff 0%, #6b8cff 100%);
  border-radius: 999px;
  transform: translateX(0);
}

/* =========================
   LEDES section responsive
   ========================= */

/* Large tablet */
@media (max-width: 1199px) {
  .ledes-info-section {
    padding: 56px 18px;
  }

  .ledes-info-section .heading-sec {
    font-size: 56px !important;
    line-height: 1.08;
    max-width: 1000px !important;
  }

  .ledes-container {
    gap: 24px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .ledes-visual {
    flex: 1 1 48%;
  }

  .ledes-visual img {
    max-width: 100%;
  }

  .ledes-content {
    flex: 1 1 52%;
    max-width: 100%;
  }

  .ledes-content h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .ledes-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .ledes-info-section {
    padding: 48px 16px;
  }

  .ledes-info-section .heading-sec {
    font-size: 44px !important;
    line-height: 1.12;
    max-width: 800px !important;
  }

  .ledes-container {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 28px 20px;
    border-radius: 22px;
  }

  .ledes-visual,
  .ledes-content {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .ledes-visual {
    justify-content: center;
  }

  .ledes-visual img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }

  .ledes-content {
    text-align: center;
  }

  .ledes-tabs {
    justify-content: center;
    margin-bottom: 18px;
  }

  .ledes-content h2 {
    font-size: 36px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .ledes-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .ledes-line-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .issues-section {
  padding-top: 10px;
  padding-bottom: 80px !important;
  background: #ffffff;
}
}

/* Mobile */
@media (max-width: 767px) {
  .ledes-info-section {
    padding: 40px 14px;
  }

  .ledes-info-section .heading-sec {
    font-size: 34px !important;
    line-height: 1.15;
    max-width: 100% !important;
    margin-bottom: 18px !important;
    padding: 0 4px;
  }

  .ledes-container {
    padding: 20px 14px 22px;
    gap: 20px;
    border-radius: 18px;
  }

  .ledes-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .ledes-tabs {
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
  }

  .ledes-tab {
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1;
    border-radius: 10px;
  }

  .ledes-content h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .ledes-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .ledes-line-wrap {
    max-width: 100%;
    height: 4px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .ledes-info-section {
    padding: 34px 12px;
  }

  .ledes-info-section{
    font-size: 28px !important;
    line-height: 1.18;

  }

   .heading-sec {
    font-size: 23px !important;
    line-height: 1.18;
  }
  .heading-sec-2{
     font-size: 23px !important;
    line-height: 1.18;
    padding-top: 40px;
  }

  .heading-sec-1{
    font-size: 23px !important;
    line-height: 1.18;
  }

  .ledes-container {
    padding: 16px 12px 18px;
    border-radius: 16px;
  }

  .ledes-tabs {
    gap: 8px;
  }

  .ledes-tab {
    font-size: 12px;
    padding: 9px 12px;
  }

  .ledes-content h2 {
    font-size: 25px;
  }

  .ledes-content p {
    font-size: 13.5px;
    line-height: 1.68;
  }

  .ledes-line-wrap {
    height: 3px;
  }
}
/* ========================================================= */
        /* NEW LEDES BILLING ERRORS SECTION
    =========================================================  */
   .issues-section {
  padding-top: 50px;
  padding-bottom: 80px !important;
  background: #ffffff;
}

.issues-grid {
  max-width: 916px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 25px 70px;
  align-items: start;
  padding:25px;
}

.issue-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #ece8ff;
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow:
    0 10px 20px rgba(30, 60, 150, 0.08),
    0 3px 6px rgba(30, 60, 150, 0.04);  
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center center;
  will-change: transform;
}

.issue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(140, 121, 255, 0.14), rgba(140, 121, 255, 0) 45%);
  opacity: 0.55;
}

.issue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(circle at center, rgba(0, 102, 242, 0.15), transparent 70%);
  opacity: 0.6;
  z-index: -1;
}

.tilt-down {
  transform: rotate(2.3deg);
}

.tilt-up {
  transform: rotate(-2.3deg);
}

.issue-card:hover {
   transform: rotate(0deg) translateY(-4px);

  box-shadow:
    0 16px 28px rgba(30, 60, 150, 0.10),
    0 6px 12px rgba(30, 60, 150, 0.06);
}

.issue-icon {
  width: 34px;
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.issue-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

.issue-content h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.issue-content p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: #8b8b96;
  max-width: 235px;
}

 @media (max-width: 767px) {


  .issues-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .issue-card {
    width: 100%;
    max-width: 85%;
  }

  .issue-card:nth-child(odd) {
    transform: rotate(1.6deg);
    margin-right: auto;
  }

  .issue-card:nth-child(even) {
    transform: rotate(-1.6deg);
    margin-left: auto;
  }

  .issue-card:hover {
    transform: rotate(0deg) translateY(-3px);
  }

  .issue-content h3 {
    font-size: 18px;
  }
}
.ls-sub-1{
      margin-bottom: 2rem;
      
}

/* --------------------------------- */

/* LEDES-FORMAT-WE-SUPPORT */
.ledes {
  display: flex;
  flex-direction: column !important;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ledes-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain; 
}


/* Title */
.ledes h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}


/* Mobile */
@media (max-width: 767px) {
  .ledes-image {
    width: 120px;
    height: 120px;
  }

  .ledes h5 {
    font-size: 16px;
  }

}

   /* ========================================================= */ */

.hero-section {
  position: relative;
  background: #f0f4fd url('/assets/img/Mas-group.svg') no-repeat;
  background-size: cover;
  text-align: left;
  overflow: hidden;
  padding-top: 180px !important;
  padding-bottom: 80px !important;
}
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
}

.badge-top {
  display: inline-block;
  padding: 6px 12px;
  background: #bcc5e543;
  color: #3d5afe;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
}

.greadent-animation {
  background: linear-gradient(
    90deg,
    #00c6ff,
    #0072ff,
    #8e2de2,
    #4a00e0,
    #00c6ff
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
  display: inline-block;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Avatar stacking */
.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgb(0, 0, 0);
  margin-left: 0px;
  object-fit: cover;
}


.rating-fixed {
  z-index: 2;
}

.hero-cta-btn{
  margin-top: 20px;
   background: linear-gradient(90deg, #01147e, #556eff);
   color: #ffffff;
   border: 2px solid #280c5f;
   font-weight: 600;
   font-size: 16px;
   height: 42px;
   border-radius:10px;
   position: relative;
   z-index: 1;
   overflow: hidden;
   transition: all 0.4s ease;
}

.hero-cta-btn:hover{
  color:white;
  border: 2px solid #280c5f;
  background: linear-gradient(90deg, #556eff, #01147e);
}

  .arrow {
    display: inline-block;
    transition: transform 0.2s ease;
  }

  .arrow {
    transform: translateX(4px);
  }


.cta-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #ced4da;
}
    
  .hero-container {
    padding-bottom: 10px;
  }
  
 
  @media (max-width: 768px) {
    .hero-container {
      padding-bottom: 80px;
    }
  }

@media (max-width: 1200px) {
  .hero-section {
    min-width: auto;
    font-size: 2.5rem;
  }
  .rating-fixed {
    top: auto;
    bottom: 20px;
    right: 20px;
    position: relative;
    margin-top: 30px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 120px 20px 60px;
    background-position: center;
  }

  .hero-section{
    font-size: 2.2rem;
    line-height: 1.3;
    min-width: auto;
  }

  .lead {
    font-size: 1rem;
  }

  .badge-top {
    font-size: 12px;
    padding: 5px 10px;
    margin-top: 50px;

  }

  .cta-note {
    font-size: 13px;
    padding: 20px 0px;
  }

  .rating-fixed {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 24px;
  }

  .avatar-stack img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-section {
    font-size: 2rem;
    text-align: left;
  }

  .hero-container {
    padding-bottom: 60px;
  }

  .cta-box {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 80px 15px 50px;
  }

  .hero-section {
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    font-weight: 900;
  }
  
  .hello{
    font-size: 34px;
    line-height: 1.3;
    text-align: left;
    font-weight: 900;
  }

  .lead {
    font-size: 0.95rem;
  }

  .cta-input {
    font-size: 14px;
  }

  .cta-note {
    font-size: 12px;
   padding: 20px 0px;
  }

  .avatar-stack img {
    width: 34px;
    height: 34px;
  }

  .rating-fixed div {
    font-size: 14px !important;
  }

  .hero-cta-btn{
   background: linear-gradient(90deg, #01147e, #556eff);
   color: #ffffff;
   border: 2px solid #280c5f;
   font-weight: 600;
   font-size: 16px;
   height: 42px;
   border-radius:10px;
   position: relative;
   z-index: 1;
   overflow: hidden;
   transition: all 0.4s ease;
}

.hero-cta-btn:hover{
  color:white;
  border: 2px solid #280c5f;
  background: linear-gradient(90deg, #556eff, #01147e);
}

 .desktop-img {
    display: none;
  }

}

/* ===== HERO CONNECTED STATS PANEL ===== */
.hero-stats-wrapper {
  position: relative;
  z-index: 8;
  max-width: 1150px;
  margin: -89px auto -80px;
  padding: 0 0px !important;
  margin-top: -40px !important;
  margin-bottom: 80px;
}

.hero-stats-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 30px 40px 17px;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 2px;
  height: 60%;
  background: rgba(64, 103, 194, 0.06);
}

.stat-box h2 {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: #171717;
}

.stat-box h4 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2937;
}

.stat-box p {
  margin: 0 auto;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7280;
}

.issue-card-text img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

.cta-note{
 padding: 20px 0px;
}

@media (max-width: 991px) {
  .hero-stats-wrapper {
    margin: 10px 30px;
  }

  .stat-box {
    padding: 34px 18px 30px;
  }

  .stat-box h2 {
    font-size: 42px;
  }

  .stat-box h4 {
    font-size: 16px;
  }

  .stat-box p {
    font-size: 14px;
  }

}

@media (max-width: 767px) {
  .hero-stats-wrapper {
    margin: 24px auto 0;
    padding: 0 14px;
  }

  .hero-stats-container {
    flex-direction: column;
    border-radius: 20px;
  }

  .stat-box {
    padding: 28px 20px;
  }

  .stat-box:not(:last-child)::after {
    display: none;
  }

  .stat-box:not(:last-child) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .stat-box h2 {
    font-size: 34px;
  }

  .stat-box h4 {
    font-size: 16px;
  }

  .stat-box p {
    font-size: 14px;
    max-width: 100%;
  }

}

@media (max-width: 386px) {
  .hero-cta-btn{
   margin-top: -9px;
   background: linear-gradient(90deg, #01147e, #556eff);
   color: #ffffff;
   border: 2px solid #280c5f;
   font-weight: 600;
   font-size: 16px;
   height: 42px;
   border-radius:10px;
   position: relative;
   z-index: 1;
   overflow: hidden;
   transition: all 0.4s ease;
}

.hero-cta-btn:hover{
  color:white;
  border: 2px solid #280c5f;
  background: linear-gradient(90deg, #556eff, #01147e);
}

.cta-note{
  padding: 20px 0px;
  margin-top: -9px;
}

 .hero-stats-wrapper {
    margin: 24px 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }


 .err-card{
      padding: 21px 1.25rem;
 }

 .yw-left .yw-right{
  padding: 10px 14px;
 }

   .issues-section {
  padding-top:10px;
  padding-bottom: 80px !important;
  background: #ffffff;
}


.yw-box {
 max-width: 1295px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(100, 130, 220, 0.14);
  box-shadow:
    -4px 6px 14px rgba(77, 91, 132, 0.07),
     4px 6px 14px rgba(77, 91, 132, 0.07),
     0 0 12px rgba(77, 91, 132, 0.04);
}

.desktop-img{
  display:none;
}

}
/*--------------------------------------------------------------
# Hero Section end
--------------------------------------------------------------*/

.hero-section .row {
  align-items: flex-start !important;
}



.demoFormSide {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.sec1a2b3c {
  width: 100%;
}

.boxWrap445566 {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow:
    0 20px 60px rgba(18, 63, 146, 0.12),
    0 8px 24px rgba(18, 63, 146, 0.08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.boxWrap445566::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(76, 125, 255, 0.18) 0%, rgba(76, 125, 255, 0) 72%);
  pointer-events: none;
}

.boxWrap445566::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(92, 201, 255, 0.14) 0%, rgba(92, 201, 255, 0) 72%);
  pointer-events: none;
}

.h1aabbcc {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  color: #123f73;
  letter-spacing: -0.02em;
  text-align: center;
}

.p778899 {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.6;
  color: #4d647f;
  text-align: center;
}

.form9a8b7c {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}



.ctrl123abc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.lblabc123 {
  font-size: 14px;
  font-weight: 700;
  color: #123f73;
  margin: 0;
  text-align: left;
}

.inpt456def,
.sel789abc {
  width: 100%;
  height: 54px;
  border: 1.5px solid #d7e3f4;
  border-radius: 14px;
  background: #ffffff;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 500;
  color: #17324d;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.inpt456def::placeholder {
  color: #8aa0b8;
}

.inpt456def:focus,
.sel789abc:focus {
  border-color: #3f7cff;
  box-shadow: 0 0 0 4px rgba(63, 124, 255, 0.12);
}

.ctrl123abc > div[style*="display: flex"] {
  display: flex !important;
  gap: 12px !important;
  align-items: center;
  width: 100%;
}

.ctrl123abc > div[style*="display: flex"] .sel789abc {
  flex: 0 0 132px;
  max-width: 132px;
}

.ctrl123abc > div[style*="display: flex"] .inpt456def {
  min-width: 0;
}

.ctrl123abc span[onclick="togglePassword()"] {
  top: 44px !important;
  right: 16px !important;
  font-size: 18px;
  opacity: 0.75;
}

.ctrl123abc label[style*="display: flex"] {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 14px !important;
  line-height: 1.5;
  color: #4d647f;
}

.ctrl123abc input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2f6bff;
  margin-top: 2px;
  flex-shrink: 0;
}

.ctrl123abc a {
  color: #2f6bff;
  font-weight: 600;
  text-decoration: none;
}

.ctrl123abc a:hover {
  text-decoration: underline;
}

.btn00ffee {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #3a30d8 0%, #1678ff 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(50, 93, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.btn00ffee:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(50, 93, 255, 0.28);
}

#formSuccessMsg {
  border-radius: 14px !important;
  font-size: 14px;
  line-height: 1.5;
}


@media (max-width: 1099px) {


  .demoFormSide {
    max-width: 620px;
    margin: 0 auto;
  }

  .boxWrap445566 {
    min-height: auto;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 95px;
    padding-bottom: 30px;
  }

  .hero-container {
    padding-bottom: 20px;
  }

  .demoFormSide {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .boxWrap445566 {
    min-height: auto;
    width: 100%;
    border-radius: 20px;
    padding: 20px 16px;
    box-shadow:
      0 12px 30px rgba(18, 63, 146, 0.10),
      0 6px 18px rgba(18, 63, 146, 0.08);
  }

  .h1aabbcc {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .p778899 {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: center;
  }

  .ctrl123abc {
    gap: 6px;
  }

  .lblabc123 {
    font-size: 13px;
  }

  .ctrl123abc > div[style*="display: flex"] {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .ctrl123abc > div[style*="display: flex"] .sel789abc {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .inpt456def,
  .sel789abc,
  .btn00ffee {
    height: 50px;
    font-size: 14px;
    border-radius: 12px;
  }

  .btn00ffee {
    min-height: 50px;
    margin-top: 4px;
  }

  .ctrl123abc span[onclick="togglePassword()"] {
    top: 40px !important;
    right: 14px !important;
    font-size: 16px;
  }

}

@media (max-width: 420px) {

  .boxWrap445566 {
    padding: 18px 14px;
  }

  .h1aabbcc {
    font-size: 18px;
  }

  .p778899 {
    font-size: 12px;
    font-weight: 700;
  }

  .inpt456def,
  .sel789abc,
  .btn00ffee {
    font-size: 13px;
  }

  
.yw-box {
 max-width: 1295px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(100, 130, 220, 0.14);
  box-shadow:
    -4px 6px 14px rgba(77, 91, 132, 0.07),
     4px 6px 14px rgba(77, 91, 132, 0.07),
     0 0 12px rgba(77, 91, 132, 0.04);
}

.support-sec{
  padding: 0px 30px;
  margin-top: -40px;
}

.desktop-img{

  display: none;
}

}

/* ------------------------------------------------------------------------- */

  .scroll-content.reverse {
    animation: scroll-right 25s linear infinite;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  } 
/* ------------------------------------------------------------------------- */

  .custom-card:hover{
    transform: translateY(30px);
  }

  .custom-card:hover{
    opacity: 1;
    top: 0;
  }

/* ---------------------------------------------------------------*/
  
  @media (max-width: 992px) {
 
    .fs-5 {
      font-size: 1rem !important;
    }
    
    .p-lg-5 {
      padding: 1.5rem !important;
    }
  }
  
  @media (max-width: 768px) {
    .lead {
      font-size: 1rem;
    }

     .support-sec{
        padding: 0px 65px;
  }
  }


  @keyframes performance-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes performance-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

/* ---------------------------------------------------------------*/

.feature-card{
  margin: 0px; position:relative; background:#fff; padding:30px 30px 30px; border-radius:15px;
  box-shadow:0 8px 30px rgba(0,0,0,.02); height:90%; overflow:visible; text-align:left; 
}
.feature-card:hover{ box-shadow:0 8px 20px rgba(111, 1, 208, 0.204); }
.icon-top-right{
  position:absolute; top: 35px; left: 20px; width:60px; height:60px; background:#ffffff00; border-radius:10%;
  border:1px solid #ffffff00; display:flex; align-items:center; justify-content:center; ;
}
.icon-top-right img{ width:46px; height:46px; }
.feature-card h5{ font-size:28px; font-weight:600; margin:10px 0 20px; color:#111; }
.feature-card p{ font-size:16px; color:#322f2f; line-height:1.6; margin-left:0; }
@media (max-width:767px){ .feature-card{ padding:35px 20px 35px; margin: 0px 14px; } 
.icon-top-right{
  position:absolute; top: 35px; left: 20px; width:60px; height:60px; background:#ffffff00; border-radius:10%;
  border:1px solid #ffffff00; display:flex; align-items:center; justify-content:center; ;
}}

.invoice-sec{
  padding-top:50px;
  padding-bottom:50px;
}

/* ---------------------------------------------------------------*/

/* =========================================================
   REVIEWS / SOCIAL PROOF
   ========================================================= */


/* IMPORTANT: Scope avatar stack in reviews to avoid global override */
 .avatar-stack{ display:flex; align-items:center; }
.avatar-stack img{
  width:44px; height:44px; border-radius:50%; border:2px solid #fff; object-fit:cover; margin-left:-12px;
  transition:transform .3s ease; box-shadow:0 4px 6px rgba(0,0,0,.1);
}
 .avatar-stack img:hover{ transform:translateY(-2px); z-index:2; }
 .avatar-stack img:first-child{ margin-left:0; }

/* Cards */
.avatar{ width:50px; height:50px; object-fit:cover; box-shadow:0 4px 8px rgba(0,0,0,.1); }

.btn-primary{
  background:linear-gradient(90deg,#2b5cff,#4b73ff); border:none; border-radius:.8rem; transition:all .3s ease;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 15px rgba(43,92,255,.3); }
.btn-outline-primary{
  border-radius:.8rem; border-width:2px; transition:all .3s ease;
}
.btn-outline-primary:hover{ transform:translateY(-2px); box-shadow:0 8px 15px rgba(0,0,0,.1); }

@media (max-width:768px){
  .avatar-stack img{ width:38px; height:38px; }
}
@media (max-width:576px){
  .avatar-stack img{ width:34px; height:34px; }
}
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ── Cards Section ── */
.cf-section {
  padding: 5rem 2rem;
  width: 100%;
}

.cf-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1295px;
  margin: 0 auto;
}

.cf-card {
   border-radius: 20px;
  padding: 28px 50px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  gap: 20px;
  min-height: 320px;
}


.cf-card-1,
.cf-card-2,
.cf-card-3 {
  position: relative;
  z-index: 0;
  transition: transform 0.6s ease;
}

.cf-card-1::after,
.cf-card-2::after,
.cf-card-3::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Base gradients */
  .cf-card-2 { background: linear-gradient(145deg, #c7d4f5, #e8eeff); }
.cf-card-2 .cf-card-title { color: #0a0a0a; }
.cf-card-2 .cf-list li { color: rgba(5, 5, 5, 0.82); }
.cf-card-2 .cf-icon-wrap { background: rgb(35 47 96 / 47%); }
.cf-card-2 .cf-check { background: rgba(59, 91, 219, 0.18); }
.cf-card-2 .cf-card-header { border-bottom-color: rgba(59, 91, 219, 0.18); }

.cf-card-1 { background: linear-gradient(135deg, #e8dff8, #f3eefe); }
.cf-card-1 .cf-card-title { color: #020202; }
.cf-card-1 .cf-list li { color: rgba(0, 0, 0, 0.82); }
.cf-card-1 .cf-icon-wrap { background: rgb(24 11 46 / 39%); }
.cf-card-1 .cf-check { background: rgba(124, 58, 237, 0.16); }
.cf-card-1 .cf-card-header { border-bottom-color: rgba(124, 58, 237, 0.16); }

.cf-card-3 { background: linear-gradient(145deg, #c2edf5, #e6f8fc); }
.cf-card-3 .cf-card-title { color: #0a3d4a; }
.cf-card-3 .cf-list li { color: rgba(0, 0, 0, 0.82); }
.cf-card-3 .cf-icon-wrap { background: rgb(59 161 189); }
.cf-card-3 .cf-check { background: rgba(14, 116, 144, 0.16); }
.cf-card-3 .cf-card-header { border-bottom-color: rgba(14, 116, 144, 0.16); }

/* Hover gradients on ::after */
.cf-card-1::after { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.cf-card-2::after { background: linear-gradient(145deg, #3b5bdb, #1e40af); }
.cf-card-3::after { background: linear-gradient(145deg, #0e7490, #06b6d4); }

/* Fade in the ::after on hover */
.cf-card-1:hover::after,
.cf-card-2:hover::after,
.cf-card-3:hover::after {
  opacity: 1;
}

.cf-card-header {
    display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  text-align: left;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.45s ease;
  width: 100%;
}

.cf-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cf-card-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cf-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 2px;
  line-height: 1.2;
}

.cf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  text-align: left;
}

.cf-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-check svg {
  width: 11px;
  height: 11px;
}

.cf-card-title { transition: color 0.45s ease; }
.cf-list li { transition: color 0.45s ease; }

.cf-card-1:hover .cf-card-title,
.cf-card-2:hover .cf-card-title,
.cf-card-3:hover .cf-card-title { color: #ffffff; }

.cf-card-1:hover .cf-list li,
.cf-card-2:hover .cf-list li,
.cf-card-3:hover .cf-list li { color: rgba(255, 255, 255, 0.88); }
.cf-card-1:hover .cf-card-header,
.cf-card-2:hover .cf-card-header,
.cf-card-3:hover .cf-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}
/* ════════════════════════════
   Responsive
════════════════════════════ */

/* Tablet — 2 columns */
@media (max-width: 768px) {
  .cf-section {
    padding: 2.5rem 1.25rem;
  }
  .cf-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .cf-card:last-child {
    grid-column: span 2;
    max-width: 60%;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile — 1 column */
@media (max-width: 560px) {
  .cf-section {
    padding: 2rem 1rem;
  }
  .cf-cards-wrap {
    grid-template-columns: 1fr;
  }
  .cf-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  .cf-card {
    min-height: unset;
  }
}

/*new-steps-section */
.steps-section {
  background: #f0f4fb;
  padding: 3rem 1.5rem;
  width: 100%;
}

.steps-sub {
  text-align: center;
  font-size: 18.5px;
  color: #8a9abf;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 30px;
}

.steps-wrap {
   display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: stretch;   
  max-width: 1295px;
  margin: 0 auto;
}

.step-col {
  display: flex;
  flex-direction: column;
}

/* ── Card ── */
.step-card {
  height: 100%;         
  background: #fff;
  border-radius: 16px;
  padding: 50px 18px;
  border: 1px solid rgba(100, 130, 220, 0.12);
  box-shadow: 0 2px 10px rgba(60, 90, 180, 0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  box-shadow: 0 8px 30px rgba(39, 20, 144, 0.18);
  transform: translateY(-3px);
}


.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.step-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  background: #271490;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-label {
    font-size: 20px;
    font-weight: 700;
    color: #38308d;
}


.card-divider {
  height: 1px;
  background: rgba(100, 130, 220, 0.15);
  margin-bottom: 14px;
}


.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.35;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: #6b7a99;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

/* ── CTA button ── */
.step-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #3b6fd4;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.18s ease;
}

.step-cta:hover {
  background: #2a56b0;
  color: #fff;
}

.step-cta svg {
  width: 13px;
  height: 13px;
}

/* ── Arrow ── */
.step-arrow {
display: flex;
  align-items: center;    
  justify-content: center;
  padding-top: 0;    
}

.step-arrow svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(59, 111, 212, 0.35));
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .steps-wrap {
    grid-template-columns: 1fr 40px 1fr;
    row-gap: 0px;
  }
  .step-arrow:nth-child(4) {
    display: none;
  }

}

@media (max-width: 768px) {
  .steps-section { padding: 2.5rem 1.25rem; }
   .steps-wrap {
    grid-template-columns: 1fr 40px 1fr;
    row-gap: 20px;
  }
}

@media (max-width: 600px) {
  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    transform: rotate(90deg);
  }

  .step-arrow:nth-child(4) {
    display: flex;
  }

  .step-arrow svg {
    width: 28px;
    height: 28px;
  }
}
/* ------------------------ */

.yw-section {
  background: transparent;
  padding: 53px 40px;
  width: 100%;
}

.yw-box {
 max-width: 1295px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(100, 130, 220, 0.14);
  box-shadow:
    -4px 6px 14px rgba(77, 91, 132, 0.07),
     4px 6px 14px rgba(77, 91, 132, 0.07),
     0 0 12px rgba(77, 91, 132, 0.04);
}

.my-img{
   max-width: 1245px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgb(34, 15, 129), #E8EBF9);
}

.mobile-img {
  display: none;
}

.yw-col-heads {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  margin: 0 auto 14px;
}

.yw-col-label {
  font-size: 24px;
  font-weight: 700;
  color: #1a2340;
  text-align: center;
}


.yw-wrapper {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
}

.yw-left-col,
.yw-right-col {
  display: grid;
  gap: 12px;
}

.yw-left {
  background: #f4f7ff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  text-align: left;
  gap: 10px;
  border: 1px solid rgba(100, 130, 220, 0.14);
  flex-direction: row;
}

.yw-left-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-color: #000;
}

.yw-left {
  box-shadow:
    0 1px 3px  rgba(59, 111, 212, 0.06),
    0 4px 12px rgba(59, 111, 212, 0.10),
    0 8px 20px rgba(59, 111, 212, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.yw-left:hover {
  box-shadow:
    0 2px 6px  rgba(59, 111, 212, 0.10),
    0 8px 24px rgba(59, 111, 212, 0.17),
    0 16px 36px rgba(59, 111, 212, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.yw-right {
  box-shadow:
    0 1px 3px  rgba(59, 111, 212, 0.06),
    0 4px 12px rgba(59, 111, 212, 0.10),
    0 8px 20px rgba(59, 111, 212, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.yw-right:hover {
  box-shadow:
    0 2px 6px  rgba(59, 111, 212, 0.10),
    0 8px 24px rgba(59, 111, 212, 0.17),
    0 16px 36px rgba(59, 111, 212, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}


.yw-left-icon i {
  font-size: 18px;
  color: #3b6fd4;
}

.yw-check i {
  font-size: 14px;
  color: #fff;
}

.yw-left-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a2340;
}


.yw-single-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.yw-arrow-line {
  width: 2px;
  flex: 1;
  background: #d0daf0;
  min-height: 30px;
}

.yw-arrow-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b6fd4, #6b4fcf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(80, 100, 220, 0.28);
}

.yw-arrow-icon svg {
  width: 18px;
  height: 18px;
}


.yw-right {
  background: #f4f7ff;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  text-align: left;
  gap: 10px;
  border: 1px solid rgba(100, 130, 220, 0.14);
  flex-direction: row;
}

.yw-check {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3b6fd4, #6b4fcf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yw-check svg {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════
   Responsive
════════════════════════════ */

@media (max-width: 1024px) {
  .yw-wrapper {
    grid-template-columns: 1fr 60px 1fr;
  }
  .yw-col-heads {
    grid-template-columns: 1fr 60px 1fr;
  }
}

@media (max-width: 768px) {
  .yw-box {
    padding: 0rem 1.25rem;
  }
}

@media (max-width: 620px) {
  .yw-wrapper {
    grid-template-columns: 1fr;
  }

  .yw-col-heads {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .yw-col-heads div:nth-child(1) {
    order: 1;
    text-align: center;
    margin-bottom: 10px;
  }

  .yw-col-heads div:nth-child(3) {
    display: none; 
  }

  .yw-single-arrow {
    flex-direction: row;
    height: 40px;
    margin: 12px 0;
  }

  .yw-arrow-line {
    width: auto;
    height: 2px;
    flex: 1;
    min-height: unset;
  }

  .yw-arrow-icon {
    transform: rotate(90deg);
  }

  .yw-right-col::before {
    content: 'We Deliver';
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a2340;
    text-align: center;
    margin-bottom: 10px;
  }
 
   
}

/* ------------------------------------- */
   /* Base Styles */
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

/* ===== SECTION ===== */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1a2b49;
  margin-bottom: 50px;
}



/* //////////////////////////////////// */


/* ════════════════════════════
   Responsive Breakpoints
════════════════════════════ */

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .issue-card {
    padding: 18px;
  }

  
}


  /* Images */
  .tab-pane img {
    max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {

    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }


.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); 
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}
/* ---------------------------------------------------------------*/


/* =========================================================
   PRICING SECTION
   ========================================================= */
.pricing-sec {
  background: #eef3fc;
  padding: 80px 0;
}

.pricing-sec .text-center h2 {
  margin-bottom: 12px;
}

.pricing-sec .text-center p {
  font-size: 17px;
  color: #8a9abf;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Card ── */
.pri-card1 {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(100, 130, 220, 0.14);
  background: #fff;
  box-shadow: 0 2px 16px rgba(60, 90, 180, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 36px 32px !important;
  display: flex;
  flex-direction: column;
}

.pri-card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(39, 20, 144, 0.15);
}

.pri-card1.popular {
  background: #f0f4ff;
  border: 2px solid #3b6fd4;
}

/* ── Popular Badge ── */
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #3b6fd4, #6b4fcf);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ── Feature Icon ── */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ── Plan Name ── */
.pri-card1 h3 {
  color: #1a2340;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

/* ── Pricing Title (Invoice label) ── */
.pricing-title {
  font-size: 17px;
  font-weight: 600;
  color: #6b7a99;
  letter-spacing: 0;
  display: block;
  margin-top: 2px;
}

/* ── Price ── */
.pricing-currency {
  font-size: 22px;
  font-weight: 700;
  color: #0d5bd7;
  vertical-align: super;
  line-height: 1;
}

.pricing-price {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  color: #0d5bd7;
  letter-spacing: -0.04em;
}

.pricing-per {
  font-size: 15px;
  font-weight: 600;
  color: #0d5bd7;
  margin-left: -6px;
  vertical-align: bottom;
  padding-bottom: 8px;
  display: inline-block;
}

/* ── Custom Pricing (Enterprise) ── */
.pricing-price-last {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #0d5bd7;
  letter-spacing: -0.02em;
  display: block;
  margin-top: 8px;
}

/* ── Subtitle line ── */
.pri-card1 > p {
  color: #8a9abf;
  font-size: 13.5px;
  line-height: 1.5;
  margin-top: 2px;
  margin-bottom: 24px !important;
  padding-top: 6px;
  border-top: 1px solid rgba(100, 130, 220, 0.13);
}

/* ── Features List ── */
.pri-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px !important;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.pri-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #3a4a6b;
  line-height: 1.45;
}

.pri-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #3b6fd4;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pri-card1.popular .pri-check {
  background: #d0dcf8;
}

/* ── CTA Button ── */
.pri-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  background: #eef3fc;
  color: #1a2340;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  margin-top: auto;
  border: 1.5px solid rgba(100, 130, 220, 0.2);
}

.pri-cta:hover {
 background: #eef3fc;        
  color: #1a2340;             
  border-color: rgba(100, 130, 220, 0.2); 
  transform: translateY(-1px);
}

.pri-cta.dark {
  background: #271490;
  color: #fff;
  border-color: transparent;
}

.pri-cta.dark:hover {
   background: #271490;     
  color: #fff;               
}

.pri-arrow {
  font-size: 16px;
  transition: transform 0.18s ease;
}

.pri-cta:hover .pri-arrow {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .pricing-sec {
    padding: 50px 0;
  }

  .pri-card1 {
    padding: 28px 24px !important;
  }

  .pricing-price {
    font-size: 44px;
  }

  .pricing-price-last {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .pricing-sec {
    padding: 36px 0;
  }

  .pri-card1 {
    padding: 24px 20px !important;
  }
}

/* ── CTA Button ── */
.sas-ctaBlock{
  background: white ;
}
.sas-ctaPanel{
  position:relative;
  border-radius:22px;
  overflow:hidden;
   background: url(' https://www.casefox.com/assets/img/background-1.png') center center / cover no-repeat;
  padding: 40px 20px;
}
.sas-ctaInner{
  position:relative;
  z-index:2;
  max-width: 820px;
  margin: 0 auto;
}


.sas-ctaTitle{
  font-size:34px;
  line-height:1.05;
  letter-spacing:-0.02em;
  font-weight:900;
  color:#ffffff;
  margin:0;
}
.sas-ctaSub{
  font-size:16px;
  line-height:1.7;
  color:#111;
  opacity:0.85;
  font-weight:600;
}
.sas-ctaBtn{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:14px 18px 14px 22px;
  border-radius:999px;
  background: #2196f3;
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.sas-ctaBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  color:#fff;
}

.sas-ctaBtnIcon{
  width:38px;
  height:38px;
  border-radius:999px;
  background:#fff;
  color:#111;
  display:grid;
  place-items:center;
}

@media (max-width: 991px){
  .sas-ctaPanel{ padding: 70px 18px; }
  .sas-ctaTitle{ font-size:42px; }
}

@media (max-width: 576px){
  .sas-ctaPanel{ padding: 56px 16px; border-radius:18px; }
  .sas-ctaTitle{ font-size:34px; }
  .sas-ctaSub{ font-size:15px; }
  .sas-ctaBtn{ width:100%; justify-content:center; }
  .sas-ctaPanel::after{ height:110px; bottom:10px; opacity:0.22; }
}

/* CTA Block Responsive */
@media (max-width: 576px) {
  .sas-ctaPanel {
    padding: 40px 16px;
    border-radius: 16px;
  }

  .sas-ctaTitle {
    font-size: 22px;
    line-height: 1.3;
  }

  .sas-ctaInner {
    padding: 0 8px;
  }

  .sas-ctaInner .d-flex.flex-wrap {
    flex-direction: column;
    align-items: center;
   flex-direction: row;
    gap: 2px !important;
  }

  .sas-cta-sub-Title{
    font-size: 15px;
  }

  .sas-ctaInner .d-flex.align-items-center.gap-2 {
    justify-content: center;
    width: 100%;
  }

  .sas-ctaBtn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 16px;
  }

  .sas-ctaBtnIcon {
    width: 32px;
    height: 32px;
  }

  .sas-ctaBlock .d-flex span {
    font-size: 14px;
  }

  .sas-ctaBlock,
  .sas-ctaBlock .bi.bi-dot{
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .sas-ctaTitle {
    font-size: 19px;
  }

  .sas-ctaBtn {
    font-size: 14px;
    padding: 11px 14px;
  }

      .support-sec {
      padding: 0px 29px
    }

    .price-line{
      padding-bottom: 20px;
    }
}

.bi.bi-dot {
  color: #ffffff;
  font-size: 20px;
}

.icon-txt{
  color: white;
}

.pri-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid #3b6fd4;
  color: #3b6fd4;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pri-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 111, 212, 0.2);
  color: #3b6fd4;
}

.pri-cta.dark {
  background: linear-gradient(90deg, #3b6fd4, #6b4fcf);
  color: #fff;
  border-color: transparent;
}

.pri-cta.dark:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(39, 20, 144, 0.3);
}

.pri-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #3b6fd4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pri-cta.dark .pri-arrow {
  background: #fff;
  color: #3b6fd4;
}


.pricing-group.d-none {
  display: none !important;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .pricing-sec {
    padding: 2.5rem 0;
  }
}

@media (max-width: 576px) {
  .pricing-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .pricing-btn {
    padding: 10px 16px;
    font-size: 14px;
  }


  .pri-cta {
    font-size: 14px;
  }
}


/* Gradient CTA */
.btn-gradient {
  background: linear-gradient(90deg, #200d7e, #4471f9);
  border: none;
  color: white;
  font-weight: 500;
  border-radius: 7px;
  transition: 0.3s ease;
  font-size: 20px;
}

.btn-gradient:hover {
  background: white;
  color: #021061;
  border: 2px solid #021061;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .msg-card {
    text-align: center;
  }

  .btn-gradient,
  .btn-outline-light {
    width: 100%;
    text-align: center;
  }
}

.pri-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pri-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  color: #1a2340;
  font-weight: 400;
}

.pri-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pri-check i {
  font-size: 11px;
  color: #3b6fd4;
}

.ledes{
  align-items: center;
  flex-direction: row ;
}

  @keyframes formSlideIn {
    0%   { opacity: 0; transform: translateY(40px) scale(0.96); }
    60%  { opacity: 1; transform: translateY(-6px) scale(1.008); }
    80%  { transform: translateY(3px) scale(0.999); }
    100% { transform: translateY(0) scale(1); }
  }
  @keyframes formPulse {
    0%   { box-shadow: 0 20px 60px rgba(18,63,146,.12), 0 0 0 0px  rgba(59,111,212,.5); }
    50%  { box-shadow: 0 20px 60px rgba(18,63,146,.12), 0 0 0 22px rgba(59,111,212,.08); }
    100% { box-shadow: 0 20px 60px rgba(18,63,146,.12), 0 0 0 36px rgba(59,111,212,0); }
  }
  .form-slide-in   { animation: formSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .form-pulse-ring { animation: formPulse   1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

  /* Prevent animation on page load */
  .boxWrap445566 {
    transform-origin: center top;
    will-change: transform, opacity;
    animation: none !important;
  }
  .boxWrap445566.form-slide-in {
    animation: formSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  }
  .boxWrap445566.form-pulse-ring {
    animation: formPulse 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
  }

  #ctaFlashOverlay {
    position: fixed; inset: 0;
    background: rgba(59,111,212,0.05);
    pointer-events: none; z-index: 99999;
    opacity: 0; transition: opacity 0.35s ease;
  }
  #ctaFlashOverlay.active { opacity: 1; }

/* =========================
   AI marketing section
   ========================= */

.ai-marketing-section {
  padding: 25px 0 !important;
  position: relative;
  overflow: hidden;
}

.ai-marketing-section .container {
  max-width: 1295px;
}

.ai-marketing-section .row {
  align-items: flex-start;
}

.ai-marketing-section .text-uppercase {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent-color) !important;
  margin-bottom: 12px !important;
}

.ai-marketing-section .text-dark-blue {
  color: var(--heading-color);
}

.ai-marketing-section h2 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--heading-color);
  max-width: 620px;
  margin-bottom: 51px !important;
  letter-spacing: -0.02em;
}

.ai-marketing-section .text-muted {
  color: #5f6b7a !important;
  font-size: 16px;
  line-height: 1.75;
}

.ai-marketing-section .d-flex {
  align-items: flex-start;
}

.ai-marketing-section .me-3 {
  margin-right: 10px !important;
}



.ai-marketing-section .icon-circle i {
  font-size: 22px !important;
  color: var(--accent-color) !important;
}

.ai-marketing-section .fw-semibold {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600 !important;
  color: var(--heading-color) !important;
  margin-bottom: 6px !important;
}

.ai-marketing-section .btn-outline-primary {
  margin-top: 10px !important;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #d4def0;
  color: #ffffff;
  background: linear-gradient(90deg, #041264, #098dda);
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(15, 69, 163, 0.06);
}

.ai-marketing-section .btn-outline-primary:hover {
  border-color: transparent;
  color: blue;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 69, 163, 0.16);
   background: white;
}

.ai-marketing-section .col-lg-6:last-child {
  display: flex;
  justify-content: flex-end;
}

.ai-marketing-section img {
  width: 100%;
  max-width: 556px !important;
  scale:0.9;
  height: auto;
}

.ai-marketing-section .d-flex.mb-4 {
  margin-bottom: 28px !important;
}

.ledes{
  height:25px;
  width: 25px;
}

/* Tablet */
@media (max-width: 991px) {
  .ai-marketing-section {
    padding: 64px 0 !important;
  }

  .ai-marketing-section .col-lg-6:first-child {
    margin-bottom: 20px;
  }

  .ai-marketing-section h2 {
    font-size: 42px;
    max-width: 100%;
  }

  .ai-marketing-section .fw-semibold {
    font-size: 18px;
  }

  .ai-marketing-section .text-muted {
    font-size: 15px;
  }

  .ai-marketing-section .col-lg-6:last-child {
    justify-content: center;
  }

  .ai-marketing-section img {
    max-width: 460px !important;
    float: none;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ai-marketing-section {
    /* padding: 48px 0 !important; */
  }
  

  .ai-marketing-section .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ai-marketing-section .text-uppercase {
    font-size: 12px;
    margin-bottom: 10px !important;
  }

  .ai-marketing-section h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 18px !important;
    padding-top: 20px;
  }

  .ai-marketing-section .d-flex {
    gap: 12px;
  }

  .ai-marketing-section .me-3 {
    margin-right: 0 !important;
  }

  .ai-marketing-section .icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
  }

  .ai-marketing-section .icon-circle i {
    font-size: 19px !important;
  }

  .ai-marketing-section .fw-semibold {
    font-size: 17px;
    line-height: 1.35;
  }

  .ai-marketing-section .text-muted {
    font-size: 14px;
    line-height: 1.7;
  }

  .ai-marketing-section .d-flex.mb-4 {
    margin-bottom: 22px !important;
  }

  .ai-marketing-section .btn-outline-primary {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
  }

  .ai-marketing-section img {
    max-width: 100% !important;
   
  }
}

@media (max-width: 480px) {
  .ai-marketing-section h2 {
    font-size: 28px;
  }

  .ai-marketing-section .fw-semibold {
    font-size: 16px;
  }

  .ai-marketing-section .text-muted {
    font-size: 13.5px;
  }

  .ai-marketing-section .icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

.ledes-img{
  margin-right:-38px;
}

/* =========================================
   LEDES ICON STYLE
   ========================================= */

.ai-marketing-section .ledes-image,
.ai-marketing-section .icon-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #e8f1ff 0%, #d8e7ff 100%);
  
  box-shadow:
    0 10px 20px rgba(0, 102, 242, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition: all 0.3s ease;
}

.ai-marketing-section .icon-circle i {
  font-size: 22px !important;
  color: var(--accent-color);
}

.ai-marketing-section .d-flex:hover .ledes-image,
.ai-marketing-section .d-flex:hover .icon-circle {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(0, 102, 242, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.send-deliver-section {
  padding: 40px 20px;
  background: transparent;
}

.send-deliver-container {
  max-width: 1295px;
  margin: 0 auto;
}

.send-deliver-image {
  width: 80%;
  max-width: 1295px;
  height: auto;
  display: block;
  border-radius: 28px;
  margin: 0 auto;
}


@media (max-width: 767px) {
  .send-deliver-section {
    padding: 24px 14px;
  }

  .send-deliver-image {
    border-radius: 18px;
  }
}

