/* ==========================================================================
   MAHAPARV TECHNOLOGIES LLP — WEBSITE STYLESHEET
   Built on Bootstrap 5.3 (CDN). This file adds the brand layer:
   colour system, gradients, typography, components and page layouts.

   CONTENTS
     1.  Design tokens (colours, gradients, shadows)
     2.  Base & typography
     3.  Colour / gradient utilities
     4.  Buttons
     5.  Header & navigation
     6.  Decorative backgrounds (mesh, grid, blobs)
     7.  Home hero
     8.  Technology strip
     9.  Cards & content blocks
     10. Image cards
     11. Page hero (inner pages)
     12. Process & steps
     13. Product / app mockups
     14. CTA bands
     15. Forms
     16. Legal pages
     17. Accordion
     18. Footer
     19. Back to top, reveal, 404
     20. Reduced motion & print
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* --- Brand ------------------------------------------------------------ */
  --brand:        #2563eb;   /* primary blue   */
  --brand-dark:   #1d4ed8;
  --brand-deep:   #1e3a8a;
  --brand-2:      #7c3aed;   /* violet, second half of the brand gradient */
  --brand-soft:   #eff5ff;
  --brand-soft-2: #f5f8ff;

  /* --- Accent palette (used to colour-code cards and icons) ------------- */
  --c-indigo:  #4f46e5;
  --c-blue:    #2563eb;
  --c-sky:     #0284c7;
  --c-cyan:    #0891b2;
  --c-teal:    #0d9488;
  --c-emerald: #059669;
  --c-amber:   #d97706;
  --c-orange:  #ea580c;
  --c-rose:    #e11d48;
  --c-pink:    #db2777;
  --c-violet:  #7c3aed;
  --c-purple:  #9333ea;

  /* --- Neutrals --------------------------------------------------------- */
  --ink:        #0f172a;
  --ink-2:      #1e293b;
  --body:       #475569;
  --muted:      #64748b;
  --line:       #e6ebf2;
  --line-2:     #d3dced;
  --soft:       #f6f8fc;
  --soft-2:     #eef3fa;
  --navy:       #0b1229;
  --navy-2:     #121a38;

  /* --- Gradients -------------------------------------------------------- */
  --grad-brand:  linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --grad-ocean:  linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  --grad-mint:   linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  --grad-sunset: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  --grad-violet: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
  --grad-amber:  linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  --grad-dark:   linear-gradient(160deg, #0b1229 0%, #16204a 55%, #0b1229 100%);

  /* --- Shape & depth ---------------------------------------------------- */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --sh-xs: 0 1px 2px rgba(15, 23, 42, .05);
  --sh-sm: 0 2px 10px rgba(15, 23, 42, .06);
  --sh:    0 10px 30px rgba(15, 23, 42, .09);
  --sh-lg: 0 24px 60px rgba(15, 23, 42, .14);
  --sh-brand: 0 14px 34px rgba(37, 99, 235, .28);

  /* --- Bootstrap overrides ---------------------------------------------- */
  --bs-primary: #2563eb;
  --bs-primary-rgb: 37, 99, 235;
  --bs-body-color: #475569;
  --bs-link-color: #2563eb;
  --bs-link-hover-color: #1d4ed8;
  --bs-border-color: #e6ebf2;
}

/* --------------------------------------------------------------------------
   2. BASE & TYPOGRAPHY
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--body);
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}
h1, .h1 { font-size: clamp(2.1rem, 1.3rem + 3vw, 3.5rem); letter-spacing: -0.035em; }
h2, .h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); letter-spacing: -0.03em; }
h3, .h3 { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem); }
h4, .h4 { font-size: 1.075rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { text-decoration: none; transition: color .18s ease; }
strong, b { font-weight: 700; color: var(--ink-2); }
hr { border-color: var(--line); opacity: 1; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .5);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: var(--brand); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }
::selection { background: rgba(124, 58, 237, .18); }

/* --------------------------------------------------------------------------
   3. COLOUR / GRADIENT UTILITIES
   -------------------------------------------------------------------------- */
.text-ink     { color: var(--ink) !important; }
.text-brand   { color: var(--brand) !important; }
.text-muted-2 { color: var(--muted) !important; }
.bg-soft      { background-color: var(--soft) !important; }
.bg-navy      { background-color: var(--navy) !important; }
.fw-800       { font-weight: 800 !important; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-right: .06em;      /* stops italic-ish glyph clipping */
}
.gradient-text-warm  { background-image: var(--grad-sunset); }
.gradient-text-ocean { background-image: var(--grad-ocean); }

.section       { padding: clamp(3.5rem, 2rem + 5vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 1.8rem + 2.5vw, 4rem) 0; }
.section-soft  { background: var(--soft); }
.section-tinted {
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(37, 99, 235, .07), transparent 60%),
    radial-gradient(760px 420px at 96% 100%, rgba(236, 72, 153, .07), transparent 60%),
    var(--soft-2);
}
.section-line { border-top: 1px solid var(--line); }

