 :root {
    --brand: #262B6C;
    --brand-mid: #3a4199;
    --accent: #E8392A;
    --accent-light: #f5ede;
    --light-bg: #F4F5FB;
    --border: #DDE0F0;
    --white: #ffffff;
    --text: #262B6C;
    --text-muted: #5A5F8A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

 

  section { padding: 10px 0; }
 /* section + section { border-top: 1px solid var(--border); }*/

        
  h2.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  h2.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
   /* background: linear-gradient(90deg, var(--border), transparent);*/
    display: block;
  }
  h3.sub-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
    margin-top: 28px;
  }

  p { margin-bottom: 14px; color: var(--text); }

  /* ── SUMMARY CARDS ── */
  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 55px;
    margin-top: 8px;
  }
 .summary-card {
	background: var(--light-bg);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 15px 7px 17px 29px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.2s;
}
  .summary-card:hover { box-shadow: 0 6px 24px rgba(38,43,108,0.1); }
  .summary-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--brand);
    border-radius: 3px 0 0 3px;
  }
.summary-card .label h4 {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #262B6C;
	margin-bottom: 12px;
	font-weight: 700;
	text-wrap: initial;
}
    .summary-card .value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.3;
  }

  /* ── CHALLENGE / ISSUE LIST ── */
  .issue-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 10px;
  }
  .issue-list li {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px 14px 46px;
    position: relative;
    font-size:18px;
    color: #262B6C;
    line-height: 1.5;
  }

        
  .issue-list li::before {
    content: '×';
    position: absolute;
    left: 16px; top: 13px;
    width: 22px; height: 22px;
    background: #fde8e6;
    color: var(--accent);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    text-align: center;
  }

  /* ── CAPABILITY CARDS ── */
  .capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
  .cap-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 26px 22px;
    transition: transform 0.2s, box-shadow 0.2s;
    background: var(--white);
  }
  .cap-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38,43,108,0.1);
    border-color: var(--brand);
  }
  .cap-icon {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
  }
  .cap-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 8px;
  }
  .cap-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
  }

.issue-list li {
	list-style-type: none !important;
}


  /* ── RESULTS ── */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 10px;
  }
  .result-card {
    background: var(--brand);
    color: var(--white);
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .result-card::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .result-icon { font-size: 19px; margin-bottom: 10px; display: block; }
  .result-card h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    opacity: 0.75;
    margin-bottom: 8px;
  }
  .result-card p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    line-height: 1.45;
  }
  .result-highlight {
    font-size:18px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
  }

  /* ── BEFORE / AFTER TABLE ── */
  .ba-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 10px;
  }
  .ba-table thead tr th {
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .ba-table thead tr th:first-child {
    background: #f7e8e7;
    color: var(--accent);
    text-align: left;
  }
  .ba-table thead tr th:last-child {
    background: #E8EBF8;
    color: var(--brand);
    text-align: left;
  }
  .ba-table tbody tr td {
    padding: 14px 22px;
    font-size: 20px;
    vertical-align: top;
  }
  .ba-table tbody tr td:first-child {
    background: #fdf6f6;
    color: #6B4040;
    border-bottom: 1px solid #f0dede;
  }
  .ba-table tbody tr td:last-child {
    background: #f4f6fd;
    color: var(--brand);
    border-bottom: 1px solid var(--border);
    font-weight: 700;
  }
  .ba-table tbody tr:last-child td { border-bottom: none; }

  /* ── BULLET LISTS ── */
  .styled-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 10px;
  }
  .styled-list li {
    padding: 10px 14px 10px 40px;
    position: relative;
    font-size: 18px;
    background: var(--light-bg);
    border-radius: 7px;
    border: 1px solid var(--border);
    line-height: 1.5;
  }
  .styled-list li::before {
    content: '✓';
    position: absolute; left: 12px; top: 10px;
    color: var(--white);
    background: var(--brand);
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }

  /* ── TECH TAGS ── */
  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .tech-tag {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
    display: flex; align-items: center; gap: 8px;
  }
  .tech-tag .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand);
    opacity: 0.4;
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, #3a4199 100%);
    border-radius: 14px;
    padding: 54px 48px;
    text-align: center;
    color: var(--white);
    margin: 0 0 60px;
  }
.cta-section h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 14px;
	letter-spacing: -0.01em;
	color: #fff;
}
 .cta-section p {
	color: #fff;
	font-size: 18px;
	max-width: 750px;
	margin: 0 auto 28px;
	line-height: 1.6;
}
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--white);
    color: var(--brand);
    padding: 13px 28px;
    border-radius: 7px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 13px 28px;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
  }
  .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }


  /* ── DIVIDER ── */
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }


  @media (max-width: 640px) {
    header, .hero, .container { padding-left: 20px; padding-right: 20px; }
    .hero { padding-top: 50px; padding-bottom: 50px; }
    section { padding: 40px 0; }
    .cta-section { padding: 36px 24px; }
  }

       
        .feature-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            transition: all 0.35s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d6efd, #4dabf7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
        }

        .feature-text {
            font-size: 18px;
            font-weight: 500;
            color: #333;
        }

        .bottom-text {
            margin-top: 50px;
            font-size: 18px;
            color: #555;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
 