/* ============================================================
   SECTION-SPECIFIC STYLES (extracted from inline blocks)
   ============================================================ */

/* ======================================
   CARE JOURNEY
====================================== */

.care-journey-section{
  position:relative;
}

.journey-phase{
  margin-bottom:80px;
}

.journey-phase:last-child{
  margin-bottom:0;
}

.journey-phase-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:32px;
}

.journey-phase-number{
  width:62px;
  height:62px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    135deg,
    var(--brand-royal),
    var(--brand-accent)
  );

  color:#fff;
  font-weight:900;
  font-size:1.1rem;

  box-shadow:
  0 14px 30px rgba(91,101,221,.25);
}
.about-story-grid{
  display:block !important;
  width:100%;
}

.about-story-grid > div{
  width:100%;
  max-width:100%;
}
.journey-phase-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;

  color: #F2572B;
  background: #FFECE8;

  padding: 6px 15px;  
  border-radius: 9999px;

  margin-bottom: 8px;
  line-height: 1;
}

.journey-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.journey-grid-4{
  grid-template-columns:repeat(3,1fr);
}

.journey-card{
   background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:24px;
  padding:28px;
  transition:.3s ease;

  display:flex;
  flex-direction:column;
  height:100%;
}

.journey-card:hover{
  transform:translateY(-6px);
  border-color:var(--brand-royal);
  box-shadow:var(--shadow-lg);
}

.journey-card.featured{
  background:
  linear-gradient(
    135deg,
    rgba(91,101,221,.05),
    rgba(61,155,233,.05)
  );
}



.journey-card h4{
  font-size:1rem;
  font-weight:800;
  margin-bottom:10px;
  color:var(--text-primary);
}

.journey-card p{
  color:var(--text-secondary);
  line-height:1.7;
  margin-bottom:18px;
  font-size:.92rem;

  flex:1;
}

.journey-tags{
   display:flex;
  flex-wrap:wrap;
  gap:8px;

  margin-top:auto;
}

.journey-tags span{
  padding:6px 12px;
  border-radius:999px;

  background:#EFF0FB;
  color:#122056;
/* gap:1px; */
  font-size:.72rem;
  font-weight:700;
}

@media(max-width:1100px){

  .journey-grid,
  .journey-grid-4{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .journey-grid,
  .journey-grid-4{
    grid-template-columns:1fr;
  }

  .journey-phase-header{
    align-items:flex-start;
  }

  .journey-phase-number{
    width:54px;
    height:54px;
    border-radius:14px;
  }

}

/* ===== PLATFORM MATRIX ===== */

.matrix-section{
  padding:96px 0;
  background:var(--bg-secondary);
}

.matrix-wrap{
  max-width:1200px;
  margin:0 auto;
}

.matrix-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:var(--bg-card);
  border:1px solid var(--border-color);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}

.matrix-col{
  padding:32px;
}

.matrix-col:not(:last-child){
  border-right:1px solid var(--border-color);
}

.matrix-col-head{
  font-size:.80rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-muted);
  padding-bottom:14px;
  margin-bottom:24px;
  border-bottom:1px solid var(--border-color);
}

.matrix-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
}

.matrix-item:last-child{
  margin-bottom:0;
}

.m-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.m-icon i{
  color:#fff;
  font-size:20px;
}

.m-name{
  font-size:.95rem;
  font-weight:700;
  color:var(--text-primary);
  margin-bottom:4px;
}

.m-desc{
  font-size:.82rem;
  line-height:1.5;
  color:var(--text-secondary);
}

/* COLUMN COLORS */

/* .matrix-col:nth-child(1) .m-icon{
  background:var(--brand-teal);
} */

.matrix-col:nth-child(2) .matrix-item:nth-child(2) .m-icon,
.matrix-col:nth-child(2) .matrix-item:nth-child(3) .m-icon,
.matrix-col:nth-child(2) .matrix-item:nth-child(6) .m-icon{
  background:var(--brand-royal);
}

