/*──────────────────────────────────────
  INDEX TWO - MAIN STYLESHEET
  -──────────────────────────────────────*/

/* ── ANIMATIONS ── */
  @keyframes pulseDot   { 0%,100%{opacity:1;transform:scale(1)}  50%{opacity:.3;transform:scale(.6)} }
  @keyframes floatY     { 0%,100%{transform:translateY(0)}        50%{transform:translateY(-10px)} }
  @keyframes fadeUp     { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes slideLeft  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  @keyframes spinSlow   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  @keyframes counterUp  { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
  @keyframes shimmer    { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

  body { font-family: 'Satoshi', sans-serif; }
  p { font-size: 16px; line-height: 1.75; }
  h4 { font-size: 1.5rem; }

/* ============================================================
   FORMALLS — SHARED BASE VARIABLES & RESET
   Combined from: aboutUs, index, integration, FormallsBlogs,
   mall_flow, mall_navigation, blog, blog1–4, FAQs,
   privacypolicy, refund, terms
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Primary brand blues */
  --blue:          #000079;
  --blue-dark:     #00005a;
  --blue-deep:     #000050;

  /* UI blues */
  --blue-light:    #dbeafe;
  --blue-lighter:  #eef3ff;
  --blue-bg:       #f5f8ff;

  /* Accent */
  --green:         #25d366;   /* WhatsApp green — used in index.html */

  /* Text scale */
  --text-dark:     #1e2d4a;
  --text-mid:      #3d5068;
  --text-muted:    #6b7ea0;

  /* Misc */
  --white:         #ffffff;
  --border:        #dbeafe;
  --section-alt:   #f8faff;
}

/* ── mall_navigation.html uses its own naming convention ──────
   Keep these alongside the main set so that file still resolves
   its var() calls correctly when this sheet is loaded globally. */
:root {
  --blue-primary:   #000079;   /* = --blue */
  --blue-medium:    #4f7be8;
  --blue-lighter:   #eff6ff;   /* nav uses slightly different tint */
  --blue-bg:        #eef3ff;   /* nav overrides bg shade */
  --border-light:   #c7d9f5;
}

/* ── Base paragraph style shared by all pages ──────────────── */
p {
  font-size:   16px;
  line-height: 1.8;
  color:       var(--text-mid);
  margin-bottom: 16px;   /* legal pages (privacy, refund, terms) */
}


  /*──────────────────────────────────────
        NAVIGATION DROPDOWN FIX
     -──────────────────────────────────────*/
.solutions-nav-item {
    position: relative;
}

/* Remove any gap — use padding instead of margin on the dropdown */
/* UPDATE your existing .solutions-dropdown — don't duplicate it */
.solutions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 999;
    padding-top: 8px;   /* ← change any margin-top to this */
    
    /* keep all your existing styles below this line */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    /* ... etc */
}

.solutions-nav-item:hover .solutions-dropdown,
.solutions-nav-item.open .solutions-dropdown {
    display: block;
}


  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .idx-hero {
    background-image: url(/static/img/formallsIndex.png);
    background-size: cover;
    background-position: center;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
  }
  .idx-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(238,243,255,0.92) 0%, rgba(245,248,255,0.80) 55%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
  }
  .idx-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    animation: fadeUp 0.9s ease both;
  }
  .idx-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,121,0.08);
  }
  .idx-tag img { width: 20px; }
  .idx-tag-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseDot 1.6s ease-in-out infinite;
  }
  .idx-hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .idx-hero h1 .hl-green  { color: var(--green); }
  .idx-hero h1 .hl-blue   { color: var(--blue); }
  .idx-hero-sub {
    color: var(--text-mid);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .idx-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary-idx {
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    padding: 15px 34px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 8px 28px rgba(0,0,121,0.28);
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary-idx:hover { background: var(--blue-dark); transform: translateY(-2px); color: #fff; text-decoration: none; }
  .btn-outline-idx {
    background: transparent;
    color: var(--blue);
    font-weight: 700;
    padding: 14px 32px;
    border: 2px solid var(--blue);
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline-idx:hover { background: var(--blue); color: #fff; transform: translateY(-2px); text-decoration: none; }

  /* Floating stat chips on hero */
  .idx-hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .idx-stat-chip {
    background: rgba(255,255,255,0.92);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 12px 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0,0,121,0.08);
    animation: floatY 4s ease-in-out infinite;
  }
  .idx-stat-chip .sv { font-size: 22px; font-weight: 900; color: var(--blue); line-height: 1; display: block; }
  .idx-stat-chip .sl { font-size: 11px; color: var(--text-muted); font-weight: 600; }

  /* ══════════════════════════════
     SHARED SECTION STYLES
  ══════════════════════════════ */
  .sec { padding: 80px 5%; }
  .sec-alt  { background: var(--section-alt); }
  .sec-white{ background: var(--white); }
  .sec-dark { background: var(--blue); }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-tag {
    display: inline-block;
    background: var(--blue-lighter);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .sec-dark .sec-tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
  .sec-head h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .sec-head h2 span { color: var(--blue); }
  .sec-dark .sec-head h2 { color: #fff; }
  .sec-head p { color: var(--text-mid); max-width: 520px; margin: 0 auto; line-height: 1.7; font-size: 16px; }
  .sec-dark .sec-head p { color: rgba(255,255,255,.75); }

  /* ══════════════════════════════
     SMART MANAGEMENT (Bento)
  ══════════════════════════════ */
  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }
  .bento-img {
    grid-row: 1 / 3;
    background: var(--blue-lighter);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    animation: floatY 5s ease-in-out infinite;
  }
  .bento-img img { width: 100%; max-width: 522px; object-fit: contain; }
  .bento-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 28px 26px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
  .bento-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .bento-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,121,0.1); }
  .bento-card:hover::before { opacity: 1; }
  .bento-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
  }
  .bento-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .bento-card p  { color: var(--text-mid); font-size: 16px; line-height: 1.7; margin: 0; }

  /* ══════════════════════════════
     KEY FEATURES
  ══════════════════════════════ */
  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .feat-card {
    background: var(--blue-bg);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 32px 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
  .feat-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,121,0.12); }
  .feat-card.dark { background: var(--blue); border-color: var(--blue); }
  .feat-card-icon {
    width: 68px; height: 68px;
    border-radius: 20px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(0,0,121,0.1);
  }
  .feat-card.dark .feat-card-icon { background: white; box-shadow: none; }
  .feat-card h4 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .feat-card.dark h4 { color: #fff; }
  .feat-card p  { color: var(--text-mid); font-size: 16px; line-height: 1.65; margin: 0; }
  .feat-card.dark p  { color: rgba(255,255,255,.8); }

  /* ══════════════════════════════
     HOW IT WORKS
  ══════════════════════════════ */
  .hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .hiw-grid::before {
    content: '';
    position: absolute;
    top: 42px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light), var(--blue), var(--blue-light), transparent);
    z-index: 0;
  }
  .hiw-step {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 32px 20px;
    text-align: center;
    transition: all .3s;
    position: relative;
    z-index: 1;
    margin: 0 8px;
  }
  .hiw-step:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,121,0.12); }
  .hiw-num {
    width: 52px; height: 52px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 900; color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0,0,121,0.3);
  }
  .hiw-step-icon { font-size: 28px; margin-bottom: 14px; display: block; }
  .hiw-step h4 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
  .hiw-step p  { color: var(--text-mid); font-size: 16px; line-height: 1.6; margin: 0; }

  /* ══════════════════════════════
     HELP / SUPPORT
  ══════════════════════════════ */
  .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .help-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
  .help-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .help-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,121,0.12); border-color: var(--blue); }
  .help-card:hover::before { opacity: 1; }
  .help-icon {
    width: 80px; height: 80px;
    background: var(--blue-lighter);
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .help-icon img { width: 48px; height: 48px; object-fit: contain; }
  .help-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .help-card p  { color: var(--text-mid); font-size: 16px; line-height: 1.65; margin: 0; }

  /* ══════════════════════════════
     FAQ
  ══════════════════════════════ */
  .faq-wrap { max-width: 1220px; margin: 0 auto; }
  .faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .3s;
  }
  .faq-item:has(.accordion-button:not(.collapsed)) { border-color: var(--blue); }
  .faq-item .accordion-button {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    background: transparent;
    padding: 20px 24px;
  }
  .faq-item .accordion-button:not(.collapsed) { color: var(--blue); background: var(--blue-lighter); box-shadow: none; }
  .faq-item .accordion-button::after { filter: none; }
  .faq-item .accordion-button:not(.collapsed)::after { filter: invert(10%) sepia(100%) saturate(10000%) hue-rotate(220deg); }
  .faq-item .accordion-body { padding: 0 24px 20px; color: var(--text-mid); font-size: 16px; line-height: 1.7; }

  /* ══════════════════════════════
     BLOGS
  ══════════════════════════════ */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: all .3s;
  }
  .blog-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,121,0.12); }
  .blog-card-img {
    background: var(--blue-lighter);
    padding: 28px;
    display: flex; align-items: center; justify-content: center;
    height: 200px;
  }
  .blog-card-img img { max-height: 180px; object-fit: contain; }
  .blog-card-body { padding: 24px; }
  .blog-tag { display: inline-block; background: var(--blue-lighter); color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px; }
  .blog-card-body h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); line-height: 1.4; margin-bottom: 16px; }
  .blog-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 16px; font-weight: 700; text-decoration: none; transition: gap .2s; }
  .blog-link:hover { gap: 10px; color: var(--blue-dark); }
  .blog-link svg { flex-shrink: 0; }

  /* ══════════════════════════════
     CTA
  ══════════════════════════════ */
  .idx-cta {
    background-image: url(/static/img/updatefoter1.png);
    background-size: cover; background-position: center;
    border-radius: 3rem;
    width: 91%; margin: 2rem auto;
    padding: 40px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .idx-cta h2 { color: #fff; font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 800; margin-bottom: 16px; }
  .idx-cta p  { color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 36px; font-size: 16px; }
  .idx-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-cta-white {
    background: #fff; color: var(--blue);
    font-weight: 700; padding: 14px 32px;
    border: none; border-radius: 10px; font-size: 16px;
    cursor: pointer; transition: all .25s;
    text-decoration: none; display: inline-block;
  }
  .btn-cta-white:hover { background: #eff6ff; transform: translateY(-2px); text-decoration: none; color: var(--blue-dark); }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-img  { grid-row: auto; }
    .hiw-grid   { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .hiw-grid::before { display: none; }
    .hiw-step   { margin: 0; }
  }
  @media (max-width: 768px) {
    .feat-grid, .help-grid, .blog-grid { grid-template-columns: 1fr; }
    .hiw-grid   { grid-template-columns: 1fr; }
    .idx-hero-stats { flex-direction: column; gap: 10px; }
  }


  /*──────────────────────────────────────
        MALL FLOW CSS
    -──────────────────────────────────────*/

    /* ===== BADGE ===== */
    .sms-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--blue-lighter);
      border: 1px solid rgba(59,91,219,0.2);
      color: var(--blue-deep);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
      letter-spacing: 0.4px;
    }
    .sms-badge-dot {
      width: 7px; height: 7px;
      background: #000079;
      border-radius: 50%;
      animation: pulse-dot 1.8s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(0.6); }
    }

    /* ===== HERO ===== */
    
    .sms-hero h1 {
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 16px;
      font-family: 'Satoshi', sans-serif;
    }
    .sms-hero h1 span { color: #000079; }
    .sms-hero > div:first-child > p {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 460px;
    }
    .sms-hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .btn-primary {
      background: #000079;
      color: #fff;
      font-weight: 700;
      padding: 13px 30px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--blue-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(59,91,219,0.28);
      color: #fff;
      text-decoration: none;
    }
    .btn-outline {
      background: #fff;
      color: #000079;
      font-weight: 600;
      padding: 12px 28px;
      border: 1.5px solid #000079;
      border-radius: 8px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline:hover {
      background: var(--blue-lighter);
      color: var(--blue-dark);
      text-decoration: none;
    }

    /* Hero Dashboard Visual */
    .sms-dashboard {
      background: #fff;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      box-shadow: 0 20px 60px rgba(59,91,219,0.1);
      overflow: hidden;
    }
    .dash-topbar {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 14px 18px;
      border-bottom: 1px solid #e8f0fe;
      background: #fff;
    }
    .dash-dot { width: 10px; height: 10px; border-radius: 50%; }
    .dash-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dark);
      margin-left: 8px;
    }
    .dash-body { padding: 18px; background: var(--blue-bg); }
    .dash-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 14px;
    }
    .dash-metric {
      background: #fff;
      border-radius: 10px;
      padding: 14px 10px;
      text-align: center;
      border: 1px solid #e8f0fe;
    }
    .dash-metric .val {
      font-size: 22px;
      font-weight: 800;
      color: #000079;
      display: block;
    }
    .dash-metric .lbl {
      font-size: 10px;
      color: var(--text-muted);
      margin-top: 3px;
    }
    .dash-chart {
      background: #fff;
      border-radius: 10px;
      padding: 14px;
      border: 1px solid #e8f0fe;
    }
    .dash-chart-label {
      font-size: 11px;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .dash-bars {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 72px;
    }
    .dash-bar {
      background: var(--blue-light);
      border-radius: 4px 4px 0 0;
      flex: 1;
      transition: all 0.3s;
    }
    .dash-bar.active { background: #000079; }
    .dash-bar:hover { background: #000079; }

    /* ===== STATS BAND ===== */
    .sms-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #000079;
    }
    .sms-stat {
      padding: 32px 20px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .sms-stat:last-child { border-right: none; }
    .sms-stat .num {
      font-size: clamp(1.8rem, 2.5vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      display: block;
      font-family: 'Satoshi', sans-serif;
      line-height: 1;
      margin-bottom: 6px;
    }
    .sms-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.72); }

    /* ===== SHARED SECTION STYLES ===== */
    .sms-section {
      padding: 80px 5%;
    }
    .sms-section-alt { background: var(--section-alt); }
    .sms-section-white { background: #fff; }
    .sec-head { text-align: center; margin-bottom: 52px; }
    .sec-tag {
      display: inline-block;
      background: var(--blue-lighter);
      color: #000079;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
    .sec-head h2 {
      font-size: clamp(1.6rem, 2.2vw, 2.2rem);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
      font-family: 'Satoshi', sans-serif;
    }
    .sec-head p {
      font-size: 16px;
      color: var(--text-mid);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ===== VISITOR HERO ===== */
    .visitor-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .visitor-split h2 {
      font-size: clamp(1.6rem, 2.2vw, 2.2rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 14px;
      font-family: 'Satoshi', sans-serif;
    }
    .visitor-split > div:first-child > p {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 22px;
    }
    .visitor-list {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .visitor-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      color: var(--text-mid);
    }
    .visitor-list li i { color: #000079; }

    /* WhatsApp Phone Mockup */
    .phone-mockup {
      background: #fff;
      border-radius: 24px;
      border: 1.5px solid var(--border);
      box-shadow: 0 20px 60px rgba(59,91,219,0.1);
      overflow: hidden;
      max-width: 300px;
      margin: 0 auto;
    }
    .phone-header {
      background: #075e54;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .phone-avatar {
      width: 36px; height: 36px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
      flex-shrink: 0;
    }
    .phone-header-info .name { font-size: 13px; font-weight: 600; color: #fff; }
    .phone-header-info .status { font-size: 11px; color: rgba(255,255,255,0.75); }
    .phone-body { background: #e5ddd5; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
    .msg-in {
      background: #fff;
      border-radius: 10px 10px 10px 2px;
      padding: 9px 13px;
      font-size: 12.5px;
      color: #1e2d4a;
      max-width: 82%;
      box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .msg-out {
      background: #dcf8c6;
      border-radius: 10px 10px 2px 10px;
      padding: 9px 13px;
      font-size: 12.5px;
      color: #1e2d4a;
      max-width: 82%;
      margin-left: auto;
      box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    }
    .store-chip {
      background: #fff;
      border-radius: 10px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 90%;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
    .store-chip-icon {
      width: 32px; height: 32px;
      background: var(--blue-lighter);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }
    .store-chip-name { font-size: 12px; font-weight: 600; color: var(--text-dark); }
    .store-chip-sub { font-size: 10px; color: var(--text-muted); }
    .offer-chip {
      background: #fff3cd;
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 12px;
      color: #7c5c00;
      font-weight: 600;
      max-width: 82%;
      margin-left: auto;
    }

    /* ===== DISCOVERY CARDS ===== */
    .disc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .disc-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 28px 24px;
      text-align: center;
      transition: all 0.3s;
    }
    .disc-card:hover {
      border-color: #000079;
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(59,91,219,0.1);
    }
    .disc-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 24px;
    }
    .disc-card h4 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .disc-card > p {
      font-size: 16px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .disc-list {
      list-style: none;
      padding: 0; 
      padding-left: 4px;
      margin: 0;
      text-align: left;
    }
    .disc-list li {
      font-size: 16px;
      color: var(--text-mid);
      padding: 4px 0 4px 16px;
      position: relative;
    }
    .disc-list li::before {
      content: '';
      position: absolute;
      left: 0; top: 10px;
      width: 6px; height: 6px;
      background: #000079;
      border-radius: 50%;
    }

  .btn-white {
    background: #fff;
    color: #000079;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-white:hover {
    background: #eff6ff;
    color: #2d46b9;
    text-decoration: none;
    transform: translateY(-2px);
  }

  .btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 13px 30px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
  }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .sms-hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; min-height: auto; }
      .sms-hero > div:first-child > p { max-width: 100%; }
      .sms-hero-btns { justify-content: center; }
      .sms-stats { grid-template-columns: repeat(2, 1fr); }
      .feat-grid { grid-template-columns: 1fr; }
      .visitor-split { grid-template-columns: 1fr; }
      .disc-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .sms-stats { grid-template-columns: repeat(2, 1fr); }
      .disc-grid { grid-template-columns: 1fr; }
      .cta-btns { flex-direction: column; align-items: center; }
    }


/*──────────────────────────────────────
        MALL NAVIGATION CSS
    -──────────────────────────────────────*/

      /* ===== HERO ===== */
  .nav-hero {
    background: linear-gradient(135deg, #eef3ff 0%, #dbeafe 60%, #e0ecff 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 58px 5% 60px;
  }

  .nav-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -8%;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(59,91,219,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .nav-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 450px; height: 450px;
    background: radial-gradient(ellipse, rgba(79,123,232,0.06) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-content {
    flex: 1;
    max-width: 52%;
    z-index: 2;
    padding-right: 40px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,91,219,0.1);
    border: 1px solid rgba(59,91,219,0.25);
    color: #000079;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-badge span {
    width: 8px; height: 8px;
    background: #000079;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
  }

  .hero-content h1 {
    color: #1e2d4a;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
  }

  .hero-content h1 .highlight-blue {
    color: #000079;
  }

  .hero-content p {
    color: #3d5068;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 89%;
  }

  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary-blue {
    background: #000079;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary-blue:hover {
    background: #2d46b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,91,219,0.3);
    color: #fff;
    text-decoration: none;
  }

  .btn-outline-blue {
    background: #fff;
    color: #000079;
    font-weight: 600;
    padding: 13px 30px;
    border: 1.5px solid #000079;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-outline-blue:hover {
    background: #eef3ff;
    color: #2d46b9;
    text-decoration: none;
  }
  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .hero-trust-pills {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b7ea0;
    font-size: 13.5px;
  }

  .trust-pill i { color: #000079; }

  /* Hero Visual - Map Mockup */
  .hero-visual {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .map-mockup {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #c7d9f5;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(59,91,219,0.12);
    position: relative;
  }

  .map-header {
    background: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8f0fe;
  }

  .map-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .floor-selector { display: flex; gap: 6px; }

  .floor-btn {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #c7d9f5;
    color: #6b7ea0;
    background: transparent;
    transition: all 0.2s;
  }

  .floor-btn.active {
    background: #000079;
    color: #fff;
    border-color: #000079;
  }

  .map-svg-wrapper {
    padding: 16px;
    background: #f0f6ff;
  }

  .map-svg-wrapper svg { width: 100%; height: auto; }

  .direction-card {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border: 1.5px solid #c7d9f5;
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    box-shadow: 0 4px 20px rgba(59,91,219,0.1);
  }

  .dir-icon {
    width: 36px; height: 36px;
    background: #dbeafe;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #000079;
    font-size: 16px;
    flex-shrink: 0;
  }

  .dir-text h6 {
    color: #1e2d4a;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px;
  }

  .dir-text p {
    color: #000079;
    font-size: 11px;
    margin: 0;
  }

  .dir-steps { margin-left: auto; text-align: right; }
  .dir-steps span { color: #000079; font-size: 18px; font-weight: 800; }
  .dir-steps small { display: block; color: #6b7ea0; font-size: 10px; }

  /* ===== SHARED SECTION STYLES ===== */
  .section-tag {
    display: inline-block;
    background: rgba(59,91,219,0.08);
    color: #000079;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #1e2d4a;
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
  }

  .section-sub {
    color: #3d5068;
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
  }

  /* ===== HOW IT WORKS ===== */
  .how-it-works {
    background: #fff;
    padding: 80px 5%;
    text-align: center;
  }

  .steps-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 277px;
    padding: 0 10px;
  }

  .step-icon-wrap {
    width: 80px; height: 80px;
    background: #eff6ff;
    border-radius: 20px;
    border: 2px solid #c7d9f5;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
    transition: all 0.3s;
  }

  .step-item:hover .step-icon-wrap {
    border-color: #000079;
    background: #dbeafe;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59,91,219,0.15);
  }

  .step-num {
    width: 24px; height: 24px;
    background: #000079;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
  }

  .step-item h5 { font-weight: 700; color: #1e2d4a; font-size: 15px; margin-bottom: 6px; }
  .step-item p { color: #3d5068; font-size: 13.5px; line-height: 1.5; }

  .step-arrow {
    font-size: 22px;
    color: #000079;
    margin-top: 58px;
    flex-shrink: 0;
    opacity: 0.5;
  }

  /* ===== KEY FEATURES ===== */
  .key-features {
    background: #eef3ff;
    padding: 80px 5%;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 12px;
  }

.feature-card {
  background: #fff;
  border: 1.5px solid #c7d9f5;
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 101%;
}

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #000079, transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .feature-card:hover {
    border-color: #000079;
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59,91,219,0.12);
  }

  .feature-card:hover::before { opacity: 1; }

 .feature-icon {
  width: 56px;
  height: 56px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-card h4 {
  color: #1e2d4a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.feature-card p {
  color: #3d5068;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  text-align: center;
}

  /* ===== STATS ===== */
  .stats-banner {
    background: #000079;
    padding: 32px 5%;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }

  .stat-item .stat-num {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 800;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
  }

  .stat-item p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }

  .stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; margin: 20px 0; }

  /* ===== USE CASES ===== */
  .use-cases {
    background: #fff;
    padding: 80px 5%;
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .case-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #c7d9f5;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(59,91,219,0.05);
  }

  .case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(59,91,219,0.12);
    border-color: #000079;
  }

  .case-img-wrap {
    height: 160px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
  }

  .case-body { padding: 24px; }

  .case-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000079;
    margin-bottom: 8px;
  }

  .case-body h4 { font-weight: 700; color: #1e2d4a; font-size: 17px; margin-bottom: 10px; }
  .case-body p { color: #3d5068; font-size: 14px; line-height: 1.6; margin: 0; }

  /* ===== INTEGRATION ===== */
  .integration-section {
    background: #eef3ff;
    padding: 80px 5%;
  }

  .integration-inner {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .integration-text { flex: 1; }
  .integration-text .section-title { text-align: left; }

  .integration-text p { color: #3d5068; font-size: 16px; line-height: 1.7; margin-bottom: 30px; }

  .integration-list {
    list-style: none;
    padding: 0; margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .integration-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e2d4a;
    font-size: 15px;
  }

  .integration-list li i { color: #000079; font-size: 16px; flex-shrink: 0; }

.integration-visual {
  flex: 1;
  margin-top: 2rem;
  background: #fff;
  border: 1.5px solid #c7d9f5;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(59,91,219,0.08);
  position: relative;
  min-height: 440px;
}

/* Dashed orbit circle */
.integration-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1.5px dashed #c7d9f5;
  pointer-events: none;
}

.intg-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 2px solid #3b5bdb;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 4px 20px rgba(59,91,219,0.15);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intg-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f8ff;
  border: 1.5px solid #e8f0fe;
  border-radius: 12px;
  padding: 8px 10px;
  color: #1e2d4a;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s;
  white-space: nowrap;
  position: absolute;
  transform: translate(-50%, -50%);
}

.intg-chip:hover {
  border-color: #3b5bdb;
  background: #eff6ff;
  box-shadow: 0 4px 16px rgba(59,91,219,0.1);
}

.chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Clock positions around orbit */
.intg-top          { top: 12%;  left: 50%; }
.intg-top-right    { top: 30%;  left: 82%; }
.intg-right        { top: 67%;  left: 84%; }
.intg-bottom-right { top: 87%;  left: 57%; }
.intg-bottom       { top: 70%;  left: 21%; }
.intg-left         { top: 35%;  left: 19%; }


  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .nav-hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-content, .hero-visual { max-width: 100%; padding-right: 0; }
    .hero-btns { justify-content: center; }
    .hero-trust-pills { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
    .integration-inner { flex-direction: column; }
  }

  @media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .steps-flow { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
  }


  /*INTEGRATION CSS*/
  
  @keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.6)} }
  @keyframes spinRing { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
  @keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── HERO ── */
  .int-hero {
    background: linear-gradient(135deg, #eef3ff 0%, #f5f8ff 60%, #fff 100%);
    min-height: 89vh;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }
  .int-hero-bg1 { position:absolute;top:-80px;right:-80px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(0,0,121,0.06),transparent 70%);pointer-events:none; }
  .int-hero-bg2 { position:absolute;bottom:-60px;left:20%;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(0,0,121,0.04),transparent 70%);pointer-events:none; }
  .int-hero-left { flex:1;max-width:520px;z-index:1; }
  .int-badge { display:inline-flex;align-items:center;gap:8px;background:var(--blue-lighter);border:1px solid rgba(0,0,121,0.2);color:#000050;font-size:12px;font-weight:700;padding:6px 16px;border-radius:50px;margin-bottom:24px;letter-spacing:0.5px; }
  .int-badge-dot { width:7px;height:7px;background:var(--blue);border-radius:50%;animation:pulseDot 1.8s ease-in-out infinite; }
  .int-hero h2 { font-size:clamp(2rem,3vw,2.8rem);font-weight:800;line-height:1.15;color:var(--text-dark);margin-bottom:20px;font-family:'Satoshi',sans-serif; }
  .int-hero h2 span { color:var(--blue); }
  .int-hero p { color:var(--text-mid);line-height:1.75;font-size:16px;margin-bottom:32px;max-width:460px; }
  .int-pills { display:flex;flex-wrap:wrap;gap:10px;margin-bottom:36px; }
  .int-pill { background:#fff;border:1.5px solid var(--border);border-radius:50px;padding:8px 16px;font-size:13px;font-weight:600;color:var(--blue); }

  /* Orbit diagram */
  .int-hero-right { flex:1;max-width:540px;z-index:1;position:relative; }
  .orbit-wrap { position:relative;width:100%;aspect-ratio:1; }
  .orbit-hub { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100px;height:100px;background:none;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 40px rgba(0,0,121,0.35);z-index:10; }
  .orbit-ring1 { position:absolute;top:50%;left:50%;width:320px;height:320px;border:2px dashed rgba(0,0,121,0.12);border-radius:50%;animation:spinRing 20s linear infinite; }
  .orbit-ring2 { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:200px;height:200px;border:1.5px solid rgba(0,0,121,0.08);border-radius:50%; }
  .orbit-node { position:absolute;background:#fff;border:1.5px solid var(--border);border-radius:18px;padding:14px 18px;box-shadow:0 8px 24px rgba(0,0,121,0.1);display:flex;align-items:center;gap:10px;white-space:nowrap;animation:floatUp 3s ease-in-out infinite; }
  .orbit-node-icon { width:36px;height:36px;background:var(--blue-lighter);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px; }
  .orbit-node-label { font-size:12px;font-weight:700;color:var(--text-dark); }
  .orbit-node-sub { font-size:10px;color:var(--text-muted); }
  .orbit-badge { position:absolute;background:var(--blue);border-radius:14px;padding:10px 14px;box-shadow:0 6px 20px rgba(0,0,121,0.3);display:flex;align-items:center;gap:8px; }
  .orbit-badge-dot { width:8px;height:8px;background:#fff;border-radius:50%;animation:pulseDot 1.4s ease-in-out infinite; }
  .orbit-stat { position:absolute;background:#fff;border:1.5px solid var(--border);border-radius:14px;padding:10px 14px;box-shadow:0 6px 20px rgba(0,0,121,0.08); }

  /* ── SECTION SHARED ── */
  .sec-wrap { padding:80px 5%; }
  .sec-alt { background:var(--section-alt); }
  .sec-white { background:#fff; }
  .sec-head { text-align:center;margin-bottom:52px; }
  .sec-tag { display:inline-block;background:var(--blue-lighter);color:var(--blue);font-size:11px;font-weight:700;letter-spacing:1.4px;text-transform:uppercase;padding:5px 16px;border-radius:50px;margin-bottom:14px; }
  .sec-head h2, .sec-head h3 { font-size:clamp(1.6rem,2.2vw,2.2rem);font-weight:800;color:var(--text-dark);margin-bottom:12px;font-family:'Satoshi',sans-serif; }
  .sec-head h2 span, .sec-head h3 span { color:var(--blue); }
  .sec-head p { color:var(--text-mid);max-width:540px;margin:0 auto;line-height:1.7;font-size:16px; }

  /* ── WHY MATTER CARDS ── */
  .matter-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:24px; }
  .matter-card { background:var(--blue-bg);border:1.5px solid var(--border);border-radius:22px;padding:32px 24px;transition:all 0.3s;position:relative;overflow:hidden;cursor:default; }
  .matter-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--blue),#4f6ef7);border-radius:22px 22px 0 0;opacity:0;transition:opacity 0.3s; }
  .matter-card:hover { transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,121,0.12);border-color:var(--blue); }
  .matter-card:hover::before { opacity:1; }
  .matter-icon { width:60px;height:60px;background:#fff;border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;box-shadow:0 4px 16px rgba(0,0,121,0.12); }
  .matter-card h4 { font-size:17px;font-weight:800;color:var(--text-dark);margin-bottom:10px;line-height:1.3; }
  .matter-card p { color:var(--text-mid);font-size:16px;line-height:1.65;margin:0; }

  /* ── EXPERTISE / SLIDER ── */
  .expertise-slider-wrap { overflow:hidden;position:relative;padding:0; }
  .expertise-slider-wrap::before,
  .expertise-slider-wrap::after { content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none; }
  .expertise-slider-wrap::before { left:0;background:linear-gradient(to right,var(--section-alt),transparent); }
  .expertise-slider-wrap::after { right:0;background:linear-gradient(to left,var(--section-alt),transparent); }
  .expertise-track { display:flex;gap:24px;width:max-content;animation:slideLeft 18s linear infinite; }
  .expertise-track:hover { animation-play-state:paused; }
  .expert-logo { background:#fff;border:1.5px solid var(--border);border-radius:16px;padding:18px 32px;display:flex;align-items:center;justify-content:center;min-width:160px;height:72px;transition:all 0.3s;flex-shrink:0; }
  .expert-logo:hover { border-color:var(--blue);box-shadow:0 8px 24px rgba(0,0,121,0.1);transform:translateY(-3px); }
  .expert-logo img { height:36px;object-fit:contain;filter:grayscale(30%);transition:filter 0.3s; }
  .expert-logo:hover img { filter:grayscale(0%); }

  /* ── CONNECT CARDS (Payment / Movies) ── */
  .connect-grid { display:grid;grid-template-columns:1fr 1fr;gap:28px;max-width:960px;margin:0 auto; }
  .connect-card { background:#fff;border:1.5px solid var(--border);border-radius:22px;padding:36px 32px;transition:all 0.3s;position:relative;overflow:hidden; }
  .connect-card::after { content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,var(--blue),transparent);opacity:0;transition:opacity 0.3s; }
  .connect-card:hover { border-color:var(--blue);box-shadow:0 16px 48px rgba(0,0,121,0.1);transform:translateY(-4px); }
  .connect-card:hover::after { opacity:1; }
  .connect-card-tag { display:inline-block;background:var(--blue-lighter);color:var(--blue);font-size:10px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;padding:4px 12px;border-radius:50px;margin-bottom:16px; }
  .connect-card h4 { font-size:20px;font-weight:800;color:var(--text-dark);margin-bottom:10px; }
  .connect-card p { color:var(--text-mid);line-height:1.7;font-size:16px;margin-bottom:24px; }
  .connect-logos { display:flex;align-items:center;gap:12px;flex-wrap:wrap; }
  .connect-logo-chip { background:var(--blue-bg);border:1.5px solid var(--border);border-radius:12px;padding:8px 14px;display:flex;align-items:center;justify-content:center; }
  .connect-logo-chip img { height:28px;object-fit:contain; }

  /* ── HOW WE WORK ── */
  .hww-grid { display:grid;grid-template-columns:1fr 1fr;gap:28px; }
  .hww-card { background:#fff;border:1.5px solid var(--border);border-radius:22px;padding:30px;display:flex;align-items:center;gap:32px;transition:all 0.3s;position:relative;overflow:hidden; }
  .hww-card:hover { border-color:var(--blue);box-shadow:0 16px 48px rgba(0,0,121,0.1);transform:translateY(-4px); }
  .hww-step-num { width:52px;height:52px;background:var(--blue);border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;color:#fff;flex-shrink:0;font-family:'Satoshi',sans-serif; }
  .hww-text { flex:1; }
  .hww-text h4 { font-size:17px;font-weight:800;color:var(--text-dark);margin-bottom:8px;line-height:1.3; }
  .hww-text p { color:var(--text-mid);font-size:16px;line-height:1.65;margin:0; }
  .hww-img { width:120px;flex-shrink:0; }
  .hww-img img { width:100%;object-fit:contain; }

  /* ── WHY CHOOSE ── */
  .why-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:28px; }
  .why-card { background:#fff;border:1.5px solid var(--border);border-radius:22px;padding:36px 28px;text-align:center;transition:all 0.3s;position:relative;overflow:hidden; }
  .why-card::before { content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,var(--blue),transparent);opacity:0;transition:opacity 0.3s; }
  .why-card:hover { transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,121,0.12);border-color:var(--blue); }
  .why-card:hover::before { opacity:1; }
  .why-icon { width:80px;height:80px;background:var(--blue-lighter);border-radius:22px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px; }
  .why-icon img { width:48px;height:48px;object-fit:contain; }
  .why-card h3 { font-size:18px;font-weight:800;color:var(--text-dark);margin-bottom:10px; }
  .why-card p { color:var(--text-mid);font-size:16px;line-height:1.65;margin:0; }

  .btn-white { background:#fff;color: #000079;font-weight:700;padding:14px 32px;border:none;border-radius:8px;font-size:16px;cursor:pointer;transition:all 0.25s;text-decoration:none;display:inline-block; }
  .btn-white:hover { background:#eff6ff;color:var(--blue-dark);transform:translateY(-2px);text-decoration:none; }

  /* ── RESPONSIVE ── */
  @media (max-width:992px) {
    .int-hero { flex-direction:column;padding-top:100px;min-height:auto; }
    .matter-grid { grid-template-columns:repeat(2,1fr); }
    .connect-grid { grid-template-columns:1fr; }
    .hww-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:1fr 1fr; }
  }
  @media (max-width:600px) {
    .matter-grid { grid-template-columns:1fr; }
    .why-grid { grid-template-columns:1fr; }
    .hww-card { flex-direction:column; }
    .hww-img { display:none; }
  }


  /* ===== ABOUTS US PAGE ===== */
  
  p { font-size: 16px; }
  h4 { font-size: 1.5rem; }

  .au-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-lighter);
    border: 1px solid rgba(0,0,121,0.2);
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
  }
  .au-badge-dot {
    width: 7px; height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
  }

  /* ===== HERO ===== */
  .au-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 58px 5% 72px;
    background: linear-gradient(135deg, #eef3ff 0%, #f8faff 60%, #ffffff 100%);
    min-height: 88vh;
  }
  .au-hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Satoshi', sans-serif;
  }
  .au-hero h1 span { color: #000079; }
  .au-hero > div:first-child > p {
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
    margin-left: 2px;
    max-width: 460px;
  }
  .au-pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .au-pill {
    background: var(--blue-lighter);
    border: 1px solid var(--blue-light);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
  }
  .au-hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .au-hero-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
  }
  .au-hero-img svg {
    width: 100%;
    max-width: 500px;
  }

  /* ===== STORY ===== */
  .au-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 5%;
    background: #fff;
  }
  .au-story-text h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-family: 'Satoshi', sans-serif;
  }
  .au-story-text p { color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; margin-left: 2px; }
  .au-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .au-stat {
    background: var(--blue-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s;
  }
  .au-stat:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(0,0,121,0.1); }
  .au-stat .sv {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    font-family: 'Satoshi', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
  }
  .au-stat .sl { font-size: 13px; color: var(--text-muted); }

  /* ===== MISSION & VISION ===== */
  .mv-section {
    padding: 80px 5%;
    background: var(--section-alt);
  }
  .mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
  .mv-card {
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 48px rgba(0,0,121,0.1);
  }
  .mv-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  .mv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mv-card-img svg {
    width: 100%;
    height: 100%;
  }
  .mv-card-body {
    padding: 32px 28px;
    flex: 1;
  }
  .mv-card.mission .mv-card-body { background: var(--blue); color: #fff; }
  .mv-card.mission .mv-card-img {
  background: #eef3ff;
}
  .mv-card.vision .mv-card-body { background: #fff; border: 1.5px solid var(--border); border-top: none; }
  .mv-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mv-card.mission .mv-label { color: rgba(255,255,255,0.7); }
  .mv-card.vision .mv-label { color: var(--blue); }
  .mv-label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }
  .mv-card.mission .mv-label-dot { background: rgba(255,255,255,0.7); }
  .mv-card.vision .mv-label-dot { background: var(--blue); }
  .mv-card-body h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
  }
  .mv-card.mission .mv-card-body h3 { color: #fff; }
  .mv-card.vision .mv-card-body h3 { color: var(--text-dark); }
  .mv-card-body p { line-height: 1.75; margin-bottom: 16px; margin-left: 10px;}
  .mv-card.mission .mv-card-body p { color: rgba(255,255,255,0.85); }
  .mv-card.vision .mv-card-body p { color: var(--text-mid); }
  .mv-points {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
  }
  .mv-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .mv-card.mission .mv-points li { color: rgba(255,255,255,0.9); }
  .mv-card.vision .mv-points li { color: var(--text-mid); }
  .mv-point-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
  }
  .mv-card.mission .mv-point-dot { background: rgba(255,255,255,0.6); }
  .mv-card.vision .mv-point-dot { background: var(--blue); }

  /* ===== SHARED SECTION STYLES ===== */
  .au-section { padding: 80px 5%; }
  .au-section-alt { background: var(--section-alt); }
  .au-section-white { background: #fff; }
  .sec-head { text-align: center; margin-bottom: 52px; }
  .sec-tag {
    display: inline-block;
    background: var(--blue-lighter);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
  }
  .sec-head h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
  }
  .sec-head p { color: var(--text-mid); max-width: 500px; margin: 0 auto; line-height: 1.7; }

  /* ===== VALUES ===== */
  .val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .val-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .val-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .val-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,121,0.1); }
  .val-card:hover::before { opacity: 1; }
  .val-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .val-card h4 { color: var(--text-dark); margin-bottom: 8px; }
  .val-card p { color: var(--text-mid); line-height: 1.65; margin: 0; }

  /* ===== CREDENTIALS ===== */
  .cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cred-card {
    background: var(--blue-bg);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
  }
  .cred-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,121,0.1); }
  .cred-icon-wrap {
    width: 207px; height: 68px;
    background: var(--blue-lighter);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    border: 1px solid var(--blue-light);
  }
  .cred-card h4 { color: var(--text-dark); margin-bottom: 10px; }
  .cred-card p { color: var(--text-mid); line-height: 1.65; margin: 0; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .au-hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; min-height: auto; }
    .au-hero > div:first-child > p { max-width: 100%; }
    .au-pill-row { justify-content: center; }
    .au-story { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .val-grid { grid-template-columns: repeat(2, 1fr); }
    .cred-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .au-stats-grid { grid-template-columns: 1fr 1fr; }
    .val-grid { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }
  }


  /* FAQS PAGE */
    .faq-hero { background:linear-gradient(135deg,#eef3ff 0%,#f8faff 60%,#fff 100%); padding:80px 5% 64px; text-align:center; border-bottom:1px solid var(--border); }
  .faq-badge { display:inline-flex; align-items:center; gap:7px; background:var(--blue-lighter); border:1px solid rgba(0,0,121,.2); color:var(--blue); font-size:12px; font-weight:700; padding:6px 16px; border-radius:50px; margin-bottom:18px; }
  .faq-badge-dot { width:7px; height:7px; background:var(--blue); border-radius:50%; animation:pulse-dot 1.8s ease-in-out infinite; }
  @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.3;transform:scale(.6);} }
  .faq-hero h1 { font-size:clamp(2rem,3vw,2.8rem); font-weight:800; color:var(--text-dark); margin-bottom:14px; font-family:'Satoshi',sans-serif; }
  .faq-hero p { font-size:17px; color:var(--text-mid); max-width:500px; margin:0 auto; }

  .faq-body { max-width:1390px; margin:0 auto; padding:64px 5% 80px; }
  .faq-category { font-size:13px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--blue); margin:40px 0 20px; display:flex; align-items:center; gap:10px; }
  .faq-category::after { content:''; flex:1; height:1px; background:var(--border); }
  .faq-item { border:1.5px solid var(--border); border-radius:14px; margin-bottom:12px; overflow:hidden; transition:border-color .2s; }
  .faq-item.open { border-color:var(--blue); }
  .faq-question { width:100%; background:#fff; border:none; font-weight:700; font-size:1rem; padding:20px 22px; text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; color:var(--text-dark); gap:16px; transition:background .2s; }
  .faq-question:hover { background:var(--blue-bg); }
  .faq-item.open .faq-question { background:var(--blue-lighter); color:var(--blue); }
  .faq-icon { width:28px; height:28px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; flex-shrink:0; transition:all .3s; color:var(--text-muted); }
  .faq-item.open .faq-icon { background:var(--blue); border-color:var(--blue); color:#fff; transform:rotate(45deg); }
  .faq-answer { display:none; padding:0 22px 20px; background:#fff; }
  .faq-answer p { margin:0; }

  @media(max-width:600px){ .faq-question{font-size:.95rem; padding:16px 18px;} .faq-answer{padding:0 18px 16px;} }



  /* Formalls Blog Page */
  /* ===== BADGE ===== */
  .bl-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue-lighter);
    border: 1px solid rgba(0,0,121,0.2);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
  }
  .bl-badge-dot {
    width: 7px; height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
  }

  /* ===== HERO ===== */
  
  .bl-hero h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Satoshi', sans-serif;
  }
  .bl-hero h1 span { color: var(--blue); }
  .bl-hero > div:first-child > p {
    color: var(--text-mid);
    margin-bottom: 28px;
    max-width: 460px;
  }

  /* Search bar */
  .bl-search {
    display: flex;
    gap: 0;
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,121,0.08);
  }
  .bl-search input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    font-size: 14px;
    outline: none;
    color: var(--text-dark);
    background: #fff;
  }
  .bl-search input::placeholder { color: var(--text-muted); }
  .bl-search button {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .bl-search button:hover { background: var(--blue-dark); }

  /* Recent posts panel */
  .bl-hero-panel {
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,121,0.08);
  }
  .bl-panel-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  .bl-preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f4ff;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
  }
  .bl-preview-card:last-child { border-bottom: none; padding-bottom: 0; }
  .bl-preview-card:hover .bp-title { color: var(--blue); }
  .bp-thumb {
    width: 52px; height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: var(--blue-lighter);
  }
  .bp-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.45;
    transition: color 0.2s;
  }
  .bp-meta { font-size: 11px; color: var(--text-muted); }


  /* ===== FEATURED ARTICLE ===== */
  .bl-featured {
    padding: 56px 5% 40px;
    background: #fff;
  }
  .bl-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .bl-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .featured-card:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 56px rgba(0,0,121,0.1);
  }
  .fc-img {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-lighter);
    overflow: hidden;
  }
  .fc-img img {
    width: 82%;
    height: 100%;
    object-fit: cover;
  }
  .fc-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .fc-tag {
    display: inline-block;
    width: 80px;
    background: var(--blue-lighter);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
  }
  .fc-body h2 {
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 14px;
    font-family: 'Satoshi', sans-serif;
  }
  .fc-body > p { color: var(--text-mid); margin-bottom: 20px; }
  .fc-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
  }
  .fc-meta span { display: flex; align-items: center; gap: 4px; }
  .read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    width: fit-content;
  }
  .read-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,121,0.25);
    color: #fff;
    text-decoration: none;
  }

  /* ===== BLOG GRID ===== */
  .bl-grid-section {
    padding: 40px 5% 72px;
    background: var(--section-alt);
  }
  .bl-grid-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
  }
  .bl-grid-head h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Satoshi', sans-serif;
  }
  .bl-grid-head a {
    font-size: 14px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .bl-grid-head a:hover { text-decoration: underline; }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .blog-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
  }
  .blog-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,121,0.1);
    text-decoration: none;
  }
  .bc-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .bc-img img { width: 55%; height: 100%; object-fit: cover; }
  .bc-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
  }
  .bc-body { padding: 22px 16px; }
  .bc-tag {
    display: inline-block;
    background: var(--blue-lighter);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
  }
  .bc-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .bc-body p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .bc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0f4ff;
    font-size: 12px;
    color: var(--text-muted);
  }
  .bc-arrow {
    width: 30px; height: 30px;
    background: var(--blue-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
  }
  .blog-card:hover .bc-arrow {
    background: var(--blue);
    color: #fff;
  }

  
  /* ===== NEWSLETTER CTA ===== */
  
  .nav-cta {
    background-image: url(/static/img/updatefoter1.png);
    height: 18rem;
    width: 91%;
    padding: 40px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    margin-left: 5%;
  }

  .nav-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06), transparent 70%);
    pointer-events: none;
  }

  .nav-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Satoshi', sans-serif;
    position: relative;
  }

  .nav-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 18px;
    position: relative;
  }
   .nav-cta-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto 16px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .nav-cta-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    font-size: 14px;
    outline: none;
    color: var(--text-dark);
  }
  .nav-cta-form button {
    background: #fff;
    color: var(--blue);
    border: none;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .nav-cta-form button:hover { background: #f0f4ff; }
  .nav-cta-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    position: relative;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .bl-hero { grid-template-columns: 1fr; padding-top: 100px; min-height: auto; text-align: center; }
    .bl-hero > div:first-child > p { max-width: 100%; }
    .bl-search { margin: 0 auto; }
    .featured-card { grid-template-columns: 1fr; }
    .fc-img { min-height: 200px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .bl-cta-form { flex-direction: column; border-radius: 8px; }
    .bl-cta-form input { border-radius: 8px 8px 0 0; }
    .bl-cta-form button { border-radius: 0 0 8px 8px; }
  }


/* Blogs Page */
  .blog-hero { background:linear-gradient(135deg,#eef3ff 0%,#f8faff 60%,#fff 100%); padding:80px 5% 52px; border-bottom:1px solid var(--border); }
  .blog-hero-inner { max-width:1200px; margin:0 15rem; }
  .bl-tag { display:inline-block; background:var(--blue-lighter); color:var(--blue); font-size:11px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; padding:5px 0px; border-radius:50px; margin-bottom:16px; }
  .blog-hero h1 { font-size:clamp(1.6rem,2.5vw,2.4rem); font-weight:800; color:var(--text-dark); line-height:1.2; margin-bottom:16px; max-width:780px; font-family:'Satoshi',sans-serif; }
  .blog-hero-desc { font-size:16px; color:var(--text-mid); line-height:1.75; max-width:720px; margin-bottom:20px; }
  .blog-meta { display:flex; align-items:center; gap:20px; font-size:13px; color:var(--text-muted); flex-wrap:wrap; }
  .blog-layout { display:grid; grid-template-columns:1fr 300px; gap:40px; max-width:1394px; margin:0 auto; padding:56px 5% 80px; }
  .blog-body { min-width:0; }
  .blog-section-head { font-size:1.15rem; font-weight:800; color:var(--text-dark); margin:0px 0 14px; padding-left:16px; border-left:4px solid var(--blue); font-family:'Satoshi',sans-serif; }
  .blog-body p { margin-bottom:16px; }
  .blog-body ul { padding-left:2px; margin-bottom:16px; }
  .blog-body ul li { font-size:16px; color:var(--text-mid); line-height:1.75; margin-bottom:8px; }
  .blog-body ul li::marker { color:var(--blue); }
  .blog-blockquote { background:var(--blue-lighter); border-left:4px solid var(--blue); border-radius:0 12px 12px 0; padding:18px 22px; margin:24px 0; font-size:15px; color:var(--text-mid); line-height:1.7; }
  .blog-blockquote strong { color:var(--blue); }
  .blog-sidebar { display:flex; flex-direction:column; gap:24px; }
  .demo-card { background:var(--blue); border-radius:18px; padding:28px 24px; text-align:center; }
  .demo-card h3 { font-size:1.1rem; font-weight:800; color:#fff; margin-bottom:10px; line-height:1.3; font-family:'Satoshi',sans-serif; }
  .demo-card p { font-size:13px; color:rgba(255,255,255,.8); margin-bottom:18px; }
  .demo-btn { display:block; background:#fff; color:var(--blue); font-weight:700; padding:12px 24px; border-radius:8px; font-size:14px; text-decoration:none; width:100%; text-align:center; }
  .demo-btn:hover { background:#eef3ff; color:var(--blue); text-decoration:none; }
  .sidebar-card { background:#fff; border:1.5px solid var(--border); border-radius:18px; padding:24px; }
  .sidebar-label { font-size:11px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
  .similar-card { display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-bottom:1px solid #f0f4ff; text-decoration:none; transition:all .2s; }
  .similar-card:last-child { border-bottom:none; padding-bottom:0; }
  .similar-card:hover .sc-title { color:var(--blue); }
  .sc-thumb { width:48px; height:48px; border-radius:10px; flex-shrink:0; background:var(--blue-lighter); display:flex; align-items:center; justify-content:center; font-size:20px; }
  .sc-title { font-size:13px; font-weight:600; color:var(--text-dark); line-height:1.4; transition:color .2s; }
  .sc-tag { font-size:11px; color:var(--text-muted); margin-top:3px; }
  @media(max-width:900px){ .blog-layout{grid-template-columns:1fr;} .blog-sidebar{order:-1;} }


  /* Refund Page */

    .legal-hero { background:linear-gradient(135deg,#eef3ff 0%,#f8faff 60%,#fff 100%); padding:80px 5% 52px; border-bottom:1px solid var(--border); }
  .legal-hero-inner { max-width:900px; margin:0 auto; }
  .legal-badge { display:inline-flex; align-items:center; gap:7px; background:var(--blue-lighter); border:1px solid rgba(0,0,121,.2); color:var(--blue); font-size:12px; font-weight:700; padding:6px 16px; border-radius:50px; margin-bottom:18px; }
  .legal-hero h1 { font-size:clamp(1.8rem,2.5vw,2.4rem); font-weight:800; color:var(--text-dark); margin-bottom:12px; font-family:'Satoshi',sans-serif; }
  .legal-hero p { font-size:15px; color:var(--text-mid); max-width:620px; }
  .legal-meta { display:flex; gap:24px; font-size:13px; color:var(--text-muted); margin-top:16px; flex-wrap:wrap; }
  .legal-meta span { display:flex; align-items:center; gap:6px; }

  .legal-layout { display:grid; grid-template-columns:220px 1fr; gap:48px; max-width:1328px; margin:0 1rem; padding:56px 5% 80px; align-items:start; }
  .legal-toc { position:sticky; top:80px; }
  .toc-label { font-size:11px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; }
  .toc-link { display:block; font-size:13px; color:var(--text-mid); text-decoration:none; padding:8px 12px; border-radius:8px; margin-bottom:4px; transition:all .2s; border-left:2px solid transparent; }
  .toc-link:hover { background:var(--blue-bg); color:var(--blue); border-left-color:var(--blue); }
  .toc-link.active { background:var(--blue-lighter); color:var(--blue); border-left-color:var(--blue); font-weight:600; }

  .legal-body { min-width:0; }
  .legal-section { margin-bottom:48px; scroll-margin-top:80px; }
  .legal-section-head { font-size:1.2rem; font-weight:800; color:var(--text-dark); margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--border); font-family:'Satoshi',sans-serif; display:flex; align-items:center; gap:10px; }
  .legal-section-num { width:32px; height:32px; background:var(--blue); color:#fff; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; flex-shrink:0; }
  .legal-highlight { background:var(--blue-lighter); border-left:4px solid var(--blue); border-radius:0 10px 10px 0; padding:16px 20px; margin:20px 0; }
  .legal-highlight p { margin:0; font-size:15px; }
  .legal-warning { background:#fff3cd; border-left:4px solid #f59e0b; border-radius:0 10px 10px 0; padding:16px 20px; margin:20px 0; }
  .legal-warning p { margin:0; font-size:15px; color:#92400e; }

  @media(max-width:900px){ .legal-layout{grid-template-columns:1fr;} .legal-toc{display:none;} }