.lead-text { font-size: 1.075rem; max-width: 62ch; color: var(--body); }
@media (min-width: 992px) { .lead-text { font-size: 1.15rem; } }
.measure { max-width: 68ch; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .75rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: .9rem;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--grad-brand);
}
.eyebrow-warm { color: var(--c-orange); }
.eyebrow-warm::before { background: var(--grad-sunset); }
.eyebrow-mint { color: var(--c-teal); }
.eyebrow-mint::before { background: var(--grad-mint); }
.eyebrow-light { color: #a5b8ff; }
.eyebrow-light::before { background: linear-gradient(135deg, #60a5fa, #c084fc); }

/* Pills / badges */
.badge-soft {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand-soft); color: var(--brand-dark);
  border: 1px solid #dbe7fe; border-radius: 100px;
  padding: .35rem .85rem; font-size: .75rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
}
.badge-grad {
  background: var(--grad-brand); color: #fff; border: 0;
  box-shadow: var(--sh-brand);
}
.badge-soft-accent { background: #fff3e8; color: #b45309; border-color: #fde3c7; }
.badge-soon {
  display: inline-block; border-radius: 100px; padding: .15rem .6rem;
  font-size: .6875rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; vertical-align: middle;
  background: #eef2f8; color: var(--muted); border: 1px solid var(--line);
}
.badge-soon-live { background: #e7f8f0; color: #047857; border-color: #c3ecd8; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --bs-btn-font-weight: 700;
  border-radius: 100px;
  padding: .7rem 1.4rem;
  font-size: .9375rem;
  border: 0;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
}
.btn-lg { padding: .9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .8125rem; }

.btn-brand {
  background-image: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-brand:hover, .btn-brand:focus {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, .38);
}

.btn-outline-brand {
  background: #fff; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1.5px var(--brand);
  transform: translateY(-2px);
}

.btn-white { background: #fff; color: var(--brand-dark); box-shadow: 0 12px 30px rgba(2, 8, 30, .28); }
.btn-white:hover, .btn-white:focus { color: var(--brand-deep); transform: translateY(-2px); }

.btn-light-outline { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .38); }
.btn-light-outline:hover, .btn-light-outline:focus {
  color: #fff; background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .7);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .9375rem; color: var(--brand);
}
.link-arrow i { transition: transform .18s ease; }
.link-arrow:hover { color: var(--brand-2); }
.link-arrow:hover i { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */

/* Scroll progress bar --------------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 1200; pointer-events: none; background: transparent;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f59e0b);
  transition: width .1s linear;
}

/* Slim top utility bar -------------------------------------------------- */
.topbar {
  background: var(--navy);
  color: #93a8cc;
  font-size: .8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .5rem; color: #93a8cc; }
.topbar .tb-item i { font-size: .85em; color: #7dd3fc; }
.topbar a.tb-item:hover { color: #fff; }
.topbar .tb-tag { font-weight: 600; }
.topbar .tb-tag i {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent; font-size: .95em;
}
.topbar .tb-right { display: flex; align-items: center; gap: 1.1rem; }
.topbar .tb-sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .13); }

/* Header shell ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease;
}
/* The frosted-glass effect is applied only from the large breakpoint up.
   backdrop-filter creates a containing block for fixed-position children,
   which would otherwise trap the mobile off-canvas menu inside the header. */
@media (min-width: 992px) {
  .site-header {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
  }
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(15, 23, 42, .10); }
@media (min-width: 992px) {
  .site-header.is-scrolled { background: rgba(255, 255, 255, .97); }
}
.site-header .navbar { padding-top: .85rem; padding-bottom: .85rem; transition: padding .25s ease; }
.site-header.is-scrolled .navbar { padding-top: .55rem; padding-bottom: .55rem; }
/* the mega menu is anchored to this box, so it lines up with the page grid */
.site-header .navbar > .container { position: relative; }

/* Brand ----------------------------------------------------------------- */
.navbar-brand { display: inline-flex; align-items: center; gap: .7rem; padding: 0; margin-right: 1rem; }
.brand-logo {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 13px; transition: width .25s ease, height .25s ease, transform .25s ease;
}
.navbar-brand:hover .brand-logo { transform: rotate(-4deg) scale(1.04); }
.site-header.is-scrolled .brand-logo { width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 1.22rem; font-weight: 800; color: var(--ink); letter-spacing: -.035em; }
.site-header.is-scrolled .brand-name { font-size: 1.12rem; }
.brand-sub {
  font-size: .5938rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); margin-top: .18rem;
}

/* Toggler --------------------------------------------------------------- */
.navbar-toggler {
  border: 0; padding: 0; width: 46px; height: 46px; border-radius: 14px;
  background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 1.4rem; line-height: 1;
  transition: background-color .18s ease, color .18s ease;
}
.navbar-toggler:hover { background: var(--grad-brand); color: #fff; }
.navbar-toggler:focus { box-shadow: none; }

/* Top level links ------------------------------------------------------- */
.site-header .navbar-nav { gap: .1rem; }
.site-header .nav-link {
  position: relative;
  color: var(--ink-2); font-size: .9688rem; font-weight: 650;
  padding: .55rem .85rem !important; border-radius: 10px;
  display: flex; align-items: center; gap: .45rem;
}
.site-header .nav-link .nav-ico { font-size: 1rem; color: var(--brand); }
.site-header .nav-link:hover, .site-header .nav-link:focus { color: var(--brand); }

@media (min-width: 992px) {
  .site-header .nav-link::after {
    content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .18rem;
    height: 2px; border-radius: 2px; background: var(--grad-brand);
    transform: scaleX(0); transform-origin: center; opacity: 0;
    transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  }
  .site-header .nav-link:hover::after,
  .site-header .nav-item:focus-within > .nav-link::after { transform: scaleX(1); opacity: 1; }
  .site-header .nav-link.active { color: var(--brand); }
  .site-header .nav-link.active::after { transform: scaleX(1); opacity: 1; }
  .site-header .nav-link.dropdown-toggle::after {
    /* keep Bootstrap's caret out of the underline pseudo-element */
    content: none;
  }
  .site-header .nav-link.dropdown-toggle { padding-right: 1.55rem !important; }
  .site-header .nav-link.dropdown-toggle .caret {
    position: absolute; right: .7rem; top: 50%; margin-top: -.34rem;
    font-size: .72rem; color: var(--muted); transition: transform .22s ease, color .22s ease;
  }
  .site-header .nav-item.dropdown:hover .caret,
  .site-header .nav-link.dropdown-toggle.show .caret { transform: rotate(180deg); color: var(--brand); }
  .site-header .nav-link.dropdown-toggle .underline {
    position: absolute; left: .85rem; right: 1.55rem; bottom: .18rem; height: 2px;
    border-radius: 2px; background: var(--grad-brand);
    transform: scaleX(0); opacity: 0; transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  }
  .site-header .nav-item.dropdown:hover .underline,
  .site-header .nav-link.dropdown-toggle.show .underline,
  .site-header .nav-link.dropdown-toggle.active .underline { transform: scaleX(1); opacity: 1; }
}

/* Desktop CTA ----------------------------------------------------------- */
.nav-actions { display: flex; align-items: center; gap: .65rem; }
.nav-call {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .35rem .5rem; border-radius: 12px; color: var(--ink);
}
.nav-call:hover { color: var(--brand); }
.nav-call .nc-ico {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-size: 1rem;
  transition: background-image .2s ease, color .2s ease;
}
.nav-call:hover .nc-ico { background-image: var(--grad-brand); color: #fff; }
.nav-call .nc-label { font-size: .625rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 800; display: block; line-height: 1.2; }
.nav-call .nc-value { font-size: .875rem; font-weight: 750; line-height: 1.2; }

/* ---------------------------------------------------------------- MENUS */
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
  padding: .55rem;
  font-size: .9375rem;
  background: #fff;
}

@media (min-width: 992px) {
  .site-header .dropdown-menu {
    display: block; margin-top: .9rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(10px) scale(.985); transform-origin: top center;
    transition: opacity .2s ease, transform .22s cubic-bezier(.4,0,.2,1), visibility .22s;
  }
  /* Opening is driven by JavaScript (hover intent with a close delay) so the
     pointer can cross the gap between the link and the panel without it
     vanishing. Focus and the .show class remain the visibility switches. */
  .site-header .dropdown-menu:focus-within,
  .site-header .dropdown-menu.show {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1);
  }
  /* invisible bridge so the pointer can travel from the link to the panel */
  .site-header .nav-item.dropdown > .dropdown-menu::before {
    content: ""; position: absolute; left: 0; right: 0; top: -.9rem; height: .9rem;
  }
  /* mega panel spans the page grid */
  .site-header .nav-item.has-mega { position: static; }
  /* The mega panel spans the page grid. Its visible chrome sits on
     .mega-inner so the panel itself can stay transparent. */
  .site-header .dropdown-menu.mega {
    left: 0; right: 0; width: auto; max-width: none;
    padding: 0; overflow: visible;
    background: transparent; border: 0; box-shadow: none; border-radius: 0;
  }
  .site-header .dropdown-menu.mega .mega-inner {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .16);
    overflow: hidden;
  }
}

/* Simple dropdown items -------------------------------------------------- */
.dropdown-item {
  border-radius: 14px; padding: .7rem .75rem; color: var(--ink-2);
  font-weight: 650; white-space: normal;
  display: flex; gap: .8rem; align-items: flex-start;
  transition: background-color .16s ease, transform .16s ease;
}
.dropdown-item:hover, .dropdown-item:focus { background: var(--brand-soft-2); color: var(--brand-dark); transform: translateX(2px); }
.dropdown-item .dd-ico {
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-size: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .16);
}
.dropdown-item .dd-desc { display: block; font-size: .8125rem; font-weight: 500; color: var(--muted); margin-top: .1rem; line-height: 1.45; }

/* Mega menu -------------------------------------------------------------- */
.mega-inner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 992px) {
  .mega-inner { grid-template-columns: 1fr 1fr 1fr 300px; }
}
.mega-col { padding: 1.6rem 1.25rem; }
@media (min-width: 992px) {
  .mega-col + .mega-col { border-left: 1px solid var(--line); }
}
.mega-title {
  font-size: .625rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .85rem .6rem;
}
.mega-link {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .6rem; border-radius: 14px; color: var(--ink-2);
  transition: background-color .16s ease, transform .16s ease;
}
.mega-link:hover, .mega-link:focus { background: var(--brand-soft-2); transform: translateX(3px); }
.mega-link .ml-ico {
  width: 36px; height: 36px; border-radius: 11px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-size: .95rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .15);
}
.mega-link strong { display: block; font-size: .9063rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.mega-link small { display: block; font-size: .7813rem; color: var(--muted); line-height: 1.45; margin-top: .1rem; }
.mega-link:hover strong { color: var(--brand-dark); }

.mega-feature {
  padding: 1.7rem 1.5rem;
  background:
    radial-gradient(420px 220px at 90% 0%, rgba(124, 58, 237, .16), transparent 60%),
    radial-gradient(360px 220px at 0% 100%, rgba(37, 99, 235, .14), transparent 60%),
    var(--soft);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.mega-feature h3 { font-size: 1.075rem; margin: .85rem 0 .5rem; }
.mega-feature p { font-size: .8438rem; color: var(--body); margin-bottom: 1.1rem; }
.mega-feature .mf-list { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.mega-feature .mf-list li { font-size: .8125rem; padding-left: 1.4rem; position: relative; margin-bottom: .4rem; }
.mega-feature .mf-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: -1px;
  color: var(--brand); font-size: .8rem;
}
.mega-feature .mf-foot { margin-top: auto; }

/* --------------------------------------------------- MOBILE / OFFCANVAS */
.offcanvas { width: 360px !important; max-width: 88vw; border: 0; }
.offcanvas-header {
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
  background: var(--soft);
}
.offcanvas-body { padding: 1rem 1.1rem; }

@media (max-width: 991.98px) {
  .offcanvas .navbar-nav { gap: .1rem; }
  .offcanvas .nav-link {
    padding: .8rem .85rem !important; border-radius: 14px;
    font-size: 1rem; color: var(--ink);
  }
  .offcanvas .nav-link .nav-ico {
    width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
    background: var(--brand-soft); color: var(--brand); font-size: .95rem; margin-right: .2rem;
  }
  .offcanvas .nav-link.active { background: var(--brand-soft); color: var(--brand-dark); }
  .offcanvas .nav-link.active .nav-ico { background-image: var(--grad-brand); color: #fff; }
  .offcanvas .nav-link .caret { margin-left: auto; font-size: .75rem; color: var(--muted); transition: transform .2s ease; }
  .offcanvas .nav-link[aria-expanded="true"] .caret { transform: rotate(180deg); }
  .offcanvas .nav-link.dropdown-toggle::after { display: none; }

  .offcanvas .dropdown-menu {
    box-shadow: none; border: 0; border-radius: 0; padding: .15rem 0 .5rem 2.6rem;
    background: transparent; margin: 0;
  }
  .offcanvas .dropdown-menu .mega-inner { display: block; }
  .offcanvas .mega-col { padding: .35rem 0; }
  .offcanvas .mega-col + .mega-col { border-left: 0; border-top: 1px dashed var(--line); }
  .offcanvas .mega-title { margin-left: 0; margin-bottom: .35rem; }
  .offcanvas .mega-link { padding: .5rem .25rem; }
  .offcanvas .mega-link small { display: none; }
  .offcanvas .mega-feature { display: none; }
  .offcanvas .dropdown-item { padding: .55rem .25rem; }
  .offcanvas .dropdown-item .dd-desc { display: none; }
}

.offcanvas-foot {
  border-top: 1px solid var(--line);
  padding: 1.1rem 1.25rem 1.35rem;
  background: var(--soft);
}
.offcanvas-foot .of-row { display: flex; align-items: center; gap: .7rem; margin-top: .9rem; font-size: .875rem; }
.offcanvas-foot .of-row i {
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--brand); font-size: .95rem;
}
.offcanvas-foot a { color: var(--ink); font-weight: 650; }
.offcanvas-foot a:hover { color: var(--brand); }

.nav-cta-btn { display: block; width: 100%; text-align: center; }
@media (min-width: 992px) { .nav-cta-btn { display: inline-flex; width: auto; } }

/* --------------------------------------------------------------------------
   6. DECORATIVE BACKGROUNDS
   -------------------------------------------------------------------------- */
.grid-lines {
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, .06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.dot-grid {
  background-image: radial-gradient(rgba(37, 99, 235, .16) 1.2px, transparent 1.2px);
  background-size: 20px 20px;
}

.blob {
  position: absolute; border-radius: 50%; filter: blur(70px);
  opacity: .55; pointer-events: none; z-index: 0;
}
.blob-1 { width: 480px; height: 480px; background: #4f46e5; top: -140px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: #db2777; top: -80px; right: -100px; opacity: .38; }
.blob-3 { width: 460px; height: 460px; background: #06b6d4; bottom: -200px; left: 38%; opacity: .34; }

/* --------------------------------------------------------------------------
   7. HOME HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #c9d5ef;
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0 clamp(3.5rem, 2rem + 5vw, 6rem);
  background:
    radial-gradient(1100px 560px at 12% 8%, rgba(79, 70, 229, .55), transparent 62%),
    radial-gradient(900px 480px at 88% 4%, rgba(219, 39, 119, .32), transparent 60%),
    radial-gradient(820px 520px at 72% 96%, rgba(8, 145, 178, .38), transparent 62%),
    var(--grad-dark);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 40%, transparent 85%);
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero .hero-sub { color: #b9c8e6; font-size: 1.0625rem; max-width: 56ch; }
@media (min-width: 992px) { .hero .hero-sub { font-size: 1.1875rem; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #dbe7ff; border-radius: 100px;
  padding: .4rem .95rem .4rem .5rem; font-size: .8125rem; font-weight: 650;
  backdrop-filter: blur(6px);
}
.hero-badge .hb-dot {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem; color: #fff;
  background: var(--grad-mint);
}

.hero-points { display: flex; flex-wrap: wrap; gap: .55rem 1.5rem; }
.hero-points span { display: inline-flex; align-items: center; gap: .45rem; font-size: .875rem; color: #a7b8d8; }
.hero-points i { color: #4ade80; }

/* Glass panel used for the hero visual */
.glass {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px rgba(2, 6, 23, .45);
}
.hero-visual { position: relative; z-index: 2; }
.hero-photo {
  border-radius: var(--r-lg);
  width: 100%; height: auto; display: block;
  box-shadow: 0 24px 60px rgba(2, 6, 23, .5);
}
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: .75rem .9rem;
  display: flex; align-items: center; gap: .65rem;
  z-index: 3;
}
.hero-float .hf-ico {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-size: 1.05rem;
}
.hero-float .hf-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 800; }
.hero-float .hf-value { font-size: .9375rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
.hero-float-a { left: -14px; bottom: 18%; }
.hero-float-b { right: -10px; top: 12%; }
@media (max-width: 991.98px) {
  .hero-float-a { left: 4px; bottom: 8px; }
  .hero-float-b { right: 4px; top: 8px; }
}
@media (max-width: 575.98px) { .hero-float { display: none; } }

/* --------------------------------------------------------------------------
   8. TECHNOLOGY STRIP
   -------------------------------------------------------------------------- */
.tech-strip { background: #fff; border-bottom: 1px solid var(--line); }
.tech-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700; color: var(--ink-2);
  background: #fff; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.tech-chip:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); border-color: var(--line-2); }
.tech-chip i { font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   9. CARDS & CONTENT BLOCKS
   -------------------------------------------------------------------------- */
.mp-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.mp-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-brand); opacity: 0;
  transition: opacity .2s ease;
}
.mp-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: transparent; }
.mp-card:hover::after { opacity: 1; }
a.mp-card { display: block; color: inherit; }
.mp-card h3 { font-size: 1.125rem; margin-bottom: .55rem; }
.mp-card p { font-size: .9375rem; margin-bottom: 0; }
.mp-card-soft { background: var(--soft); }
.mp-card-flat::after { display: none; }
.mp-card-flat:hover { transform: none; box-shadow: var(--sh-sm); border-color: var(--line); }

/* Colour-coded top bar per card */
.ac-indigo::after  { background-image: linear-gradient(90deg, #818cf8, #4338ca); }
.ac-blue::after    { background-image: linear-gradient(90deg, #60a5fa, #1d4ed8); }
.ac-sky::after     { background-image: linear-gradient(90deg, #38bdf8, #0369a1); }
.ac-cyan::after    { background-image: linear-gradient(90deg, #22d3ee, #0e7490); }
.ac-teal::after    { background-image: linear-gradient(90deg, #2dd4bf, #0f766e); }
.ac-emerald::after { background-image: linear-gradient(90deg, #34d399, #047857); }
.ac-amber::after   { background-image: linear-gradient(90deg, #fbbf24, #b45309); }
.ac-orange::after  { background-image: linear-gradient(90deg, #fb923c, #c2410c); }
.ac-rose::after    { background-image: linear-gradient(90deg, #fb7185, #be123c); }
.ac-pink::after    { background-image: linear-gradient(90deg, #f472b6, #be185d); }
.ac-violet::after  { background-image: linear-gradient(90deg, #a78bfa, #6d28d9); }
.ac-purple::after  { background-image: linear-gradient(90deg, #c084fc, #7e22ce); }

/* Icon tiles */
.icon-tile {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: 1.15rem;
  background-image: var(--grad-brand);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.icon-tile-sm { width: 40px; height: 40px; font-size: 1.05rem; border-radius: 11px; margin-bottom: 0; }
.icon-tile-lg { width: 62px; height: 62px; font-size: 1.65rem; border-radius: 18px; }

/* Compact tile with icon on the left */
.build-tile {
  height: 100%; display: flex; align-items: flex-start; gap: .95rem;
  padding: 1.2rem 1.25rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .18s ease, box-shadow .18s ease;
}
.build-tile:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.build-tile h3 { font-size: .9688rem; margin: 0 0 .2rem; }
.build-tile p { font-size: .8438rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* Pillar card */
.pillar {
  position: relative; height: 100%; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--grad-brand);
}
.pillar.p-warm::before { background: var(--grad-sunset); }
.pillar.p-mint::before { background: var(--grad-mint); }
.pillar.p-violet::before { background: var(--grad-violet); }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.pillar h3 { font-size: 1.25rem; }
.pillar ul { margin: 1.1rem 0 0; padding-left: 0; list-style: none; }
.pillar ul li { position: relative; padding-left: 1.5rem; font-size: .9063rem; margin-bottom: .45rem; }
.pillar ul li::before {
  content: "\F26E"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: -1px; color: var(--brand); font-size: .875rem;
}

/* Check list */
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.85rem; margin-bottom: .7rem; font-size: .9375rem; }
.check-list li::before {
  content: "\F26E"; font-family: "bootstrap-icons";
  position: absolute; left: 0; top: -2px;
  color: var(--brand); font-size: 1rem;
}
.check-list-mint li::before { color: #10b981; }
.check-list-light li::before { color: #7dd3fc; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: .5rem 1rem; font-size: .875rem; font-weight: 650; color: var(--ink-2);
  margin: 0 .45rem .6rem 0;
  transition: transform .16s ease, box-shadow .16s ease;
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); }
.chip i { font-size: 1rem; }

/* Problem / solution panels */
.panel { height: 100%; border-radius: var(--r-lg); padding: 1.9rem 1.75rem; border: 1px solid var(--line); background: #fff; }
.panel-problem { background: #fdf5f6; border-color: #f7dfe3; }
.panel-solution { background: #f1f8f5; border-color: #cfead9; }
.panel h3 { font-size: 1.2rem; }
.panel ul { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.panel ul li { position: relative; padding-left: 1.75rem; margin-bottom: .6rem; font-size: .9375rem; }
.panel-problem ul li::before {
  content: "\F62A"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: -1px; color: #e11d48;
}
.panel-solution ul li::before {
  content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: -1px; color: #059669;
}

/* Fact strip */
.fact-strip {
  border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--sh-sm); overflow: hidden;
}
.fact { padding: 1.4rem 1.5rem; border-right: 1px solid var(--line); display: flex; gap: .9rem; align-items: flex-start; }
.fact:last-child { border-right: 0; }
.fact .fact-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-size: 1.05rem;
}
.fact .fact-label { font-size: .6875rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.fact .fact-value { font-size: .9688rem; font-weight: 750; color: var(--ink); margin-top: .1rem; line-height: 1.35; }
@media (max-width: 767.98px) {
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
}

/* Feature row with a coloured number */
.approach-list { list-style: none; margin: 0; padding: 0; counter-reset: approach; }
.approach-list li {
  position: relative; counter-increment: approach;
  padding: 1.25rem 0 1.25rem 4rem; border-bottom: 1px solid var(--line);
}
.approach-list li:last-child { border-bottom: 0; }
.approach-list li::before {
  content: counter(approach, decimal-leading-zero);
  position: absolute; left: 0; top: 1.15rem;
  width: 2.9rem; height: 2.9rem; border-radius: 12px;
  display: grid; place-items: center;
  font-size: .875rem; font-weight: 800; color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 8px 18px rgba(37, 99, 235, .22);
}
.approach-list h3 { font-size: 1.0625rem; margin-bottom: .3rem; }
.approach-list p { font-size: .9375rem; margin: 0; }

/* --------------------------------------------------------------------------
   10. IMAGE CARDS
   -------------------------------------------------------------------------- */
.img-card {
  position: relative; display: block; height: 100%;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy); color: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 250px;
}
.img-card:hover { transform: translateY(-5px); box-shadow: var(--sh); color: #fff; }
.img-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.img-card:hover img { transform: scale(1.06); }
.img-card .ic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 41, .15) 0%, rgba(11, 18, 41, .55) 45%, rgba(11, 18, 41, .92) 100%);
}
.img-card .ic-body { position: relative; padding: 1.4rem; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; min-height: 250px; }
.img-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .35rem; }
.img-card p { color: #cbd7ee; font-size: .875rem; margin: 0; }
.img-card .ic-tag {
  position: absolute; top: 1rem; left: 1rem;
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; color: #fff; font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(2, 6, 23, .35);
}

/* Framed photo with a gradient glow behind it */
.photo-frame { position: relative; }
.photo-frame::before {
  content: ""; position: absolute; inset: 12% -6% -8% 8%;
  background: var(--grad-brand); filter: blur(48px); opacity: .3; border-radius: 50%;
  z-index: 0;
}
.photo-frame img {
  position: relative; z-index: 1; width: 100%; height: auto;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
.photo-frame-warm::before { background: var(--grad-sunset); }
.photo-frame-mint::before { background: var(--grad-mint); }

.photo-stat {
  position: absolute; z-index: 2; background: #fff;
  border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: .85rem 1rem; display: flex; align-items: center; gap: .7rem;
}
.photo-stat .ps-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-size: 1.05rem; }
.photo-stat .ps-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; color: var(--muted); }
.photo-stat .ps-value { font-size: .9375rem; font-weight: 800; color: var(--ink); line-height: 1.2; }
@media (max-width: 575.98px) { .photo-stat { display: none; } }

/* --------------------------------------------------------------------------
   11. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(2.75rem, 2rem + 3vw, 4.5rem) 0 clamp(2.75rem, 2rem + 3vw, 4.25rem);
  background:
    radial-gradient(760px 340px at 6% 0%, rgba(37, 99, 235, .13), transparent 62%),
    radial-gradient(680px 340px at 94% 10%, rgba(219, 39, 119, .10), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 80%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }

.breadcrumb { font-size: .8125rem; margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--muted); font-weight: 650; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-item.active { color: var(--ink-2); font-weight: 700; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--line-2); }

/* --------------------------------------------------------------------------
   12. PROCESS & STEPS
   -------------------------------------------------------------------------- */
.step {
  position: relative; height: 100%; padding: 1.9rem 1.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.step-num {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  font-size: 1rem; font-weight: 800; color: #fff;
  background: var(--grad-brand); margin-bottom: 1rem;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}
.step h3 { font-size: 1.0938rem; margin-bottom: .45rem; }
.step p { font-size: .9063rem; margin: 0; }

.step-line { position: relative; }
@media (min-width: 992px) {
  .step-line::before {
    content: ""; position: absolute; left: 8%; right: 8%; top: 44px; height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6, #34d399);
    opacity: .35; z-index: 0;
  }
  .step-line > [class*="col-"] { position: relative; z-index: 1; }
}

/* Transformation ladder (home / about) */
.stage-list { list-style: none; margin: 0; padding: 0; position: relative; }
.stage-list::before {
  content: ""; position: absolute; left: 19px; top: 30px; bottom: 30px; width: 2px;
  background: linear-gradient(180deg, #cbd5e1, #60a5fa 40%, #a78bfa 70%, #34d399);
}
.stage { position: relative; display: flex; gap: 1rem; padding: .6rem 0; }
.stage-dot {
  position: relative; z-index: 1; flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line-2); color: var(--muted); font-size: 1.05rem;
}
.stage-body h3 { font-size: .9688rem; margin: 0 0 .15rem; }
.stage-body p { font-size: .8438rem; color: var(--muted); margin: 0; line-height: 1.5; }
.stage.is-target .stage-dot { border-color: transparent; color: #fff; background-image: var(--grad-ocean); }
.stage.is-current .stage-dot { border-color: transparent; color: #fff; background-image: var(--grad-brand); box-shadow: 0 8px 20px rgba(37, 99, 235, .3); }
.stage.is-current .stage-body h3 { color: var(--brand-dark); }

.transform-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); box-shadow: var(--sh); padding: 1.7rem;
}
.transform-card .tc-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.transform-card .tc-title {
  margin: 0; font-size: .8125rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}

/* --------------------------------------------------------------------------
   13. PRODUCT / APP MOCKUPS
   -------------------------------------------------------------------------- */
.app-mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden; font-size: .8125rem;
}
.app-mock-bar {
  display: flex; align-items: center; gap: .4rem;
  padding: .65rem .9rem; background: var(--soft); border-bottom: 1px solid var(--line);
}
.app-mock-bar .dot { width: 9px; height: 9px; border-radius: 50%; }
.app-mock-bar .dot:nth-child(1) { background: #fb7185; }
.app-mock-bar .dot:nth-child(2) { background: #fbbf24; }
.app-mock-bar .dot:nth-child(3) { background: #34d399; }
.app-mock-url {
  margin-left: .6rem; background: #fff; border: 1px solid var(--line);
  border-radius: 100px; font-size: .6875rem; color: var(--muted); padding: .18rem .75rem;
}
.app-mock-body { display: flex; min-height: 340px; }

.app-side { width: 180px; flex: 0 0 auto; background: var(--navy); padding: .95rem .7rem; display: none; }
@media (min-width: 576px) { .app-side { display: block; } }
.app-side .as-brand {
  display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 800; font-size: .8125rem;
  padding: .25rem .45rem 1rem; border-bottom: 1px solid rgba(255, 255, 255, .1); margin-bottom: .7rem;
}
.app-side .as-brand i {
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  background: var(--grad-brand); font-size: .7rem;
}
.app-side .as-item {
  display: flex; align-items: center; gap: .55rem; color: #93a5c4;
  padding: .45rem .5rem; border-radius: 8px; font-size: .75rem; font-weight: 600; margin-bottom: .12rem;
}
.app-side .as-item.is-active { background: rgba(99, 102, 241, .25); color: #fff; }
.app-side .as-item.is-active i { color: #a5b4fc; }

.app-main { flex: 1 1 auto; padding: 1.1rem 1.15rem 1.3rem; background: var(--soft); min-width: 0; }
.app-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; gap: .5rem; }
.app-topline .at-title { font-weight: 800; color: var(--ink); font-size: .9375rem; }
.app-topline .at-chip { font-size: .6875rem; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .18rem .65rem; color: var(--muted); }

.mock-stat { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .75rem .85rem; }
.mock-stat .ms-label { font-size: .6563rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 800; }
.mock-stat .ms-value { font-size: 1.125rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.mock-stat .ms-meta { font-size: .6875rem; color: var(--muted); }
.mock-stat.ms-a { border-left: 3px solid #60a5fa; }
.mock-stat.ms-b { border-left: 3px solid #34d399; }
.mock-stat.ms-c { border-left: 3px solid #fbbf24; }

.mock-panel { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: .85rem .9rem; }
.app-main [class*="col-"] > .mock-stat,
.app-main [class*="col-"] > .mock-panel { height: 100%; }
.mock-panel .mp-title { font-size: .75rem; font-weight: 800; color: var(--ink); margin-bottom: .65rem; }

.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 88px; }
.mock-bars span { flex: 1; border-radius: 4px 4px 0 0; background-image: linear-gradient(180deg, #93c5fd, #3b82f6); opacity: .85; }
.mock-bars span.is-peak { background-image: linear-gradient(180deg, #c4b5fd, #7c3aed); opacity: 1; }

.mock-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .45rem 0; border-bottom: 1px dashed var(--line); font-size: .75rem; }
.mock-row:last-child { border-bottom: 0; }
.mock-row .mr-name { color: var(--ink); font-weight: 700; }
.mock-row .mr-sub { color: var(--muted); font-size: .6875rem; }
.mock-pill { font-size: .6563rem; font-weight: 800; border-radius: 100px; padding: .12rem .55rem; white-space: nowrap; }
.mock-pill.paid { background: #e7f8f0; color: #047857; }
.mock-pill.pending { background: #fff3e2; color: #b45309; }
.mock-pill.draft { background: #eef2f8; color: #475569; }
.mock-caption { font-size: .8125rem; color: var(--muted); text-align: center; margin-top: 1rem; }

/* Module tiles */
.module-tile {
  height: 100%; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; padding: 1.3rem 1.35rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.module-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.module-tile .mt-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.module-tile h3 { font-size: .9688rem; margin: 0; }
.module-tile p { font-size: .875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* Product hero (UdyogPortal page) */
.product-hero {
  position: relative; overflow: hidden; color: #bccbe8;
  padding: clamp(2.75rem, 2rem + 3vw, 4.5rem) 0 clamp(3rem, 2rem + 3vw, 4.5rem);
  background:
    radial-gradient(900px 460px at 10% 6%, rgba(79, 70, 229, .5), transparent 62%),
    radial-gradient(760px 420px at 92% 8%, rgba(8, 145, 178, .4), transparent 60%),
    var(--grad-dark);
}
.product-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.product-hero > .container { position: relative; z-index: 1; }
.product-hero h1, .product-hero h2, .product-hero h3 { color: #fff; }
.product-hero .lead-text { color: #c3d2ea; }
.product-hero .breadcrumb a { color: #8fa3c4; }
.product-hero .breadcrumb-item.active { color: #dbe6f7; }
.product-hero .breadcrumb-item + .breadcrumb-item::before { color: #56698c; }
.product-hero .badge-soft { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); color: #dbe7ff; }
.product-hero .product-tagline {
  font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(120deg, #60a5fa, #c084fc, #22d3ee);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.product-hero .hero-facts { border-top: 1px solid rgba(255, 255, 255, .13); margin-top: 2rem; padding-top: 1.3rem; }
.product-hero .hero-facts .hf-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; color: #8296b8; font-weight: 800; }
.product-hero .hero-facts .hf-value { color: #fff; font-size: .9375rem; font-weight: 650; }

/* --------------------------------------------------------------------------
   14. CTA BANDS
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; color: #c5d3ee;
  background:
    radial-gradient(700px 380px at 12% 20%, rgba(79, 70, 229, .55), transparent 60%),
    radial-gradient(620px 340px at 88% 80%, rgba(219, 39, 119, .38), transparent 60%),
    var(--grad-dark);
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b3c3e0; }
.cta-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .22; z-index: 0;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(11, 18, 41, .92) 20%, rgba(11, 18, 41, .55) 100%);
}

/* --------------------------------------------------------------------------
   15. FORMS
   -------------------------------------------------------------------------- */
.form-label { font-size: .8438rem; font-weight: 700; color: var(--ink-2); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line-2); border-radius: 10px;
  padding: .7rem .9rem; font-size: .9375rem; color: var(--ink);
}
.form-control::placeholder { color: #9aa8bd; }
.form-control:focus, .form-select:focus {
  border-color: var(--brand); box-shadow: 0 0 0 .22rem rgba(37, 99, 235, .14);
}
.form-text { font-size: .8125rem; color: var(--muted); }
.form-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.4rem); box-shadow: var(--sh);
}

.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item .ci-label { font-size: .6875rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; color: var(--muted); margin-bottom: .15rem; }
.contact-item .ci-value { font-size: .9375rem; color: var(--ink); font-weight: 650; }
.contact-item a.ci-value { color: var(--brand); }
.contact-item a.ci-value:hover { color: var(--brand-2); text-decoration: underline; text-underline-offset: 3px; }
.contact-item address { margin: 0; font-style: normal; font-size: .9375rem; color: var(--ink); line-height: 1.65; }

/* --------------------------------------------------------------------------
   16. LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-toc { border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; padding: 1.3rem 1.25rem; box-shadow: var(--sh-sm); }
.legal-toc .toc-title { font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--muted); margin-bottom: .8rem; }
.legal-toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.legal-toc li { counter-increment: toc; margin-bottom: .1rem; }
.legal-toc a {
  display: block; font-size: .8438rem; color: var(--body);
  padding: .35rem .55rem .35rem 2rem; border-radius: 8px; position: relative; line-height: 1.45;
}
.legal-toc a::before {
  content: counter(toc); position: absolute; left: .45rem; top: .38rem;
  color: var(--muted); font-size: .6875rem; font-weight: 800;
  width: 1.15rem; text-align: center;
}
.legal-toc a:hover { background: var(--brand-soft); color: var(--brand-dark); }
.legal-toc a.active { background: var(--grad-brand); color: #fff; font-weight: 700; }
.legal-toc a.active::before { color: rgba(255, 255, 255, .8); }
@media (min-width: 992px) { .legal-toc-sticky { position: sticky; top: 100px; } }

.legal-body { max-width: 74ch; }
.legal-body h2 { font-size: 1.3rem; margin-top: 2.75rem; margin-bottom: .8rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.05rem; margin-top: 1.6rem; margin-bottom: .55rem; color: var(--brand-dark); }
.legal-body p, .legal-body li { font-size: .9375rem; }
.legal-body ul, .legal-body ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .45rem; }
.legal-body table { width: 100%; font-size: .9063rem; margin-bottom: 1.35rem; }
.legal-body table th { background: var(--brand-soft); font-size: .8125rem; text-transform: uppercase; letter-spacing: .05em; color: var(--brand-deep); }
.legal-body table th, .legal-body table td { border: 1px solid var(--line); padding: .65rem .8rem; vertical-align: top; }

.legal-meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; font-size: .8438rem; color: var(--muted);
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--r);
  padding: .9rem 1.1rem; margin-bottom: 2.25rem;
}
.legal-meta strong { color: var(--ink-2); font-weight: 700; }

.callout {
  border: 1px solid #dbe7fe; background: var(--brand-soft-2);
  border-left: 4px solid var(--brand); border-radius: var(--r);
  padding: 1.15rem 1.3rem; margin: 1.6rem 0;
}
.callout p { font-size: .9063rem; margin-bottom: .5rem; }
.callout p:last-child { margin-bottom: 0; }
.callout-title { font-weight: 800; color: var(--ink); font-size: .9375rem; margin-bottom: .35rem; }
.callout-warn { background: #fff8ef; border-color: #fde3c7; border-left-color: #f59e0b; }
.callout-mint { background: #f1faf6; border-color: #cfead9; border-left-color: #10b981; }

/* --------------------------------------------------------------------------
   17. ACCORDION
   -------------------------------------------------------------------------- */
.accordion-item { border: 1px solid var(--line); border-radius: var(--r) !important; margin-bottom: .7rem; overflow: hidden; }
.accordion-button { font-weight: 700; color: var(--ink); font-size: .9688rem; padding: 1.1rem 1.25rem; }
.accordion-button:not(.collapsed) { background: var(--brand-soft); color: var(--brand-dark); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .22rem rgba(37, 99, 235, .14); }
.accordion-body { font-size: .9375rem; padding: 0 1.25rem 1.25rem; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: var(--navy);
  color: #9db0d0;
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  font-size: .9063rem;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f59e0b, #10b981);
}
.site-footer::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: #4f46e5; filter: blur(120px); opacity: .18; top: -220px; right: -160px; pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer .footer-title { font-size: .6875rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: #fff; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #9db0d0; }
.site-footer a:hover, .site-footer a:focus { color: #fff; }

.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer-brand .fb-name { color: #fff; font-weight: 800; font-size: 1.1rem; line-height: 1.2; letter-spacing: -.025em; }
.footer-brand .fb-sub { font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; color: #7b90b4; }
.footer-tagline {
  font-size: 1rem; font-weight: 700;
  background: linear-gradient(120deg, #60a5fa, #c084fc);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.footer-address { font-style: normal; line-height: 1.7; }
.footer-contact a { display: flex; align-items: flex-start; gap: .6rem; word-break: break-word; }
.footer-contact a i { margin: 0 !important; color: #7dd3fc; line-height: 1.55; }

.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12);
  color: #cbd8ee; font-size: 1rem; transition: background-color .18s ease, transform .18s ease;
}
.footer-social a:hover { background: var(--grad-brand); border-color: transparent; color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: clamp(2.25rem, 1.5rem + 2vw, 3.25rem);
  padding: 1.4rem 0; font-size: .8438rem; color: #8397b8;
}
.footer-bottom a { color: #8397b8; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .35rem 1.25rem; }

/* --------------------------------------------------------------------------
   19. BACK TO TOP, REVEAL, 404
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 1040;
  width: 46px; height: 46px; border-radius: 14px; border: 0;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-brand); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }


.error-code {
  font-size: clamp(5rem, 3rem + 10vw, 9rem); font-weight: 800; line-height: 1;
  letter-spacing: -.05em;
  background: linear-gradient(120deg, #2563eb, #7c3aed, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   20. REDUCED MOTION & PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

@media print {
  .site-header, .topbar, .site-footer, .cta-band, .back-to-top, .legal-toc, .breadcrumb { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .hero, .page-hero, .product-hero { background: #fff !important; color: #000 !important; }
  .hero h1, .product-hero h1 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  .section, .page-hero { padding: 1rem 0; }
}

/* --------------------------------------------------------------------------
   21. GRADIENT FILL UTILITIES
   Declared last so they win over component defaults such as .icon-tile,
   .step-num and .fact-ico, which carry the brand gradient by default.
   -------------------------------------------------------------------------- */
.g-indigo  { background-image: linear-gradient(135deg, #818cf8, #4338ca) !important; }
.g-blue    { background-image: linear-gradient(135deg, #60a5fa, #1d4ed8) !important; }
.g-sky     { background-image: linear-gradient(135deg, #38bdf8, #0369a1) !important; }
.g-cyan    { background-image: linear-gradient(135deg, #22d3ee, #0e7490) !important; }
.g-teal    { background-image: linear-gradient(135deg, #2dd4bf, #0f766e) !important; }
.g-emerald { background-image: linear-gradient(135deg, #34d399, #047857) !important; }
.g-amber   { background-image: linear-gradient(135deg, #fbbf24, #b45309) !important; }
.g-orange  { background-image: linear-gradient(135deg, #fb923c, #c2410c) !important; }
.g-rose    { background-image: linear-gradient(135deg, #fb7185, #be123c) !important; }
.g-pink    { background-image: linear-gradient(135deg, #f472b6, #be185d) !important; }
.g-violet  { background-image: linear-gradient(135deg, #a78bfa, #6d28d9) !important; }
.g-purple  { background-image: linear-gradient(135deg, #c084fc, #7e22ce) !important; }

/* Matching soft shadows so each colour glows in its own hue */
.icon-tile.g-indigo, .step-num.g-indigo   { box-shadow: 0 10px 22px rgba(67, 56, 202, .26); }
.icon-tile.g-blue, .step-num.g-blue       { box-shadow: 0 10px 22px rgba(37, 99, 235, .26); }
.icon-tile.g-sky, .icon-tile.g-cyan       { box-shadow: 0 10px 22px rgba(8, 145, 178, .26); }
.icon-tile.g-teal, .icon-tile.g-emerald,
.step-num.g-emerald                        { box-shadow: 0 10px 22px rgba(5, 150, 105, .26); }
.icon-tile.g-amber, .icon-tile.g-orange    { box-shadow: 0 10px 22px rgba(217, 119, 6, .26); }
.icon-tile.g-rose, .icon-tile.g-pink,
.step-num.g-pink                           { box-shadow: 0 10px 22px rgba(225, 29, 72, .26); }
.icon-tile.g-violet, .icon-tile.g-purple,
.step-num.g-violet                         { box-shadow: 0 10px 22px rgba(124, 58, 237, .26); }

/* --------------------------------------------------------------------------
   22. PHOTO CARD (image on top, text below)
   -------------------------------------------------------------------------- */
.photo-card {
  height: 100%; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.photo-card .pc-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft-2); }
.photo-card .pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.photo-card:hover .pc-media img { transform: scale(1.06); }
.photo-card .pc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 41, 0) 45%, rgba(11, 18, 41, .55) 100%);
}
.photo-card .pc-tag {
  position: absolute; z-index: 2; left: .9rem; bottom: .9rem;
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .95); border-radius: 100px;
  padding: .3rem .8rem .3rem .35rem;
  font-size: .75rem; font-weight: 800; color: var(--ink);
  box-shadow: 0 6px 18px rgba(2, 6, 23, .25);
}
.photo-card .pc-tag i {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: .7rem;
}
.photo-card .pc-body { padding: 1.5rem 1.4rem; flex: 1 1 auto; }
.photo-card h3 { font-size: 1.0938rem; margin-bottom: .6rem; }
.photo-card p { font-size: .9063rem; }

/* Footer contact links sit in a narrow column — keep long addresses tidy */
.footer-contact a { font-size: .8438rem; overflow-wrap: anywhere; }

/* Mega menu: keep the four columns close in height */
@media (min-width: 992px) {
  .mega-col { padding: 1.5rem 1.15rem 1.35rem; }
  .mega-feature { padding: 1.5rem 1.4rem 1.6rem; }
  .mega-feature h3 { margin: .8rem 0 .45rem; }
}

/* ==========================================================================
   23. MOTION & POLISH LAYER
   Subtle movement and depth. Everything here is switched off automatically
   for visitors who prefer reduced motion (see section 20 and the override
   at the end of this block).
   ========================================================================== */

/* Drifting colour blobs behind the hero ---------------------------------- */
@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(50px, -34px, 0) scale(1.08); }
}
@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-42px, 30px, 0) scale(1.1); }
}
.blob-1 { animation: driftA 19s ease-in-out infinite; }
.blob-2 { animation: driftB 24s ease-in-out infinite; }
.blob-3 { animation: driftA 30s ease-in-out infinite reverse; }

/* Hero refinements -------------------------------------------------------- */
.hero { padding-bottom: clamp(5rem, 3rem + 7vw, 8.5rem); }
.hero-visual { will-change: transform; }
.hero-photo { border: 1px solid rgba(255, 255, 255, .12); }

/* Technology card that floats over the hero edge -------------------------- */
.tech-strip { background: transparent; border: 0; position: relative; z-index: 3; padding-bottom: 0; }
.tech-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .14);
  padding: 1.5rem 1.6rem;
}
@media (min-width: 768px) { .tech-card { margin-top: -72px; } }
.tech-label { font-size: .9375rem; font-weight: 800; color: var(--ink); line-height: 1.35; margin: 0; }
.tech-label span { display: block; font-size: .8438rem; font-weight: 500; color: var(--muted); }

/* Seamless logo/tech marquee ---------------------------------------------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: .6rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Card micro-interactions -------------------------------------------------- */
.mp-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(460px 220px at 15% 0%, rgba(37, 99, 235, .07), transparent 70%);
  opacity: 0; transition: opacity .28s ease;
}
.mp-card > * { position: relative; }
.mp-card:hover::before { opacity: 1; }
.icon-tile, .step-num { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease; }
.mp-card:hover .icon-tile,
.pillar:hover .icon-tile,
.step:hover .step-num,
.module-tile:hover .icon-tile { transform: translateY(-4px) rotate(-4deg); }
.build-tile:hover .icon-tile { transform: scale(1.08); }

/* Button shine ------------------------------------------------------------- */
.btn-brand, .btn-white { position: relative; overflow: hidden; }
.btn-brand::after, .btn-white::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-22deg); transition: left .65s cubic-bezier(.4,0,.2,1);
}
.btn-white::after { background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .18), transparent); }
.btn-brand:hover::after, .btn-white:hover::after { left: 130%; }
.btn-brand > *, .btn-white > * { position: relative; z-index: 1; }

/* Photo frames get a slow shimmer on the glow ------------------------------ */
@keyframes glowPulse {
  0%, 100% { opacity: .26; transform: scale(1); }
  50%      { opacity: .38; transform: scale(1.05); }
}
.photo-frame::before { animation: glowPulse 9s ease-in-out infinite; }

/* Reduced motion: hold everything still ------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .blob-1, .blob-2, .blob-3, .photo-frame::before { animation: none !important; }
  .marquee-track { animation: none !important; flex-wrap: wrap; width: 100%; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .mp-card:hover .icon-tile, .pillar:hover .icon-tile,
  .step:hover .step-num, .build-tile:hover .icon-tile { transform: none; }
}

/* The technology card already supplies breathing room below the hero */
.tech-strip + .section { padding-top: clamp(2.5rem, 1.5rem + 3vw, 4.25rem); }

/* Between the large and extra-large breakpoints the navbar is tight —
   tighten the link rhythm a little so nothing wraps. */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .navbar-brand { margin-right: .4rem; }
  .brand-name { font-size: 1.06rem; }
  .brand-sub { font-size: .5313rem; letter-spacing: .16em; }
  .site-header .nav-link { padding: .5rem .6rem !important; font-size: .9063rem; }
  .site-header .nav-link.dropdown-toggle { padding-right: 1.3rem !important; }
  .site-header .nav-link::after { left: .6rem; right: .6rem; }
  .site-header .nav-link.dropdown-toggle .underline { left: .6rem; right: 1.3rem; }
  .site-header .nav-link.dropdown-toggle .caret { right: .5rem; }
  .site-header .btn-brand { padding: .6rem 1.05rem; font-size: .875rem; }
}

/* ==========================================================================
   24. MOTION LAYER SUPPORT
   Styles required by assets/js/motion.js. Everything degrades gracefully:
   if the scripts do not run, the .js-anim class is removed by the safety
   timeout in the page head and all content is visible.
   ========================================================================== */

/* Smooth scrolling (Lenis) ------------------------------------------------ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html.lenis-active { scroll-behavior: auto; }

/* First-paint states for the hero, cleared as the entrance timeline starts */
.js-anim .hero-badge,
.js-anim .hero-sub,
.js-anim .hero-points span,
.js-anim .hero-visual,
.js-anim .hero-float { visibility: hidden; }
.js-anim .hero h1 { visibility: hidden; }

/* Word-by-word headline reveal ------------------------------------------- */
.hero h1 .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; }
.hero h1 .w-in { display: inline-block; will-change: transform; }

/* Cursor-following highlight inside cards --------------------------------- */
.mp-card, .pillar, .photo-card, .module-tile, .step, .tech-card { --mx: 50%; --my: 0%; }
.mp-card::before {
  background:
    radial-gradient(220px circle at var(--mx) var(--my), rgba(37, 99, 235, .10), transparent 65%),
    radial-gradient(460px 220px at 15% 0%, rgba(37, 99, 235, .06), transparent 70%);
}
.pillar, .photo-card, .module-tile, .step, .tech-card { position: relative; }
.pillar::after, .photo-card::after, .module-tile::after, .step::after, .tech-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(37, 99, 235, .09), transparent 65%);
  opacity: 0; transition: opacity .3s ease;
}
.pillar:hover::after, .photo-card:hover::after, .module-tile:hover::after,
.step:hover::after, .tech-card:hover::after { opacity: 1; }
.pillar > *, .photo-card > *, .module-tile > *, .step > *, .tech-card > * { position: relative; z-index: 1; }

/* 3D tilt ----------------------------------------------------------------- */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* Process line draws itself ------------------------------------------------ */
@property --line-scale { syntax: "<number>"; inherits: false; initial-value: 1; }
@media (min-width: 992px) {
  .step-line::before { transform: scaleX(var(--line-scale, 1)); transform-origin: left center; }
}

/* Particle canvases -------------------------------------------------------- */
.hero-canvas, .band-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; opacity: .85;
}
.hero > .container, .ai-band > .container { position: relative; z-index: 2; }

/* ==========================================================================
   25. AI-FIRST BAND
   ========================================================================== */
.ai-band {
  position: relative; overflow: hidden; color: #c2d1ec;
  background:
    radial-gradient(760px 420px at 12% 12%, rgba(124, 58, 237, .45), transparent 62%),
    radial-gradient(680px 400px at 88% 88%, rgba(8, 145, 178, .40), transparent 60%),
    var(--grad-dark);
}
.ai-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 78%);
}
.ai-band h2 { color: #fff; }
.ai-band p { color: #aebfdd; }
.gradient-text-ai {
  background: linear-gradient(120deg, #67e8f9, #a78bfa, #f0abfc);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Layer stack visual ------------------------------------------------------- */
.ai-layer {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-xl);
  padding: 1.35rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(2, 6, 23, .45);
}
.ail {
  display: flex; align-items: center; gap: .95rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: .7rem;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}
.ail:last-child { margin-bottom: 0; }
.ail:hover { transform: translateX(6px); background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .2); }
.ail .ail-ico {
  width: 44px; height: 44px; border-radius: 13px; flex: 0 0 auto;
  display: grid; place-items: center; color: #fff; font-size: 1.15rem;
}
.ail .ail-name { color: #fff; font-weight: 750; font-size: .9688rem; line-height: 1.25; }
.ail .ail-desc { color: #96a9c9; font-size: .8125rem; line-height: 1.5; }
.ail-top {
  background: linear-gradient(120deg, rgba(124, 58, 237, .3), rgba(8, 145, 178, .22));
  border-color: rgba(167, 139, 250, .4);
}
.ai-flow {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: .35rem 0; color: #7c8dad; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.ai-flow i { color: #a78bfa; }

/* Reduced motion: no tilt, no parallax, everything visible ------------------ */
@media (prefers-reduced-motion: reduce) {
  .js-anim .hero-badge, .js-anim .hero-sub, .js-anim .hero-points span,
  .js-anim .hero-visual, .js-anim .hero-float, .js-anim .hero h1 { visibility: visible !important; }
  [data-tilt] { transform: none !important; }
}

/* ==========================================================================
   26. ICON SYSTEM
   The prominent tile icons are inlined SVGs (Lucide, ISC licence) rather than
   an icon font: they are stroke-based, scale cleanly, inherit currentColor
   and cost no extra network request. Small inline glyphs (arrows, chevrons,
   list bullets) still come from Bootstrap Icons.
   ========================================================================== */
.ico { width: 24px; height: 24px; display: block; flex: 0 0 auto; }

.icon-tile .ico                 { width: 24px; height: 24px; }
.icon-tile-sm .ico              { width: 19px; height: 19px; }
.icon-tile-lg .ico              { width: 28px; height: 28px; }
.ml-ico .ico, .dd-ico .ico      { width: 18px; height: 18px; }
.fact-ico .ico, .hf-ico .ico,
.ps-ico .ico, .nc-ico .ico      { width: 19px; height: 19px; }
.ail-ico .ico                   { width: 21px; height: 21px; }
.ic-tag .ico                    { width: 19px; height: 19px; }
.as-brand .ico                  { width: 12px; height: 12px; }
.footer-social .ico             { width: 18px; height: 18px; }

.tile-num { font-size: 1.2rem; font-weight: 800; line-height: 1; }

.pc-tag .pc-ico {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; flex: 0 0 auto;
}
.pc-tag .pc-ico .ico { width: 13px; height: 13px; stroke-width: 2.4; }

/* Gradient tiles pick up a soft top gloss, echoing the logo mark */
.icon-tile, .ml-ico, .dd-ico, .ail-ico, .fact-ico,
.hf-ico, .ps-ico, .ic-tag, .step-num {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.icon-tile::after, .ml-ico::after, .dd-ico::after, .ail-ico::after,
.fact-ico::after, .hf-ico::after, .ps-ico::after, .ic-tag::after, .step-num::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

/* Technology chips: real brand marks (simple-icons, CC0) beside Lucide glyphs */
.tech-chip .brand-ico, .tech-chip .ico { width: 18px; height: 18px; flex: 0 0 auto; }
.tech-chip { gap: .55rem; }

/* Fine grain over the dark sections — adds depth to large flat gradients */
.hero::after, .ai-band::after, .cta-band .grain, .product-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