.matrix-col:nth-child(2) .matrix-item:nth-child(4) .m-icon,
.matrix-col:nth-child(2) .matrix-item:nth-child(5) .m-icon{
  background:var(--brand-accent);
}

.matrix-col:nth-child(3) .m-icon{
  background:var(--brand-dark);
}

/* Coming Soon */

.m-soon{
  opacity:.65;
}

.m-icon-ghost{
  background:var(--bg-secondary)!important;
  border:1px dashed var(--border-color);
}

.m-icon-ghost i{
  color:var(--text-muted);
}

.m-soon .m-name span{
  color:var(--brand-royal)!important;
  font-weight:700;
}

/* Hover */

.matrix-item{
   display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:12px;
}

/* .matrix-item:hover{
  background:var(--bg-secondary);
  transform:translateY(-2px);
} */

/* Responsive */

@media(max-width:991px){

  .matrix-grid{
    grid-template-columns:1fr;
  }

  .matrix-col:not(:last-child){
    border-right:none;
    border-bottom:1px solid var(--border-color);
  }
}

@media(max-width:768px){

  .matrix-col{
    padding:24px;
  }

  .m-icon{
    width:40px;
    height:40px;
  }

  .m-icon i{
    font-size:18px;
  }
}

/* TRUST SECTION */

.trust-section-home{
  background:linear-gradient(
    135deg,
    #122056 0%,
    #1a2b73 55%,
    #122056 100%
  );
  position:relative;
  overflow:hidden;
}

.trust-section-home::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,
  rgba(91,101,221,.18),
  transparent 45%);
  pointer-events:none;
}

.trust-eyebrow{
  background:rgba(255,255,255,.08) !important;
  color:#A5ABEF !important;
  border:1px solid rgba(255,255,255,.12);
}

.trust-title{
  color:#fff;
  max-width:700px;
  margin:auto;
}

.trust-subtitle{
  max-width:650px;
  margin:18px auto 0;
  color:rgba(255,255,255,.72);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:34px;
}

.trust-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:28px 20px;
  text-align:center;
  backdrop-filter:blur(10px);
   transition: all .35s ease;
  cursor: pointer;
}

.trust-number{
  font-size:3rem;
  transition: all .35s ease;
  font-weight:900;
  line-height:1;
  color:#fff;
  margin-bottom:10px;
}

.trust-text{
  color:rgba(255,255,255,.65);
  font-size:.95rem;
  font-weight:600;
}

.trust-badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.trust-badge{
  display:flex;
  align-items:center;
  transition: all .3s ease;
  cursor: pointer;
  gap:8px;

  padding:11px 18px;

  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);

  border-radius:12px;

  color:rgba(255,255,255,.92);
  font-size:.9rem;
  font-weight:700;
}

.trust-badge i{
  color:var(--brand-teal);
  font-size:18px;
   transition: all .3s ease;
  flex-shrink:0;
}
/* ======================================
   TRUST HOVER EFFECTS
====================================== */

.trust-card{
  transition: all .35s ease;
  cursor: pointer;
}

.trust-card:hover{
  transform: translateY(-8px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.trust-card:hover .trust-number{
  color: #F2572B;
  transform: scale(1.05);
}

.trust-number{
  transition: all .35s ease;
}

.trust-badge{
  transition: all .3s ease;
  cursor: pointer;
}

.trust-badge:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

.trust-badge:hover i{
  transform: scale(1.15);
}

.trust-badge i{
  transition: all .3s ease;
}

/* subtle glow */
.trust-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(13,191,173,.08),
    transparent 60%
  );
  opacity:0;
  transition:.35s;
  border-radius:20px;
}

.trust-card{
  position:relative;
  overflow:hidden;
}

.trust-card:hover::before{
  opacity:1;
}

