
 .anew-wrapper {
      background: #04152D;
      padding: 80px 0 60px;
      font-family: 'DM Sans', sans-serif;
      overflow: hidden;
      position: relative;
    }
 
    .anew-wrapper::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,198,162,0.12) 0%, transparent 70%);
      top: -100px; left: -100px;
      border-radius: 50%;
    }
 
    .anew-wrapper::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(10,79,166,0.18) 0%, transparent 70%);
      bottom: -100px; right: -50px;
      border-radius: 50%;
    }
 
    .anew-badge-pill {
      display: inline-block;
      background: rgba(0,198,162,0.15);
      color:#4dbde4;
      border: 1px solid rgba(0,198,162,0.35);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
 
    .anew-section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 22px;
    }
 
    .anew-section-title span {
      color:#4dbde4;;
    }
 
    .anew-section-desc {
      color: rgba(255,255,255);
      font-size: 15px;
      line-height: 1.8;
      font-weight: 300;
      max-width: 480px;
    }
 
    .anew-stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 20px 22px;
      transition: border-color 0.3s;
    }
 
    .anew-stat-card:hover {
      border-color: #4dbde4;;
    }
 
    .anew-stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color:#4dbde4;;
      line-height: 1;
    }
 
    .anew-stat-label {
      font-size: 12px;
      color: rgba(255,255,255);
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
 
    .anew-img-block {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      height: 420px;
    }
 
    .anew-img-block img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(0.85);
    }
 
    .anew-img-overlay-card {
      position: absolute;
      bottom: 24px; left: 24px; right: 24px;
      background: rgba(4,21,45,0.88);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(0,198,162,0.25);
      border-radius: 14px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
 
    .anew-check-icon {
      width: 38px; height: 38px;
      background: var(--anew-accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: #fff;
      font-size: 18px;
      font-weight: 700;
    }
 
    .anew-overlay-text {
      color: #fff;
      font-size: 13px;
      line-height: 1.5;
    }
 
    .anew-overlay-text strong {
      display: block;
      font-size: 15px;
      font-weight: 500;
    }
 
    .anew-auth-section-title {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 22px;
    }
 
    .anew-auth-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
 
    .anew-auth-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 12px 14px;
      transition: all 0.25s;
      cursor: default;
    }
 
    .anew-auth-item:hover {
      background: rgba(0,198,162,0.1);
      border-color: rgba(0,198,162,0.3);
      transform: translateY(-2px);
    }
 
    .anew-auth-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background:#4dbde4;;
      flex-shrink: 0;
    }
 
    .anew-auth-name {
      font-size: 13px;
      color: rgba(255,255,255);
      font-weight: 400;
    }
 
    .anew-cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }
 
    .anew-btn-primary {
      background:#4dbde4;;
     color:#fff;
      font-weight: 600;
      font-size: 14px;
      padding: 13px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
      font-family: 'DM Sans', sans-serif;
      display: inline-block;
    }
 
    .anew-btn-primary:hover {
      background: #00b392;
      transform: translateY(-2px);
      color: #04152D;
    }
 
    .anew-btn-outline {
      background: transparent;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      padding: 13px 28px;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
      font-family: 'DM Sans', sans-serif;
      display: inline-block;
    }
 
    .anew-btn-outline:hover {
      border-color: #00C6A2;
      color:#4dbde4;
      transform: translateY(-2px);
    }
 
    .anew-divider-line {
      width: 56px; height: 3px;
      background: #00C6A2;
      border-radius: 2px;
      margin-bottom: 30px;
    }
 
    @media (max-width: 768px) {
      .anew-auth-grid { grid-template-columns: 1fr; }
      .anew-img-block { height: 280px; margin-bottom: 30px; }
      .anew-section-desc { max-width: 100%; }
      .anew-wrapper { padding: 50px 0 40px; }
    }
    
    
    /*service section start*/
    
      .srvnew-section {
    background: #F5F8FF;
    padding: 90px 0 80px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  .srvnew-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 8% 20%, rgba(10,79,166,0.06) 0%, transparent 40%),
      radial-gradient(circle at 92% 80%, rgba(0,198,162,0.07) 0%, transparent 40%);
    pointer-events: none;
  }
 
  .srvnew-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c7d4ef 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
  }
 
  .srvnew-inner {
    position: relative;
    z-index: 2;
  }
 
  .srvnew-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,79,166,0.08);
    border: 1px solid rgba(10,79,166,0.18);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 16px;
  }
 
  .srvnew-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .srvnew-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0D1B2E;
    line-height: 1.1;
    margin-bottom: 16px;
  }
 
  .srvnew-heading span {
    color: #0A4FA6;
  }
 
  .srvnew-subhead {
    font-size: 15px;
    color: #6B7A95;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 20px;
  }
 
  .srvnew-subhead a {
    color: #0A4FA6;
    text-decoration: none;
    font-weight: 500;
  }
 
  .srvnew-subhead a:hover {
    text-decoration: underline;
  }
 
  .srvnew-title-accent {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 4px;
    margin: 0 auto 48px;
  }
 
  .srvnew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
 
  .srvnew-card {
    background: #FFFFFF;
    border: 1px solid #E4EAF5;
    border-radius: 20px;
    padding: 32px 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
  }
 
  .srvnew-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 20px 20px 0 0;
  }
 
  .srvnew-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,79,166,0.12);
    border-color: rgba(10,79,166,0.2);
  }
 
  .srvnew-card:hover::before {
    transform: scaleX(1);
  }
 
  .srvnew-card-num {
    position: absolute;
    top: 22px; right: 24px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(10,79,166,0.18);
    letter-spacing: 1px;
  }
 
  .srvnew-logo-box {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    background: #F0F5FF;
    border: 1px solid #DDE6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    overflow: hidden;
    transition: background 0.3s;
    flex-shrink: 0;
  }
 
  .srvnew-card:hover .srvnew-logo-box {
    background: #E6EFFE;
  }
 
  .srvnew-logo-box img {
    width: 90px;
    height: 90px;
    object-fit: contain;
  }
 
  .srvnew-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0D1B2E;
    margin-bottom: 10px;
    line-height: 1.3;
  }
 
  .srvnew-card-desc {
    font-size: 13.5px;
    color: #6B7A95;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
    flex-grow: 1;
  }
 
  .srvnew-card-footer {
    margin-top: auto;
  }
 
  .srvnew-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0A4FA6;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s;
    flex-shrink: 0;
  }
 
  .srvnew-card-link:hover {
    background: #083d85;
    transform: scale(1.08);
    color: #ffffff;
  }
 
  .srvnew-card-link svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .srvnew-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
  }
 
  .srvnew-btn-solid {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(10,79,166,0.25);
  }
 
  .srvnew-btn-solid:hover {
    background: #083d85;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(10,79,166,0.32);
    color: #ffffff;
  }
 
  .srvnew-btn-ghost {
    background: transparent;
    color: #0A4FA6;
    font-weight: 500;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(10,79,166,0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
 
  .srvnew-btn-ghost:hover {
    border-color: #0A4FA6;
    background: rgba(10,79,166,0.05);
    transform: translateY(-2px);
    color: #0A4FA6;
  }
 
  @media (max-width: 991px) {
    .srvnew-grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 576px) {
    .srvnew-grid { grid-template-columns: 1fr; }
    .srvnew-section { padding: 60px 0 50px; }
  }.caas-section {
    background: #F5F8FF;
    padding: 90px 0 80px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  .caas-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 5% 15%, rgba(10,79,166,0.06) 0%, transparent 40%),
      radial-gradient(circle at 95% 85%, rgba(0,198,162,0.07) 0%, transparent 40%);
    pointer-events: none;
  }
 
  .caas-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c7d4ef 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.3;
    pointer-events: none;
  }
 
  .caas-inner {
    position: relative;
    z-index: 2;
  }
 
  /* ---- Header ---- */
  .caas-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,79,166,0.08);
    border: 1px solid rgba(10,79,166,0.18);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 16px;
  }
 
  .caas-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .caas-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #0D1B2E;
    line-height: 1.15;
    margin-bottom: 16px;
  }
 
  .caas-heading span {
    color: #0A4FA6;
  }
 
  .caas-accent-bar {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 4px;
    margin-bottom: 20px;
  }
 
  .caas-intro {
    font-size: 15px;
    color: #6B7A95;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 56px;
    font-weight: 300;
  }
 
  /* ---- Items ---- */
  .caas-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
 
  .caas-item {
    background: #ffffff;
    border: 1px solid #E4EAF5;
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
 
  .caas-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0A4FA6, #00C6A2);
    border-radius: 18px 0 0 18px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
  }
 
  .caas-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 40px rgba(10,79,166,0.10);
    border-color: rgba(10,79,166,0.2);
  }
 
  .caas-item:hover::before {
    transform: scaleY(1);
  }
 
  .caas-item-num {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: rgba(10,79,166);
    line-height: 1;
    min-width: 44px;
    padding-top: 2px;
    flex-shrink: 0;
    transition: color 0.3s;
  }
 
  .caas-item:hover .caas-item-num {
    color: rgba(10,79,166,0.25);
  }
 
  .caas-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F0F5FF;
    border: 1px solid #DDE6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
  }
 
  .caas-item:hover .caas-item-icon {
    background: #E0EBFF;
  }
 
  .caas-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: #0A4FA6;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .caas-item-body {
    flex: 1;
  }
 
  .caas-item-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0D1B2E;
    margin-bottom: 10px;
    line-height: 1.3;
  }
 
  .caas-item-desc {
    font-size: 14px;
    color: #6B7A95;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
  }
 
  /* ---- CTA ---- */
  .caas-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 52px;
    justify-content: center;
  }
 
  .caas-btn-solid {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(10,79,166,0.25);
  }
 
  .caas-btn-solid:hover {
    background: #083d85;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(10,79,166,0.32);
    color: #ffffff;
  }
 
  .caas-btn-ghost {
    background: transparent;
    color: #0A4FA6;
    font-weight: 500;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(10,79,166,0.3);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
 
  .caas-btn-ghost:hover {
    border-color: #0A4FA6;
    background: rgba(10,79,166,0.05);
    transform: translateY(-2px);
    color: #0A4FA6;
  }
 
  @media (max-width: 768px) {
    .caas-section { padding: 60px 0 50px; }
    .caas-item { padding: 24px 20px; flex-wrap: wrap; }
    .caas-item-num { font-size: 22px; min-width: 34px; }
  }
    /*service section end*/
    
    .indws-section {
    background: #F5F8FF;
    padding: 90px 0 80px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  .indws-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 10% 20%, rgba(10,79,166,0.06) 0%, transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(0,198,162,0.07) 0%, transparent 40%);
    pointer-events: none;
  }
 
  .indws-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #c7d4ef 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.3;
    pointer-events: none;
  }
 
  .indws-inner {
    position: relative;
    z-index: 2;
  }
 
  /* ---- Header ---- */
  .indws-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,79,166,0.08);
    border: 1px solid rgba(10,79,166,0.18);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 16px;
  }
 
  .indws-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .indws-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #0D1B2E;
    line-height: 1.15;
    margin-bottom: 16px;
  }
 
  .indws-heading span {
    color: #0A4FA6;
  }
 
  .indws-accent-bar {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 4px;
    margin-bottom: 48px;
  }
 
  /* ---- Tab Nav ---- */
  .indws-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
  }
 
  .indws-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid #E4EAF5;
    background: #ffffff;
    color: #6B7A95;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
  }
 
  .indws-tab-btn svg {
    width: 16px;
    height: 16px;
    stroke: #6B7A95;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
    flex-shrink: 0;
  }
 
  .indws-tab-btn:hover,
  .indws-tab-btn.indws-active {
    background: #0A4FA6;
    border-color: #0A4FA6;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(10,79,166,0.22);
  }
 
  .indws-tab-btn:hover svg,
  .indws-tab-btn.indws-active svg {
    stroke: #ffffff;
  }
 
  /* ---- Tab Panels ---- */
  .indws-panels {
    position: relative;
  }
 
  .indws-panel {
    display: none;
  }
 
  .indws-panel.indws-show {
    display: block;
  }
 
  .indws-panel-card {
    background: #ffffff;
    border: 1px solid #E4EAF5;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 320px;
    box-shadow: 0 10px 40px rgba(10,79,166,0.08);
  }
 
  .indws-panel-img {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
 
  .indws-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
 
  .indws-panel-card:hover .indws-panel-img img {
    transform: scale(1.04);
  }
 
  .indws-panel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,79,166,0.35) 0%, rgba(0,198,162,0.2) 100%);
  }
 
  .indws-panel-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
 
  .indws-panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,79,166,0.08);
    border: 1px solid rgba(10,79,166,0.15);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 18px;
    width: fit-content;
  }
 
  .indws-panel-title {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0D1B2E;
    margin-bottom: 14px;
    line-height: 1.2;
  }
 
  .indws-panel-desc {
    font-size: 14.5px;
    color: #6B7A95;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
  }
 
  .indws-panel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
 
  .indws-panel-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0F5FF;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12.5px;
    color: #0A4FA6;
    font-weight: 500;
  }
 
  .indws-panel-feature::before {
    content: '✓';
    font-weight: 700;
    color: #00C6A2;
    font-size: 12px;
  }
 
  /* ---- Bottom note ---- */
  .indws-bottom-note {
    margin-top: 40px;
    background: linear-gradient(135deg, #0A4FA6 0%, #0d6ecc 100%);
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
 
  .indws-note-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .indws-note-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .indws-note-text {
    flex: 1;
    color: rgba(255,255,255,0.92);
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 300;
  }
 
  .indws-note-text strong {
    color: #ffffff;
    font-weight: 600;
  }
 
  .indws-note-cta {
    display: inline-block;
    background: #ffffff;
    color: #0A4FA6;
    font-weight: 600;
    font-size: 13.5px;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s;
    flex-shrink: 0;
  }
 
  .indws-note-cta:hover {
    background: #e8f0ff;
    transform: translateY(-2px);
    color: #0A4FA6;
  }
 
  @media (max-width: 768px) {
    .indws-section { padding: 60px 0 50px; }
    .indws-panel-card { flex-direction: column; }
    .indws-panel-img { width: 100%; height: 220px; }
    .indws-panel-body { padding: 28px 24px; }
    .indws-panel-title { font-size: 20px; }
    .indws-bottom-note { flex-direction: column; text-align: center; }
  }
  
   /* ALL CLASSES PREFIXED WITH "whyae-" */
 
  .whyae-section {
    background: #04152D;
    padding: 100px 0 90px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  /* Decorative glows */
  .whyae-glow-1 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,79,166,0.18) 0%, transparent 70%);
    top: -150px; left: -150px;
    pointer-events: none;
  }
 
  .whyae-glow-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,198,162,0.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
  }
 
  .whyae-inner {
    position: relative;
    z-index: 2;
  }
 
  /* ========== TOP HEADER ========== */
  .whyae-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
 
  .whyae-header-left {}
 
  .whyae-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.25);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 20px;
  }
 
  .whyae-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
    animation: whyae-blink 2s infinite;
  }
 
  @keyframes whyae-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
 
  .whyae-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 0;
  }
 
  .whyae-heading span {
    color: #00C6A2;
  }
 
  .whyae-header-right {}
 
  .whyae-intro {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 32px;
  }
 
  .whyae-header-stats {
    display: flex;
    gap: 0;
  }
 
  .whyae-hstat {
    flex: 1;
    padding: 20px 24px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
 
  .whyae-hstat:first-child {
    border-left: none;
    padding-left: 0;
  }
 
  .whyae-hstat-num {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
  }
 
  .whyae-hstat-num span {
    color: #00C6A2;
  }
 
  .whyae-hstat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
  }
 
  /* ========== FEATURE GRID ========== */
  .whyae-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
  }
 
  .whyae-card {
    background: #071428;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: default;
  }
 
  /* Featured card (first one, spans 2 cols) */
  .whyae-card.whyae-card-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, #0A2A5E 0%, #0a3d7a 100%);
    display: flex;
    gap: 40px;
    align-items: center;
  }
 
  .whyae-card:hover {
    background: #0c1e38;
  }
 
  .whyae-card.whyae-card-wide:hover {
    background: linear-gradient(135deg, #0c3270 0%, #0c4890 100%);
  }
 
  /* Hover top glow line */
  .whyae-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
 
  .whyae-card:hover::after {
    transform: scaleX(1);
  }
 
  /* Icon */
  .whyae-card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(10,79,166,0.2);
    border: 1px solid rgba(10,79,166,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
  }
 
  .whyae-card:hover .whyae-card-icon {
    background: rgba(10,79,166,0.35);
    border-color: rgba(10,79,166,0.5);
  }
 
  .whyae-card-icon svg {
    width: 24px; height: 24px;
    stroke: #00C6A2;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  /* Wide card icon box */
  .whyae-card-wide .whyae-card-icon {
    width: 80px; height: 80px;
    border-radius: 20px;
    background: rgba(0,198,162,0.15);
    border: 1px solid rgba(0,198,162,0.3);
    margin-bottom: 0;
  }
 
  .whyae-card-wide .whyae-card-icon svg {
    width: 36px; height: 36px;
  }
 
  .whyae-card-num {
    position: absolute;
    top: 28px; right: 28px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.12);
    letter-spacing: 1.5px;
  }
 
  .whyae-card-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 10px;
  }
 
  .whyae-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
  }
 
  .whyae-card-wide .whyae-card-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
 
  .whyae-card-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.48);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
  }
 
  .whyae-card-wide .whyae-card-desc {
    font-size: 14.5px;
    color: rgba(255,255,255,0.55);
  }
 
  .whyae-card-wide-body {}
 
  /* Chips on wide card */
  .whyae-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }
 
  .whyae-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.2);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: #00C6A2;
    font-weight: 500;
  }
 
  /* ========== BOTTOM CTA STRIP ========== */
  .whyae-cta-strip {
    margin-top: 2px;
    background: #071428;
    border-radius: 0 0 24px 24px;
    border: 1px solid rgba(255,255,255,0.07);
    border-top: none;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
 
  .whyae-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    line-height: 1.6;
  }
 
  .whyae-cta-text strong {
    color: #ffffff;
    font-weight: 600;
  }
 
  .whyae-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
 
  .whyae-btn-solid {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(10,79,166,0.35);
  }
 
  .whyae-btn-solid:hover {
    background: #083d85;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 8px 26px rgba(10,79,166,0.45);
  }
 
  .whyae-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.15);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
 
  .whyae-btn-ghost:hover {
    border-color: #00C6A2;
    color: #00C6A2;
    transform: translateY(-2px);
  }
 
  /* ========== RESPONSIVE ========== */
  @media (max-width: 991px) {
    .whyae-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; padding-bottom: 48px; }
    .whyae-grid { grid-template-columns: 1fr 1fr; }
    .whyae-card.whyae-card-wide { grid-column: span 2; flex-direction: column; gap: 20px; }
    .whyae-card.whyae-card-wide .whyae-card-icon { margin-bottom: 0; }
  }
 
  @media (max-width: 640px) {
    .whyae-section { padding: 60px 0 60px; }
    .whyae-grid { grid-template-columns: 1fr; }
    .whyae-card.whyae-card-wide { grid-column: span 1; }
    .whyae-header-stats { flex-direction: column; gap: 16px; }
    .whyae-hstat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
    .whyae-hstat:first-child { border-top: none; padding-top: 0; }
    .whyae-cta-strip { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
    .whyae-card { padding: 28px 24px; }
  }
  
  /*how we work */
  
   /* ALL CLASSES PREFIXED WITH "hww-" */
 
  .hww-section {
    background: #04152D;
    padding: 100px 0 90px;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  .hww-glow-1 {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,79,166,0.15) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
  }
 
  .hww-glow-2 {
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,198,162,0.08) 0%, transparent 70%);
    bottom: -80px; left: -80px;
    pointer-events: none;
  }
 
  .hww-inner {
    position: relative;
    z-index: 2;
  }
 
  /* ---- Header ---- */
  .hww-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.25);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 18px;
  }
 
  .hww-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .hww-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 16px;
  }
 
  .hww-heading span { color: #00C6A2; }
 
  .hww-accent-bar {
    width: 52px; height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 4px;
    margin: 0 auto 20px;
  }
 
  .hww-subtext {
    font-size: 15px;
    color: rgba(255,255,255);
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300;
    margin: 0 auto;
  }
 
  /* ---- Main layout ---- */
  .hww-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 72px;
  }
 
  /* ============================
     LEFT: Interactive steps
  ============================*/
  .hww-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .hww-step {
    display: flex;
    gap: 20px;
    position: relative;
    cursor: pointer;
  }
 
  .hww-step-line-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
 
  .hww-step-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(10,79,166,0.12);
    border: 2px solid rgba(10,79,166,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
 
  .hww-step.hww-active .hww-step-circle,
  .hww-step:hover .hww-step-circle {
    background: #0A4FA6;
    border-color: #0A4FA6;
    box-shadow: 0 0 0 6px rgba(10,79,166,0.15);
  }
 
  .hww-step-circle svg {
    width: 20px; height: 20px;
    stroke: rgba(255,255,255,0.35);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
  }
 
  .hww-step.hww-active .hww-step-circle svg,
  .hww-step:hover .hww-step-circle svg { stroke: #ffffff; }
 
  .hww-step-vline {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: rgba(255,255,255,0.06);
    margin: 5px 0;
  }
 
  .hww-step:last-child .hww-step-vline { display: none; }
 
  .hww-step-body {
    padding-top: 10px;
    padding-bottom: 32px;
    flex: 1;
  }
 
  .hww-step:last-child .hww-step-body { padding-bottom: 0; }
 
  .hww-step-num {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 5px;
    opacity: 0.55;
    transition: opacity 0.3s;
  }
 
  .hww-step.hww-active .hww-step-num,
  .hww-step:hover .hww-step-num { opacity: 1; }
 
  .hww-step-title {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: rgba(255,255,255);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s;
  }
 
  .hww-step.hww-active .hww-step-title,
  .hww-step:hover .hww-step-title { color: rgba(225,225,225); }
 
  .hww-step-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.3);
    line-height: 1.75;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s;
  }
 
  .hww-step.hww-active .hww-step-desc,
  .hww-step:hover .hww-step-desc {
    max-height: 120px;
    opacity: 1;
    color: rgba(255,255,255);
  }
 
  /* ============================
     RIGHT: Arrow timeline card
  ============================*/
  .hww-right {
    position: sticky;
    top: 100px;
  }
 
  .hww-flow-card {
    background: linear-gradient(160deg, #0a1f3d 0%, #091a35 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 44px 40px 40px;
    position: relative;
    overflow: hidden;
  }
 
  .hww-flow-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 24px 24px 0 0;
  }
 
  .hww-flow-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
  }
 
  .hww-flow-card-sub {
    font-size: 13.5px;
    color: rgba(255,255,255);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 38px;
  }
 
  /* ---- Arrow timeline ---- */
  .hww-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .hww-tl-row {
    display: flex;
    gap: 18px;
    align-items: stretch;
  }
 
  /* Left track: badge + arrow */
  .hww-tl-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
  }
 
  /* Step badge */
  .hww-tl-badge {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0A4FA6 0%, #0060cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(10,79,166,0.45);
    position: relative;
    z-index: 2;
  }
 
  /* Last badge: teal */
  .hww-tl-badge.hww-tl-badge-last {
    background: linear-gradient(135deg, #00A88A 0%, #00C6A2 100%);
    box-shadow: 0 6px 20px rgba(0,198,162,0.4);
  }
 
  /* Arrow between steps */
  .hww-tl-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 2px 0 2px;
    position: relative;
  }
 
  /* Vertical line inside arrow section */
  .hww-tl-arrow-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, #0A4FA6 0%, #00C6A2 100%);
    position: relative;
  }
 
  /* Arrowhead at bottom of line */
  .hww-tl-arrowhead {
    width: 0; height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #00C6A2;
    margin-top: -1px;
  }
 
  /* Row body */
  .hww-tl-body {
    padding-top: 10px;
    padding-bottom: 28px;
    flex: 1;
  }
 
  /* Last row: no bottom padding */
  .hww-tl-row:last-child .hww-tl-body { padding-bottom: 0; }
 
  .hww-tl-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 5px;
    opacity: 0.75;
  }
 
  .hww-tl-title {
    font-family: 'Syne', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
  }
 
  .hww-tl-desc {
    font-size: 12.5px;
    color: rgba(255,255,255);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
  }
 
  /* Done badge */
  .hww-done-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.28);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #00C6A2;
    margin-top: 28px;
  }
 
  .hww-done-badge svg {
    width: 14px; height: 14px;
    stroke: #00C6A2;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  /* ---- Bottom note ---- */
  .hww-bottom-note {
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
 
  .hww-note-text {
    font-size: 14.5px;
    color: rgba(255,255,255);
    line-height: 1.75;
    font-weight: 300;
    max-width: 600px;
  }
 
  .hww-note-text strong {
    color: rgba(255,255,255,0.72);
    font-weight: 500;
  }
 
  .hww-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
 
  .hww-btn-solid {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(10,79,166,0.35);
  }
 
  .hww-btn-solid:hover {
    background: #083d85;
    transform: translateY(-2px);
    color: #ffffff;
  }
 
  .hww-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.12);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
 
  .hww-btn-ghost:hover {
    border-color: #00C6A2;
    color: #00C6A2;
    transform: translateY(-2px);
  }
 
  @media (max-width: 991px) {
    .hww-layout { grid-template-columns: 1fr; gap: 48px; }
    .hww-right { position: static; }
    .hww-bottom-note { flex-direction: column; align-items: flex-start; }
  }
 
  @media (max-width: 576px) {
    .hww-section { padding: 60px 0 60px; }
    .hww-flow-card { padding: 28px 22px 28px; }
  }
  
   /* ALL CLASSES PREFIXED WITH "wcu-" */
 
  .wcu-section {
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
    position: relative;
  }
 
  /* ===== SPLIT BACKGROUND ===== */
  .wcu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
 
  /* LEFT — dark side */
  .wcu-left {
    background: #04152D;
    padding: 100px 64px 100px 48px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .wcu-left::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,198,162,0.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
  }
 
  /* RIGHT — light side */
  .wcu-right {
    background: #F0F5FF;
    padding: 100px 48px 100px 64px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .wcu-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #b8ccee 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.4;
    pointer-events: none;
  }
 
  /* ===== LEFT CONTENT ===== */
  .wcu-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,198,162,0.1);
    border: 1px solid rgba(0,198,162,0.25);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #00C6A2;
    margin-bottom: 24px;
    width: fit-content;
  }
 
  .wcu-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .wcu-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
  }
 
  .wcu-heading span {
    color: #00C6A2;
  }
 
  .wcu-desc {
    font-size: 15px;
    color: rgba(255,255,255);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 420px;
  }
 
  /* Image block with overlap */
  .wcu-img-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 380px;
  }
 
  .wcu-img-block img {
    width: 100%;
    display: block;
    border-radius: 20px;
    filter: brightness(0.82);
  }
 
  /* Teal overlay strip on image */
  .wcu-img-block::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C6A2, #0A4FA6);
  }
 
  /* Floating label on image */
  .wcu-img-label {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(4,21,45,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,198,162,0.3);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .wcu-img-label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00C6A2;
    flex-shrink: 0;
    animation: wcu-pulse 2s infinite;
  }
 
  @keyframes wcu-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
  }
 
  .wcu-img-label-text {
    font-size: 12.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
 
  /* ===== RIGHT CONTENT ===== */
  .wcu-right-inner {
    position: relative;
    z-index: 2;
  }
 
  .wcu-right-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .wcu-right-tag::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(10,79,166,0.2);
    max-width: 60px;
  }
 
  /* Feature items — horizontal bold rows */
  .wcu-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
 
  .wcu-feat {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #DDE8F8;
    background: #ffffff;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }
 
  .wcu-feat:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(10,79,166,0.1);
  }
 
  /* Left color accent bar per feature */
  .wcu-feat-bar {
    width: 5px;
    background: linear-gradient(180deg, #0A4FA6, #00C6A2);
    flex-shrink: 0;
    border-radius: 16px 0 0 16px;
  }
 
  .wcu-feat-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    flex: 1;
  }
 
  .wcu-feat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: #EEF3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
  }
 
  .wcu-feat:hover .wcu-feat-icon {
    background: #0A4FA6;
  }
 
  .wcu-feat-icon svg {
    width: 22px; height: 22px;
    stroke: #0A4FA6;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
  }
 
  .wcu-feat:hover .wcu-feat-icon svg {
    stroke: #ffffff;
  }
 
  .wcu-feat-body {
    flex: 1;
  }
 
  .wcu-feat-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0D1B2E;
    margin-bottom: 4px;
    line-height: 1.2;
  }
 
  .wcu-feat-desc {
    font-size: 13px;
    color: #6B7A95;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
  }
 
  /* Arrow indicator */
  .wcu-feat-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #F0F5FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 8px;
    transition: background 0.25s;
  }
 
  .wcu-feat:hover .wcu-feat-arrow {
    background: #0A4FA6;
  }
 
  .wcu-feat-arrow svg {
    width: 14px; height: 14px;
    stroke: #0A4FA6;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
  }
 
  .wcu-feat:hover .wcu-feat-arrow svg {
    stroke: #ffffff;
  }
 
  /* Bottom CTA under features */
  .wcu-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
 
  .wcu-btn-solid {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(10,79,166,0.25);
  }
 
  .wcu-btn-solid:hover {
    background: #083d85;
    transform: translateY(-2px);
    color: #ffffff;
  }
 
  .wcu-btn-ghost {
    background: transparent;
    color: #0A4FA6;
    font-weight: 500;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(10,79,166,0.25);
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
  }
 
  .wcu-btn-ghost:hover {
    border-color: #0A4FA6;
    background: rgba(10,79,166,0.05);
    transform: translateY(-2px);
    color: #0A4FA6;
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    .wcu-split {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .wcu-left {
      padding: 70px 32px;
    }
    .wcu-right {
      padding: 70px 32px;
    }
    .wcu-img-block {
      max-width: 100%;
    }
  }
 
  @media (max-width: 576px) {
    .wcu-left, .wcu-right { padding: 50px 20px; }
    .wcu-feat-content { padding: 16px 18px; gap: 14px; }
  }
  
  
   /* ALL CLASSES PREFIXED WITH "ctab-" */
 
  .ctab-section {
    background: #F0F5FF;
    padding: 90px 0;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
  }
 
  .ctab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #b8ccee 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.35;
    pointer-events: none;
  }
 
  .ctab-section::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,79,166,0.07) 0%, transparent 70%);
    top: -150px; right: -150px;
    pointer-events: none;
  }
 
  .ctab-inner {
    position: relative;
    z-index: 2;
  }
 
  /* Big card */
  .ctab-card {
    background: #ffffff;
    border: 1px solid #DDE8F8;
    border-radius: 28px;
    padding: 70px 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(10,79,166,0.08);
  }
 
  /* Gradient top border */
  .ctab-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 28px 28px 0 0;
  }
 
  /* Decorative quote mark */
  .ctab-card::after {
    content: '\201C';
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 260px;
    font-weight: 800;
    color: rgba(10,79,166,0.04);
    top: -40px;
    right: 40px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
 
  .ctab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,79,166,0.07);
    border: 1px solid rgba(10,79,166,0.15);
    border-radius: 50px;
    padding: 5px 16px 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0A4FA6;
    margin-bottom: 28px;
  }
 
  .ctab-tag-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #00C6A2;
    display: inline-block;
  }
 
  .ctab-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }
 
  .ctab-text-col {}
 
  .ctab-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 800;
    color: #0D1B2E;
    line-height: 1.2;
    margin-bottom: 20px;
  }
 
  .ctab-heading span {
    color: #0A4FA6;
  }
 
  .ctab-p1 {
    font-size: 15px;
    color: #6B7A95;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px;
  }
 
  .ctab-p2 {
    font-size: 15px;
    color: #6B7A95;
    line-height: 1.85;
    font-weight: 300;
    margin: 0;
  }
 
  .ctab-p2 strong {
    color: #0D1B2E;
    font-weight: 500;
  }
 
  /* Divider */
  .ctab-divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, #0A4FA6, #00C6A2);
    border-radius: 4px;
    margin: 24px 0;
  }
 
  /* CTA col */
  .ctab-cta-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    min-width: 200px;
  }
 
  .ctab-btn-primary {
    background: #0A4FA6;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(10,79,166,0.28);
    white-space: nowrap;
  }
 
  .ctab-btn-primary:hover {
    background: #083d85;
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(10,79,166,0.36);
  }
 
  .ctab-btn-secondary {
    background: transparent;
    color: #0A4FA6;
    font-weight: 500;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(10,79,166,0.25);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.25s;
    white-space: nowrap;
  }
 
  .ctab-btn-secondary:hover {
    border-color: #0A4FA6;
    background: rgba(10,79,166,0.05);
    transform: translateY(-2px);
    color: #0A4FA6;
  }
 
  /* Trust row */
  .ctab-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
 
  .ctab-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6B7A95;
    font-weight: 400;
    color:black;
    font-size:17px;
    font-weight:bold;
  }
 
  .ctab-trust-item svg {
    width: 16px; height: 16px;
    stroke: #00C6A2;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    
  }
 
  .ctab-trust-sep {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #DDE8F8;
  }
 
  /* Responsive */
  @media (max-width: 900px) {
    .ctab-layout {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .ctab-cta-col {
      flex-direction: row;
      min-width: auto;
    }
    .ctab-card { padding: 48px 36px; }
  }
 
  @media (max-width: 576px) {
    .ctab-section { padding: 60px 0; }
    .ctab-card { padding: 36px 24px; }
    .ctab-cta-col { flex-direction: column; }
    .ctab-trust { gap: 14px; }
    .ctab-trust-sep { display: none; }
  }