/* ============================================================
   Shared Section Designs — All Solutions & Services Pages
   ============================================================ */

/* ----------------------------------------------------------
   1. INTRO — Split Hero with Accent Bar
   ---------------------------------------------------------- */
.idp-intro {
  padding: 90px 0 60px;
  background: #fff;
  position: relative;
}
.idp-intro .intro-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.idp-intro .intro-accent-bar {
  width: 6px;
  min-height: 100%;
  background: linear-gradient(180deg, #001e62, #00d4ff);
  border-radius: 3px;
  flex-shrink: 0;
}
.idp-intro .intro-content {
  padding-left: 30px;
}
.idp-intro .intro-lead {
  font-size: 22px;
  font-weight: 600;
  color: #001e62;
  line-height: 1.7;
  margin-bottom: 28px;
  border-bottom: 2px solid #e8eef5;
  padding-bottom: 24px;
}
.idp-intro .intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.idp-intro .intro-columns p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
@media (max-width: 768px) {
  .idp-intro .intro-columns { grid-template-columns: 1fr; }
  .idp-intro .intro-lead { font-size: 18px; }
}

/* ----------------------------------------------------------
   2. CONSULTING SERVICES — Numbered Cards with Color Accents
   ---------------------------------------------------------- */
.idp-services {
  background: #f7f8fc;
  padding: 80px 0 60px;
}
.idp-services .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-services .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.idp-services .section-head p {
  color: #666;
  font-size: 17px;
  max-width: 750px;
  margin: 0 auto;
}
.idp-services .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.idp-svc-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-top: 4px solid transparent;
}
.idp-svc-card:nth-child(3n+1) { border-top-color: #001e62; }
.idp-svc-card:nth-child(3n+2) { border-top-color: #00d4ff; }
.idp-svc-card:nth-child(3n+3) { border-top-color: #f4c542; }
.idp-svc-card:nth-child(odd) { transform: translateY(-10px); }
.idp-svc-card::before {
  content: attr(data-num);
  position: absolute;
  right: 16px;
  top: -8px;
  font-size: 96px;
  font-weight: 900;
  color: rgba(0,30,98,0.04);
  line-height: 1;
  pointer-events: none;
}
.idp-svc-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 12px 35px rgba(0,30,98,0.12);
}
.idp-svc-card:nth-child(odd):hover { transform: translateY(-26px); }
.idp-svc-card h4 {
  color: #001e62;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.idp-svc-card h4 i { margin-right: 8px; opacity: 0.7; }
.idp-svc-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .idp-services .services-grid { grid-template-columns: 1fr; }
  .idp-svc-card:nth-child(odd) { transform: none; }
  .idp-svc-card:nth-child(odd):hover { transform: translateY(-8px); }
}

/* ----------------------------------------------------------
   3. ERP MODULES — Diagonal Clip-Path Background
   ---------------------------------------------------------- */
.idp-modules {
  position: relative;
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}
.idp-modules::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #eef3fb 0%, #dce6f5 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.idp-modules .auto-container {
  position: relative;
  z-index: 1;
}
.idp-modules .modules-row {
  display: flex;
  align-items: center;
  gap: 40px;
}
.idp-modules .modules-text {
  flex: 1.3;
}
.idp-modules .modules-text .heading_title {
  color: #001e62;
  margin-bottom: 20px;
}
.idp-modules .modules-text .text {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.idp-modules .modules-text .text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4ff;
}
.idp-modules .modules-text .text::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 20px;
  width: 2px;
  height: calc(100% - 16px);
  background: #e0e8f2;
}
.idp-modules .modules-text .text:last-child::after { display: none; }
.idp-modules .modules-img {
  flex: 1;
}
.idp-modules .modules-img img {
  border-radius: 16px;
  box-shadow: 12px 12px 0 rgba(0,30,98,0.08);
  width: 100%;
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.idp-modules .modules-img img:hover { transform: rotate(0deg); }
@media (max-width: 992px) {
  .idp-modules::before { display: none; }
  .idp-modules .modules-row { flex-direction: column; }
  .idp-modules .modules-img img { transform: none; box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
}

/* ----------------------------------------------------------
   4. BLACK COMMITMENT — Glassmorphism Quote Card
   ---------------------------------------------------------- */
.idp-commitment {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d0d2b 100%);
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.idp-commitment::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0,212,255,0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(244,197,66,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.idp-commitment .glass-card {
  max-width: 950px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 50px 45px;
  position: relative;
}
.idp-commitment .glass-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  color: rgba(244,197,66,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.idp-commitment h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.idp-commitment h2 span { color: #f4c542; }
.idp-commitment p {
  font-size: 18px;
  line-height: 1.8;
  color: #c8d8e8;
  margin: 0;
  position: relative;
}
@media (max-width: 768px) {
  .idp-commitment .glass-card { padding: 35px 25px; }
  .idp-commitment h2 { font-size: 26px; }
  .idp-commitment p { font-size: 16px; }
}

/* ----------------------------------------------------------
   5. INDUSTRIES — Icon-Top Tiles with Colored Hover
   ---------------------------------------------------------- */
.idp-industries {
  background: #fff;
  padding: 80px 0;
}
.idp-industries .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.idp-industries .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-industries .section-head p {
  max-width: 780px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
}
.idp-industries .ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.idp-ind-tile {
  background: #f9fafb;
  border-radius: 14px;
  padding: 30px 20px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eef1f5;
}
.idp-ind-tile .ind-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.idp-ind-tile:hover .ind-icon { transform: scale(1.1); }
.idp-ind-tile h5 {
  font-weight: 700;
  font-size: 16px;
  color: #001e62;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.idp-ind-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
}
.idp-ind-tile:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.idp-ind-tile:hover h5,
.idp-ind-tile:hover p { color: #fff; }

/* Industry-specific colors */
.idp-ind-tile[data-color="blue"]   .ind-icon { background: #1a5cb5; }
.idp-ind-tile[data-color="blue"]:hover   { background: #1a5cb5; }
.idp-ind-tile[data-color="teal"]   .ind-icon { background: #0d8f7f; }
.idp-ind-tile[data-color="teal"]:hover   { background: #0d8f7f; }
.idp-ind-tile[data-color="green"]  .ind-icon { background: #2a9d4e; }
.idp-ind-tile[data-color="green"]:hover  { background: #2a9d4e; }
.idp-ind-tile[data-color="navy"]   .ind-icon { background: #1b3a6b; }
.idp-ind-tile[data-color="navy"]:hover   { background: #1b3a6b; }
.idp-ind-tile[data-color="red"]    .ind-icon { background: #c0392b; }
.idp-ind-tile[data-color="red"]:hover    { background: #c0392b; }
.idp-ind-tile[data-color="purple"] .ind-icon { background: #7b3fa0; }
.idp-ind-tile[data-color="purple"]:hover { background: #7b3fa0; }
.idp-ind-tile[data-color="coral"]  .ind-icon { background: #d35400; }
.idp-ind-tile[data-color="coral"]:hover  { background: #d35400; }
.idp-ind-tile[data-color="slate"]  .ind-icon { background: #4a5568; }
.idp-ind-tile[data-color="slate"]:hover  { background: #4a5568; }
.idp-ind-tile[data-color="brown"]  .ind-icon { background: #8b5e34; }
.idp-ind-tile[data-color="brown"]:hover  { background: #8b5e34; }
.idp-ind-tile[data-color="olive"]  .ind-icon { background: #5a7d2b; }
.idp-ind-tile[data-color="olive"]:hover  { background: #5a7d2b; }
.idp-ind-tile[data-color="steel"]  .ind-icon { background: #3d6b8e; }
.idp-ind-tile[data-color="steel"]:hover  { background: #3d6b8e; }
.idp-ind-tile[data-color="indigo"] .ind-icon { background: #4c51bf; }
.idp-ind-tile[data-color="indigo"]:hover { background: #4c51bf; }
.idp-ind-tile[data-color="amber"]  .ind-icon { background: #b7841a; }
.idp-ind-tile[data-color="amber"]:hover  { background: #b7841a; }
.idp-ind-tile[data-color="cyan"]   .ind-icon { background: #0891b2; }
.idp-ind-tile[data-color="cyan"]:hover   { background: #0891b2; }

@media (max-width: 992px) {
  .idp-industries .ind-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .idp-industries .ind-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   6. COMPARISON TABLE — Side-by-Side Card Columns
   ---------------------------------------------------------- */
.idp-compare {
  background: #f7f8fc;
  padding: 80px 0;
}
.idp-compare .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-compare .section-head h2 {
  color: #001e62;
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 15px;
}
.idp-compare .section-head p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}
.idp-compare .compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.idp-compare .compare-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.idp-compare .compare-col-header {
  padding: 18px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4px;
}
.idp-compare .col-commercial .compare-col-header {
  background: #f1e0e0;
  color: #8b2020;
}
.idp-compare .col-opensource .compare-col-header {
  background: #d8f0e0;
  color: #1a6b3a;
}
.idp-compare .compare-row-item {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 80px;
}
.idp-compare .col-commercial .compare-row-item {
  background: #fff;
  border: 1px solid #f0e0e0;
  color: #555;
}
.idp-compare .col-opensource .compare-row-item {
  background: #f0faf3;
  border: 1px solid #c8e6d0;
  color: #1a5a35;
  font-weight: 600;
}
.idp-compare .compare-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.idp-compare .col-commercial .compare-icon {
  background: #fde8e8;
  color: #c0392b;
}
.idp-compare .col-opensource .compare-icon {
  background: #d4f5e0;
  color: #1a8a3a;
}
.idp-compare .compare-labels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 62px;
}
.idp-compare .compare-label-badge {
  background: #001e62;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 20px;
  writing-mode: horizontal-tb;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .idp-compare .compare-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .idp-compare .compare-labels { display: none; }
  .idp-compare .compare-row-item { min-height: auto; }
  .idp-compare .compare-row-item::before {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    display: block;
  }
}

/* ----------------------------------------------------------
   7. ZERO-RISK POC — Angled Gradient Split
   ---------------------------------------------------------- */
.idp-poc {
  background: linear-gradient(135deg, #001e62 0%, #0a3a8a 60%, #001240 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.idp-poc::before {
  content: '0';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.idp-poc .poc-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: center;
}
.idp-poc h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.idp-poc h2 .highlight-yellow { color: #ffcc00; }
.idp-poc h2 .highlight-cyan { color: #00d4ff; }
.idp-poc .poc-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #c8dff5;
  margin-bottom: 18px;
}
.idp-poc .poc-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.idp-poc .poc-pills li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}
.idp-poc .poc-pills li:nth-child(1) { color: #ffcc00; }
.idp-poc .poc-pills li:nth-child(2) { color: #00d4ff; }
.idp-poc .poc-pills li:nth-child(3) { color: #2ecc71; }
.idp-poc .poc-contact {
  color: #c8dff5;
  font-size: 15px;
}
.idp-poc .poc-card {
  background: rgba(255,255,255,0.06);
  border-left: 4px solid #00d4ff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 0 30px rgba(0,212,255,0.08);
}
.idp-poc .poc-card h3 {
  font-size: 18px;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 10px;
}
.idp-poc .poc-card p {
  color: #c8dff5;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.idp-poc .poc-card .poc-tagline {
  color: #ffcc00;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 992px) {
  .idp-poc .poc-grid { grid-template-columns: 1fr; }
  .idp-poc::before { font-size: 180px; }
}

/* ----------------------------------------------------------
   8. OUTSOURCING — Timeline / Process Steps
   ---------------------------------------------------------- */
.idp-outsource {
  padding: 100px 0;
  background: #f9f9f9;
  position: relative;
}
.idp-outsource .outsource-header {
  text-align: center;
  margin-bottom: 50px;
}
.idp-outsource .outsource-header h4 {
  color: #001e62;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}
.idp-outsource .outsource-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.idp-outsource .timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.idp-outsource .timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #001e62 0, #001e62 8px, transparent 8px, transparent 16px);
}
.idp-outsource .tl-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}
.idp-outsource .tl-step .tl-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #001e62;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,30,98,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idp-outsource .tl-step:hover .tl-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0,30,98,0.35);
}
.idp-outsource .tl-step h5 {
  font-size: 17px;
  font-weight: 700;
  color: #001e62;
  margin-bottom: 8px;
}
.idp-outsource .tl-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.idp-outsource .outsource-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}
.idp-outsource .of-pill {
  background: #fff;
  border: 2px solid #001e62;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #001e62;
  transition: all 0.3s ease;
}
.idp-outsource .of-pill:hover {
  background: #001e62;
  color: #fff;
}
@media (max-width: 768px) {
  .idp-outsource .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .idp-outsource .timeline::before { display: none; }
}
@media (max-width: 480px) {
  .idp-outsource .timeline { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   9. WHY CHOOSE US — Bento Grid
   ---------------------------------------------------------- */
.idp-why {
  padding: 80px 0;
  background: #fff;
}
.idp-why .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-why .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-why .section-head p {
  color: #666;
  max-width: 750px;
  margin: 0 auto;
}
.idp-why .bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idp-bento-card {
  border-radius: 16px;
  padding: 30px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.idp-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.idp-bento-card .bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 2px solid;
}
.idp-bento-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.idp-bento-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
/* Large featured cards (first 3) */
.idp-bento-card.bento-lg {
  grid-column: span 1;
  padding: 36px 28px;
}
/* Color variants */
.idp-bento-card:nth-child(1)  { background: #eef3ff; }
.idp-bento-card:nth-child(1) .bento-icon { color: #001e62; border-color: #001e62; background: rgba(0,30,98,0.08); }
.idp-bento-card:nth-child(2)  { background: #e8faf0; }
.idp-bento-card:nth-child(2) .bento-icon { color: #0d8f7f; border-color: #0d8f7f; background: rgba(13,143,127,0.08); }
.idp-bento-card:nth-child(3)  { background: #fff8e6; }
.idp-bento-card:nth-child(3) .bento-icon { color: #b7841a; border-color: #b7841a; background: rgba(183,132,26,0.08); }
.idp-bento-card:nth-child(4)  { background: #f5eeff; }
.idp-bento-card:nth-child(4) .bento-icon { color: #7b3fa0; border-color: #7b3fa0; background: rgba(123,63,160,0.08); }
.idp-bento-card:nth-child(5)  { background: #fef0f0; }
.idp-bento-card:nth-child(5) .bento-icon { color: #c0392b; border-color: #c0392b; background: rgba(192,57,43,0.08); }
.idp-bento-card:nth-child(6)  { background: #e6f7fb; }
.idp-bento-card:nth-child(6) .bento-icon { color: #0891b2; border-color: #0891b2; background: rgba(8,145,178,0.08); }
.idp-bento-card:nth-child(7)  { background: #eef3ff; }
.idp-bento-card:nth-child(7) .bento-icon { color: #1a5cb5; border-color: #1a5cb5; background: rgba(26,92,181,0.08); }
.idp-bento-card:nth-child(8)  { background: #e8faf0; }
.idp-bento-card:nth-child(8) .bento-icon { color: #2a9d4e; border-color: #2a9d4e; background: rgba(42,157,78,0.08); }
.idp-bento-card:nth-child(9)  { background: #fff4e6; }
.idp-bento-card:nth-child(9) .bento-icon { color: #d35400; border-color: #d35400; background: rgba(211,84,0,0.08); }
@media (max-width: 768px) {
  .idp-why .bento-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .idp-why .bento-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   10. PARTNERSHIP — Asymmetric Overlapping Cards
   ---------------------------------------------------------- */
.idp-partner {
  background: linear-gradient(160deg, #001030 0%, #001e62 100%);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.idp-partner .partner-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.idp-partner .partner-content {
  padding-left: 20px;
  border-left: 4px solid #ffcc00;
}
.idp-partner .partner-content h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
}
.idp-partner .partner-content h2 .hl-cyan { color: #00d4ff; }
.idp-partner .partner-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: #c8dff5;
  margin-bottom: 18px;
}
.idp-partner .partner-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.idp-partner .partner-content li {
  font-size: 15px;
  line-height: 1.8;
  padding: 2px 0;
}
.idp-partner .partner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.idp-partner .partner-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 14px;
  color: #e6f7ff;
}
.idp-partner .partner-aside {
  position: relative;
}
.idp-partner .partner-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.idp-partner .partner-card:hover { transform: rotate(0deg); }
.idp-partner .partner-card h3 {
  font-size: 20px;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 12px;
}
.idp-partner .partner-card p {
  color: #c8dff5;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.idp-partner .partner-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.idp-partner .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffcc00;
  color: #001e62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.idp-partner .step-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 18px;
}
.idp-partner .step-label {
  font-size: 13px;
  color: #c8dff5;
  margin-right: 12px;
}
@media (max-width: 992px) {
  .idp-partner .partner-layout { grid-template-columns: 1fr; }
  .idp-partner .partner-card { transform: none; }
}

/* ----------------------------------------------------------
   11. FINANCIAL BENEFITS — Vertical Steps with Connector
   ---------------------------------------------------------- */
.idp-finance {
  background: #fff;
  padding: 80px 0;
}
.idp-finance .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-finance .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-finance .section-head p {
  color: #666;
  max-width: 780px;
  margin: 0 auto;
}
.idp-finance .finance-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}
.idp-finance .finance-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, #001e62 0, #001e62 8px, transparent 8px, transparent 16px);
  transform: translateX(-50%);
}
.idp-finance .fin-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.idp-finance .fin-step:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}
.idp-finance .fin-step:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}
.idp-finance .fin-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #001e62;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(0,30,98,0.3);
}
.idp-finance .fin-step:nth-child(2) .fin-num { background: #00d4ff; color: #001e62; }
.idp-finance .fin-step:nth-child(4) .fin-num { background: #00d4ff; color: #001e62; }
.idp-finance .fin-step:nth-child(6) .fin-num { background: #00d4ff; color: #001e62; }
.idp-finance .fin-card {
  background: #f8fafd;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid #e5eaf2;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idp-finance .fin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,30,98,0.08);
}
.idp-finance .fin-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #001e62;
  margin-bottom: 6px;
}
.idp-finance .fin-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .idp-finance .finance-timeline::before { left: 22px; }
  .idp-finance .fin-step:nth-child(odd),
  .idp-finance .fin-step:nth-child(even) {
    flex-direction: row;
    padding: 0 0 0 60px;
    text-align: left;
  }
  .idp-finance .fin-num { left: 22px; }
}

/* ----------------------------------------------------------
   12. NDA — Shield-Centered Trust Layout
   ---------------------------------------------------------- */
.idp-nda {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.idp-nda::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 30px 30px;
  pointer-events: none;
}
.idp-nda .nda-shield {
  font-size: 64px;
  color: #ffcc00;
  margin-bottom: 20px;
  display: block;
  position: relative;
}
.idp-nda h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 16px;
  position: relative;
}
.idp-nda h2 .hl-cyan { color: #00d4ff; }
.idp-nda > .auto-container > p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
  position: relative;
}
.idp-nda .nda-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.idp-nda .nda-card {
  background: #fff;
  padding: 30px 28px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  flex: 0 0 300px;
  text-align: center;
  color: #2c2c2c;
  border-top: 4px solid;
  transition: transform 0.3s ease;
}
.idp-nda .nda-card:hover { transform: translateY(-6px); }
.idp-nda .nda-card:nth-child(1) { border-top-color: #f4c542; }
.idp-nda .nda-card:nth-child(2) { border-top-color: #001e62; }
.idp-nda .nda-card:nth-child(3) { border-top-color: #2ecc71; }
.idp-nda .nda-card i {
  font-size: 40px;
  color: #001e62;
  margin-bottom: 15px;
}
.idp-nda .nda-card h4 {
  font-weight: 700;
  color: #001e62;
  margin-bottom: 8px;
}
.idp-nda .nda-card p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

/* ----------------------------------------------------------
   13. FAQ — Two-Column Accordion
   ---------------------------------------------------------- */
.idp-faq {
  background: #f2f4f7;
  padding: 80px 0;
  color: #334155;
}
.idp-faq .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.idp-faq .section-head h2 {
  color: #111827;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.idp-faq .section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 16px;
}
.idp-faq .faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.idp-faq .faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.idp-faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6eef3;
  box-shadow: 0 4px 12px rgba(16,24,40,0.03);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.idp-faq-item[open] {
  border-left: 3px solid #001e62;
}
.idp-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
.idp-faq-item summary::-webkit-details-marker { display: none; }
.idp-faq-item summary .faq-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.idp-faq-item[open] summary .faq-pip {
  background: #001e62;
  transform: scale(1.3);
}
.idp-faq-item .faq-arrow {
  font-size: 16px;
  color: #9ca3af;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.idp-faq-item[open] .faq-arrow { transform: rotate(90deg); color: #001e62; }
.idp-faq-item .faq-answer {
  padding: 0 18px 16px 18px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 14px;
}
@media (max-width: 768px) {
  .idp-faq .faq-two-col { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   14. FEATURES — 4-Column Flip Cards with Gradient Icons
   ---------------------------------------------------------- */
.idp-features {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9fbff 0%, #fff 100%);
}
.idp-features .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-features .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-features .section-head p {
  color: #666;
  font-size: 17px;
  max-width: 780px;
  margin: 0 auto;
}
.idp-features .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.idp-feat-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid #eef1f5;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.idp-feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #001e62, #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.idp-feat-card:hover::after { transform: scaleX(1); }
.idp-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,30,98,0.1);
}
.idp-feat-card .feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.idp-feat-card:hover .feat-icon { transform: scale(1.12) rotate(5deg); }
.idp-feat-card:nth-child(4n+1) .feat-icon { background: linear-gradient(135deg, #001e62, #1a5cb5); }
.idp-feat-card:nth-child(4n+2) .feat-icon { background: linear-gradient(135deg, #e63946, #ff6b6b); }
.idp-feat-card:nth-child(4n+3) .feat-icon { background: linear-gradient(135deg, #ff9800, #ffb74d); }
.idp-feat-card:nth-child(4n+4) .feat-icon { background: linear-gradient(135deg, #2a9d4e, #66bb6a); }
.idp-feat-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #001e62;
  margin-bottom: 8px;
}
.idp-feat-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .idp-features .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .idp-features .features-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   15. VALUE PROMISE — Magazine Grid with Colored Accents
   ---------------------------------------------------------- */
.idp-value {
  padding: 80px 0;
  background: #f8f9fc;
}
.idp-value .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-value .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-value .section-head p {
  color: #666;
  font-size: 17px;
  max-width: 780px;
  margin: 0 auto;
}
.idp-value .value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idp-val-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  border-left: 4px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
  position: relative;
}
.idp-val-card:nth-child(6n+1) { border-left-color: #001e62; }
.idp-val-card:nth-child(6n+2) { border-left-color: #00d4ff; }
.idp-val-card:nth-child(6n+3) { border-left-color: #f4c542; }
.idp-val-card:nth-child(6n+4) { border-left-color: #2ecc71; }
.idp-val-card:nth-child(6n+5) { border-left-color: #e63946; }
.idp-val-card:nth-child(6n+6) { border-left-color: #7b3fa0; }
.idp-val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,30,98,0.1);
}
.idp-val-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #001e62;
  margin-bottom: 8px;
  position: relative;
}
.idp-val-card h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: currentColor;
  opacity: 0.3;
  margin-top: 6px;
}
.idp-val-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .idp-value .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .idp-value .value-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   16. CTA — Gradient Wave Overlay
   ---------------------------------------------------------- */
.idp-cta {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #001e62 0%, #0a3a8a 50%, #001240 100%);
}
.idp-cta::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 720,0 1080,30 C1260,45 1350,20 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
}
.idp-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.idp-cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 28px;
  color: #c8dff5;
  line-height: 1.7;
  position: relative;
}
.idp-cta .cta-btn {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
}
.idp-cta .cta-btn:hover {
  background: #fff;
  color: #001e62;
  border-color: #fff;
  box-shadow: 0 6px 25px rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .idp-cta h2 { font-size: 26px; }
  .idp-cta p { font-size: 16px; }
}

/* ----------------------------------------------------------
   17. MOBILE APPS — Phone-Frame Styled Cards
   ---------------------------------------------------------- */
.idp-mobile {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f9fbff 100%);
}
.idp-mobile .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.idp-mobile .section-head h2 {
  color: #001e62;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.idp-mobile .section-head p {
  color: #666;
  font-size: 17px;
  max-width: 780px;
  margin: 0 auto;
}
.idp-mobile .mobile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.idp-mobile .mobile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.idp-mob-card {
  background: #fff;
  border-radius: 20px 20px 14px 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.idp-mob-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,30,98,0.12);
}
.idp-mob-card .mob-top {
  background: linear-gradient(135deg, #001e62, #0a3a8a);
  padding: 20px 20px 16px;
  text-align: center;
  position: relative;
}
.idp-mob-card .mob-top::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
}
.idp-mob-card .mob-top i {
  font-size: 32px;
  color: #fff;
  opacity: 0.9;
}
.idp-mob-card .mob-top h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 0;
}
.idp-mob-card .mob-body {
  padding: 20px;
}
.idp-mob-card .mob-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .idp-mobile .mobile-grid,
  .idp-mobile .mobile-grid.cols-2 { grid-template-columns: 1fr; }
}