@media(max-width:768px){

  .trust-grid{
    grid-template-columns:1fr;
  }

  .trust-number{
    font-size:2.5rem;
  }

  .trust-card{
    padding:24px 18px;
  }

}

.workflow-text{
  margin:0;
  white-space:nowrap;
}

@media (max-width:768px){
  .workflow-text{
    white-space:normal;      /* mobile par wrap ho jayega */
    text-align:center;
    font-size:14px;
    line-height:1.6;
  }
}

/* Modalities Tabs Responsive */
.tab-list{
  display:flex;
  gap:8px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  flex-wrap:nowrap;
}

.tab-list::-webkit-scrollbar{
  display:none;
}

.tab-btn{
  flex:0 0 auto;
  white-space:nowrap;
}

@media (max-width:768px){

  .tab-list{
    padding-bottom:8px;
  }

  .tab-btn{
    font-size:13px;
    padding:10px 14px;
  }

  .grid-3{
    grid-template-columns:1fr;
  }

  .card{
    padding:20px;
  }

  .heading-3{
    font-size:1rem;
  }
}

/* ==========================================
   COMPLIANCE SECTION
========================================== */

.compliance-section{
  padding:96px 0;
  background:#fff;
}

.compliance-grid{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start;
}

/* LEFT SIDE */

.compliance-badges{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:28px;
}

.compliant-badge{
  background:#EFF0FB;
  /* border:1px solid rgba(16, 18, 40, 0.15); */

  border-radius:12px;

  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:16px;

  transition:.25s ease;
}
.compliant-icon{
  flex-shrink:0;
}

.compliant-icon img{
  width:32px;
  height:32px;
  object-fit:contain;
  display:block;
}
.compliant-badge:hover{
  transform:translateY(-2px);
  border-color:var(--brand-royal);
  box-shadow:0 8px 24px rgba(91,101,221,.08);
}

.compliant-badge-title{
  color:var(--brand-dark);
  font-size:0.95rem;
  font-weight:700;
  line-height:1.35;
  margin-bottom:4px;
}

.compliant-badge-sub{
  color:var(--text-secondary);
  font-size:0.82rem;
  line-height:1.45;
}

/* RIGHT SIDE */

.guideline-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.guideline-item{
  display:flex;
  align-items:flex-start;
  gap:12px;

  padding:14px 16px;

  background:#fff;
  border:1px solid var(--border-color);
  border-radius:12px;

  transition:.25s ease;
}

.guideline-item:hover{
  border-color:var(--brand-royal);
  box-shadow:0 6px 18px rgba(91,101,221,.06);
}

.guideline-num{
  width:28px;
  height:28px;
  min-width:28px;

  border-radius:50%;

  background:var(--brand-royal);
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:.75rem;
  font-weight:700;

  margin-top:2px;
}

.guideline-text{
  color:var(--text-secondary);
  font-size:.86rem;
  line-height:1.55;
}

.guideline-text strong{
  color:var(--text-primary);
  font-weight:700;
}

/* MOBILE */

@media (max-width:768px){

  .compliance-section{
    padding:72px 0;
  }

  .compliance-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .compliant-badge{
    padding:16px 18px;
  }

  .guideline-item{
    padding:14px;
  }

  .guideline-text{
    font-size:.84rem;
  }
}

.delivery-section{
    background:var(--bg-secondary);
}



.principles-section{
    background: #122056; /* Blue */
    padding: 100px 0;
}

.principles-section .section-eyebrow{
    background: rgba(91,101,221,.20);
    border: 1px solid rgba(91,101,221,.40);
    color: #A5ABEF;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.principles-section .heading-1{
    color: #ffffff;
}

.principles-section .card{
    background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  transition:all .35s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.principles-section .card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 20px 40px rgba(0,0,0,.20);
}
.principles-section .card h3{
    color: #ffffff;
     transition:all .35s ease;
}
.principles-section .card:hover h3{
  color:#F2572B;
}

