:root{
    --navy-900:#0B2E9E; --navy-800:#1948C4; --ink:#10193A;
    --cream:#FFFFFF; --paper:#FFFFFF; --line:#E1ECFB;
    --gold-100:#E3F4FF; --gold-400:#4FD8FF; --gold-500:#2F8CFF; --gold-600:#0B4FE0;
    --gold-grad: linear-gradient(135deg,#4FA6FF 0%,#2F8CFF 50%,#1665E0 100%);
    --shadow-soft: 0 24px 60px -30px rgba(11,46,158,.35);
    --bs-body-font-family:'DM Sans',sans-serif; --bs-body-color:var(--ink); --bs-body-bg:var(--cream);
    --bs-link-color:var(--navy-900); --bs-border-color:var(--line);
  }
  *{ box-sizing:border-box; }
  body{ -webkit-font-smoothing:antialiased; overflow-x:hidden; }
  html{ scroll-behavior:smooth; }
  a{ text-decoration:none; }
  h1,h2,h3,h4{ font-family:'Poppins',sans-serif; font-weight:600; line-height:1.15; color:var(--navy-900); letter-spacing:-0.01em; }
  .label{ font-family:'Manrope',sans-serif; text-transform:uppercase; letter-spacing:0.16em; font-weight:600; font-size:0.72rem; color:var(--gold-600); }

  /* ---------- progress bar ---------- */
  .progress-rail{ position:fixed; top:0; left:0; width:100%; height:3px; z-index:1100; }
  .progress-fill{ height:100%; width:0%; background:var(--gold-grad); }

  /* ---------- buttons ---------- */
  .btn{ font-family:'Manrope',sans-serif; font-weight:600; letter-spacing:.03em; font-size:.85rem; border-radius:2px; padding:.85rem 1.7rem; }
  .btn-gold{ background:var(--gold-grad); border:none; color:#FFFFFF; box-shadow:0 14px 28px -14px rgba(11,79,224,.6); transition:transform .25s ease, box-shadow .25s ease; }
  .btn-gold:hover{ color:#FFFFFF; transform:translateY(-2px); box-shadow:0 18px 30px -14px rgba(11,79,224,.75); }
  .btn-outline-navy{ border:1px solid var(--navy-900); color:var(--navy-900); background:transparent; transition:transform .25s ease, background .25s ease; }
  .btn-outline-navy:hover{ color:var(--navy-900); background:var(--gold-100); transform:translateY(-2px); }
  .btn-outline-cream{ border:1px solid rgba(255,255,255,.45); color:#fff; background:transparent; transition:transform .25s ease, border-color .25s ease; }
  .btn-outline-cream:hover{ color:#fff; border-color:#fff; transform:translateY(-2px); }

  /* ---------- nav: split layout, centered logo ---------- */
  .navbar-v2{ position:sticky; top:0; z-index:1050; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); padding:1.15rem 0; transition:box-shadow .3s ease, padding .3s ease; }
  .navbar-v2.scrolled{ box-shadow:0 10px 26px -18px rgba(11,46,158,.4); padding:.75rem 0; }
  .nav-row{ display:flex; align-items:center; justify-content:space-between; gap:1rem; }
  .nav-side{ display:flex; align-items:center; gap:2.1rem; flex:1 1 0; }
  .nav-side-left{ justify-content:flex-start; }
  .nav-side-right{ justify-content:flex-end; }
  .navbar-brand-center{ display:flex; align-items:center; gap:9px; flex-shrink:0; }
  .navbar-brand-center img{ height:32px; width:auto; transition:transform .4s ease; }
  .navbar-brand-center:hover img{ transform:rotate(-8deg) scale(1.06); }
  .navbar-brand-center .word{ font-family:'Manrope',sans-serif; font-weight:700; letter-spacing:.05em; color:var(--navy-900); font-size:1.05rem; }
  .nav-link{ font-family:'Manrope',sans-serif; font-size:.8rem; letter-spacing:.04em; color:var(--navy-800)!important; font-weight:500; position:relative; white-space:nowrap; }
  .nav-link::after{ content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--gold-500); transform:scaleX(0); transition:transform .25s; }
  .nav-link:hover::after{ transform:scaleX(1); }
  .btn-nav{ padding:.6rem 1.3rem; font-size:.76rem; }
  .nav-toggle{ display:flex; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
  .nav-toggle span{ width:22px; height:2px; background:var(--navy-900); display:block; transition:transform .2s ease; }
  .nav-mobile-links{ display:flex; flex-direction:column; gap:1.1rem; padding:1.3rem 0 .3rem; border-top:1px solid var(--line); margin-top:1rem; }
  @media (max-width:991px){
    .nav-side-left, .nav-side-right{ display:none !important; }
  }

  /* ---------- hero: one quiet signature, not three loud ones ---------- */
  .hero{ position:relative; padding:130px 0 100px; background:var(--navy-900); color:#fff; overflow:hidden; }
  .hero-watermark{
    position:absolute; top:50%; left:50%; width:min(1100px,140vw); transform:translate(-50%,-50%);
    opacity:.05; pointer-events:none; z-index:0;
  }
  .hero-glow{ position:absolute; inset:0; z-index:0; pointer-events:none; background:radial-gradient(560px circle at var(--mx,50%) var(--my,20%), rgba(47,140,255,.14), transparent 62%); }
  .hero .container{ position:relative; z-index:1; }

  .hero-badge{ width:118px; height:118px; margin:0 auto 2.2rem; position:relative; }
  .hero-badge img{ width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 14px 20px rgba(0,0,0,.4)); }
  .hero-badge .ring{ position:absolute; inset:-12px; border-radius:50%; border:1px dashed rgba(79,216,255,.5); animation:spin 22s linear infinite; }
  @keyframes spin{ to{ transform:rotate(360deg);} }

  .hero h1{ font-size:clamp(2.6rem,5.6vw,4.6rem); color:#fff; margin-bottom:1.6rem; }
  .hero h1 .line{ display:block; overflow:hidden; }
  .hero h1 .line span{ display:inline-block; transform:translateY(112%); animation:lineUp .8s cubic-bezier(.2,.8,.2,1) forwards; }
  .hero h1 em{ font-style:italic; color:var(--gold-400); }
  @keyframes lineUp{ to{ transform:translateY(0);} }
  .hero .lead{ font-size:1.12rem; line-height:1.75; color:rgba(255,255,255,.62); max-width:600px; margin:0 auto 2.6rem; }

  .scroll-cue{ display:inline-flex; flex-direction:column; align-items:center; gap:8px; font-family:'Manrope',sans-serif; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-400); }
  .scroll-cue .cue-track{ width:1px; height:32px; background:linear-gradient(rgba(79,216,255,.7),transparent); position:relative; overflow:hidden; }
  .scroll-cue .cue-track::after{ content:""; position:absolute; top:-18px; left:0; width:100%; height:18px; background:var(--gold-400); animation:cueDrop 1.7s ease-in-out infinite; }
  @keyframes cueDrop{ 0%{top:-18px;} 100%{top:36px;} }

  /* ---------- sections ---------- */
  section{ padding:6.4rem 0; }
  .bg-navy{ background:var(--navy-900); color:#fff; }
  .bg-navy h2{ color:#fff; }
  .bg-navy p{ color:rgba(255,255,255,.6); }
  .section-head{ margin-bottom:3.6rem; }
  .section-head p{ color:#55607A; font-size:1.02rem; line-height:1.65; }
  .section-head h2{ font-size:clamp(1.9rem,3vw,2.5rem); }
  .rule{ width:44px; height:2px; background:var(--gold-500); margin:0 auto 1.4rem; }
  .rule.left{ margin:0 0 1.4rem; }

  /* ---------- category cards: one calm system, no clashing hues ---------- */
  .cat-card{
    background:var(--paper); border:1px solid var(--line); border-radius:4px;
    padding:2.6rem 1.6rem; text-align:center; height:100%;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position:relative;
  }
  .stagger .reveal-item{ transition-delay:calc(var(--i,0) * 80ms); }

  /* ---------- host section: bento grid ---------- */
  .bento-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:150px; gap:1rem; }
  .bento-tile{
    position:relative; border-radius:8px; padding:1.7rem; display:flex; flex-direction:column;
    justify-content:flex-end; overflow:hidden; transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .bento-tile:hover{ transform:translateY(-5px); box-shadow:var(--shadow-soft); }
  .bento-tile.dark{ background:var(--navy-900); color:#fff; }
  .bento-tile.light{ background:#fff; border:1px solid var(--line); color:var(--navy-900); }
  .bento-tile.light:hover{ border-color:var(--gold-400); }
  .bento-tile .tile-illus{ position:absolute; inset:0; z-index:0; opacity:.9; }
  .bento-tile .tile-illus img{ width:100%; height:100%; object-fit:cover; display:block; }
  .bento-tile .tile-shade{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, transparent 35%, rgba(11,46,158,.82) 100%); }
  .bento-tile.light .tile-shade{ background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.88) 68%, #000 100%); }
  .bento-tile .b-icon, .bento-tile .b-name{ position:relative; z-index:2; }
  .bento-tile .b-icon{ font-size:1.7rem; margin-bottom:.9rem; transition:transform .4s cubic-bezier(.34,1.56,.64,1); }
  .bento-tile.dark .b-icon{ color:var(--gold-400); }
  .bento-tile.light .b-icon{ color:var(--gold-600); }
  .bento-tile:hover .b-icon{ transform:scale(1.12) rotate(-6deg); }
  .bento-tile .b-name{ font-family:'Poppins',sans-serif; font-size:1.1rem; line-height:1.25; }
  .bento-1 .b-icon{ font-size:2.3rem; }
  .bento-1 .b-name{ font-size:1.6rem; }
  .bento-1{ grid-column:span 2; grid-row:span 2; }
  .bento-2{ grid-column:span 2; grid-row:span 1; }
  .bento-3{ grid-column:span 1; grid-row:span 1; }
  .bento-4{ grid-column:span 1; grid-row:span 1; }
  .bento-5{ grid-column:span 4; grid-row:span 1; }
  .bento-5{ flex-direction:row; align-items:center; gap:1rem; }
  .bento-5 .b-icon{ margin-bottom:0; }
  .bento-5 .tile-shade{ background:linear-gradient(90deg, rgba(11,46,158,.65) 0%, rgba(11,46,158,.92) 55%); }
  @media (max-width:991px) and (min-width:768px){
    .bento-grid{ grid-template-columns:repeat(2,1fr); }
    .bento-1, .bento-5{ grid-column:span 2; }
  }
  @media (max-width:767px){
    .bento-grid{ grid-template-columns:1fr; grid-auto-rows:auto; }
    .bento-tile{ grid-column:span 1 !important; grid-row:span 1 !important; min-height:150px; }
    .bento-5{ flex-direction:column; align-items:flex-start; }
  }

  /* ---------- mock UI illustrations (What's New) ---------- */
  .mock-visual{ background:var(--gold-100); border:1px solid var(--line); border-radius:10px; padding:1.6rem; height:100%; min-height:230px; }
  .mock-dot{ width:8px; height:8px; border-radius:50%; background:var(--line); display:inline-block; margin-right:6px; }
  .mock-line{ height:9px; border-radius:4px; background:var(--line); margin-bottom:.55rem; width:0; transition:width 1s ease; }
  .mock-visual.in .mock-line{ width:var(--w); }
  .mock-pill-row{ display:flex; gap:.7rem; margin-top:1.1rem; }
  .mock-pill{ border:1px solid var(--line); border-radius:8px; padding:.8rem 1rem; flex:1; background:#fff; }
  .mock-pill .mock-num{ font-family:'Poppins',sans-serif; font-size:1.2rem; color:var(--navy-900); }
  .mock-pill .mock-tag{ font-family:'Manrope',sans-serif; font-size:.62rem; letter-spacing:.06em; text-transform:uppercase; color:var(--gold-600); margin-top:2px; }
  .mock-chart{ display:flex; align-items:flex-end; gap:7px; height:90px; margin-top:1.1rem; }
  .mock-chart div{ flex:1; background:linear-gradient(180deg, var(--gold-400), var(--gold-600)); border-radius:3px 3px 0 0; height:0; transition:height 1.1s cubic-bezier(.2,.8,.2,1); }
  .mock-visual.in .mock-chart div{ height:var(--h); }
  .mock-kpis{ display:flex; gap:.7rem; margin-bottom:1.1rem; }
  .mock-kpi{ flex:1; border:1px solid var(--line); border-radius:8px; padding:.6rem .7rem; background:#fff; }
  .mock-kpi .k-num{ font-family:'Poppins',sans-serif; font-size:1.05rem; color:var(--navy-900); }
  .mock-kpi .k-tag{ font-family:'Manrope',sans-serif; font-size:.6rem; text-transform:uppercase; letter-spacing:.05em; color:#55607A; }
  .mock-pay{ display:flex; flex-direction:column; align-items:center; justify-content:center; height:100%; text-align:center; }
  .mock-card{
    width:180px; height:108px; border-radius:10px; margin:0 auto 1rem; padding:1rem;
    background:var(--gold-grad); color:#FFFFFF; position:relative; box-shadow:0 16px 30px -16px rgba(11,46,158,.4);
  }
  .mock-card .chip{ width:28px; height:20px; border-radius:4px; background:rgba(11,46,158,.35); margin-bottom:1.4rem; }
  .mock-card .num{ font-family:'Manrope',sans-serif; font-size:.72rem; letter-spacing:.08em; }
  .check-badge{ color:#1E8A5F; font-family:'Manrope',sans-serif; font-size:.82rem; font-weight:600; display:inline-flex; align-items:center; gap:8px; }
  .check-badge .d{ width:8px; height:8px; border-radius:50%; background:#1E8A5F; display:inline-block; box-shadow:0 0 0 0 rgba(30,138,95,.5); animation:pulseDot 1.8s ease-out infinite; }
  @keyframes pulseDot{ 0%{ box-shadow:0 0 0 0 rgba(30,138,95,.5);} 100%{ box-shadow:0 0 0 9px rgba(30,138,95,0);} }

  /* ---------- how it works ---------- */
  .steps-line{ position:relative; }
  .steps-line svg.connector{ position:absolute; top:26px; left:0; width:100%; height:4px; z-index:0; }
  .steps-line svg.connector path{ stroke-dasharray:1000; stroke-dashoffset:1000; transition:stroke-dashoffset 1.2s ease; }
  .steps-line.in svg.connector path{ stroke-dashoffset:0; }
  .step-num{
    font-size:1.1rem; width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:var(--gold-grad); color:#FFFFFF; margin:0 auto 1.3rem; position:relative; z-index:1;
    transition:transform .4s cubic-bezier(.34,1.56,.64,1); transform:scale(.5); opacity:0;
  }
  .steps-line.in .step-num{ transform:scale(1); opacity:1; }
  .steps-line.in .step:nth-child(2) .step-num{ transition-delay:.15s; }
  .steps-line.in .step:nth-child(3) .step-num{ transition-delay:.3s; }
  .contact-value{ font-family:'Manrope',sans-serif; font-size:1.05rem; color:#fff; }

  /* ---------- what's new: card row ---------- */
  .feat-tile{
    position:relative; background:#fff; border:1px solid var(--line); border-radius:8px;
    padding:2.2rem; height:100%; overflow:hidden;
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }
  .feat-tile:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); border-color:var(--gold-400); }
  .feat-tile .feat-num{
    position:absolute; top:1.1rem; right:1.4rem; font-family:'Poppins',sans-serif; font-size:2.6rem;
    color:var(--line); line-height:1; transition:color .35s ease;
  }
  .feat-tile:hover .feat-num{ color:var(--gold-100); }
  .feat-tile .feat-icon{
    width:52px; height:52px; border-radius:50%; border:1px solid var(--gold-400); color:var(--gold-600);
    display:flex; align-items:center; justify-content:center; font-size:1.25rem; margin-bottom:1.3rem;
    transition:background .3s ease, color .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
  }
  .feat-tile:hover .feat-icon{ background:var(--gold-grad); color:#FFFFFF; transform:scale(1.08) rotate(-6deg); }
  .feat-tile h3{ font-size:1.25rem; margin-bottom:.7rem; }
  .feat-tile p{ color:#55607A; font-size:.94rem; line-height:1.65; margin:0; }

  /* ---------- testimonial ---------- */
  .testimonial-card{
    max-width:720px; margin:0 auto; text-align:center; padding:1rem 1.4rem;
  }
  .quote-mark{ font-family:'Poppins',sans-serif; font-size:3.2rem; color:var(--gold-400); line-height:1; }
  blockquote{ font-family:'Poppins',sans-serif; font-style:italic; font-size:clamp(1.2rem,2vw,1.5rem); line-height:1.55; color:var(--navy-900); margin:0 0 1.2rem; }
  .cite{ font-family:'Manrope',sans-serif; font-size:.78rem; color:#55607A; letter-spacing:.04em; }

  /* ---------- footer ---------- */
  footer{ background:var(--navy-900); color:rgba(255,255,255,.6); }
  footer a{ color:rgba(255,255,255,.6); }
  footer a:hover{ color:var(--gold-400); }
  .footer-tag{ font-family:'Poppins',sans-serif; font-style:italic; font-size:1.5rem; color:#fff; }
  .socials a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; transition:transform .3s, border-color .3s, color .3s; }
  .socials a:hover{ border-color:var(--gold-400); color:var(--gold-400); transform:translateY(-3px); }

  /* ---------- reveal ---------- */
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
  .reveal.in{ opacity:1; transform:translateY(0); }

  @media (max-width:767px){
    .feature-row{ grid-template-columns:1fr; }
    .feature-row .fnum{ display:none; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation:none!important; transition:none!important; }
    .reveal{ opacity:1!important; transform:none!important; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- quick enquiry: floating button + modal ---------- */
  .quick-enquiry-btn{
    position:fixed; right:24px; bottom:24px; z-index:1040;
    display:inline-flex; align-items:center; gap:.6rem;
    background:var(--gold-grad); color:#FFFFFF; border:none;
    font-family:'Manrope',sans-serif; font-weight:600; font-size:.82rem; letter-spacing:.03em;
    padding:.95rem 1.4rem; border-radius:40px; box-shadow:0 16px 32px -14px rgba(11,46,158,.55);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .quick-enquiry-btn:hover{ transform:translateY(-3px); box-shadow:0 20px 36px -14px rgba(11,46,158,.7); color:var(--navy-900); }
  .quick-enquiry-btn i{ font-size:1rem; }
  @media (max-width:575px){
    .quick-enquiry-btn span{ display:none; }
    .quick-enquiry-btn{ padding:.9rem; border-radius:50%; }
  }

  .enquiry-modal .modal-content{ border:none; border-radius:14px; overflow:hidden; }
  .enquiry-modal .modal-header{ background:var(--navy-900); color:#fff; border:none; padding:1.8rem 1.8rem 1.5rem; }
  .enquiry-modal .modal-header .label{ color:var(--gold-400); }
  .enquiry-modal .modal-header h5{ color:#fff; margin:.3rem 0 0; font-size:1.5rem; }
  .enquiry-modal .modal-header p{ color:rgba(255,255,255,.6); font-size:.88rem; margin:.5rem 0 0; }
  .enquiry-modal .btn-close{ filter:invert(1); opacity:.7; }
  .enquiry-modal .modal-body{ padding:1.9rem 1.8rem 2.1rem; background:var(--cream); }
  .enquiry-modal .form-label{
    font-family:'Manrope',sans-serif; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em;
    font-weight:600; color:var(--navy-800); margin-bottom:.4rem;
  }
  .enquiry-modal .form-control, .enquiry-modal .form-select{
    border:1px solid var(--line); border-radius:6px; padding:.65rem .9rem; font-size:.92rem;
    background:#fff; color:var(--ink);
  }
  .enquiry-modal .form-control:focus, .enquiry-modal .form-select:focus{
    border-color:var(--gold-500); box-shadow:0 0 0 3px rgba(47,140,255,.15);
  }
  .enquiry-success{ text-align:center; padding:1.4rem 0; }
  .enquiry-success .es-icon{
    width:60px; height:60px; border-radius:50%; background:var(--gold-grad); color:#FFFFFF;
    display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin:0 auto 1.1rem;
  }
  .enquiry-success h5{ font-size:1.3rem; margin-bottom:.5rem; }
  .enquiry-success p{ color:#55607A; font-size:.92rem; }
