
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: Arial, sans-serif;
      background:#f8f7fc;
      color:#1f2937;
      
    }

    a{
      text-decoration:none;
    }

    ul{
      list-style:none;
    }

    .container{
      width:90%;
      max-width:1400px;
      margin:0 auto;
      padding:0 20px;
    }
    
    @media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
   
   
    h1 {
  font-size: clamp(28px, 4vw, 56px) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

h2 {
  font-size: clamp(20px, 3.5vw, 40px) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

h3 {
  font-size: clamp(18px, 3vw, 30px) !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

h4 {
  font-size: clamp(16px, 2.5vw, 24px) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

h5 {
  font-size: clamp(14px, 2vw, 20px) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

p {
  font-size: clamp(14px, 2vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

    

    /* HERO Section Start*/
    .rxa-hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      background:
        linear-gradient(135deg, rgba(124,58,237,0.95), rgba(91,33,182,0.92)),
        radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 35%);
      padding-top:120px;
      overflow:hidden;
      position:relative;
      padding: 200px 20px 150px 20px;
    }
    
    @media (max-width: 768px) {
  .rxa-hero {
    padding: 150px 20px 100px 20px !important;
  }
}

  .rxa-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.rxa-hero-features span {
  width: 48%;
  font-size: 14px;
  color: #555;
}

    .rxa-hero::before{
      content:"";
      position:absolute;
      width:320px;
      height:320px;
      background:rgba(255,255,255,0.07);
      border-radius:50%;
      top:80px;
      right:-80px;
      filter:blur(10px);
    }

    .rxa-hero::after{
      content:"";
      position:absolute;
      width:240px;
      height:240px;
      background:rgba(255,255,255,0.05);
      border-radius:50%;
      bottom:40px;
      left:-60px;
      filter:blur(8px);
    }

    .rxa-hero-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:50px;
      position:relative;
      z-index:1;
    }

    .rxa-hero-text{
      flex:1 1 55%;
      color:#fff;
    }

    .rxa-badge{
      display:inline-block;
      background:rgba(255, 255, 255, 0.14);
      border:1px solid rgba(255,255,255,0.18);
      color:#f5f3ff;
      padding:10px 16px;
      border-radius:999px;
      font-size:14px;
      margin-bottom:20px;
    }

    .rxa-hero-text h1{
      font-size:46px;
      line-height:1.1;
      margin-bottom:20px;
      font-weight:800;
    }

    .rxa-hero-text p{
      font-size:18px;
      color:#ede9fe;
      max-width:620px;
      margin-bottom:30px;
    }

    .rxa-hero-buttons{
      display:flex;
      align-items:center;
      gap:15px;
      flex-wrap:wrap;
      margin-bottom:35px;
    }

    .rxa-btn-primary{
      display:inline-block;
      background:#fff;
      color:#7c3aed;
      padding:14px 24px;
      border-radius:30px;
      font-weight:700;
      transition:0.3s ease;
    }

    .rxa-btn-primary:hover{
      background:#ede9fe;
    }

    .rxa-btn-outline{
      display:inline-block;
      border:2px solid rgba(255,255,255,0.7);
      color:#fff;
      padding:12px 24px;
      border-radius:30px;
      font-weight:700;
      transition:0.3s ease;
    }

    .rxa-btn-outline:hover{
      background:#fff;
      color:#7c3aed;
    }

    .rxa-hero-features{
      display:flex;
      gap:25px;
      flex-wrap:wrap;
     
    }

    .rxa-hero-features span{
      font-size:15px;
      color:#f5f3ff;
      position:relative;
      padding-left:20px;
    }

    .rxa-hero-features span::before{
      content:"";
      position:absolute;
      left:0;
      top:8px;
      width:8px;
      height:8px;
      background:#fff;
      border-radius:50%;
    }

    .rxa-hero-card{
      flex:1 1 40%;
      max-width:430px;
      background:rgba(255,255,255,0.12);
      border:1px solid rgba(255,255,255,0.18);
      backdrop-filter:blur(14px);
      -webkit-backdrop-filter:blur(14px);
      border-radius:24px;
      padding:28px;
      color:#fff;
      box-shadow:0 20px 60px rgba(0,0,0,0.18);
    }

    .rxa-card-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:25px;
    }

    .rxa-card-top h3{
      font-size:24px;
      font-weight:700;
    }

    
    .rxa-stat-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-bottom:22px;
    }

    .rxa-stat-box{
      background:rgba(255,255,255,0.1);
      border-radius:18px;
      padding:18px;
    }

    .rxa-stat-box h4{
      font-size:14px;
      color:#e9ddff;
      margin-bottom:8px;
      font-weight:500;
    }

    .rxa-stat-box strong{
      font-size:28px;
      font-weight:800;
      display:block;
    }

    .rxa-audit-list{
      background:rgba(255,255,255,0.09);
      border-radius:18px;
      padding:20px;
    }

    .rxa-audit-list h5{
      font-size:17px;
      margin-bottom:14px;
      font-weight:700;
    }

    .rxa-audit-list li{
      display:flex;
      justify-content:space-between;
      gap:15px;
      padding:10px 0;
      border-bottom:1px solid rgba(255,255,255,0.1);
      font-size:14px;
      color:#f5f3ff;
    }

    .rxa-audit-list li:last-child{
      border-bottom:none;
    }

    /* HERO Section End */


    /* The Problem and Solution Section start*/

    .problem-solution {
  padding: 120px 20px;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .problem-solution {
    
    padding: 90px 20px;
  }
}

.ps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Boxes */
.ps-box {
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.ps-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Problem */
.problem {
  border-left: 5px solid #ef4444;
}

/* Solution */
.solution {
  border-left: 5px solid #7c3aed;
}

/* Badge */
.ps-badge {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-badge {
  background: #ede9fe;
  color: #6d28d9;
}

/* Title */
.ps-box h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

/* Text */
.ps-box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* List */
.ps-list {
  list-style: none;
  padding: 0;
}

.ps-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  color: #444;
}

.ps-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7c3aed;
  font-size: 14px;
}

/* Button */
.ps-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ps-btn:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .ps-container {
    grid-template-columns: 1fr;
  }
}

    /*The Problem and Solution Section End*/

    /* Key Benefits Section Start*/

    .benefits-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
}