.principles-section .card p{
    color: rgba(255,255,255,0.8) !important;
}
.principles-section .card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(242,87,43,.10),
    transparent 60%
  );
  opacity:0;
  transition:.35s ease;
}

.principles-section .card:hover::before{
  opacity:1;
}



/* ======================================
   PRODUCT CARD HOVER EFFECT
====================================== */

.product-card{
  position:relative;
  overflow:hidden;
  transition:all .35s ease;
  cursor:pointer;
}

.product-card:hover{
  transform:translateY(-10px);
  border-color:rgba(91,101,221,.35);
  box-shadow:0 24px 50px rgba(18,32,86,.12);
}

.product-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(91,101,221,.08),
    rgba(242,87,43,.06),
    transparent 60%
  );
  opacity:0;
  transition:.35s ease;
  pointer-events:none;
}

.product-card:hover::before{
  opacity:1;
}

.product-card .heading-2{
  transition:all .35s ease;
}

.product-card:hover .heading-2{
  color:#F2572B;
}

.product-card .product-badge{
  transition:all .35s ease;
}

.product-card:hover .product-badge{
  transform:translateY(-2px);
}

.product-card .btn{
  transition:all .35s ease;
}

.product-card:hover .btn-primary{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(242,87,43,.25);
}

/* ==========================
   TEAM SECTION
========================== */

.team-section .section-header{
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-section .heading-1{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;
}
.team-section{
    padding:100px 0;
    background:#ffffff;
}

.team-section .section-header{
    text-align:center;
    margin-bottom:50px;
}

.team-desc{
    max-width:760px;
    margin:16px auto 0;
    color:#667085;
    line-height:1.8;
    font-size:15px;
}

/* GRID */

.team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.team-card{
    width:100%;
}

.team-image-wrapper{
    width:100%;
    height:267px;
    background:#EFF0FB;
    border-radius:10px;
    overflow:hidden;
}

.team-image-wrapper img{
     width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;

    filter: grayscale(100%);
    transition: filter .4s ease, transform .4s ease;
}
.team-card:hover .team-image-wrapper img{
    filter: grayscale(0%);
    transform: scale(1.03);
}
.team-info{
      margin-top:12px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
}
.team-info > div{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.team-info h4{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111827;
    line-height:1.2;
    text-align:left;
}

.team-info span{
    display:block;
    margin-top:4px;
    font-size:13px;
    color:#6B7280;
    line-height:1.4;
    text-align:left;
}

/* LINKEDIN */

.linkedin-btn{
    width:32px;
    height:32px;
    min-width:32px;
    border-radius:50%;
    background:#0077B5;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:0.3s;
}

.linkedin-btn:hover{
    transform:translateY(-2px);
}

/* RESPONSIVE */
/* ==========================
   TEAM SECTION MOBILE FIX
========================== */

@media (max-width: 991px){

  .team-section{
    padding: 70px 0;
  }

  .team-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-section .heading-1{
    white-space: normal;
    font-size: 34px;
    line-height: 1.2;
  }

  .team-desc{
    font-size: 14px;
    padding: 0 10px;
  }

  .team-image-wrapper{
    height: 240px;
  }

  .team-info h4{
    font-size: 18px;
  }

}

@media (max-width: 767px){

  .team-section{
    padding: 60px 0;
  }

  .team-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-section .section-header{
    margin-bottom: 35px;
  }

  .team-section .heading-1{
    font-size: 28px;
    line-height: 1.3;
    white-space: normal;
    padding: 0 10px;
  }

  .team-desc{
    font-size: 14px;
    line-height: 1.7;
    padding: 0 15px;
  }

  .team-image-wrapper{
    height: 300px;
  }

  .team-info h4{
    font-size: 18px;
  }

  .team-info span{
    font-size: 12px;
  }

  .linkedin-btn{
    width: 36px;
    height: 36px;
  }

}

@media (max-width: 480px){

  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .team-section .heading-1{
    font-size: 24px;
  }

  .team-image-wrapper{
    height: 260px;
  }

}
@media (max-width:1200px){

    .team-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:992px){

    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .team-grid{
        grid-template-columns:1fr;
    }

    .team-image-wrapper{
        height:320px;
    }

}



/* ==========================================================
   RESOURCES PAGE
========================================================== */

.resources-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.resources-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.resources-content{
    max-width:580px;
}

.resources-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(99,102,241,.08);
    color:#6366f1;
    font-size:13px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:22px;
}

.resources-title{
    font-size:clamp(3rem,6vw,4.8rem);
    line-height:1;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:22px;
}

.resources-title span{
    color:var(--accent);
}

.resources-subtitle{
    font-size:18px;
    line-height:1.7;
    color:var(--text-secondary);
    margin-bottom:36px;
    max-width:540px;
}

.resource-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.feature-pill{
    padding:12px 16px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:12px;
    font-size:14px;
    font-weight:600;
    color:var(--text-primary);
    box-shadow:0 8px 20px rgba(0,0,0,.04);
    transition:all .3s ease;
}

.feature-pill:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.resources-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.resources-image::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(
        circle,
        rgba(99,102,241,.12) 0%,
        transparent 70%
    );
    border-radius:50%;
    z-index:0;
}

