/* ==========================================
ABOUT PAGE UI POLISH ONLY
(text unchanged)
========================================== */

    .about-page {
      background: #f4f7fb;
      color: #0f172a;
      position: relative;
      overflow-x: hidden;
    }

    .about-page::before,
    .about-page::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: .45;
      pointer-events: none;
      z-index: 0;
    }

    .about-page::before {
      width: 420px;
      height: 420px;
      background: rgba(20, 184, 143, .14);
      top: 120px;
      left: -140px;
    }

    .about-page::after {
      width: 360px;
      height: 360px;
      background: rgba(59, 130, 246, .10);
      top: 760px;
      right: -120px;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .about-wrap {
      max-width: 1280px;
      margin: auto;
      padding: 0 20px;
    }

    /* HERO */
    .about-top {
      position: relative;
      padding: 52px 0 58px;
      background:
        radial-gradient(circle at top left,
          rgba(20, 184, 143, .16),
          transparent 34%),

        radial-gradient(circle at top right,
          rgba(59, 130, 246, .14),
          transparent 30%),

        linear-gradient(135deg, #081526 0%, #0f1f3a 100%);

      border-bottom: 1px solid rgba(255, 255, 255, .06);
      overflow: hidden;
    }

    .about-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);

      background-size: 40px 40px;
      pointer-events: none;
    }

    .top-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
    }

    .top-copy h1 {
      font-size: clamp(42px, 6vw, 66px);
      line-height: 1.02;
      margin: 0 0 18px;
      color: #ffffff;
    }

    .top-copy p {
      font-size: 20px;
      line-height: 1.85;
      color: #475569;
      margin: 0 0 28px;
      max-width: 650px;
      color: #c8d4e7;
    }

    /* LEFT SIDE PILLS */
    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
      margin-top: 6px;
    }

    .trust-pill {
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .08);
      font-size: 14px;
      font-weight: 700;
      color: #dce8f8;
      backdrop-filter: blur(10px);
    }

    /* FOUNDERS */
    .founder-stack {
      display: grid;
      gap: 18px;
    }

    .founder-card {
      background: rgba(15, 23, 42, .34);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
      backdrop-filter: blur(16px);
      transition: .25s ease;
    }

    .founder-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
    }

    .founder-card h3 {
      font-size: 28px;
      margin: 0 0 14px;
    }

    .meta-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 14px;
    }

    .meta-pill {
      padding: 8px 14px;
      border-radius: 999px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      font-size: 14px;
      font-weight: 800;
    }

    .meta-pill strong {
      color: #10c69a;
    }

    .badge {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(16, 198, 154, .08);
      color: #10c69a;
      font-size: 14px;
      font-weight: 800;
    }

    /* PROCESS */
    .process {
      position: relative;

      background:
        linear-gradient(180deg,
          #ffffff 0%,
          #f8fbff 100%);

      border: 1px solid rgba(20, 184, 143, .08);

      border-radius: 34px;

      padding: 48px 34px;

      margin-bottom: 52px;

      box-shadow:
        0 30px 60px rgba(15, 23, 42, .06),
        0 0 0 1px rgba(255, 255, 255, .7);

      overflow: hidden;
    }

    .process::before {
      content: '';

      position: absolute;

      width: 280px;
      height: 280px;

      background: rgba(20, 184, 143, .08);

      filter: blur(80px);

      top: -120px;
      right: -100px;

      border-radius: 50%;
    }

    .section-title {
      font-size: clamp(34px, 5vw, 52px);
      text-align: center;
      margin-bottom: 10px;
    }

    .timeline-sub {
      text-align: center;
      max-width: 760px;
      margin: 8px auto 30px;
      font-size: 17px;
      line-height: 1.8;
      color: #64748b;
    }

    .timeline-premium {
      display: grid;
      grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
      align-items: start;
    }

    .p-step {
      text-align: center;
      padding: 0 10px;
      transition: .25s ease;
    }

    .p-step:hover {
      transform: translateY(-5px);
    }

    .p-badge {
      width: 34px;
      height: 34px;
      margin: 0 auto 12px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #10c69a;
      color: #fff;
      font-weight: 800;
    }

    .p-icon {
      width: 72px;
      height: 72px;

      margin: 0 auto 16px;

      border-radius: 50%;

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

      position: relative;

      background:
        linear-gradient(135deg,
          rgba(20, 184, 143, .10),
          rgba(255, 255, 255, .96));

      border: 1px solid rgba(20, 184, 143, .14);

      box-shadow:
        0 14px 28px rgba(15, 23, 42, .06);

      transition: .25s ease;
    }

    .p-step {
      position: relative;

      padding: 24px 14px;

      border-radius: 24px;

      transition: .25s ease;
    }

    .p-step:hover {
      background: rgba(255, 255, 255, .55);

      box-shadow:
        0 12px 28px rgba(15, 23, 42, .05);

      transform: translateY(-6px);
    }

    .p-icon img {
      width: 34px;
      height: 34px;
      object-fit: contain;
    }

    .p-icon:hover {
      transform: scale(1.06);
    }

    .p-step h4 {
      font-size: 18px;
      margin: 0;
    }

    .p-line{
    height:2px;

    margin-top:68px;

    border-radius:999px;

    background:
      linear-gradient(
        90deg,
        rgba(20,184,143,.12),
        rgba(20,184,143,.55),
        rgba(20,184,143,.12)
      );

    opacity:.8;
}

    .tooltip-box {
      position: absolute;
      bottom: 86px;
      left: 50%;
      transform: translateX(-50%);
      background: #0f172a;
      color: #fff;
      padding: 12px 14px;
      border-radius: 14px;
      font-size: 13px;
      line-height: 1.6;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transition: .24s ease;
      pointer-events: none;
      z-index: 99;
      box-shadow: 0 20px 36px rgba(15, 23, 42, .16);
    }

    .tooltip-box b {
      display: block;
      margin-bottom: 3px;
      font-size: 14px;
    }

    .tooltip-box:after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -6px;
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid #0f172a;
    }

    .p-icon:hover .tooltip-box {
      opacity: 1;
      visibility: visible;
      bottom: 94px;
    }

    /* STORY */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 52px;
    }

    .story-card {
      background: #f8fbfe;
      border: 1px solid #e4edf5;

      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, .04);
    }

    .story-card h2 {
      font-size: 42px;
      margin-bottom: 18px;
    }

    .story-card p {
      font-size: 18px;
      line-height: 1.9;
      color: #475569;
      margin-bottom: 14px;
    }

    .metrics-panel {
      background: #0f172a;
      color: #fff;
      border-radius: 24px;
      padding: 38px;
      display: grid;
      gap: 18px;
    }

    .metric {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .04);
    }

    .metric h4 {
      margin-bottom: 8px;
      font-size: 20px;
      color: #fff;
    }

    .metric p {
      margin: 0;
      color: #d7e2ee;
      font-size: 16px;
    }

    /* ==========================================
WHY SECTION PREMIUM BAND
========================================== */

    .why-section {
    position: relative;
    margin: 48px 0 0;
      padding: 58px 42px;
      border-radius: 34px;

      background:
        radial-gradient(circle at top left,
          rgba(20, 184, 143, .18),
          transparent 30%),

        linear-gradient(135deg,
          #081526 0%,
          #0f1f3a 100%);

      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      inset: 0;

      background:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);

      background-size: 40px 40px;
      pointer-events: none;
    }

    .why-section .section-title {
      color: #ffffff;
      position: relative;
      z-index: 1;
      margin-bottom: 18px;
      font-size: clamp(30px,4vw,44px);
    }

    .why-wrap {
      position: relative;
      z-index: 1;

      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .why-row h4 {
      color: #ffffff;
      margin-bottom: 8px;
      font-size: 20px;
    }

    .why-row p {
      color: #c8d4e7;
      line-height: 1.7;
      margin: 0;
    }

    @media(max-width:768px) {

      .why-section {
        padding: 50px 22px;
      }

      .why-wrap {
        grid-template-columns: 1fr;
      }

    }

    .why-row {
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: flex-start;
      gap: 18px;

      padding: 26px;

      border-radius: 24px;

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

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

      backdrop-filter: blur(14px);

      transition: .28s ease;
    }

    .why-row:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(15, 23, 42, .06);
    }

    .why-icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(16, 198, 154, .08);
      color: #10c69a;
      font-weight: 900;
      font-size: 22px;
    }

    /* MOBILE */
    @media(max-width:1100px) {

      .top-grid,
      .story-grid,
      .timeline-premium {
        grid-template-columns: 1fr;
      }

      .p-line {
        width: 3px;
        height: 42px;
        margin: 0 auto;
      }

    }

    @media(max-width:768px) {

      .about-top {
        padding: 52px 0;
      }

      .top-copy p {
        font-size: 17px;
        line-height: 1.8;
      }

      .process {
        padding: 36px 18px;
      }

      .p-icon {
        width: 64px;
        height: 64px;
      }

      .p-icon img {
        width: 30px;
        height: 30px;
      }

      .story-card {
        padding: 28px;
      }

      .story-card h2 {
        font-size: 30px;
      }

      .why-row {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .why-icon {
        margin: auto;
      }

    }

    .menu a.active {
      color: #10c69a;
      font-weight: 600;
      position: relative;
    }

    .menu a.active::after {
      content: "";
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background: #10c69a;
      border-radius: 2px;
    }

    .trust-panel {
      background:
        linear-gradient(135deg,
          rgba(255, 255, 255, .08),
          rgba(255, 255, 255, .03));

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

      border-radius: 20px;

      padding: 18px;

      margin-bottom: 16px;

      backdrop-filter: blur(12px);
    }

    .trust-name {
      color: #ffffff;
      font-size: 20px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 10px;
    }

    .trust-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding-bottom: 8px;
      margin-bottom: 8px;
      border-bottom: 1px solid #e2e8f0;
    }

    .trust-top span {
      font-size: 17px;
      font-weight: 800;
      color: #10c69a;
    }

    .trust-validity {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #94a3b8;
      margin: 6px 0 4px;
      flex-wrap: wrap;
      color: #c8d4e7;
    }

    .verify-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;

      background: #14b88f;
      color: #ffffff;

      transition: .25s ease;
    }

    .verify-btn:hover {
      transform: translateY(-2px);
      background: #18c99d;
      box-shadow: 0 10px 24px rgba(20, 184, 143, .28);
    }


    /* CARD TEXT (AMFI LINE) */
    .trust-badge-text {
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      color: #10c69a;
      margin-top: 6px;
    }