@media (max-width: 768px) {
  .benefits-section {
    
    padding: 90px 20px;
  }
}


.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-badge {
  display: inline-block;
  background: #ede9fe;
  color: #6d28d9;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefits-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.benefits-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-text {
  color: #666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.benefit-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.benefit-card.show {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(124,58,237,0.15);
}

/* Icon */
.icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Text */
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-title {
    font-size: 30px;
  }
}

/* Key Benefits Section End*/

  
/*Demo Section Start*/

   .rx-wrapper {
      
      padding: 120px 20px;
      background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
      
    }
    
    
    @media (max-width: 768px) {
  .rx-wrapper {
    
    padding: 90px 20px;
  }
}


    .rx-heading {
      text-align: center;
      max-width: 880px;
      margin: 0 auto 34px;
    }

    .rx-heading h2 {
      font-size: 52px;
      margin-bottom: 10px;
      color: #111827;
    }

    .rx-heading p {
      font-size: 16px;
      color: #64748b;
      line-height: 1.8;
    }

    /* Top Flow Section */
    .rx-demo-card {

      border-radius: 30px;
      padding: 60px;
      
      backdrop-filter: blur(8px);
      margin: 10px 150px 10px 150px;
    }
    
    @media (max-width: 768px) {
  .rx-demo-card {
    margin: 0;
  }
}
    

    .rx-steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 26px;
    }

    .rx-step-box {
      background: #f8fafc;
      border: 2px solid #dfe5ec;
      border-radius: 22px;
      padding: 20px;
      min-height: 260px;
      transition: 0.35s ease;
    }

    .rx-step-box.active {
      border-color: #10b981;
      box-shadow: 0 12px 24px rgba(16, 185, 129, 0.08);
      transform: translateY(-3px);
    }

    .rx-step-box.done {
      border-color: #c7f9e9;
      background: linear-gradient(180deg, #f8fffc 0%, #f8fafc 100%);
    }

    .rx-step-label {
      color:  #7c3aed;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .rx-icons-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .rx-icon-card {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #dfe5ec;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .rx-step-status {
      color: #667085;
      font-size: 15px;
      line-height: 1.7;
    }

    .rx-compare-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 14px;
    }

    .rx-compare-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border: 1px solid #dfe5ec;
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 15px;
      color: #1f2937;
    }

    .rx-check {
      color:  #7c3aed;
      font-weight: 800;
      font-size: 20px;
    }

    .rx-view-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 14px;
    }

    .rx-mini-stat {
      background: #fff;
      border: 1px solid #dfe5ec;
      border-radius: 16px;
      padding: 12px 10px;
      text-align: center;
    }

    .rx-mini-stat strong {
      display: block;
      font-size: 24px;
      color: #111827;
      margin-bottom: 6px;
    }

    .rx-mini-stat span {
      font-size: 14px;
      color: #6b7280;
    }

    .rx-demo-controls {
      text-align: center;
    }

    .rx-run-btn {
      border: none;
      background: linear-gradient(90deg, #8f55ff 0%, #7c3aed 100%);
      color: #fff;
      padding: 15px 34px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(124, 58, 237, 0.18);
      transition: 0.3s ease;
    }

    .rx-run-btn:hover {
      transform: translateY(-2px);
    }

    .rx-demo-status {
      margin-top: 14px;
      color: #667085;
      font-size: 14px;
      min-height: 22px;
    }

    /* Bottom Dashboard */
    .rx-dashboard {
      display: none;
      margin-top: 34px;
      animation: fadeUp 0.5s ease;
    }

    .rx-dashboard.show {
      display: block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .rx-card {
      background: rgba(255,255,255,0.72);
      border: 1px solid #e5e7eb;
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
    }

    .rx-chart-card {
      margin-bottom: 24px;
    }

    .rx-chart-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .rx-chart-left h5,
    .rx-report-card h5 {
      font-size: 13px;
      letter-spacing: 0.8px;
      color: #8b8b8b;
      text-transform: uppercase;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .rx-claims-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .rx-claims-row h3 {
      font-size: 30px;
      font-weight: 800;
      color: #111827;
    }

    .rx-growth {
      background: rgba(16, 185, 129, 0.15);
      color: #10b981;
      font-size: 14px;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 999px;
    }

    .rx-chart-right {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 7px 8px 7px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-width: 130px;
      gap: 10px;
    }

    .rx-chart-right span {
      color: #7b7b7b;
      font-size: 14px;
      font-weight: 600;
    }

    .rx-chart-right strong {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #10b981;
      font-size: 15px;
    }

    .rx-legend {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 16px;
    }

    .rx-legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #7b7b7b;
      font-size: 15px;
    }

    .rx-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }

    .dot-a { background: #4361ff; }
    .dot-b { background: #22c55e; }
    .dot-c { background: #f59e0b; }

    .rx-chart-area {
      position: relative;
      height: 260px;
      border-radius: 18px;
      overflow: hidden;
      padding: 8px 10px 30px 48px;
    }

    .rx-grid-line {
      position: absolute;
      left: 48px;
      right: 10px;
      height: 1px;
      border-top: 2px dashed #d1d5db;
      opacity: 0.9;
    }

    .g1 { top: 18px; }
    .g2 { top: 73px; }
    .g3 { top: 128px; }
    .g4 { top: 183px; }
    .g5 { top: 238px; }

    .rx-y-labels {
      position: absolute;
      left: 0;
      top: 6px;
      bottom: 30px;
      width: 44px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: right;
      color: #6b7280;
      font-size: 13px;
      font-weight: 600;
      padding-right: 10px;
    }

    .rx-chart-svg {
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 2;
    }

    .rx-months {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      margin-top: 8px;
      padding-left: 48px;
      color: #6b7280;
      font-size: 13px;
      font-weight: 500;
    }

    .rx-months span {
      text-align: center;
    }

    .rx-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 18px 0 24px;
    }

    .rx-tab-btn {
      border: 1px solid #e5e7eb;
      background: #f8fafc;
      color: #8b8b8b;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .rx-tab-btn.active {
      background: #10b981;
      color: #fff;
      border-color: #10b981;
      box-shadow: 0 10px 20px rgba(16, 185, 129, 0.18);
    }

    .rx-table-wrap {
      overflow-x: auto;
    }

    .rx-report-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 760px;
    }

    .rx-report-table th {
      text-align: left;
      color: #8b8b8b;
      font-size: 12px;
      text-transform: uppercase;
      padding: 14px;
      border-bottom: 1px solid #d1d5db;
      font-weight: 700;
    }

    .rx-report-table td {
      padding: 16px 14px;
      font-size: 15px;
      color: #4b5563;
    }

    .rx-report-table td:first-child {
      color: #14b8a6;
      font-family: monospace;
      font-weight: 700;
      font-size: 17px;
    }

    .rx-status-short {
      color: #f59e0b;
      font-weight: 700;
      white-space: nowrap;
    }

    .rx-status-surplus {
      color: #38bdf8;
      font-weight: 700;
      white-space: nowrap;
    }

    .rx-status-match {
      color: #84cc16;
      font-weight: 700;
      white-space: nowrap;
    }

    @media (max-width: 991px) {
      .rx-steps-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .rx-heading h2 {
        font-size: 30px;
      }

      .rx-demo-card,
      .rx-card {
        padding: 18px;
        border-radius: 20px;
      }

      .rx-chart-area {
        height: 220px;
        padding-left: 38px;
      }

      .rx-grid-line {
        left: 38px;
      }

      .rx-y-labels {
        width: 35px;
        font-size: 11px;
      }

      .rx-months {
        padding-left: 38px;
        font-size: 11px;
      }

      .rx-view-stats {
        grid-template-columns: 1fr;
      }

      .rx-tab-btn {
        padding: 11px 18px;
        font-size: 14px;
      }
    }  

/*Demo Section End*/


/*One Smart Platform for Pharmacy Audits & Reconciliation Start*/

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f7f5fb;
      color: #111827;
    }

    .audit-section {
      padding: 120px 20px;
      background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
    }

    .audit-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .audit-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .audit-badge {
      display: inline-block;
      background: #efe7ff;
      color: #6d28d9;
      padding: 10px 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .audit-title {
      font-size: 52px;
      line-height: 1.2;
      font-weight: 800;
      color: #111827;
      margin-bottom: 18px;
    }

    .audit-title span {
      background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .audit-subtitle {
      max-width: 900px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.8;
      color: #667085;
    }

    .audit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .flip-card {
      perspective: 1200px;
      height: 250px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.7s ease;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 24px;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(124, 58, 237, 0.08);
      border: 1px solid #e9ddff;
      padding: 28px 24px;
    }

    .flip-card-front {
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    
    @media (max-width: 768px) {
  .flip-card-front {
   align-items: center;
  }
}

    .flip-card-back {
      background: linear-gradient(135deg, #8b5cf6, #6d28d9);
      color: #fff;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .card-icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 20px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }

    .c1 { background: #dff3df; }
    .c2 { background: #f7e6e6; }
    .c3 { background: #fde9dd; }
    .c4 { background: #eadcff; }
    .c5 { background: #ddf5f2; }
    .c6 { background: #dfefff; }
    .c7 { background: #e8edf1; }
    .c8 { background: #e7e9fb; }

    .card-title {
      font-size: 27px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 8px;
    }

    .card-sub {
      font-size: 22px;
      font-weight: 500;
      color: #374151;
    }

    .back-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .back-text {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,0.92);
    }

    @media (max-width: 1100px) {
      .audit-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .audit-title {
        font-size: 40px;
      }
    }

    @media (max-width: 700px) {
      .audit-section {
        padding: 90px 20px;
      }

      .audit-grid {
        grid-template-columns: 1fr;
      }

      .audit-title {
        font-size: 32px;
      }

      .audit-subtitle {
        font-size: 16px;
      }

      .flip-card {
        height: 230px;
      }

      .card-title {
        font-size: 24px;
      }

      .card-sub {
        font-size: 18px;
      }
    }


/*One Smart Platform for Pharmacy Audits & Reconciliation End*/




/*Works With Your Existing Pharmacy Workflow start*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f5fb;
  color: #111827;
}

.compatibility-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
}

.compatibility-container {
  max-width: 1280px;
  margin: 0 auto;
}

.compatibility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: #6d28d9;
  background:  #efe7ff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.section-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.section-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #5f6b7a;
  margin-bottom: 26px;
  max-width: 620px;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1.5px solid #7c3aed;
  border-radius: 999px;
  color: #7c3aed;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  cursor: default;
}

.pill:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35, 91, 82, 0.15);
}

.compatibility-visual {
  display: flex;
  justify-content: center;
}

.mockup-card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid #ece8f5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(97, 76, 145, 0.10);
}

.mockup-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  background: #faf8ff;
  border-bottom: 1px solid #eee8fb;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot1 {
  background: #f87171;
}

.dot2 {
  background: #fbbf24;
}

.dot3 {
  background: #34d399;
}

.mockup-body {
  padding: 24px;
}

.mockup-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.mockup-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 22px;
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #eef1f4;
}

.mock-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.mock-meta {
  font-size: 12px;
  color: #667085;
}

.mock-status {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.status-ready {
  background: #e8faf0;
  color: #16a34a;
}

.status-processing {
  background: #fff7ed;
  color: #ea580c;
}

.status-linked {
  background: #eef2ff;
  color: #4f46e5;
}

.section-note {
  margin-top: 18px;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 1100px) {
  .compatibility-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .compatibility-section {
    padding: 90px 20px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-text {
    font-size: 16px;
  }

  .pill {
    font-size: 13px;
    padding: 10px 14px;
  }

  .mockup-body {
    padding: 18px;
  }
}


/*Works With Your Existing Pharmacy Workflow End*/




/*Works With Your best Supplier and Files Start*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wholesaler-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f8f6fc 0%, #ffffff 100%);
  font-family: Arial, sans-serif;
}

.wholesaler-container {
  max-width: 1280px;
  margin: 0 auto;
}

.wholesaler-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 45px;
  align-items: center;
}

.active-dealer {
  background: #235b52 !important;
  color: #fff !important;
  box-shadow: 0 12px 22px rgba(35, 91, 82, 0.16);
}

.wholesaler-badge {
  display: inline-block;
  padding: 10px 18px;
  background: #efe7ff;
  color: #6d28d9;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}



.wholesaler-title {
  font-size: 50px;
  line-height: 1.12;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
}

.wholesaler-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wholesaler-text {
  font-size: 18px;
  line-height: 1.85;
  color: #667085;
  margin-bottom: 28px;
  max-width: 620px;
}

.wholesaler-points {
  display: grid;
  gap: 14px;
}

.wholesaler-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #ece5ff;
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.05);
  color: #374151;
  font-size: 15px;
  font-weight: 600;
}

.point-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.wholesaler-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e8defc;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 55px rgba(124, 58, 237, 0.10);
  transition: 0.35s ease;
}

.wholesaler-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(124, 58, 237, 0.16);
}

.visual-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.visual-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.visual-topbar span:nth-child(1) {
  background: #f87171;
}

.visual-topbar span:nth-child(2) {
  background: #fbbf24;
}

.visual-topbar span:nth-child(3) {
  background: #34d399;
}

.visual-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.visual-subtitle {
  font-size: 15px;
  line-height: 1.75;
  color: #667085;
  margin-bottom: 24px;
}

.wholesaler-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dealer-tag {
  padding: 12px 18px;
  border: 1.5px solid #7c3aed;
  color: #7c3aed;
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dealer-tag:hover {
  background: #7c3aed;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(35, 91, 82, 0.14);
}

.visual-note {
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 1100px) {
  .wholesaler-grid {
    grid-template-columns: 1fr;
  }

  .wholesaler-title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .wholesaler-section {
    padding: 90px 20px;
  }

  .wholesaler-title {
    font-size: 31px;
  }

  .wholesaler-text {
    font-size: 16px;
  }

  .dealer-tag {
    font-size: 13px;
    padding: 10px 14px;
  }

  .wholesaler-card {
    padding: 20px;
  }
}


/*Works With Your best Supplier and Files End*/


/*Our Solutions Section start*/

  .rxs-solutions-main {
  padding: 80px 20px 100px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.rxs-solutions-container {
  max-width: 1180px;
  margin: 0 auto;
}

.rxs-solutions-header {
  text-align: center;
  margin-bottom: 54px;
}

.rxs-solutions-top-line {
  width: 240px;
  background: #fff;
  margin: 0 auto 18px;
  position: relative;
}

.rxs-solutions-icon-box {
  width: 60px;
  height: 60px;
  margin: -20px auto 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #9d67ff 0%, #6f31ff 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(111, 49, 255, 0.22);
}

.rxs-solutions-title {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 14px;
  font-weight: 800;
  color: #111;
}

.rxs-solutions-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #807b8d;
}

.rxs-solutions-group {
  margin-bottom: 52px;
}

.rxs-solutions-group-label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
}

.rxs-solutions-grid {
  display: grid;
  gap: 22px;
}

.rxs-solutions-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.rxs-solutions-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 780px;
  margin: 0 auto;
}

.rxs-solution-card {
  background: #fff;
  border: 1px solid #ede7f6;
  border-radius: 28px;
  padding: 22px 22px 20px;
  min-height: 290px;
  box-shadow: 0 6px 16px rgba(37, 17, 89, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rxs-solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(37, 17, 89, 0.08);
}

.rxs-card-badge-row {
  margin-bottom: 8px;
}

.rxs-beta-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #efe7ff;
  color: #8e5cff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.rxs-card-visual {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.rxs-solution-card h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #111;
  font-weight: 800;
}

.rxs-solution-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #7f7a89;
  margin: 0;
}

/* visual 1 */
.rxs-visual-flow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rxs-mini-box {
  width: 108px;
  height: 88px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(32, 16, 74, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rxs-mini-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #f3edff;
  color: #7a41ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.rxs-mini-box span {
  font-size: 12px;
  line-height: 1.4;
  color: #2f2a39;
  text-align: center;
}

.rxs-plus-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8d54ff 0%, #6f31ff 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(111, 49, 255, 0.24);
}

/* visual 2 */
.rxs-circle-system {
  width: 160px;
  height: 160px;
  position: relative;
}

.rxs-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #daccf4;
}

.rxs-ring-one {
  inset: 10px;
}

.rxs-ring-two {
  inset: 35px;
}

.rxs-center-hex {
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #8f55ff 0%, #702fff 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 60px;
  left: 60px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rxs-node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.rxs-node-r {
  background: #8f55ff;
  color: #fff;
}

.rxs-node-a {
  background: #fff;
  color: #8d849a;
  border: 1px solid #e7def7;
}

.rxs-n1 { top: 8px; left: 69px; }
.rxs-n2 { top: 38px; left: 16px; }
.rxs-n3 { top: 92px; left: 10px; }
.rxs-n4 { top: 38px; right: 12px; }
.rxs-n5 { top: 92px; right: 10px; }
.rxs-n6 { bottom: 6px; left: 69px; }

/* visual 3 */
.rxs-product-demo {
  width: 180px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(32, 16, 74, 0.08);
  padding: 14px;
}

.rxs-product-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.rxs-thumb-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #efe7fb;
}

.rxs-product-lines {
  flex: 1;
}

.rxs-product-lines strong {
  display: block;
  font-size: 10px;
  color: #222;
  margin-bottom: 5px;
}

.rxs-product-lines span {
  display: block;
  height: 5px;
  border-radius: 10px;
  background: #ece4f9;
  margin-bottom: 5px;
}

.rxs-product-lines span:last-child {
  width: 78%;
  margin-bottom: 0;
}

.rxs-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rxs-dots {
  width: 24px;
  height: 8px;
  background: radial-gradient(circle, #d4c7ef 2px, transparent 3px) 0 0 / 8px 8px;
}

.rxs-product-footer a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #8d54ff 0%, #6f31ff 100%);
  padding: 7px 12px;
  border-radius: 18px;
}

/* visual 4 */
.rxs-stack-wrap {
  width: 190px;
  height: 110px;
  position: relative;
}

.rxs-stack-card {
  position: absolute;
  top: 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(32, 16, 74, 0.08);
}

.rxs-stack-card.left {
  width: 90px;
  height: 66px;
  left: 18px;
  transform: rotate(-12deg);
}

.rxs-stack-card.right {
  width: 90px;
  height: 66px;
  right: 18px;
  transform: rotate(12deg);
}

.rxs-stack-card.center {
  width: 118px;
  height: 72px;
  left: 36px;
  top: 20px;
  background: linear-gradient(180deg, #8e55ff 0%, #6e31ff 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(111, 49, 255, 0.26);
}

/* visual 5 */
.rxs-graph-box {
  width: 200px;
  height: 120px;
  position: relative;
}

.rxs-graph-tag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 8px;
  color: #968ca7;
  background: #fff;
  padding: 4px 9px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(37, 17, 89, 0.06);
}

.rxs-graph-price {
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #8d54ff 0%, #6f31ff 100%);
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(111, 49, 255, 0.2);
}

/* visual 6 */
.rxs-rank-wrap {
  display: flex;
  align-items: end;
  gap: 10px;
}

.rxs-rank-box {
  width: 62px;
  border-radius: 10px 10px 14px 14px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(32, 16, 74, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b5aec3;
  font-size: 18px;
  font-weight: 700;
}

.rxs-rank-box.small {
  height: 62px;
}

.rxs-rank-box.big {
  height: 100px;
  background: linear-gradient(180deg, #8d54ff 0%, #6f31ff 100%);
  color: #fff;
  font-size: 28px;
}

/* visual 7 */
.rxs-search-visual {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rxs-search-circle {
  width: 44px;
  height: 44px;
  border: 4px solid #8d54ff;
  border-radius: 50%;
  position: relative;
}

.rxs-search-circle::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 4px;
  background: #8d54ff;
  border-radius: 4px;
  right: -10px;
  bottom: 3px;
  transform: rotate(45deg);
}

.rxs-search-bar {
  width: 95px;
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, #efe7ff 0%, #ddd0ff 100%);
}

@media (max-width: 991px) {
  .rxs-solutions-grid-3,
  .rxs-solutions-grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .rxs-solutions-title {
    font-size: 40px;
  }

  .rxs-solution-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .rxs-solutions-main {
    padding: 60px 16px 70px;
  }

  .rxs-solutions-title {
    font-size: 32px;
  }

  .rxs-solutions-subtitle {
    font-size: 14px;
  }

  .rxs-solution-card {
    padding: 20px 18px 18px;
  }

  .rxs-solution-card h3 {
    font-size: 18px;
  }

  .rxs-solution-card p {
    font-size: 14px;
  }

  .rxs-card-visual {
    height: auto;
    min-height: 120px;
  }
}

/*CTA Section Start*/
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
  font-family: Arial, sans-serif;
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
}

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 70px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f1ff 45%, #eef4ff 100%);
  border: 1px solid #e9ddff;
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.10);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.14);
  top: -70px;
  left: -70px;
  filter: blur(30px);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.14);
  bottom: -70px;
  right: -70px;
  filter: blur(30px);
}

.cta-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7ff;
  color: #6d28d9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-title {
  position: relative;
  z-index: 1;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.85;
  color: #667085;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.20);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(124, 58, 237, 0.28);
}

.secondary-btn {
  background: #ffffff;
  color: #5b21b6;
  border: 1px solid #ddd6fe;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.06);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: #f9f5ff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.12);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 90px 10px;
  }

  .cta-box {
    padding: 50px 20px;
    border-radius: 24px;
  }

  .cta-title {
    font-size: 31px;
  }

  .cta-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
  }
}
/*CTA Section END*/

/*Our Testimonials Section Start*/
.testimonials-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 55px;
}

.testimonials-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7ff;
  color: #6d28d9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.testimonials-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.testimonials-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-text {
  font-size: 18px;
  line-height: 1.8;
  color: #667085;
}

.testimonials-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.testimonials-slider {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e9ddff;
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: 0 20px 48px rgba(124, 58, 237, 0.08);
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.testimonial-stars {
  font-size: 22px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-size: 20px;
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 28px;
  word-break: break-word;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(109, 40, 217, 0.18);
}

.testimonial-user h4 {
  font-size: 18px;
  color: #111827;
  font-weight: 800;
  margin-bottom: 4px;
}

.testimonial-user span {
  font-size: 14px;
  color: #667085;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #6d28d9;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.12);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background: #6d28d9;
  color: #fff;
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8c8ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
}

/* Tablet */
@media (max-width: 992px) {
  .testimonials-section {
    padding: 90px 20px;
  }

  .testimonials-title {
    font-size: 38px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-quote {
    font-size: 18px;
    line-height: 1.75;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 90px 10px;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .testimonials-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .testimonials-slider-wrap {
    gap: 0;
  }

  .testimonial-slide {
    padding: 6px;
  }

  .testimonial-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .testimonial-stars {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .testimonial-user {
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .testimonial-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 16px;
  }

  .testimonial-user h4 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .testimonial-user span {
    font-size: 12px;
    line-height: 1.5;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-dots {
    margin-top: 20px;
    gap: 8px;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .testimonial-dot.active {
    width: 26px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .testimonials-section {
    padding: 90px 10px;
  }

  .testimonials-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .testimonials-title {
    font-size: 26px;
  }

  .testimonials-text {
    font-size: 14px;
  }

  .testimonial-slide {
    padding: 4px;
  }

  .testimonial-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .testimonial-quote {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-user h4 {
    font-size: 14px;
  }

  .testimonial-user span {
    font-size: 11px;
  }
}
/*Our Testimonials Section End*/

/*FAQ Section Start*/
.faq-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 980px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.faq-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7ff;
  color: #6d28d9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.faq-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-text {
  font-size: 18px;
  line-height: 1.8;
  color: #667085;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e9ddff;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #cdb5ff;
  box-shadow: 0 20px 42px rgba(124, 58, 237, 0.10);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.faq-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ecff;
  color: #6d28d9;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #6d28d9;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.85;
  color: #667085;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 90px 20px;
  }

  .faq-title {
    font-size: 31px;
  }

  .faq-text {
    font-size: 16px;
  }

  .faq-question {
    padding: 20px 18px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 20px;
    font-size: 15px;
    line-height: 1.75;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 20px;
  }
}
/*FAQ Section End*/

/*Works Across Insurance & PBM Data Start*/

.insurance-slider-section {
  padding: 120px 20px 120px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
  overflow: hidden;
}

.insurance-slider-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.insurance-slider-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7ff;
  color: #6d28d9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.insurance-slider-title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.2;
}

.insurance-slider-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insurance-slider-text {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.8;
  color: #667085;
}

.insurance-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.insurance-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: insuranceScroll 28s linear infinite;
}

.insurance-slider:hover .insurance-track {
  animation-play-state: paused;
}

.insurance-pill {
  flex: 0 0 auto;
  padding: 14px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e8defc;
  color: #4c1d95;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.06);
  transition: all 0.3s ease;
}

.insurance-pill:hover {
  transform: translateY(-3px);
  border-color: #cdb5ff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.12);
}

@keyframes insuranceScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .insurance-slider-section {
    padding: 90px 20px;
  }

  .insurance-slider-title {
    font-size: 28px;
  }

  .insurance-slider-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .insurance-pill {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/*Works Across Insurance & PBM Data End */


/*Simple Steps to Reconcile Faster Section start*/

   .steps-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
    font-family: Arial, sans-serif;
  }

  .steps-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .steps-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .steps-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f0e7ff;
    color: #6d28d9;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .steps-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
  }

  .steps-title span {
    background: linear-gradient(90deg, #7c3aed, #8b5cf6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .steps-subtitle {
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }

  .step-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 28px;
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.08);
    border: 1px solid #eee6ff;
    min-height: 310px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 26px;
  }

  .step-card h3 {
    font-size: 22px;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 22px;
    font-weight: 800;
  }

  .step-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .step-card ul li,
  .step-text {
    font-size: 16px;
    line-height: 1.8;
    color: #111827;
    margin-bottom: 10px;
  }

  .status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .status-item {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
  }

  .status-item.ok {
    background: #e7f7ea;
    color: #16a34a;
  }

  .status-item.short {
    background: #fdecec;
    color: #dc2626;
  }

  .status-item.over {
    background: #fff4e8;
    color: #ea580c;
  }

  .steps-bottom {
    text-align: center;
    margin-top: 34px;
    font-size: 16px;
    color: #111827;
  }

  @media (max-width: 1100px) {
    .steps-title {
      font-size: 46px;
    }

    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .steps-section {
      padding: 90px 20px;
    }

    .steps-title {
      font-size: 34px;
    }

    .steps-subtitle {
      font-size: 16px;
    }

    .steps-grid {
      grid-template-columns: 1fr;
    }

    .step-card {
      min-height: auto;
      padding: 24px 20px;
    }

    .step-card h3 {
      font-size: 20px;
    }
  }

/*Simple Steps to Reconcile Faster Section  End*/


/*MAP Section Start*/

.coverage-modern {
  padding: 120px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #f8f6fc 100%);
  font-family: Arial, sans-serif;
  text-align: center;
}

.coverage-modern-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Badge */
.coverage-modern-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #efe7ff;
  color: #6d28d9;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Title */
.coverage-modern-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  max-width: 900px;
  margin: 0 auto 16px;
}

.coverage-modern-title span {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.coverage-modern-text {
  font-size: 18px;
  line-height: 1.85;
  color: #667085;
  max-width: 750px;
  margin: 0 auto 30px;
}

/* Button */
.coverage-modern-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.25);
}

.coverage-modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(124, 58, 237, 0.35);
}

/* Map */
.coverage-modern-map {
  margin-top: 50px;
}

.coverage-modern-map img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(90%);
  opacity: 0.9;
}

.coverage-modern-map img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .coverage-modern {
    padding: 90px 20px;
  }

  .coverage-modern-title {
    font-size: 32px;
  }

  .coverage-modern-text {
    font-size: 15px;
  }

  .coverage-modern-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
/*MAP Section End*/