.resources-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:480px;
    object-fit:contain;
    animation:floatRocket 5s ease-in-out infinite;
}

@keyframes floatRocket{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-14px);
    }
    100%{
        transform:translateY(0);
    }
}

/* BUTTON */

.resources-content .btn{
    min-width:180px;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:1024px){

    .resources-layout{
        gap:50px;
    }

    .resources-title{
        font-size:3.8rem;
    }

    .resources-subtitle{
        font-size:17px;
    }

    .resources-image img{
        max-width:400px;
    }

    .resources-image::before{
        width:350px;
        height:350px;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .resources-hero{
        padding:100px 0 80px;
    }

    .resources-layout{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    .resources-content{
        max-width:100%;
        margin:auto;
    }

    .resources-title{
        font-size:2.8rem;
        margin-bottom:18px;
    }

    .resources-subtitle{
        font-size:16px;
        max-width:100%;
        margin-left:auto;
        margin-right:auto;
    }

    .resource-features{
        justify-content:center;
    }

    .resources-image::before{
        width:280px;
        height:280px;
    }

    .resources-image img{
        max-width:300px;
    }
}

/* ==========================================
   TRUST STRIP
========================================== */

.trust-strip{
  position:relative;
  overflow:hidden;

  padding:70px 24px;
  background:#122056;

  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.trust-strip::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at top right,
      rgba(91,101,221,.25),
      transparent 40%),
    radial-gradient(circle at bottom left,
      rgba(61,155,233,.12),
      transparent 40%);

  pointer-events:none;
}

.trust-strip::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,.04) 30%,
      transparent 31%
    );

  pointer-events:none;
}
.trust-strip-heading{
  color:#ffffff;
  margin-bottom:32px; /* gap increase */
}

.trust-strip-inner{
  /* max-width:900px; */
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.trust-strip-title{
  font-family:var(--font-display);
  font-size:40px;
  line-height:1.15;
  color:#ffffff;
  margin-bottom:18px;
  letter-spacing:-0.02em;
}

.trust-strip-text{
  max-width:960px;
  margin:0 auto 30px;

  color:rgba(255,255,255,.72);

  font-size:1.05rem;
  line-height:1.8;
  font-weight:400;
}

.trust-strip-badges{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.trust-chip{
  display:flex;
  align-items:center;
  gap:8px;

  padding:10px 18px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.10);

  border-radius:12px;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  color:#ffffff;
  font-size:.92rem;
  font-weight:500;

  transition:all .25s ease;
}

.trust-chip:hover{
  transform:translateY(-2px);

  background:rgba(255,255,255,.10);

  border-color:rgba(255,255,255,.18);
}

.trust-chip i{
  font-size:16px;
  color:#7DD3FC;
}

@media (max-width:768px){

  .trust-strip{
    padding:55px 20px;
  }

  .trust-strip-title{
    font-size:2rem;
  }

  .trust-strip-text{
    font-size:.95rem;
  }

  .trust-strip-badges{
    flex-direction:column;
    align-items:center;
  }

  .trust-chip{
    width:100%;
    max-width:320px;
    justify-content:center;
  }

}

.pricing-hero{
    background: linear-gradient(
        135deg,
        #0B1437 0%,
        #16245C 45%,
        #1E2B6A 100%
    );
    padding: 140px 0 90px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(242,87,43,0.08);
    top:-250px;
    right:-150px;
    filter:blur(60px);
}

.pricing-hero::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,0.04);
    bottom:-200px;
    left:-100px;
    filter:blur(50px);
}

.pricing-hero .section-header{
    position:relative;
    z-index:2;
    text-align:center;
}

.pricing-hero .display-2{
    color:#fff;
}

.pricing-hero-text{
    color:rgba(255,255,255,0.8) !important;
    max-width:700px;
    margin:14px auto 0;
}
.product-hero .chip-row{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    width:100%;
    margin-top:32px;
}
.product-hero .chip{
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
}

.product-hero .chip.active{
    background: #F2572B;
    border-color: #F2572B;
    color: #fff;
}

.product-hero .chip:hover{
    background: rgba(255,255,255,.14);
    color: #fff;
}


@media (max-width:768px){
    .pricing-hero{
        padding:120px 0 70px;
    }
}

#pricing-scribe .pricing-table-wrap {  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow-x:auto;   /* 🔥 MAIN FIX */
  overflow-y:hidden;
  -webkit-overflow-scrolling: touch;
  background:#fff; }
      #pricing-scribe .pricing-table { width:100%; border-collapse:collapse; table-layout:fixed; }
      #pricing-scribe .pricing-table {
  min-width: 900px;   /* 🔥 IMPORTANT */
}
      #pricing-scribe .pricing-table col:first-child { width:30%; }
      #pricing-scribe .pricing-table col:not(:first-child) { width:17.5%; }
      #pricing-scribe .pricing-table thead { background:#f9fafb; }
      #pricing-scribe .pricing-table th,
      #pricing-scribe .pricing-table td { border-bottom:1px solid #edf0f3; }
      #pricing-scribe .pricing-table th { padding:20px 16px; text-align:center; vertical-align:middle; }
      #pricing-scribe .pricing-table td { padding:16px; text-align:center; vertical-align:middle; font-size:14px; }
      #pricing-scribe .pricing-table [data-col] { transition: background-color .22s ease, box-shadow .22s ease; }
      #pricing-scribe .pricing-table [data-col].col-active {
        box-shadow: inset 1px 0 0 rgba(91,101,221,.18), inset -1px 0 0 rgba(91,101,221,.18);
      }
      #pricing-scribe .pricing-table td:first-child,
      #pricing-scribe .pricing-table th:first-child { text-align:left; }
      #pricing-scribe .plan-head { min-height:92px; display:flex; flex-direction:column; justify-content:center; gap:4px; }
      #pricing-scribe .feature-title { font-size:15px; }
      #pricing-scribe .muted-meta { font-size:12px; color:#5B65DD; }
      #pricing-scribe .cta-row td { padding:14px 16px; }
      #pricing-scribe .plan-btn { min-width:120px; padding:10px 20px; border-radius:8px; border:1px solid #ccc; background:#fff; cursor:pointer; }
      #pricing-scribe .plan-btn.primary {
        background: var(--btn-primary-bg);
        border-color: var(--btn-primary-bg);
        color: var(--btn-primary-fg);
      }
      #pricing-scribe .plan-btn.primary:hover {
        background: var(--btn-primary-hover);
        border-color: var(--btn-primary-hover);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
      }
      #pricing-scribe .plan-btn.hospital {
        background: var(--btn-accent-bg);
        border-color: var(--btn-accent-bg);
        color: var(--btn-accent-fg);
        font-weight:700;
      }
      #pricing-scribe .plan-btn.hospital:hover {
        background: var(--btn-accent-hover);
        border-color: var(--btn-accent-hover);
      }
      #pricing-scribe .table-most-popular {
        display:inline-block;
        background: var(--brand-teal);
        color:#052620;
        border-radius: var(--radius-pill);
        padding:3px 10px;
        font-size:.7rem;
        font-weight:800;
        letter-spacing:.06em;
        text-transform:uppercase;
        margin-bottom:6px;
      }
      @media (max-width: 768px) {

  #pricing-scribe {
    padding: 80px 10px;
  }

  #pricing-scribe .pricing-table th,
  #pricing-scribe .pricing-table td {
    padding: 12px 10px;
    font-size: 14px;
  }

  #pricing-scribe .plan-head {
    min-height: auto;
  }

  #pricing-scribe .plan-btn {
    padding: 8px 12px;
    font-size: 14px;
    min-width: auto;
  }

}
 .badge{
    display:inline-flex;
    align-items:center;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    line-height:1;
    margin-bottom:16px;
    width:fit-content;
}

.badge--orange{
    background:#FFF1EB;
    color:#FF5A1F;
}

.badge--green{
    background:#EAF8F1;
    color:#12A150;
}
.sample-output-section{
    padding:120px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:-70px auto 60px;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    margin:20px 0 16px;
}

.section-heading p{
    font-size:18px;
    color:#64748b;
    line-height:1.7;
}

.label-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border-radius:999px;
    background:#FFF1EB;
    color:#F2572B;
    font-size:14px;
    font-weight:600;
}

.report-wrap{
  background:#fff;
  border:1.5px solid #E5E7EB;
  border-radius:18px;
  overflow:hidden;
  max-width:680px;
  margin:0 auto;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
}

.report-header{
  background:#0D1B2A;
  color:#fff;
  padding:16px 24px;
  font-size:14px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.report-header span{
  opacity:.6;
  font-size:12px;
  font-weight:400;
}

.report-body{
  padding:24px;
}

.report-section-title{
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#9CA3AF;
  margin-bottom:12px;
  margin-top:20px;
}

.report-section-title:first-child{
  margin-top:0;
}

.report-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #F3F4F6;
  font-size:14px;
}

.report-row .key{
  color:#6B7280;
}

.report-row .value{
  color:#111827;
  font-weight:600;
}

.report-alert{
  margin-top:20px;
  background:#FFF7F5;
  border:1px solid #FDDDD5;
  border-left:4px solid #F2572B;
  border-radius:8px;
  padding:16px;
}

.alert-title{
  color:#F2572B;
  font-weight:700;
  margin-bottom:8px;
  font-size:14px;
}

.report-alert p{
  font-size:13px;
  line-height:1.7;
  color:#374151;
}

.report-footer{
  text-align:center;
  padding:16px 24px;
  border-top:1px solid #F3F4F6;
  font-size:12px;
  line-height:1.6;
  color:#9CA3AF;
}

@media (max-width:768px){
  .report-header{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }

  .report-body{
    padding:20px;
  }

  .report-row{
    font-size:13px;
  }
}

@media(max-width:768px){

    .section-heading h2{
        font-size:34px;
    }

    .report-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .report-row{
        flex-direction:column;
        align-items:flex-start;
        gap:6px;
    }

    .value{
        text-align:left;
    }

    .report-body,
    .report-footer,
    .report-header{
        padding:24px;
    }
}

