/* ═══════════════════════════════════════════════════════════════
   SPARK INFOSYS — Homepage V2 "BOLD"  (css/style2.css)
   Strong direct colors · scrolling banners · per-section bg feel
   Stack: HTML5 · CSS3 · Bootstrap 5 · Vanilla JS (shared main.js)
   ───────────────────────────────────────────────────────────────
   SECTION RHYTHM (every section a different background)
   Hero ......... rotating vivid banner gradients (carousel)
   Ticker ....... violet→cyan gradient strip (scrolling text)
   Stats ........ solid violet→blue gradient
   Services ..... white + 6 full-color cards (Owl Carousel)
   Technologies . blue→cyan gradient (scrolling chips)
   Portfolio .... amber→pink warm gradient
   Testimonials . white + bold cards
   FAQ .......... white + thick accent accordion
   Ticker 2 ..... pink→amber strip (reverse scroll)
   Footer ....... deep violet, curved SVG top (dark but never black)
   NOTE: component styles for optional sections (why-us, process,
   achievements, rainbow CTA, footer newsletter) are kept below so
   those sections can be re-enabled in HTML without CSS changes.
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────── 01. TOKENS & BASE ─── */
:root {
  --violet: #6C63FF;
  --purple: #7B61FF;
  --blue:   #5B8CFF;
  --cyan:   #00D4FF;
  --mint:   #00F5A0;
  --coral:  #FF6B6B;
  --amber:  #FFB84D;
  --pink:   #FF7AC6;

  --ink:    #23275A;
  --ink-2:  #3A3F73;
  --body:   #5F6588;
  --muted:  #8A8FB0;

  --g-violet: linear-gradient(135deg, #6C63FF 0%, #7B61FF 45%, #5B8CFF 100%);
  --g-bluecyan: linear-gradient(135deg, #5B8CFF 0%, #00D4FF 100%);
  --g-pinkrise: linear-gradient(135deg, #FF6B6B 0%, #FF7AC6 100%);
  --g-warm: linear-gradient(135deg, #FFB84D 0%, #FF7AC6 100%);
  --g-green: linear-gradient(135deg, #00D4FF 0%, #00F5A0 100%);
  --g-fire: linear-gradient(135deg, #FF6B6B 0%, #FFB84D 100%);
  --g-rainbow: linear-gradient(120deg, #6C63FF, #FF7AC6 30%, #FFB84D 55%, #00D4FF 80%, #6C63FF 100%);
  --g-text: linear-gradient(90deg, #6C63FF, #00D4FF);

  --sh-sm: 0 6px 18px -6px rgba(35, 39, 90, .12);
  --sh-md: 0 16px 40px -14px rgba(35, 39, 90, .22);
  --sh-lg: 0 30px 64px -22px rgba(35, 39, 90, .3);

  --ff-head: "Sora", system-ui, sans-serif;
  --ff-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
}
a { text-decoration: none; transition: color .25s ease; }
::selection { background: rgba(108, 99, 255, .25); }
:focus-visible { outline: 3px solid rgba(108, 99, 255, .5); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #fff; }
::-webkit-scrollbar-thumb { background: var(--g-violet); border-radius: 20px; border: 3px solid #fff; }

.grad-text {
  background: var(--g-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* section shell */
.sec2 { position: relative; padding: 58px 0; overflow: hidden; }
.sec2.sec-tight { padding: 28px 0; }
.sec-tight .sec-head2 { margin-bottom: .85rem; }
.sec-tight .marquee2 { padding: 6px 0; }
#technologies .marquee2 { padding: 3px 0; }
#technologies .tech-chip2 { padding: .4rem 1.15rem; font-size: .86rem; }
#technologies .tech-chip2 i { font-size: 1.15rem; }
.sec2 .container { position: relative; z-index: 2; }

/* strong section backgrounds */
.sec-violet   { background: var(--g-violet); }
.sec-pink     { background: var(--g-pinkrise); }
.sec-bluecyan { background: var(--g-bluecyan); }
.sec-warm     { background: var(--g-warm); }
.sec-green    { background: var(--g-green); }

/* background patterns — a different texture per colored section */
.pattern-dots::before,
.pattern-stripes::before,
.pattern-rings::before,
.pattern-grid::before,
.pattern-zig::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.pattern-dots::before {
  background-image: radial-gradient(rgba(255,255,255,.22) 2.5px, transparent 2.5px);
  background-size: 30px 30px;
}
.pattern-stripes::before {
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.09) 0 16px, transparent 16px 44px);
}
.pattern-rings::before {
  background-image:
    radial-gradient(circle at 8% 18%,  transparent 56px, rgba(255,255,255,.16) 57px, rgba(255,255,255,.16) 62px, transparent 63px),
    radial-gradient(circle at 92% 80%, transparent 86px, rgba(255,255,255,.14) 87px, rgba(255,255,255,.14) 93px, transparent 94px),
    radial-gradient(circle at 78% 12%, transparent 36px, rgba(255,255,255,.18) 37px, rgba(255,255,255,.18) 41px, transparent 42px);
}
.pattern-grid::before {
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1.5px, transparent 1.5px);
  background-size: 46px 46px;
}
.pattern-zig::before {
  background-image: radial-gradient(rgba(255,255,255,.2) 2px, transparent 2px);
  background-size: 22px 22px;
  background-position: 0 0;
  mask-image: linear-gradient(180deg, #000, transparent 45%, transparent 55%, #000);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 45%, transparent 55%, #000);
}

/* heads */
.sec-head2 { text-align: center; max-width: 780px; margin: 0 auto 1.85rem; }
.sec-title2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: .9rem; }
.sec-sub2 { font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.on-color .sec-title2 { color: #fff; }
.on-color .sec-sub2 { color: rgba(255, 255, 255, .88); }

.eyebrow2 {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
  background: var(--g-violet);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(108, 99, 255, .55);
}
.on-color .eyebrow2 { background: rgba(255, 255, 255, .96); color: var(--ink); box-shadow: 0 10px 24px -8px rgba(35, 39, 90, .35); }
.on-color .eyebrow2 i { color: var(--violet); }

/* ───────────────────────── 02. BUTTONS ─── */
.btn { transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, background-position .45s ease, border-color .3s ease, background-color .3s ease; }

.btn-grad {
  background: linear-gradient(135deg, #6C63FF 0%, #5B8CFF 45%, #00D4FF 100%);
  background-size: 200% auto;
  color: #fff; border: 0; border-radius: 50px;
  font-weight: 800; padding: .85rem 1.8rem;
  box-shadow: 0 14px 34px -10px rgba(108, 99, 255, .65);
}
.btn-grad:hover { color: #fff; background-position: right center; transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(108, 99, 255, .75); }

.btn-fire {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 50%, #FFB84D 100%);
  background-size: 200% auto;
  color: #fff; border: 0; border-radius: 50px;
  font-weight: 800; padding: .85rem 1.8rem;
  box-shadow: 0 14px 34px -10px rgba(255, 107, 107, .6);
}
.btn-fire:hover { color: #fff; background-position: right center; transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(255, 107, 107, .72); }

.btn-white-solid {
  background: #fff; color: var(--violet);
  border: 0; border-radius: 50px;
  font-weight: 800; padding: .85rem 1.8rem;
  box-shadow: 0 16px 36px -12px rgba(35, 39, 90, .35);
}
.btn-white-solid:hover { background: #fff; color: var(--purple); transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 48px -14px rgba(13, 16, 50, .5); }

.btn-outline-w {
  background: transparent; color: #fff;
  border: 2.5px solid rgba(255, 255, 255, .85);
  border-radius: 50px;
  font-weight: 800; padding: .78rem 1.7rem;
}
.btn-outline-w:hover { background: #fff; color: var(--ink); transform: translateY(-3px); border-color: #fff; }

.btn-xl { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ───────────────────────── 03. PRELOADER & CURSOR ─── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--g-violet);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-inner { display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.pre-spark { animation: preSpin 1.6s ease-in-out infinite; filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .25)); }
.pre-word { font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem; color: #fff; }
.pre-bar { width: 160px; height: 6px; border-radius: 10px; background: rgba(255,255,255,.25); overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 40%; border-radius: 10px; background: #fff; animation: preLoad 1.1s ease-in-out infinite; }

.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 460px; height: 460px; margin: -230px 0 0 -230px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(108, 99, 255, .12) 0%, rgba(255, 122, 198, .07) 40%, transparent 68%);
  opacity: 0; transition: opacity .4s ease;
}
body.cursor-on .cursor-glow { opacity: 1; }
/* desktop-only flourish — never render on touch or narrow screens
   (it's position:fixed, so overflow:clip can't contain its bleed) */
@media (hover: none), (max-width: 991.98px) { .cursor-glow { display: none !important; } }

/* page-load reveal (navbar) */
.reveal { opacity: 0; transform: translateY(-16px); transition: opacity .8s ease var(--d, 0s), transform .8s ease var(--d, 0s); }
body.is-loaded .reveal { opacity: 1; transform: none; }

/* ───────────────────────── 04. NAVBAR (solid bold) ─── */
.navbar2 {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .97);
  padding: .8rem 0;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #6C63FF, #FF7AC6, #FFB84D, #00D4FF) 1;
  transition: box-shadow .35s ease, padding .35s ease;
}
.navbar2.is-scrolled { box-shadow: 0 14px 36px -16px rgba(35, 39, 90, .3); padding: .55rem 0; }
/* desktop: trim navbar padding so the larger logo keeps the original bar height */
@media (min-width: 992px) {
  .navbar2 { padding: .6rem 0; }
  .navbar2.is-scrolled { padding: .35rem 0; }
}

.nav-logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo-badge {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 13px;
  background: var(--g-violet);
  box-shadow: 0 10px 22px -7px rgba(108, 99, 255, .65);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.nav-logo:hover .logo-badge { transform: rotate(14deg) scale(1.07); }
.logo-word { font-family: var(--ff-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.logo-word em {
  font-style: normal;
  background: var(--g-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar2 .nav-link {
  position: relative;
  font-weight: 700; font-size: .94rem;
  color: var(--ink-2);
  padding: .5rem .8rem !important;
  border-radius: 40px;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
.navbar2 .nav-txt { white-space: nowrap; }
/* hover/active pill tinted with each item's own icon color */
.navbar2 .nav-item:nth-child(1) .nav-link:hover,
.navbar2 .nav-item:nth-child(1) .nav-link.active { color: #6C63FF; background: rgba(108, 99, 255, .13); }
.navbar2 .nav-item:nth-child(2) .nav-link:hover,
.navbar2 .nav-item:nth-child(2) .nav-link.active { color: #0095D9; background: rgba(0, 212, 255, .14); }
.navbar2 .nav-item:nth-child(3) .nav-link:hover,
.navbar2 .nav-item:nth-child(3) .nav-link.active { color: #00A57C; background: rgba(0, 245, 160, .16); }
.navbar2 .nav-item:nth-child(4) .nav-link:hover,
.navbar2 .nav-item:nth-child(4) .nav-link.active { color: #F0418C; background: rgba(255, 122, 198, .16); }
.navbar2 .nav-item:nth-child(5) .nav-link:hover,
.navbar2 .nav-item:nth-child(5) .nav-link.active { color: #E08A00; background: rgba(255, 184, 77, .18); }
.navbar2 .nav-item:nth-child(6) .nav-link:hover,
.navbar2 .nav-item:nth-child(6) .nav-link.active { color: #FF5A36; background: rgba(255, 107, 107, .15); }
.navbar2 .nav-item:nth-child(7) .nav-link:hover,
.navbar2 .nav-item:nth-child(7) .nav-link.active { color: #5B73FF; background: rgba(91, 140, 255, .14); }

/* desktop "Services" dropdown */
.nav-caret { font-size: .56rem; margin-left: .12rem; opacity: .7; transition: transform .3s ease; }
@media (max-width: 991.98px) { .nav-caret { display: none; } }
@media (min-width: 992px) {
  .nav-has-drop { position: relative; }
  .nav-has-drop:hover .nav-caret { transform: rotate(180deg); }
  .nav-drop {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(14px);
    min-width: 268px;
    background: #fff;
    border: 1px solid rgba(108, 99, 255, .12);
    border-radius: 18px;
    box-shadow: 0 24px 54px -16px rgba(20, 24, 70, .4);
    padding: .55rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility 0s linear .28s;
    z-index: 1041;
  }
  .nav-drop::before {                 /* invisible hover bridge over the gap */
    content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
  }
  .nav-drop::after {                  /* pointer arrow */
    content: ""; position: absolute; top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px; height: 13px; background: #fff;
    border-left: 1px solid rgba(108, 99, 255, .12);
    border-top: 1px solid rgba(108, 99, 255, .12);
  }
  .nav-has-drop:hover .nav-drop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(9px);
    transition: opacity .28s ease, transform .28s ease;
  }
  .nav-drop a {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: .65rem;
    padding: .5rem .65rem;
    border-radius: 12px;
    font-weight: 700; font-size: .88rem; color: var(--ink-2);
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .nav-drop a i {
    width: 30px; height: 30px; flex: 0 0 30px;
    border-radius: 9px;
    display: grid; place-items: center;
    color: #fff; font-size: .82rem;
    box-shadow: 0 6px 14px -5px rgba(20, 24, 70, .4);
  }
  .nav-drop a:nth-child(1) i { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
  .nav-drop a:nth-child(2) i { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
  .nav-drop a:nth-child(3) i { background: linear-gradient(135deg, #FF7AC6, #FF5E9C); }
  .nav-drop a:nth-child(4) i { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
  .nav-drop a:nth-child(5) i { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
  .nav-drop a:nth-child(6) i { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
  .nav-drop a:hover { background: linear-gradient(90deg, rgba(108, 99, 255, .1), rgba(0, 212, 255, .06)); color: var(--violet); transform: translateX(3px); }
}

.nav-cta { padding: .65rem 1.45rem; font-size: .92rem; white-space: nowrap; }

/* desktop nav link icons (round gradient chips, one color per item) */
.navbar2 .nav-link { display: inline-flex; align-items: center; gap: .45rem; }
.nav-ic {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .66rem; color: #fff;
  background: var(--g-violet);
  box-shadow: 0 5px 12px -4px rgba(20, 24, 70, .4);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.navbar2 .nav-item:nth-child(1) .nav-ic { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.navbar2 .nav-item:nth-child(2) .nav-ic { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
.navbar2 .nav-item:nth-child(3) .nav-ic { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.navbar2 .nav-item:nth-child(4) .nav-ic { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.navbar2 .nav-item:nth-child(5) .nav-ic { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
.navbar2 .nav-item:nth-child(6) .nav-ic { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.navbar2 .nav-item:nth-child(7) .nav-ic { background: linear-gradient(135deg, #5B8CFF, #7B61FF); }
.navbar2 .nav-link:hover .nav-ic,
.navbar2 .nav-link.active .nav-ic { transform: rotate(-8deg) scale(1.12); box-shadow: 0 8px 16px -5px rgba(20, 24, 70, .5); }

/* phone button (replaces the Start Your Project CTA) */
.nav-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 55%, #FFB84D 100%);
  color: #fff;
  padding: 6px 18px 6px 6px;
  border-radius: 50px;
  font-family: var(--ff-head);
  font-weight: 800; font-size: .92rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(255, 107, 107, .55);
  animation: phonePulse 2.6s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease;
}
.nav-phone:hover { color: #fff; transform: translateY(-2px); }
.ph-ic {
  width: 32px; height: 32px; flex: 0 0 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: #FF6B6B;
  font-size: .9rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
  animation: phoneRing 1.9s ease-in-out infinite;
}
@keyframes phoneRing {
  0%, 55%, 100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-9deg); }
  40% { transform: rotate(6deg); }
}
@keyframes phonePulse {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(255, 107, 107, .55); }
  50%      { box-shadow: 0 10px 28px -6px rgba(255, 107, 107, .75), 0 0 0 7px rgba(255, 107, 107, .12); }
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
  .nav-phone { padding: 5px 13px 5px 5px; font-size: .8rem; gap: .4rem; }
  .nav-phone .ph-ic { width: 28px; height: 28px; flex: 0 0 28px; font-size: .8rem; }
  .navbar2 .nav-link { padding: .4rem .42rem !important; font-size: .82rem; }
  .nav-ic { width: 19px; height: 19px; flex-basis: 19px; font-size: .54rem; }
}
@media (max-width: 1199.98px) and (min-width: 992px) {
  .ph-text { display: none; }
  .nav-phone { padding: 6px; }
  .navbar2 .nav-link { padding: .38rem .4rem !important; font-size: .8rem; }
  .nav-ic { width: 18px; height: 18px; flex-basis: 18px; font-size: .52rem; }
}
@media (max-width: 991.98px) {
  .ph-text { display: none; }
  .nav-phone { padding: 5px; margin-right: .55rem; }
  .nav-phone .ph-ic { width: 34px; height: 34px; flex-basis: 34px; }
}

.navbar-toggler { border: 0; padding: .4rem .2rem; box-shadow: none !important; }
.tg-bar { display: block; width: 27px; height: 3.5px; border-radius: 4px; background: var(--g-violet); transition: transform .35s ease; }
.tg-bar + .tg-bar { margin-top: 6px; width: 19px; margin-left: auto; }
.navbar-toggler[aria-expanded="true"] .tg-bar:first-child { transform: translateY(4.8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .tg-bar:last-child { width: 27px; transform: translateY(-4.8px) rotate(-45deg); }

/* ── innovative mobile header: floating gradient capsule ── */
@media (max-width: 991.98px) {
  .navbar2 {
    top: 10px; left: 12px; right: 12px;
    border: 2px solid transparent;
    border-image: none;
    border-radius: 60px;
    background:
      linear-gradient(rgba(255, 255, 255, .97), rgba(255, 255, 255, .97)) padding-box,
      linear-gradient(90deg, #6C63FF, #FF7AC6, #FFB84D, #00D4FF) border-box;
    box-shadow: 0 16px 38px -16px rgba(20, 24, 70, .4);
    padding: .4rem .4rem .4rem .6rem;
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  }
  .navbar2.is-scrolled {
    padding: .4rem .4rem .4rem .6rem;
    box-shadow: 0 18px 44px -16px rgba(20, 24, 70, .5);
  }
  .navbar2.nav-hidden { transform: translateY(-145%); }
  .navbar2::after {                         /* scroll progress line inside the capsule */
    content: "";
    position: absolute;
    bottom: 5px; left: 28px;
    height: 3px;
    width: calc((100% - 56px) * var(--sp, 0));
    border-radius: 4px;
    background: linear-gradient(90deg, #6C63FF, #FF7AC6, #FFB84D, #00D4FF);
    opacity: .9;
    pointer-events: none;
  }
  .navbar2 .logo-badge { width: 38px; height: 38px; border-radius: 12px; }
  .navbar2 .logo-word { font-size: 1.16rem; }

  /* round gradient hamburger button */
  .navbar2 .navbar-toggler {
    width: 46px; height: 46px; padding: 0;
    border-radius: 50%;
    background: var(--g-violet);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 10px 24px -8px rgba(108, 99, 255, .6);
    transition: background .35s ease, box-shadow .35s ease, transform .25s ease;
  }
  .navbar2 .navbar-toggler:active { transform: scale(.9); }
  .navbar2 .tg-bar { background: #fff; width: 20px; height: 2.6px; }
  .navbar2 .tg-bar + .tg-bar { width: 13px; margin-top: 5px; margin-left: 7px; }
  .navbar2 .navbar-toggler[aria-expanded="true"] {
    background: var(--g-fire);
    box-shadow: 0 10px 24px -8px rgba(255, 107, 107, .65);
  }
  .navbar2 .navbar-toggler[aria-expanded="true"] .tg-bar + .tg-bar { width: 20px; margin-left: 0; }
  .navbar2 .navbar-toggler[aria-expanded="true"] .tg-bar:first-child { transform: translateY(3.8px) rotate(45deg); }
  .navbar2 .navbar-toggler[aria-expanded="true"] .tg-bar:last-child { transform: translateY(-3.8px) rotate(-45deg); }

  /* desktop nav list hidden on mobile — the slide-in drawer replaces it */
  .navbar2 .navbar-collapse { display: none !important; }
  body.menu-open { overflow: hidden; }
}

/* ── mobile drawer (slide-in side menu with rich items) ── */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(31, 24, 71, .55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1090;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(312px, 86vw);
  background: #fff;
  z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(-105%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 50px rgba(20, 24, 70, .35);
}
.mobile-drawer.show { transform: translateX(0); }

.drawer-head {
  position: relative;
  flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: .45rem;
  padding: 1.15rem 1rem 1rem;
  background:
    radial-gradient(60% 60% at 14% 18%, rgba(0, 212, 255, .3), transparent 62%),
    linear-gradient(135deg, #6C63FF 0%, #7B61FF 50%, #5B8CFF 100%);
}
.drawer-head::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  pointer-events: none;
}
.dh-logo {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff;
  border-radius: 14px;
  padding: .4rem .9rem .4rem .5rem;
  box-shadow: 0 10px 24px -10px rgba(20, 24, 70, .45);
}
.dh-logo .logo-badge { width: 32px; height: 32px; border-radius: 10px; }
.dh-logo .logo-word { font-size: 1.05rem; }
.dh-tag { position: relative; z-index: 1; color: rgba(255, 255, 255, .95); font-weight: 700; font-size: .76rem; letter-spacing: .04em; }
.dh-dots { position: relative; z-index: 1; display: flex; gap: 5px; }
.dh-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .7); }
.dh-dots span:nth-child(2) { background: #FFB84D; }
.dh-dots span:nth-child(3) { background: #00F5A0; }
.drawer-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .22);
  color: #fff; font-size: .95rem;
  transition: background .25s ease, transform .25s ease;
}
.drawer-close:hover { background: rgba(255, 255, 255, .35); }
.drawer-close:active { transform: scale(.88); }

.drawer-nav { flex: 1 1 auto; overflow-y: auto; padding: .65rem 0 1rem; display: flex; flex-direction: column; }
.dm-item {
  position: relative;
  display: flex; align-items: center; gap: .75rem;
  margin: 2px 12px;
  padding: .5rem .75rem;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.dm-item + .dm-item::before {                /* soft gradient divider */
  content: "";
  position: absolute; top: -2px; left: 12px; right: 12px;
  height: 1.5px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(108, 99, 255, .28) 50%, transparent);
  pointer-events: none;
}
.dm-item i {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.02rem;
  box-shadow: 0 8px 18px -8px rgba(20, 24, 70, .35);
}
.dm-violet i { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.dm-cyan i   { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
.dm-pink i   { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.dm-green i  { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.dm-amber i  { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
.dm-coral i  { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.dm-blue i   { background: linear-gradient(135deg, #5B8CFF, #7B61FF); }
.dm-txt { display: flex; flex-direction: column; line-height: 1.3; }
.dm-title { font-family: var(--ff-head); font-weight: 700; font-size: .92rem; color: var(--ink); transition: color .25s ease; }
.dm-desc { font-size: .7rem; font-weight: 600; color: var(--muted); }
.dm-item:hover, .dm-item.active {
  background: linear-gradient(90deg, rgba(108, 99, 255, .13), rgba(0, 212, 255, .07));
  border-left-color: var(--violet);
  transform: translateX(2px);
}
.dm-item:hover .dm-title, .dm-item.active .dm-title { color: var(--violet); }
/* drawer tints matched to each item's icon color */
.dm-item.dm-violet:hover, .dm-item.dm-violet.active { background: rgba(108, 99, 255, .13); border-left-color: #6C63FF; }
.dm-item.dm-violet:hover .dm-title, .dm-item.dm-violet.active .dm-title { color: #6C63FF; }
.dm-item.dm-cyan:hover, .dm-item.dm-cyan.active { background: rgba(0, 212, 255, .14); border-left-color: #00B2FF; }
.dm-item.dm-cyan:hover .dm-title, .dm-item.dm-cyan.active .dm-title { color: #0095D9; }
.dm-item.dm-pink:hover, .dm-item.dm-pink.active { background: rgba(255, 122, 198, .16); border-left-color: #FF5E9C; }
.dm-item.dm-pink:hover .dm-title, .dm-item.dm-pink.active .dm-title { color: #F0418C; }
.dm-item.dm-amber:hover, .dm-item.dm-amber.active { background: rgba(255, 184, 77, .18); border-left-color: #FFA63D; }
.dm-item.dm-amber:hover .dm-title, .dm-item.dm-amber.active .dm-title { color: #E08A00; }
.dm-item.dm-blue:hover, .dm-item.dm-blue.active { background: rgba(91, 140, 255, .14); border-left-color: #5B8CFF; }
.dm-item.dm-blue:hover .dm-title, .dm-item.dm-blue.active .dm-title { color: #5B73FF; }
.drawer-cta { padding: .85rem 14px 0; margin-top: auto; }

/* staggered entrance for drawer items */
.mobile-drawer.show .dm-item { animation: drawerItem .42s cubic-bezier(.22,1,.36,1) both; }
.mobile-drawer.show .dm-item:nth-child(1) { animation-delay: .1s; }
.mobile-drawer.show .dm-item:nth-child(2) { animation-delay: .15s; }
.mobile-drawer.show .dm-item:nth-child(3) { animation-delay: .2s; }
.mobile-drawer.show .dm-item:nth-child(4) { animation-delay: .25s; }
.mobile-drawer.show .dm-item:nth-child(5) { animation-delay: .3s; }
.mobile-drawer.show .dm-item:nth-child(6) { animation-delay: .35s; }
.mobile-drawer.show .dm-item:nth-child(7) { animation-delay: .4s; }
.mobile-drawer.show .drawer-cta { animation: drawerItem .42s ease both .48s; }
@keyframes drawerItem {
  from { opacity: 0; translate: -16px 0; }
  to   { opacity: 1; translate: 0 0; }
}

@media (min-width: 992px) {
  .mobile-drawer, .drawer-backdrop { display: none; }
}

/* ───────────────────────── 05. HERO BANNER CAROUSEL ─── */
.hero2 { position: relative; }
.hero-carousel .carousel-item { overflow: hidden; }

.banner { position: relative; }
.b-1 { background: linear-gradient(125deg, #6C63FF 0%, #7B61FF 35%, #5B8CFF 68%, #00D4FF 100%); }
.b-2 { background: linear-gradient(125deg, #FF5E62 0%, #FF6B6B 40%, #FF7AC6 100%); }
.b-3 { background: linear-gradient(125deg, #FF9A3D 0%, #FFB84D 38%, #FF7AC6 100%); }

.banner-wrap {
  min-height: 60svh;
  display: flex; align-items: center;
  padding: 92px 0 38px;
  position: relative; z-index: 2;
}

/* banner decorative shapes (big, bold, white-translucent) */
.b-shape { position: absolute; pointer-events: none; z-index: 1; }
.bs-ring {
  width: 320px; height: 320px;
  border: 26px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  top: -90px; right: -70px;
  animation: spinSlow 34s linear infinite;
}
.bs-ring::after {
  content: ""; position: absolute; top: -13px; left: 50%;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 255, 255, .85);
}
.bs-circle { width: 220px; height: 220px; border-radius: 50%; background: rgba(255, 255, 255, .1); bottom: -70px; left: -60px; animation: floatY 9s ease-in-out infinite; }
.bs-cross { top: 22%; left: 42%; width: 30px; height: 30px; animation: floatY 7s ease-in-out infinite .6s; }
.bs-cross::before, .bs-cross::after { content: ""; position: absolute; inset: 0; margin: auto; background: rgba(255, 255, 255, .55); border-radius: 6px; }
.bs-cross::before { width: 100%; height: 8px; }
.bs-cross::after { width: 8px; height: 100%; }
.bs-dots {
  bottom: 16%; right: 8%;
  width: 120px; height: 90px;
  background-image: radial-gradient(rgba(255,255,255,.5) 3px, transparent 3px);
  background-size: 22px 22px;
  animation: floatY 8s ease-in-out infinite .3s;
}
.bs-tri {
  width: 0; height: 0; top: 64%; left: 6%;
  border-left: 20px solid transparent; border-right: 20px solid transparent;
  border-bottom: 34px solid rgba(255, 255, 255, .4);
  animation: floatY 7.5s ease-in-out infinite 1s, spinSlow 26s linear infinite;
}

/* banner copy */
.b-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  white-space: nowrap;
  max-width: 100%;
  background: rgba(255, 255, 255, .2);
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: #fff;
  border-radius: 50px;
  padding: .55rem 1.3rem;
  font-weight: 800; font-size: .85rem;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.b-title {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw + .3rem, 3.55rem);
  line-height: 1.08;
  margin-bottom: .8rem;
  text-shadow: 0 4px 26px rgba(35, 39, 90, .25);
}
.b-title .underline-w { position: relative; white-space: nowrap; }
.b-title .underline-w::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: .04em;
  height: .18em; border-radius: 8px;
  background: rgba(255, 255, 255, .45);
  z-index: -1;
}
.b-sub { color: rgba(255, 255, 255, .92); font-size: 1.06rem; max-width: 540px; margin-bottom: 1.15rem; font-weight: 500; }
.b-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; color: rgba(255, 255, 255, .92); font-weight: 700; font-size: .9rem; }
.b-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.b-meta i { font-size: 1rem; }

/* per-slide content entrance (gated on body.is-loaded so banner 1 animates on first paint too) */
.bx { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
body.is-loaded .carousel-item.active .bx { opacity: 1; transform: none; }
body.is-loaded .carousel-item.active .d1 { transition-delay: .15s; }
body.is-loaded .carousel-item.active .d2 { transition-delay: .3s; }
body.is-loaded .carousel-item.active .d3 { transition-delay: .45s; }
body.is-loaded .carousel-item.active .d4 { transition-delay: .6s; }
body.is-loaded .carousel-item.active .d5 { transition-delay: .75s; }

/* banner visuals (illustration images) */
.b-visual { position: relative; display: grid; place-items: center; min-height: 300px; }
.b-img {
  width: min(540px, 94%);
  height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 42px 64px rgba(20, 24, 70, .38));
  animation: floatY 7s ease-in-out infinite;
}

/* floating chips around mocks */
.float-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .6rem;
  background: #fff;
  border-radius: 16px;
  padding: .65rem .95rem;
  box-shadow: 0 22px 46px -16px rgba(20, 24, 70, .5);
  font-weight: 800; font-size: .82rem; color: var(--ink);
  animation: floatY 6.2s ease-in-out infinite;
}
.float-chip i {
  width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center;
  color: #fff; font-size: .9rem;
}
.float-chip small { display: block; font-weight: 700; color: var(--muted); font-size: .66rem; }
.fc-a { top: 4%; right: 2%; animation-delay: .4s; }
.fc-b { bottom: 4%; left: 0; animation-delay: 1.1s; }
.fi-v { background: var(--g-violet); }
.fi-g { background: var(--g-green); }
.fi-f { background: var(--g-fire); }
.fi-p { background: var(--g-pinkrise); }

/* floating tech orbs (slide 1) */
.tech-orb {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 18px 38px -12px rgba(20, 24, 70, .5);
  animation: floatY var(--fd, 6.4s) ease-in-out infinite var(--fdel, 0s);
  z-index: 3;
}
.to-1 { top: -3%; left: 8%; --fdel: .2s; }
.to-2 { top: 30%; right: -3%; --fd: 7.2s; --fdel: .7s; }
.to-3 { bottom: -2%; right: 16%; --fd: 6.8s; --fdel: 1.2s; }
.to-4 { bottom: 18%; left: -4%; --fd: 7.6s; --fdel: .4s; }

/* carousel controls — bold round buttons */
.hero-ctrls {
  position: absolute; right: 4%; bottom: 38px;
  display: flex; gap: .7rem; z-index: 5;
}
.hc-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .14);
  color: #fff; font-size: 1.2rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.hc-btn:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }

/* indicators — bold pills */
.hero-carousel .carousel-indicators {
  bottom: 44px; margin-bottom: 0; z-index: 5;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 14px; height: 14px;
  border-radius: 20px;
  border: 0;
  background: rgba(255, 255, 255, .55);
  opacity: 1;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  margin: 0 5px;
}
.hero-carousel .carousel-indicators .active { width: 44px; background: #fff; }

/* ───────────────────────── 06. TICKER STRIPS ─── */
.ticker {
  position: relative;
  padding: 9px 0;
  overflow: hidden;
  z-index: 3;
}
.ticker-main { background: linear-gradient(90deg, #6C63FF, #5B8CFF 40%, #00D4FF); box-shadow: 0 18px 40px -18px rgba(108, 99, 255, .6); }
.ticker-warm { background: linear-gradient(90deg, #FF6B6B, #FF7AC6 45%, #FFB84D); box-shadow: 0 18px 40px -18px rgba(255, 107, 107, .55); }
.ticker-track {
  display: flex; align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: scrollX 26s linear infinite;
}
.ticker-warm .ticker-track { animation: scrollX 30s linear infinite reverse; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.tk-item {
  display: inline-flex; align-items: center; gap: 2.2rem;
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
}
.tk-item::after { content: "✦"; font-size: 1.1rem; opacity: .85; }

/* ───────────────────────── 07. STATS (violet) ─── */
.stat2 {
  text-align: center;
  background: rgba(255, 255, 255, .14);
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 26px;
  padding: 2rem 1rem 1.6rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .4s cubic-bezier(.22,1,.36,1), background .4s ease;
  height: 100%;
}
.stat2:hover { transform: translateY(-9px); background: rgba(255, 255, 255, .22); }
.stat2-ico {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  font-size: 1.5rem;
  animation: floatY 5.6s ease-in-out infinite;
}
.stat2-ico.i1 { color: var(--violet); }
.stat2-ico.i2 { color: var(--coral); animation-delay: .4s; }
.stat2-ico.i3 { color: #E08A00; animation-delay: .8s; }
.stat2-ico.i4 { color: #00A57C; animation-delay: 1.2s; }
.stat2 h3 { color: #fff; font-size: clamp(2.1rem, 3.2vw, 2.9rem); margin-bottom: .1rem; text-shadow: 0 4px 18px rgba(20, 24, 70, .3); }
.stat2 p { color: rgba(255, 255, 255, .92); font-weight: 800; margin: 0; font-size: .95rem; }
/* compact stats section (~50% shorter) */
#stats { padding: 12px 0; }
#stats .eyebrow2 { margin-bottom: .45rem; }
#stats .sec-head2 { margin-bottom: .7rem; }
#stats .sec-title2 { font-size: clamp(1.25rem, 2.6vw, 1.8rem); margin-bottom: .3rem; }
#stats .sec-sub2 { margin-bottom: 0; font-size: .8rem; }
#stats .row { --bs-gutter-y: .5rem; }
#stats .stat2 { aspect-ratio: 1.18; height: auto; max-width: 165px; margin: 0 auto; padding: .65rem; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
#stats .stat2-ico { width: 44px; height: 44px; margin: 0 auto .4rem; font-size: 1.15rem; }
#stats .stat2 h3 { font-size: clamp(1.75rem, 3.4vw, 2.3rem); margin-bottom: .1rem; }
#stats .stat2 p { font-size: .74rem; line-height: 1.2; }

/* ───────────────────────── 08. SERVICES (white + full-color cards) ─── */
.sec-services { background: #fff; }

/* ───── buying options: full ownership vs rental ─── */
.buyopt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; max-width: 840px; margin: 0 auto; }
.buyopt-card { position: relative; z-index: 2; overflow: hidden; display: flex; flex-direction: column; border-radius: 20px; padding: 1.3rem 1.3rem; border: 1.5px solid #ECEAFF; background: #fff; box-shadow: var(--sh-sm); transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.buyopt-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.buyopt-own { background: var(--g-violet); border-color: transparent; box-shadow: 0 24px 50px -18px rgba(108, 99, 255, .55); }
.buyopt-badge { position: absolute; top: 0; right: 0; z-index: 2; display: inline-flex; align-items: center; gap: .3rem; background: rgba(255, 255, 255, .22); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: .4rem .85rem; border-bottom-left-radius: 16px; }
.buyopt-badge i { font-size: .62rem; }
.buyopt-head { display: flex; align-items: center; gap: .85rem; margin-bottom: .85rem; }
.buyopt-ic { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 15px; display: grid; place-items: center; font-size: 1.4rem; color: #fff; }
.buyopt-own .buyopt-ic { background: rgba(255, 255, 255, .2); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .4); }
.buyopt-rent .buyopt-ic { background: var(--g-green); box-shadow: 0 12px 24px -10px rgba(0, 201, 167, .55); }
.buyopt-head h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1.22rem; margin: 0 0 .1rem; line-height: 1.2; }
.buyopt-own .buyopt-head h3 { color: #fff; }
.buyopt-rent .buyopt-head h3 { color: var(--ink); }
.buyopt-head p { margin: 0; font-size: .8rem; font-weight: 700; }
.buyopt-own .buyopt-head p { color: rgba(255, 255, 255, .82); }
.buyopt-rent .buyopt-head p { color: var(--muted); }
.buyopt-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem .45rem; margin: 0 0 1rem; }
.buyopt-price b { font-family: var(--ff-head); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.buyopt-price > span { font-size: .8rem; font-weight: 700; }
.buyopt-price em { font-style: normal; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: .22rem .55rem; border-radius: 20px; align-self: center; }
.buyopt-own .buyopt-price b { color: #fff; }
.buyopt-own .buyopt-price > span { color: rgba(255, 255, 255, .82); }
.buyopt-rent .buyopt-price b { color: var(--ink); }
.buyopt-rent .buyopt-price > span { color: var(--muted); }
.buyopt-rent .buyopt-price em { background: rgba(0, 201, 167, .15); color: #00936E; }
.buyopt-list { list-style: none; margin: 0 0 1.05rem; padding: 0; display: grid; gap: .5rem; flex: 1; }
.buyopt-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; font-weight: 600; line-height: 1.4; }
.buyopt-list li i { font-size: .82rem; margin-top: 3px; flex: 0 0 auto; }
.buyopt-own .buyopt-list li { color: rgba(255, 255, 255, .95); }
.buyopt-own .buyopt-list li i { color: #fff; }
.buyopt-rent .buyopt-list li { color: var(--ink-2); }
.buyopt-rent .buyopt-list li.yes i { color: #00B58A; }
.buyopt-rent .buyopt-list li.no { color: var(--muted); }
.buyopt-rent .buyopt-list li.no i { color: #FF6B6B; }
.buyopt-card .btn { width: 100%; justify-content: center; }
.buyopt-own .btn:hover { background: var(--g-fire); color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 46px -16px rgba(255, 107, 107, .65); }
.buyopt-own .btn:hover i { color: #fff; }
.sec2:has(.buyopt-grid) .sec-head2 { margin-bottom: 1.1rem; }
.sec2:has(.buyopt-grid) .sec-title2 { font-size: clamp(1.55rem, 3.4vw, 2.15rem); }
.sec2:has(.buyopt-grid) .sec-sub2 { font-size: .96rem; max-width: 520px; }
@media (max-width: 600px) { .buyopt-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ───── legal document (terms / privacy) ─── */
.legal-doc { max-width: 860px; margin: 0 auto; }
.legal-updated { font-size: .82rem; color: var(--violet); font-weight: 800; margin-bottom: 1.8rem; padding: .5rem .95rem; background: #F2F1FF; border-radius: 30px; display: inline-flex; align-items: center; gap: .5rem; }
.legal-doc h2 { font-family: var(--ff-head); font-weight: 800; font-size: 1.22rem; color: var(--ink); margin: 2.1rem 0 .7rem; display: flex; align-items: baseline; gap: .55rem; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h2 .ln { color: var(--violet); font-size: .95rem; flex: 0 0 auto; }
.legal-doc p { color: var(--body); font-size: .95rem; line-height: 1.78; margin: 0 0 .85rem; }
.legal-doc ul { margin: 0 0 1rem; padding: 0; list-style: none; display: grid; gap: .45rem; }
.legal-doc ul li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--ink-2); font-weight: 500; line-height: 1.6; }
.legal-doc ul li i { color: #00B58A; font-size: .76rem; margin-top: 5px; flex: 0 0 auto; }
.legal-doc a { color: var(--violet); font-weight: 700; }
.svc2-card {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none; cursor: pointer;
  border-radius: 26px;
  padding: 2.1rem 1.8rem 1.8rem;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 22px 48px -18px rgba(35, 39, 90, .35);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
  z-index: 1;
}
.svc2-card:hover { transform: translateY(-12px) scale(1.015); box-shadow: 0 36px 70px -22px rgba(35, 39, 90, .45); }
.svc2-card::before {            /* corner glow blob */
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  transition: transform .6s ease;
}
.svc2-card:hover::before { transform: scale(1.7); }
.svc2-card::after {             /* dotted texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.8px, transparent 1.8px);
  background-size: 24px 24px;
  opacity: .5; pointer-events: none;
}
.sv-g1 { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.sv-g2 { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
.sv-g3 { background: linear-gradient(135deg, #FF7AC6, #FF5E9C); }
.sv-g4 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.sv-g5 { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.sv-g6 { background: linear-gradient(135deg, #FFA63D, #FFB84D); }

.svc2-ico {
  position: relative; z-index: 2;
  width: 64px; height: 64px;
  border-radius: 19px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .22);
  border: 2px solid rgba(255, 255, 255, .45);
  font-size: 1.6rem; color: #fff;
  margin-bottom: 1.2rem;
  animation: floatY 5.5s ease-in-out infinite;
}
.svc2-card h3 { position: relative; z-index: 2; color: #fff; font-size: 1.3rem; margin-bottom: .55rem; }
.svc2-card > p { position: relative; z-index: 2; color: rgba(255, 255, 255, .92); font-size: .94rem; margin-bottom: 1rem; font-weight: 500; }
.svc2-list { position: relative; z-index: 2; list-style: none; padding: 0; margin: 0 0 1.2rem; }
.svc2-list li {
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .88rem;
  color: #fff; padding: .24rem 0;
}
.svc2-list li i {
  width: 20px; height: 20px; flex: 0 0 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; font-size: .66rem;
}
.sv-g1 .svc2-list i { color: #6C63FF; } .sv-g2 .svc2-list i { color: #00B2FF; }
.sv-g3 .svc2-list i { color: #FF5E9C; } .sv-g4 .svc2-list i { color: #FF6B6B; }
.sv-g5 .svc2-list i { color: #00C9A7; } .sv-g6 .svc2-list i { color: #FFA63D; }
.svc2-link {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 800; font-size: .92rem;
  border-bottom: 2.5px solid rgba(255, 255, 255, .6);
  padding-bottom: .2rem;
}
.svc2-card:hover .svc2-link { color: #fff; border-color: #fff; }
.svc2-link i { transition: transform .3s ease; }
.svc2-card:hover .svc2-link i { transform: translateX(6px); }

/* services owl carousel */
.services-owl { position: relative; }
.services-owl:not(.owl-loaded) {            /* pre-init / no-JS fallback grid */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.services-owl .owl-stage { display: flex; }
.services-owl .owl-item { float: none; display: flex; }
.services-owl .owl-item .svc2-card { width: 100%; }
/* breathing room inside owl's overflow box so hover-lift + shadows aren't clipped */
.services-owl .owl-stage-outer { padding: 22px 8px 16px; margin: -22px -8px -16px; }
.services-owl .owl-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2.2rem; }
.services-owl .owl-dot {
  width: 11px; height: 11px;
  border-radius: 20px; border: 0; padding: 0;
  background: #D9D6FF;
  transition: all .35s ease;
  cursor: pointer;
}
.services-owl .owl-dot span { display: none; }
.services-owl .owl-dot.active { width: 36px; background: var(--g-violet); }

/* ───────────────────────── 09. WHY US (pink) ─── */
.why2-visual { position: relative; padding: 1rem; }
.frame {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 36px 80px -26px rgba(120, 20, 60, .45);
  overflow: hidden;
  animation: floatY 8s ease-in-out infinite;
  position: relative; z-index: 2;
}
.frame-top {
  display: flex; gap: 7px; align-items: center;
  padding: 14px 18px;
  border-bottom: 2px solid #FFE9F4;
}
.frame-top span { width: 12px; height: 12px; border-radius: 50%; }
.frame-top span:nth-child(1) { background: #FF6B6B; }
.frame-top span:nth-child(2) { background: #FFB84D; }
.frame-top span:nth-child(3) { background: #00F5A0; }
.frame-top i { font-style: normal; margin-left: 10px; font-size: .72rem; font-weight: 800; color: var(--muted); background: #FFF1F7; border-radius: 20px; padding: .2rem .8rem; }
.frame-body { padding: 1.3rem 1.4rem 1.5rem; }
.fb-row { display: grid; grid-template-columns: 110px 1fr 44px; gap: .7rem; align-items: center; margin-bottom: .95rem; }
.fb-row span { font-size: .8rem; font-weight: 800; color: var(--ink-2); }
.fb-row b { font-size: .78rem; font-weight: 800; color: var(--coral); text-align: right; }
.fb-track { height: 12px; border-radius: 10px; background: #FFE9F2; overflow: hidden; }
.fb-track i { display: block; height: 100%; width: var(--w, 50%); border-radius: 10px; background: linear-gradient(90deg, var(--c1, #FF6B6B), var(--c2, #FF7AC6)); }
.fb-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.fb-badge {
  background: var(--g-pinkrise); color: #fff;
  border-radius: 30px; padding: .4rem 1rem;
  font-weight: 800; font-size: .74rem;
  box-shadow: 0 10px 22px -8px rgba(255, 107, 107, .55);
}
.fb-stars { color: var(--amber); font-size: .9rem; }

.why2-float {
  position: absolute; z-index: 3;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 46px -16px rgba(120, 20, 60, .5);
  padding: .7rem 1rem;
  display: flex; align-items: center; gap: .6rem;
  font-weight: 800; color: var(--ink); font-size: .84rem;
  animation: floatY 6.4s ease-in-out infinite;
}
.why2-float small { display: block; color: var(--muted); font-weight: 700; font-size: .66rem; }
.wq-1 { top: -10px; right: -6px; animation-delay: .5s; }
.wq-2 { bottom: -14px; left: -2px; animation-delay: 1.1s; }

.feat2 {
  display: flex; align-items: flex-start; gap: .8rem;
  background: rgba(255, 255, 255, .97);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  height: 100%;
  box-shadow: 0 14px 34px -16px rgba(120, 20, 60, .4);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.feat2:hover { transform: translateY(-6px); box-shadow: 0 24px 46px -18px rgba(120, 20, 60, .5); }
.feat2-ico {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.05rem;
}
.feat2 h4 { font-size: .98rem; margin-bottom: .1rem; }
.feat2 p { font-size: .8rem; margin: 0; color: var(--muted); font-weight: 600; }

/* innovative expanding feature panels (scoped to .exp-feat) */
.exp-feat { display: flex; gap: .8rem; height: 360px; }
.exp-panel {
  --ef: #6C63FF; --ef-g: var(--g-violet);
  position: relative; overflow: hidden;
  flex: 1 1 0; min-width: 0;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid #ECEAFF;
  box-shadow: var(--sh-sm);
  cursor: pointer; outline: none;
  transition: flex-grow .6s cubic-bezier(.7,0,.2,1), box-shadow .5s ease, border-color .5s ease;
}
.exp-panel::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--ef-g); opacity: 0; transition: opacity .5s ease;
}
.exp-panel.active { flex: 5 1 0; border-color: transparent; box-shadow: 0 26px 52px -18px color-mix(in srgb, var(--ef) 60%, transparent); }
.exp-panel.active::after { opacity: 1; }
.exp-collapsed { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; height: 100%; padding: 1.5rem .4rem; transition: opacity .3s ease; }
.exp-panel.active .exp-collapsed { opacity: 0; pointer-events: none; }
.exp-ic { width: 50px; height: 50px; flex: 0 0 50px; border-radius: 15px; display: grid; place-items: center; background: var(--ef-g); color: #fff; font-size: 1.3rem; box-shadow: 0 12px 24px -10px color-mix(in srgb, var(--ef) 60%, transparent); }
.exp-vtitle { writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 1.3rem; font-family: var(--ff-head); font-weight: 800; font-size: 1rem; color: var(--ink); white-space: nowrap; }
.exp-vnum { margin-top: auto; font-family: var(--ff-head); font-weight: 800; font-size: .8rem; color: color-mix(in srgb, var(--ef) 55%, #C9C5E8); }
.exp-full { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity .45s ease .15s; }
.exp-panel.active .exp-full { opacity: 1; visibility: visible; }
.exp-full .exp-ic { width: 60px; height: 60px; font-size: 1.55rem; margin-bottom: 1.2rem; background: rgba(255, 255, 255, .22); box-shadow: none; }
.exp-full h3 { color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; margin: 0 0 .55rem; white-space: nowrap; }
.exp-full p { color: rgba(255, 255, 255, .94); font-size: .95rem; line-height: 1.6; margin: 0; max-width: 92%; }
.exp-num { position: absolute; top: 1.5rem; right: 1.7rem; z-index: 4; font-family: var(--ff-head); font-weight: 800; font-size: 1rem; color: rgba(255, 255, 255, .55); }
.exp-watermark { position: absolute; right: -12px; bottom: -26px; z-index: 1; font-size: 8.5rem; line-height: 1; color: #fff; opacity: .12; pointer-events: none; }
.ef-1 { --ef: #6C63FF; --ef-g: var(--g-violet); }
.ef-2 { --ef: #00B2FF; --ef-g: linear-gradient(135deg, #00B2FF, #00D4FF); }
.ef-3 { --ef: #FF8A3D; --ef-g: var(--g-fire); }
.ef-4 { --ef: #FF5E9C; --ef-g: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.ef-5 { --ef: #00C9A7; --ef-g: linear-gradient(135deg, #00C9A7, #00F5A0); }
.ef-6 { --ef: #5B8CFF; --ef-g: linear-gradient(135deg, #5B8CFF, #7B61FF); }
@media (max-width: 767.98px) {
  .exp-feat { flex-direction: column; height: 660px; gap: .7rem; }
  .exp-panel { border-radius: 18px; }
  .exp-collapsed { flex-direction: row; align-items: center; gap: .8rem; height: 100%; padding: 0 1.05rem; }
  .exp-collapsed .exp-ic { width: 40px; height: 40px; flex: 0 0 40px; font-size: 1.1rem; border-radius: 12px; }
  .exp-vtitle { writing-mode: horizontal-tb; transform: none; margin: 0; flex: 1; min-width: 0; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .exp-vnum { margin: 0; font-size: .85rem; }
  .exp-full { padding: 1.5rem 1.35rem; }
  .exp-full .exp-ic { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: .85rem; }
  .exp-full h3 { white-space: normal; font-size: 1.25rem; margin-bottom: .45rem; }
  .exp-full p { font-size: .9rem; max-width: 100%; }
  .exp-num { font-size: .9rem; }
}

/* ───────────────────────── 10. PROCESS (white + rainbow steps) ─── */
.sec-process { background: #fff; }
.step2-card {
  --sc: #6C63FF;
  position: relative;
  height: 100%;
  background: #fff;
  border: 2.5px solid color-mix(in srgb, var(--sc) 30%, #fff);
  border-top: 7px solid var(--sc);
  border-radius: 22px;
  padding: 1.7rem 1.5rem 1.5rem;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
  overflow: hidden;
}
.step2-card:hover { transform: translateY(-9px); box-shadow: 0 26px 54px -20px color-mix(in srgb, var(--sc) 55%, transparent); }
.step2-num {
  position: absolute; top: .4rem; right: 1rem;
  font-family: var(--ff-head);
  font-size: 4.4rem; font-weight: 800;
  color: color-mix(in srgb, var(--sc) 14%, #fff);
  line-height: 1;
  pointer-events: none;
}
.step2-ico {
  width: 56px; height: 56px;
  border-radius: 17px;
  display: grid; place-items: center;
  background: var(--sc);
  color: #fff; font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 14px 28px -10px color-mix(in srgb, var(--sc) 70%, transparent);
}
.step2-card h4 { font-size: 1.12rem; margin-bottom: .4rem; }
.step2-card p { font-size: .88rem; margin: 0; }
.st2-1 { --sc: #6C63FF; } .st2-2 { --sc: #FF7AC6; } .st2-3 { --sc: #00B2FF; }
.st2-4 { --sc: #FF6B6B; } .st2-5 { --sc: #00C9A7; } .st2-6 { --sc: #FFA63D; }

/* ───────────────────────── 11. TECHNOLOGIES (blue→cyan + chips) ─── */
.marquee2 {
  overflow: hidden;
  padding: 14px 0;
  position: relative; z-index: 2;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee2-track { display: flex; gap: 18px; width: max-content; animation: scrollX 34s linear infinite; }
.m2-rev .marquee2-track { animation: scrollX 40s linear infinite reverse; }
.marquee2:hover .marquee2-track { animation-play-state: paused; }
.tech-chip2 {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff;
  border-radius: 60px;
  padding: .5rem 1.35rem;
  font-family: var(--ff-head);
  font-weight: 800; font-size: .95rem; color: var(--ink);
  box-shadow: 0 14px 30px -14px rgba(10, 40, 90, .42);
  white-space: nowrap;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.tech-chip2:hover { transform: translateY(-6px) scale(1.05); }
.tech-chip2 i { font-size: 1.3rem; line-height: 1; }
.c-aws { color: #FF9900; } .c-gcp { color: #4285F4; } .c-oai { color: #10A37F; } .c-claude { color: #D97757; }

/* ───────────────────────── 12. PORTFOLIO (warm + poster cards) ─── */
.post-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 22px; aspect-ratio: 4 / 4.6; min-height: 330px;
  text-decoration: none; color: #fff; background: #161a33;
  box-shadow: 0 24px 52px -22px rgba(20, 24, 70, .45);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}
.post-card:hover { transform: translateY(-12px); box-shadow: 0 44px 82px -26px rgba(20, 24, 70, .55); }
.post-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.post-card:hover .post-img { transform: scale(1.09); }
.post-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,13,35,.94) 6%, rgba(11,13,35,.55) 34%, rgba(11,13,35,.06) 62%, rgba(11,13,35,.16) 100%);
}
.post-cat {
  position: absolute; top: 15px; left: 15px; z-index: 3;
  display: inline-block; color: #fff;
  font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 30px; padding: .34rem .85rem;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .55);
}
.post-cat.bg1 { background: #6C63FF; } .post-cat.bg2 { background: #FF5E9C; }
.post-cat.bg3 { background: #00A3E0; } .post-cat.bg4 { background: #00B58A; }
.post-cat.bg5 { background: #F08A24; } .post-cat.bg6 { background: #7B61FF; }
.post-arrow {
  position: absolute; top: 13px; right: 13px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--ink); font-size: .95rem;
  opacity: 0; transform: translate(8px, -8px);
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.post-card:hover .post-arrow { opacity: 1; transform: none; }
.post-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.35rem 1.4rem 1.5rem; }
.post-title { font-size: 1.18rem; line-height: 1.25; margin: 0; color: #fff; }
.post-reveal {
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transform: translateY(6px);
  transition: max-height .55s ease, opacity .45s ease, transform .55s ease, margin-top .45s ease;
}
.post-card:hover .post-reveal { max-height: 12rem; opacity: 1; transform: none; margin-top: .55rem; }
.post-desc { font-size: .86rem; color: rgba(255, 255, 255, .82); margin: 0 0 .8rem; }
.post-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-head); font-weight: 800; font-size: .9rem; color: #fff;
}
.post-link i { transition: transform .3s ease; }
.post-card:hover .post-link i { transform: translateX(5px); }
@media (max-width: 767.98px) {
  .post-card { aspect-ratio: 4 / 4.3; }
  .post-reveal { max-height: 12rem; opacity: 1; transform: none; margin-top: .55rem; }
  .post-arrow { opacity: 1; transform: none; }
}

/* ───────────────────────── 13. TESTIMONIALS (white + bold) ─── */
.sec-testi { background: #fff; }
.sec-testi::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(108, 99, 255, .1) 2px, transparent 2px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.t-slider { position: relative; }
.t-viewport { overflow: hidden; margin: 0 -12px; padding: 16px 12px; cursor: grab; }
.t-viewport.dragging { cursor: grabbing; }
.t-track { display: flex; transition: transform .65s cubic-bezier(.22,1,.36,1); will-change: transform; }
.t-slide { flex: 0 0 33.3333%; padding: 0 12px; }
@media (max-width: 991.98px) { .t-slide { flex-basis: 50%; } }
@media (max-width: 651.98px) { .t-slide { flex-basis: 100%; } }

.t2-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 2.5px solid #ECEAFF;
  border-radius: 24px;
  padding: 2rem 1.7rem 1.7rem;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s ease;
}
.t2-card:hover { transform: translateY(-8px); border-color: var(--violet); box-shadow: 0 26px 54px -20px rgba(108, 99, 255, .4); }
.t2-quote {
  position: absolute; top: -20px; left: 24px;
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--g-violet);
  color: #fff; font-size: 1.3rem;
  box-shadow: 0 12px 26px -8px rgba(108, 99, 255, .6);
}
.t2-stars { color: var(--amber); font-size: .9rem; display: inline-flex; gap: 3px; margin: .4rem 0 .9rem; }
.t2-card p { font-size: .95rem; color: var(--ink-2); font-weight: 500; margin-bottom: 1.2rem; }
.t2-user { display: flex; align-items: center; gap: .85rem; }
.t2-av {
  width: 50px; height: 50px; flex: 0 0 50px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: #fff; font-family: var(--ff-head); font-weight: 800;
  box-shadow: 0 10px 22px -8px rgba(35, 39, 90, .35);
}
.av-1 { background: var(--g-violet); } .av-2 { background: var(--g-pinkrise); }
.av-3 { background: var(--g-green); } .av-4 { background: var(--g-warm); }
.av-5 { background: var(--g-bluecyan); } .av-6 { background: var(--g-fire); }
.t2-user strong { display: block; font-family: var(--ff-head); color: var(--ink); font-size: .95rem; }
.t2-user small { color: var(--muted); font-weight: 700; font-size: .78rem; }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.t-nav {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--violet);
  background: #fff; color: var(--violet);
  font-size: 1.15rem;
  transition: all .3s ease;
}
.t-nav:hover { background: var(--g-violet); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(108, 99, 255, .6); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 11px; height: 11px;
  border-radius: 20px; border: 0; padding: 0;
  background: #D9D6FF;
  transition: all .35s ease; cursor: pointer;
}
.t-dot.active { width: 34px; background: var(--g-violet); }

/* ───────────────────────── 14. ACHIEVEMENTS (mint, ink text) ─── */
.sec-green .sec-title2 { color: var(--ink); }
.sec-green .sec-sub2 { color: rgba(20, 50, 60, .75); }
.ach2-card {
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem 1.4rem 1.9rem;
  box-shadow: 0 24px 50px -20px rgba(0, 110, 110, .45);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
  position: relative; overflow: hidden;
}
.ach2-card:hover { transform: translateY(-10px) rotate(-.5deg); box-shadow: 0 36px 70px -24px rgba(0, 110, 110, .55); }
.ach2-ico {
  width: 74px; height: 74px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 1.8rem;
  animation: floatY 5.6s ease-in-out infinite;
}
.ag-1 { background: var(--g-violet); box-shadow: 0 16px 32px -10px rgba(108, 99, 255, .6); }
.ag-2 { background: var(--g-fire); box-shadow: 0 16px 32px -10px rgba(255, 107, 107, .6); animation-delay: .3s; }
.ag-3 { background: var(--g-bluecyan); box-shadow: 0 16px 32px -10px rgba(0, 178, 255, .6); animation-delay: .6s; }
.ag-4 { background: var(--g-pinkrise); box-shadow: 0 16px 32px -10px rgba(255, 94, 156, .6); animation-delay: .9s; }
.ach2-card h4 { font-size: 1.08rem; margin-bottom: .45rem; }
.ach2-card p { font-size: .86rem; margin: 0; }

/* ───────────────────────── 15. FAQ (white + thick accents) ─── */
.sec-faq {
  background:
    repeating-linear-gradient(-45deg, rgba(108, 99, 255, .045) 0 18px, transparent 18px 48px),
    #fff;
}
.faq-acc { display: flex; flex-direction: column; gap: 1rem; counter-reset: faqnum; }
.faq-acc .accordion-item {
  counter-increment: faqnum;
  background: #fff;
  border: 2.5px solid #ECEAFF !important;
  border-left: 7px solid var(--violet) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .35s ease, border-color .35s ease;
}
.faq-acc .accordion-item:nth-child(2) { border-left-color: var(--pink) !important; }
.faq-acc .accordion-item:nth-child(3) { border-left-color: var(--cyan) !important; }
.faq-acc .accordion-item:nth-child(4) { border-left-color: var(--coral) !important; }
.faq-acc .accordion-item:nth-child(5) { border-left-color: var(--mint) !important; }
.faq-acc .accordion-item:nth-child(6) { border-left-color: var(--amber) !important; }
.faq-acc .accordion-item:hover { box-shadow: var(--sh-md); }
.faq-acc .accordion-button {
  display: flex; align-items: center; gap: .85rem;
  background: transparent;
  font-family: var(--ff-head);
  font-weight: 800; font-size: 1.02rem;
  color: var(--ink);
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}
/* numbered badge */
.faq-acc .accordion-button::before {
  content: counter(faqnum, decimal-leading-zero);
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 11px;
  background: var(--g-violet);
  color: #fff;
  font-family: var(--ff-head);
  font-size: .9rem; font-weight: 800; letter-spacing: .02em;
  box-shadow: 0 8px 18px -8px rgba(108,99,255,.7);
}
.faq-acc .accordion-item:nth-child(2) .accordion-button::before { background: linear-gradient(135deg, var(--pink), #ff9ad4); box-shadow: 0 8px 18px -8px rgba(255,122,198,.7); }
.faq-acc .accordion-item:nth-child(3) .accordion-button::before { background: linear-gradient(135deg, var(--cyan), #5fe0ff); box-shadow: 0 8px 18px -8px rgba(0,212,255,.7); }
.faq-acc .accordion-item:nth-child(4) .accordion-button::before { background: linear-gradient(135deg, var(--coral), #ff9d6e); box-shadow: 0 8px 18px -8px rgba(255,107,107,.7); }
.faq-acc .accordion-item:nth-child(5) .accordion-button::before { background: linear-gradient(135deg, var(--mint), #4dffce); box-shadow: 0 8px 18px -8px rgba(0,201,167,.7); }
.faq-acc .accordion-item:nth-child(6) .accordion-button::before { background: linear-gradient(135deg, var(--amber), #ffd17a); box-shadow: 0 8px 18px -8px rgba(255,184,77,.7); }
.faq-acc .accordion-button:not(.collapsed) { color: var(--violet); }
.faq-acc .accordion-button::after {
  background-image: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--g-violet);
  color: #fff; font-size: .85rem;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.faq-acc .accordion-button:not(.collapsed)::after { transform: rotate(45deg); }
.faq-acc .accordion-body { padding: 0 1.5rem 1.4rem; font-size: .96rem; }

/* ───────────────────────── 16. CTA (animated rainbow) ─── */
.cta2 {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: var(--g-rainbow);
  background-size: 300% 300%;
  animation: gradPan 12s ease-in-out infinite;
}
.cta2::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 2px, transparent 2px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta2 .container { position: relative; z-index: 2; }
.cta2-title {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 1rem;
  text-shadow: 0 6px 30px rgba(35, 39, 90, .3);
}
.cta2-sub { color: rgba(255, 255, 255, .95); font-size: 1.18rem; margin-bottom: 2.3rem; font-weight: 600; }
.cta2-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta2-meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; justify-content: center; color: #fff; font-weight: 800; font-size: .92rem; }
.cta2-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.c2-ring {
  position: absolute; top: -70px; left: -50px;
  width: 240px; height: 240px;
  border: 22px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  animation: spinSlow 28s linear infinite;
}
.c2-circle { position: absolute; bottom: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .12); animation: floatY 9s ease-in-out infinite; }
.c2-spark { position: absolute; color: #fff; text-shadow: 0 0 18px rgba(255, 255, 255, .9); animation: twinkle 2.6s ease-in-out infinite; }
.c2-s1 { top: 20%; right: 16%; font-size: 1.6rem; }
.c2-s2 { bottom: 18%; left: 18%; font-size: 1.1rem; animation-delay: 1s; }

/* ───────────────────────── 17. FOOTER (deep violet, curved top — never black) ─── */
.footer2 { position: relative; background: transparent; }
.f-curve {
  display: block;
  width: 100%;
  height: clamp(70px, 13vw, 150px);
  margin-bottom: -2px;            /* kill the hairline seam against .f-dark */
}
.f-dark {
  position: relative;
  background:
    radial-gradient(42% 38% at 10% 28%, rgba(108, 99, 255, .4), transparent 62%),
    radial-gradient(46% 42% at 88% 88%, rgba(0, 212, 255, .22), transparent 62%),
    linear-gradient(180deg, #2D2466 0%, #261E59 55%, #1F1847 100%);
  color: rgba(255, 255, 255, .72);
  overflow: hidden;
}
.f-dark::before {                  /* faint dot texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.8px, transparent 1.8px);
  background-size: 26px 26px;
  pointer-events: none;
}
.f-dark .container { position: relative; padding-top: 10px; z-index: 1; text-align: center; }
/* footer floating business icons (background) */
.f-floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.f-floaters i { position: absolute; color: rgba(255, 255, 255, .14); animation: floatY 7s ease-in-out infinite; }
.f-floaters i:nth-child(1)  { top: 8%;  left: 3%;  font-size: 3.2rem; animation-delay: 0s; }
.f-floaters i:nth-child(2)  { top: 60%; left: 6%;  font-size: 2.5rem; animation-delay: .5s; }
.f-floaters i:nth-child(3)  { top: 26%; left: 13%; font-size: 2rem;   animation-delay: 1.1s; }
.f-floaters i:nth-child(4)  { top: 87%; left: 20%; font-size: 2.8rem; animation-delay: .8s; }
.f-floaters i:nth-child(5)  { top: 11%; left: 28%; font-size: 2.2rem; animation-delay: 1.6s; }
.f-floaters i:nth-child(6)  { top: 47%; left: 24%; font-size: 2.6rem; animation-delay: .3s; }
.f-floaters i:nth-child(7)  { top: 74%; left: 36%; font-size: 2rem;   animation-delay: 1.3s; }
.f-floaters i:nth-child(8)  { top: 20%; left: 43%; font-size: 2.4rem; animation-delay: .9s; }
.f-floaters i:nth-child(9)  { top: 54%; left: 49%; font-size: 3rem;   animation-delay: 1.8s; }
.f-floaters i:nth-child(10) { top: 85%; left: 55%; font-size: 2.2rem; animation-delay: .6s; }
.f-floaters i:nth-child(11) { top: 13%; left: 59%; font-size: 2rem;   animation-delay: 1.4s; }
.f-floaters i:nth-child(12) { top: 39%; left: 65%; font-size: 2.6rem; animation-delay: .2s; }
.f-floaters i:nth-child(13) { top: 69%; left: 73%; font-size: 2.8rem; animation-delay: 2s; }
.f-floaters i:nth-child(14) { top: 19%; left: 79%; font-size: 2.2rem; animation-delay: 1s; }
.f-floaters i:nth-child(15) { top: 51%; left: 85%; font-size: 2.4rem; animation-delay: .4s; }
.f-floaters i:nth-child(16) { top: 81%; left: 90%; font-size: 2.6rem; animation-delay: 1.2s; }
.f-floaters i:nth-child(17) { top: 9%;  left: 92%; font-size: 2rem;   animation-delay: 1.7s; }
.f-floaters i:nth-child(18) { top: 35%; left: 7%;  font-size: 1.9rem; animation-delay: .7s; }
.f-floaters i:nth-child(19) { top: 91%; left: 43%; font-size: 2.2rem; animation-delay: 1.5s; }
.f-floaters i:nth-child(20) { top: 31%; left: 37%; font-size: 1.8rem; animation-delay: .1s; }
.f-floaters i:nth-child(21) { top: 63%; left: 61%; font-size: 2rem;   animation-delay: 1.9s; }
.f-floaters i:nth-child(22) { top: 89%; left: 76%; font-size: 2.4rem; animation-delay: .55s; }

/* on-dark text overrides */
.f-dark .logo-word { color: #fff; }
.f-dark .f2-about { color: rgba(255, 255, 255, .72); }
.f-dark .f2-title { color: #fff; }
.f-dark .f2-links a { color: rgba(255, 255, 255, .72); }
.f-dark .f2-links a:hover { color: #00D4FF; }
.f-dark .f2-contact li { color: rgba(255, 255, 255, .72); }
.f-dark .f2-contact a { color: rgba(255, 255, 255, .72); }
.f-dark .f2-contact a:hover { color: #00D4FF; }
.f-dark .f2-contact i { color: #00D4FF; }
.f-dark .f2-bottom { border-top: 0; }
.f-dark .f2-bottom p { color: #fff; text-shadow: 0 1px 5px rgba(0,0,0,.35); position: relative; z-index: 1; }
.f-dark .f2-legal a { color: rgba(255, 255, 255, .66); }
.f-dark .f2-legal a:hover { color: #fff; }
.f-dark .f2-legal span { color: rgba(255, 255, 255, .35); }
.f-dark .f2-social a:hover { box-shadow: 0 14px 28px -10px rgba(0, 0, 0, .5); }

.news2 {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  align-items: center; justify-content: space-between;
  background: var(--g-violet);
  border-radius: 26px;
  padding: 2rem 2.3rem;
  margin-bottom: 3.6rem;
  box-shadow: 0 26px 56px -20px rgba(108, 99, 255, .55);
  position: relative; overflow: hidden;
}
.news2::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.16) 2px, transparent 2px);
  background-size: 26px 26px;
}
.news2 > div { position: relative; z-index: 1; }
.news2 h3 { color: #fff; font-size: 1.45rem; margin-bottom: .25rem; }
.news2 p { color: rgba(255, 255, 255, .9); margin: 0; font-size: .94rem; font-weight: 500; }
.news-form { display: flex; gap: .7rem; min-width: min(440px, 100%); position: relative; z-index: 1; }
.news-form .form-control {
  border-radius: 50px;
  border: 0;
  padding: .9rem 1.5rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2.5px rgba(255, 255, 255, .0);
}
.news-form .form-control:focus { box-shadow: 0 0 0 4px rgba(255, 255, 255, .35); }
.news-form .btn { white-space: nowrap; }
.news-note { display: block; margin-top: .5rem; font-weight: 800; color: #fff; min-height: 1.2em; position: relative; z-index: 1; }

/* footer centered brand block */
.f2-brand { padding: .5rem 0 1rem; }
.f2-about { font-size: .9rem; max-width: 500px; margin: .55rem auto 0; color: rgba(255,255,255,.68); line-height: 1.6; }
.f2-social { display: flex; gap: .6rem; margin-top: .9rem; justify-content: center; flex-wrap: wrap; }
.f2-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 1rem;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.f2-social a:nth-child(1) { background: #6C63FF; }
.f2-social a:nth-child(2) { background: #E1306C; }
.f2-social a:nth-child(3) { background: #FF0000; }
.f2-social a:nth-child(4) { background: #0077B5; }
.f2-social a:nth-child(5) { background: #25D366; }
.f2-social a:hover { color: #fff; transform: translateY(-5px) rotate(6deg); box-shadow: 0 14px 28px -10px rgba(0,0,0,.45); }
/* footer nav sections */
.f2-nav { border-top: 1px solid rgba(255,255,255,.1); padding: 1.15rem 0; display: flex; flex-direction: column; gap: .85rem; }
.f2-sec-head {
  display: flex; align-items: center; gap: .9rem;
  color: #fff; font-family: var(--ff-head);
  font-size: .98rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.f2-sec-head::before, .f2-sec-head::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.13); }
.f2-sec-head i { font-size: 1.1rem; color: #A99FFF; }
.f2-sec-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .45rem 2.8rem; }
.f2-sec-links a {
  color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: .45rem;
  transition: color .25s ease;
}
.f2-sec-links a::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #6C63FF; flex-shrink: 0; }
.f2-sec-links a:hover { color: #fff; }

.f2-title { font-size: 1rem; margin-bottom: 1.15rem; position: relative; display: inline-block; }
.f2-title::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 30px; height: 3.5px; border-radius: 4px;
  background: var(--g-text);
}
.f2-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.f2-links a { color: var(--body); font-weight: 700; font-size: .92rem; transition: color .25s ease, padding-left .3s ease; }
.f2-links a:hover { color: var(--violet); padding-left: 8px; }
.f2-contact li { display: flex; gap: .6rem; align-items: baseline; font-size: .9rem; font-weight: 700; color: var(--body); }
.f2-contact a { color: var(--body); font-weight: 700; }
.f2-contact a:hover { color: var(--violet); }
.f2-contact i { color: var(--violet); font-size: .85rem; }

.f2-bottom {                   /* aurora-mesh gradient fill */
  background:
    radial-gradient(80% 175% at 6% 0%,   #6C63FF 0%, transparent 58%),
    radial-gradient(75% 160% at 33% 135%, #C13BE8 0%, transparent 56%),
    radial-gradient(82% 168% at 64% -28%, #FF5E9C 0%, transparent 58%),
    radial-gradient(88% 180% at 96% 128%, #00C2D4 0%, transparent 58%),
    linear-gradient(100deg, #5B3FD6, #3E2BB0);
  padding: 1rem 1rem .95rem;
  margin-top: .5rem;
  display: flex; flex-direction: column; gap: .4rem;
  justify-content: center; align-items: center; text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.f2-bottom::before {           /* drifting light sweep */
  content: ''; position: absolute; top: -20%; bottom: -20%; left: 0; width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.20) 48%, rgba(255,255,255,.26) 52%, transparent);
  filter: blur(8px); pointer-events: none;
  animation: footerSweep 7s linear infinite;
}
@keyframes footerSweep {
  0%   { transform: translateX(-130%) skewX(-12deg); }
  100% { transform: translateX(300%)  skewX(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .f2-bottom::before { animation: none; opacity: .55; transform: translateX(40%) skewX(-12deg); }
}
.f2-bottom p { margin: 0; font-size: .88rem; font-weight: 700; }
.f-heart { color: var(--coral); display: inline-block; animation: heartBeat 1.6s ease-in-out infinite; }
.f2-legal { display: flex; gap: .7rem; align-items: center; font-size: .85rem; }
.f2-legal a { color: var(--body); font-weight: 700; }
.f2-legal a:hover { color: var(--violet); }
.f2-legal span { color: var(--muted); }

/* ───────────────────────── 18. BACK TO TOP ─── */
.to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 54px; height: 54px;
  border: 0; border-radius: 50%;
  background: var(--g-fire);
  color: #fff; font-size: 1.2rem;
  box-shadow: 0 16px 36px -12px rgba(255, 107, 107, .65);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all .4s cubic-bezier(.22,1,.36,1);
  z-index: 1040;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); }
.tt-ring { position: absolute; inset: -4px; transform: rotate(-90deg); }
.tt-ring circle {
  stroke: rgba(255, 255, 255, .95);
  stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 132;
  stroke-dashoffset: var(--p, 132);
  transition: stroke-dashoffset .2s linear;
}


/* ───────────────────────── 18a. MOBILE BOTTOM DOCK ─── */
.mobile-dock {
  position: fixed;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 1028;
  display: flex; align-items: center; justify-content: space-around;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,255,.9)),
    radial-gradient(circle at 50% -40%, rgba(255,122,198,.24), transparent 48%);
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  border-radius: 22px;
  padding: .28rem .48rem calc(.28rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 16px 38px -18px rgba(20,24,70,.55), inset 0 1px 0 rgba(255,255,255,.92);
  overflow: visible;
}
.mobile-dock::before {
  content: "";
  position: absolute;
  inset: -28px 12% auto;
  height: 52px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,.18), rgba(108,99,255,.12) 44%, transparent 72%);
  filter: blur(12px);
  animation: dockAuroraSweep 5s ease-in-out infinite;
  pointer-events: none;
}
.dock-link {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: rgba(0,150,210,.62);
  font-size: 1.42rem;
  min-width: 54px; height: 48px;
  justify-content: center;
  padding: .18rem .3rem;
  border-radius: 16px;
  transition: color .25s ease, transform .2s ease, background .25s ease, box-shadow .25s ease;
}
.dock-link i {
  line-height: 1;
  color: rgba(0,150,210,.62);
  filter: drop-shadow(0 5px 8px rgba(35,39,90,.12));
  transition: color .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1), filter .25s ease;
}
.dock-link span { font-size: .58rem; line-height: 1; font-weight: 800; letter-spacing: .02em; margin-top: 1px; }
.dock-link:hover { color: var(--violet); background: rgba(0,212,255,.08); }
.dock-link:hover i { color: var(--violet); transform: translateY(-1px) scale(1.08); }
.dock-link:active { transform: scale(.9); }
.dock-link.active {
  color: #FF7A1A;
  background:
    radial-gradient(circle at 22% 8%, rgba(255,184,77,.42), transparent 38%),
    radial-gradient(circle at 78% 100%, rgba(255,107,107,.28), transparent 42%),
    rgba(255,255,255,.72);
  box-shadow: 0 14px 28px -20px rgba(255,122,26,.8), 0 0 30px rgba(255,184,77,.28);
  animation: dockActiveLift 2.4s ease-in-out infinite, dockActiveGlow 2.6s ease-in-out infinite;
}
.dock-link.active i {
  color: transparent;
  background: linear-gradient(135deg, #FF6B2C, var(--amber));
  -webkit-background-clip: text; background-clip: text;
  transform: translateY(-2px) scale(1.16);
  filter: drop-shadow(0 7px 10px rgba(255,122,26,.3));
}
.dock-link.active span {
  color: transparent;
  background: linear-gradient(90deg, #FF6B2C, var(--amber));
  -webkit-background-clip: text; background-clip: text;
}
.dock-link.active::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 52px; height: 38px;
  border-radius: 18px 22px 16px 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,184,77,.46), transparent 44%),
    radial-gradient(circle at 74% 70%, rgba(255,107,107,.28), transparent 48%);
  filter: blur(5px);
  transform: translateX(-50%);
  animation: dockActiveAura 2.4s ease-in-out infinite;
  pointer-events: none;
}
.dock-fab {
  position: relative;
  width: 56px; height: 56px; flex: 0 0 56px;
  margin-top: -32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 45%, #FFB84D 100%);
  color: #fff; font-size: 1.62rem;
  border: 0;
  box-shadow: 0 15px 30px -11px rgba(255,107,107,.72), 0 0 26px rgba(255,142,83,.4);
  transition: transform .25s ease;
}
.dock-fab:hover, .dock-fab:focus { color: #fff; }
.dock-fab:active { transform: scale(.92); }
.dock-fab::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,142,83,.38), transparent 68%);
  animation: fabPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%        { transform: scale(.82); opacity: .9; }
  70%, 100% { transform: scale(1.32); opacity: 0; }
}
@keyframes dockActiveLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@keyframes dockActiveGlow {
  0%, 100% { box-shadow: 0 14px 28px -20px rgba(255,122,26,.72), 0 0 22px rgba(255,184,77,.18); }
  50% { box-shadow: 0 16px 32px -20px rgba(255,122,26,.95), 0 0 38px rgba(255,184,77,.38); }
}
@keyframes dockActiveAura {
  0%, 100% { opacity: .38; transform: translate(-50%, -50%) scale(.86) rotate(-4deg); }
  50% { opacity: .9; transform: translate(-50%, -50%) scale(1.08) rotate(4deg); }
}
@keyframes dockAuroraSweep {
  0%, 100% { transform: translateX(-18%) scaleX(.85); opacity: .55; }
  50% { transform: translateX(18%) scaleX(1.08); opacity: .95; }
}
@media (max-width: 991.98px) {
  body { padding-bottom: 88px; }            /* keep content clear of the dock */
  .to-top { bottom: 100px; right: 18px; }
}

/* ── Floating "Request a Quote" button — same circle style as WhatsApp (desktop) ── */
.quote-fab {
  position: fixed;
  right: 26px; bottom: 158px;          /* stacked just above the WhatsApp fab */
  width: 56px; height: 56px;
  border: 0; border-radius: 50%;
  background: var(--g-violet);
  color: #fff; font-size: 1.5rem;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(108, 99, 255, .6);
  z-index: 1041;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.quote-fab:hover { color: #fff; transform: scale(1.07) translateY(-2px); box-shadow: 0 18px 38px -8px rgba(108, 99, 255, .8); }
.quote-fab:active { transform: scale(.95); }
.quote-fab::after {                     /* attention pulse ring */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(108, 99, 255, .5);
  animation: waPulse 2.4s ease-out infinite; pointer-events: none;
}
.quote-fab .bi { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .18)); }
.quote-fab-tip {
  position: absolute; right: calc(100% + 14px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff; color: var(--ink);
  padding: .5rem .9rem; border-radius: 12px;
  font-family: var(--ff-head); font-weight: 800; font-size: .8rem; white-space: nowrap;
  box-shadow: 0 14px 30px -12px rgba(20, 24, 70, .4);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.quote-fab-tip::after {                 /* arrow pointing at the button */
  content: ""; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
.quote-fab:hover .quote-fab-tip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@media (max-width: 991.98px) { .quote-fab { display: none; } }

/* ───────────────────────── 18c. WHATSAPP CHAT WIDGET ─── */
.wa-widget { position: fixed; right: 26px; bottom: 90px; z-index: 1042; }
/* hide the WhatsApp widget + Request-a-Quote FAB on the enquiry form steps only (body.enq-page) */
.enq-page .wa-widget,
.enq-page .quote-fab { display: none; }

/* floating action button */
.wa-fab {
  position: relative;
  width: 56px; height: 56px;
  border: 0; border-radius: 50%;
  background: linear-gradient(145deg, #2BD96A, #0FA884);
  color: #fff; font-size: 1.65rem;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(15, 168, 132, .6);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.wa-fab:hover { transform: scale(1.07) translateY(-2px); }
.wa-fab:active { transform: scale(.95); }
.wa-fab::after {                              /* attention pulse ring */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(43, 217, 106, .5);
  animation: waPulse 2.4s ease-out infinite; pointer-events: none;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 75%, 100% { transform: scale(1.7); opacity: 0; } }
.wa-fab .bi { position: absolute; transition: opacity .25s, transform .3s; }
.wa-fab-x { opacity: 0; transform: rotate(-90deg) scale(.5); font-size: 1.3rem; }
.wa-widget.open .wa-fab-wa { opacity: 0; transform: rotate(90deg) scale(.5); }
.wa-widget.open .wa-fab-x  { opacity: 1; transform: rotate(0) scale(1); }
.wa-widget.open .wa-fab::after { display: none; }

/* unread badge */
.wa-badge {
  position: absolute; top: -3px; right: -3px;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 9px; background: #FF3B5C; color: #fff;
  font-size: .66rem; font-weight: 800; line-height: 18px; text-align: center;
  box-shadow: 0 0 0 2px #fff;
  transition: opacity .25s, transform .25s;
}
.wa-widget.open .wa-badge { opacity: 0; transform: scale(0); }

/* greeting tooltip bubble */
.wa-bubble-tip {
  position: absolute; right: 70px; bottom: 12px;
  background: #fff; color: #1a1d3a;
  font-size: .8rem; font-weight: 700; white-space: nowrap;
  padding: .55rem .85rem; border-radius: 14px 14px 4px 14px;
  box-shadow: 0 12px 28px -12px rgba(20, 24, 70, .4);
  opacity: 0; transform: translateX(10px) scale(.9); transform-origin: right center;
  transition: opacity .35s, transform .35s; pointer-events: none;
}
.wa-bubble-tip.show { opacity: 1; transform: none; pointer-events: auto; cursor: pointer; }
.wa-widget.open .wa-bubble-tip { opacity: 0 !important; pointer-events: none; }

/* chat card */
.wa-card {
  position: absolute; bottom: 72px; right: 0;
  width: 328px; max-width: calc(100vw - 36px);
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 64px -18px rgba(20, 24, 70, .45);
  transform-origin: bottom right;
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.92);
  transition: opacity .3s ease, transform .4s cubic-bezier(.22,1,.36,1), visibility .3s;
}
.wa-widget.open .wa-card { opacity: 1; visibility: visible; transform: none; }

.wa-card-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; color: #fff;
  background: linear-gradient(135deg, #0FA884, #128C7E);
}
.wa-ava {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 42px;
  background: rgba(255, 255, 255, .2); display: grid; place-items: center; font-size: 1.4rem;
}
.wa-head-info { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.wa-head-name { font-weight: 800; font-size: .96rem; }
.wa-head-status { font-size: .72rem; opacity: .92; display: flex; align-items: center; gap: 5px; }
.wa-online { width: 8px; height: 8px; border-radius: 50%; background: #7CFFB2; animation: waBlink 2s infinite; }
@keyframes waBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.wa-card-close {
  margin-left: auto; background: rgba(255, 255, 255, .16); border: 0; color: #fff;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: .9rem; transition: background .2s;
}
.wa-card-close:hover { background: rgba(255, 255, 255, .3); }

.wa-card-body {
  padding: 18px 14px 14px; background: #E5DDD5;
  background-image: radial-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px);
  background-size: 16px 16px;
  max-height: 290px; overflow-y: auto;
}

/* typing indicator (shows briefly before the greeting) */
.wa-typing {
  display: none; position: relative;
  width: 56px; padding: 12px 14px;
  background: #fff; border-radius: 4px 12px 12px 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}
.wa-typing.show { display: inline-flex; gap: 4px; align-items: center; }
.wa-typing::before {
  content: ""; position: absolute; top: 0; left: -7px;
  border: 7px solid transparent; border-top-color: #fff; border-right-color: #fff;
}
.wa-typing span { width: 7px; height: 7px; border-radius: 50%; background: #b9c0cc; animation: waType 1.2s infinite ease-in-out; }
.wa-typing span:nth-child(2) { animation-delay: .18s; }
.wa-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes waType { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

/* staggered reveal of the message + chips */
.wa-thread .wa-msg, .wa-thread .wa-chip {
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.wa-card-body.revealed .wa-msg { opacity: 1; transform: none; transition-delay: .05s; }
.wa-card-body.revealed .wa-chip { opacity: 1; transform: none; }
.wa-card-body.revealed .wa-chips .wa-chip:nth-child(1) { transition-delay: .18s; }
.wa-card-body.revealed .wa-chips .wa-chip:nth-child(2) { transition-delay: .28s; }
.wa-card-body.revealed .wa-chips .wa-chip:nth-child(3) { transition-delay: .38s; }
.wa-card-body.revealed .wa-chips .wa-chip:nth-child(4) { transition-delay: .48s; }
.wa-msg {
  position: relative; background: #fff; border-radius: 4px 12px 12px 12px;
  padding: 9px 12px 17px; max-width: 90%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
  font-size: .84rem; color: #2a2d4a; line-height: 1.5;
}
.wa-msg::before {
  content: ""; position: absolute; top: 0; left: -7px;
  border: 7px solid transparent; border-top-color: #fff; border-right-color: #fff;
}
.wa-msg p { margin: 0 0 4px; }
.wa-msg p:last-of-type { margin-bottom: 0; }
.wa-msg-from { display: block; font-size: .72rem; font-weight: 800; color: #0FA884; margin-bottom: 3px; }
.wa-msg-time { position: absolute; right: 10px; bottom: 5px; font-size: .62rem; color: #9aa0b0; }

.wa-chips { display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.wa-chip {
  align-self: flex-start; max-width: 94%;
  background: #fff; color: #0F7A66; border: 1.5px solid rgba(15, 168, 132, .35);
  font-size: .8rem; font-weight: 700; text-align: left;
  padding: .5rem .8rem; border-radius: 16px; cursor: pointer;
  box-shadow: 0 2px 6px -3px rgba(20, 24, 70, .2);
  transition: transform .18s, background .2s, color .2s;
}
.wa-chip:hover { background: #0FA884; color: #fff; transform: translateX(3px); }

.wa-card-foot { display: flex; align-items: center; gap: 8px; padding: 10px; background: #F4F6F9; }
.wa-field {
  flex: 1; min-width: 0; border: 0; border-radius: 22px;
  padding: .6rem .9rem; font-size: .84rem; background: #fff;
  box-shadow: inset 0 0 0 1.5px #e3e7ef; outline: none;
}
.wa-field:focus { box-shadow: inset 0 0 0 1.5px #0FA884; }
.wa-send {
  flex: 0 0 40px; width: 40px; height: 40px; border: 0; border-radius: 50%;
  background: linear-gradient(145deg, #2BD96A, #0FA884); color: #fff; font-size: 1rem;
  display: grid; place-items: center; cursor: pointer; transition: transform .2s;
}
.wa-send:hover { transform: scale(1.08); }

/* hide the widget while the fullscreen mobile menu is open */
body.menu-open .wa-widget { opacity: 0; pointer-events: none; }

@media (max-width: 991.98px) {
  .wa-widget { right: 18px; bottom: 162px; }
}
@media (max-width: 575.98px) {
  .wa-widget { bottom: 158px; }
  .wa-card { width: calc(100vw - 28px); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::after { animation: none; }
  .wa-online { animation: none; }
}

/* ───────────────────────── 18b. INNER PAGES (V2) ─── */
/* vivid page-hero banner — one gradient per page */
.page-hero2 {
  position: relative;
  padding: 36px 0 18px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.ph-violet { background: linear-gradient(125deg, #6C63FF 0%, #7B61FF 35%, #5B8CFF 68%, #00D4FF 100%); }
.ph-pink   { background: linear-gradient(125deg, #FF5E62 0%, #FF6B6B 40%, #FF7AC6 100%); }
.ph-warm   { background: linear-gradient(125deg, #FF9A3D 0%, #FFB84D 38%, #FF7AC6 100%); }
.ph-cyan   { background: linear-gradient(125deg, #2E7DFF 0%, #5B8CFF 35%, #00D4FF 100%); }
.ph-coral  { background: linear-gradient(125deg, #FF5E62 0%, #FF6B6B 42%, #FF8E53 100%); }
.ph-green  { background: linear-gradient(125deg, #00B894 0%, #00C9A7 45%, #00F5A0 100%); }
.ph-amber  { background: linear-gradient(125deg, #F0900F 0%, #FFA63D 45%, #FFB84D 100%); }
.ph-teal   { background: linear-gradient(125deg, #0A8F8A 0%, #0FA8A0 40%, #20CBB4 100%); }
.page-hero2 .container { position: relative; z-index: 2; }

/* big service icon focal point in detail-page hero */
.hero-ic {
  width: 74px; height: 74px;
  margin: 0 auto 1.1rem;
  border-radius: 22px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .2);
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff; font-size: 1.95rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px -10px rgba(20, 24, 70, .3);
  animation: floatY 6s ease-in-out infinite;
}

/* inline hero head: icon beside the title (compact hero) */
.hero-head { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: .9rem; }
.hero-head .hero-ic { margin: 0; flex: 0 0 auto; }
.hero-head .page-title2 { margin: 0; }
.page-hero2.hero-tight { min-height: 0; }
/* contact page — info rows + form header + map */
.c-info { display: flex; flex-direction: column; gap: .55rem; margin-top: 1.5rem; }
.c-info-row { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: inherit; padding: .55rem .35rem; border-radius: 14px; transition: background .3s ease; }
a.c-info-row:hover { background: rgba(108, 99, 255, .06); }
.c-info-ic { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #fff; font-size: 1.25rem; flex: 0 0 auto; box-shadow: 0 12px 26px -10px rgba(20, 24, 70, .35); transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.c-info-row:hover .c-info-ic { transform: scale(1.08) rotate(-4deg); }
.ci-v { background: var(--g-violet); }
.ci-g { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.ci-c { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.ci-a { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
.c-info-row h5 { margin: 0 0 .12rem; font-size: 1.02rem; color: var(--ink); }
.c-info-row p { margin: 0; color: var(--ink-2); font-size: .9rem; }
.form2-title { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: .35rem; }
.form2-note { color: var(--ink-2); font-size: .92rem; margin-bottom: 1.4rem; }
.char-count { font-size: .76rem; font-weight: 700; color: var(--muted); }
.contact-map-wrap { border-radius: 26px; overflow: hidden; box-shadow: 0 30px 64px -30px rgba(20, 24, 70, .42); border: 1px solid rgba(108, 99, 255, .14); }
.contact-map { width: 100%; height: 400px; border: 0; display: block; }
@media (max-width: 575.98px) { .contact-map { height: 300px; } }

/* static tech-stack chip row */
.tech-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }

/* "other services" cross-link pills */
.svc-more { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.6rem; }
.svc-more a {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .16);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff; font-weight: 700; font-size: .85rem;
  border-radius: 40px; padding: .5rem 1.1rem;
  transition: background .25s ease, transform .25s ease;
}
.svc-more a:hover { color: #fff; background: rgba(255, 255, 255, .28); transform: translateY(-2px); }

.crumb2 {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50px;
  padding: .3rem .85rem;
  font-weight: 700; font-size: .72rem; color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin-bottom: 1.2rem;
}
.crumb2 a { color: rgba(255, 255, 255, .85); display: inline-flex; align-items: center; gap: .3rem; }
.crumb2 a:hover { color: #fff; }
.crumb2 i.bi-chevron-right { font-size: .56rem; opacity: .8; }

.page-title2 {
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.1rem);
  margin-bottom: .6rem;
  text-shadow: 0 4px 26px rgba(35, 39, 90, .25);
}
.page-sub2 { color: rgba(255, 255, 255, .92); font-size: 1.1rem; max-width: 640px; margin: 0 auto; font-weight: 500; }
.jump2 { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.7rem; }
.jump2 .tech-chip2 { padding: .55rem 1.2rem; font-size: .86rem; }
.jump2 .tech-chip2 i { font-size: 1rem; color: var(--violet); }

/* striped white section (generic version of the FAQ bg) */
.sec-striped {
  background:
    repeating-linear-gradient(-45deg, rgba(108, 99, 255, .045) 0 18px, transparent 18px 48px),
    #fff;
}

/* ink checklist for light cards */
.list2 { list-style: none; padding: 0; margin: 0 0 1.3rem; display: grid; gap: .5rem; }
.list2 li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 700; color: var(--ink-2); font-size: .93rem; }
.list2 li i {
  width: 21px; height: 21px; flex: 0 0 21px; margin-top: 2px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--g-violet); color: #fff; font-size: .68rem;
}

/* engagement plans */
.plan2 {
  position: relative; height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 2.1rem 1.8rem;
  box-shadow: 0 24px 50px -20px rgba(0, 110, 110, .4);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.plan2:hover { transform: translateY(-9px); box-shadow: 0 34px 64px -22px rgba(0, 110, 110, .5); }
.plan2-ico {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--g-violet); color: #fff; font-size: 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 12px 26px -8px rgba(108, 99, 255, .55);
}
.plan2 h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.plan2-for { display: block; font-weight: 800; font-size: .85rem; color: var(--violet); margin-bottom: 1rem; }
.plan2.featured { background: var(--g-violet); }
.plan2.featured h3, .plan2.featured .plan2-for { color: #fff; }
.plan2.featured .plan2-ico { background: rgba(255, 255, 255, .2); border: 2px solid rgba(255, 255, 255, .5); box-shadow: none; }
.plan2.featured .list2 li { color: #fff; }
.plan2.featured .list2 li i { background: #fff; color: var(--violet); }
.plan2-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-fire); color: #fff;
  font-weight: 800; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 30px; padding: .35rem 1rem;
  box-shadow: 0 12px 26px -8px rgba(255, 107, 107, .6);
  white-space: nowrap;
}

/* portfolio filters (vanilla JS in main.js) */
.pf-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.6rem; }
.pf-filter {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 2.5px solid #E4E1FF;
  background: #fff; color: var(--ink-2);
  font-weight: 800; font-size: .9rem;
  border-radius: 40px;
  padding: .6rem 1.5rem;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--sh-sm);
  text-decoration: none; cursor: pointer;
}
.pf-filter:hover { color: var(--violet); border-color: var(--violet); transform: translateY(-3px); }
.pf-filter.active { background: var(--g-violet); border-color: transparent; color: #fff; box-shadow: 0 14px 30px -10px rgba(108, 99, 255, .6); }
.pf-hidden { display: none !important; }
.pf-pop { animation: popIn .55s cubic-bezier(.22,1,.36,1) both; }
@media (max-width: 767.98px) {
  .pf-filters { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: .55rem; scrollbar-width: thin; }
  .pf-filters::-webkit-scrollbar { height: 5px; }
  .pf-filters::-webkit-scrollbar-thumb { background: rgba(108, 99, 255, .35); border-radius: 10px; }
  .pf-filter { flex: 0 0 auto; }
}

/* mobile-app portfolio — phone-frame showcase cards */
.appcard { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; min-height: 466px; border-radius: 24px; overflow: hidden; text-decoration: none; color: #fff; padding: 2rem 1rem 1.5rem; box-shadow: 0 26px 56px -24px rgba(20, 24, 70, .5); transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease; }
.appcard:hover { transform: translateY(-12px); box-shadow: 0 46px 84px -28px rgba(20, 24, 70, .58); }
.appcard::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.13) 1.5px, transparent 1.5px); background-size: 20px 20px; opacity: .5; pointer-events: none; }
.ac-1 { background: linear-gradient(160deg, #6C63FF, #8E81FF); --au: #6C63FF; --au-grad: linear-gradient(125deg, #6C63FF, #9D93FF); }
.ac-2 { background: linear-gradient(160deg, #FF5E9C, #FF88BF); --au: #FF4E92; --au-grad: linear-gradient(125deg, #FF5E9C, #FFA0CC); }
.ac-3 { background: linear-gradient(160deg, #0DA6C9, #3ACFE6); --au: #0C9CBE; --au-grad: linear-gradient(125deg, #0DA6C9, #46D3EB); }
.ac-4 { background: linear-gradient(160deg, #10B98E, #2DD3A6); --au: #10B98E; --au-grad: linear-gradient(125deg, #10B98E, #36DCB0); }
.ac-5 { background: linear-gradient(160deg, #FF8E53, #FFB14A); --au: #F77E33; --au-grad: linear-gradient(125deg, #FF8E53, #FFB14A); }
.ac-6 { background: linear-gradient(160deg, #8B5CFF, #B561FF); --au: #8B5CFF; --au-grad: linear-gradient(125deg, #8B5CFF, #BC7BFF); }
.app-phone { position: relative; z-index: 1; width: 94%; max-width: 246px; aspect-ratio: 9 / 18; background: #0a0c18; border-radius: 30px; padding: 7px; margin-bottom: 1.2rem; box-shadow: 0 24px 44px -16px rgba(0,0,0,.55), inset 0 0 0 1.5px rgba(255,255,255,.14); transition: transform .5s cubic-bezier(.22,1,.36,1); }
.appcard:hover .app-phone { transform: translateY(-5px) scale(1.02); }
.app-phone-img { display: block; width: 94%; max-width: 246px; height: auto; border-radius: 30px; margin-bottom: 1.2rem; box-shadow: 0 24px 44px -16px rgba(0,0,0,.55); transition: transform .5s cubic-bezier(.22,1,.36,1); }
.appcard:hover .app-phone-img { transform: translateY(-5px) scale(1.02); }
.app-phone::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 38%; height: 16px; background: #0a0c18; border-radius: 0 0 12px 12px; z-index: 3; }
.app-shot, .app-phone img { position: absolute; inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); object-fit: cover; border-radius: 24px; display: block; }
/* in-frame app-UI mockup (swap for a real screenshot <img class="app-shot"> anytime) */
.app-screen { position: absolute; inset: 7px; border-radius: 24px; overflow: hidden; background: #f3f4fb; display: flex; flex-direction: column; }
.au-status { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px 4px; font-size: 10px; font-weight: 800; color: #20233f; }
.au-sig { display: inline-flex; gap: 4px; align-items: center; }
.au-sig i { font-size: 10px; }
.au-head { display: flex; align-items: center; gap: 8px; padding: 6px 12px 9px; }
.au-ico { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; color: #fff; font-size: 14px; background: var(--au); box-shadow: 0 6px 12px -4px var(--au); flex: 0 0 auto; }
.au-appname { flex: 1; text-align: left; font-size: 11.5px; font-weight: 800; color: #1a1d3a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-search { width: 26px; height: 26px; border-radius: 50%; background: #e9ebf6; display: grid; place-items: center; flex: 0 0 auto; }
.au-search i { font-size: 11px; color: #888db0; }
.au-hero { margin: 0 12px 9px; height: 76px; border-radius: 15px; background: var(--au-grad); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 0 13px; }
.au-hero::after { content: ""; position: absolute; right: -18px; bottom: -24px; width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.16); }
.au-htext { position: relative; z-index: 1; font-size: 11.5px; font-weight: 800; color: #fff; line-height: 1.15; max-width: 64%; text-align: left; }
.au-hbtn { position: relative; z-index: 1; align-self: flex-start; margin-top: 6px; font-size: 7.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--au); background: #fff; padding: 3px 10px; border-radius: 20px; }
.au-sec { display: flex; align-items: center; justify-content: space-between; padding: 0 13px 6px; }
.au-sec-t { font-size: 9.5px; font-weight: 800; color: #2a2d4a; }
.au-sec-a { font-size: 7.5px; font-weight: 700; color: var(--au); }
.au-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; align-content: start; }
.au-tile { background: #fff; border-radius: 12px; padding: 6px; box-shadow: 0 8px 16px -10px rgba(20,24,70,.2); }
.au-pic { width: 100%; height: 40px; object-fit: cover; border-radius: 8px; margin-bottom: 5px; display: block; background: #e6e8f4; }
.au-pic-icon { width: 100%; height: 40px; border-radius: 8px; margin-bottom: 5px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.75); }
.au-pic-icon i { font-size: 1.2rem; color: var(--au); }
.au-n { font-size: 7.5px; font-weight: 800; color: #2a2d4a; text-align: left; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-p { font-size: 8px; font-weight: 800; color: var(--au); text-align: left; margin-top: 1px; }
.au-nav { display: flex; justify-content: space-around; align-items: center; padding: 8px 0 10px; background: #fff; border-top: 1px solid #ebedf9; margin-top: 4px; }
.au-nav i { font-size: 15px; color: #c3c7dd; }
.au-nav i.on { color: var(--au); }
/* QuickBite: food delivery style ── */
.au-dloc { display: flex; align-items: center; padding: 4px 10px 7px; gap: 6px; }
.au-dloc-left { flex: 1; min-width: 0; }
.au-dloc-lbl { display: block; font-size: 6px; font-weight: 600; color: #9094bb; text-transform: uppercase; letter-spacing: .4px; }
.au-dloc-addr { display: flex; align-items: center; gap: 2px; font-size: 8.5px; font-weight: 800; color: #1a1d3a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-dloc-addr i { font-size: 8px; color: #9094bb; flex: 0 0 auto; }
.au-food-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 10px; align-content: start; }
.au-ftile { background: #FFF3EC; border-radius: 10px; padding: 6px; }
.au-fem { font-size: 22px; height: 30px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.au-fn { font-size: 7px; font-weight: 800; color: #2a2d4a; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-fp-row { display: flex; align-items: center; justify-content: space-between; }
.au-fp { font-size: 8px; font-weight: 800; color: var(--au); }
.au-fadd { width: 16px; height: 16px; border-radius: 50%; background: var(--au); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-fadd i { font-size: 9px; color: #fff; }
.au-cat-p.dk { background: #1a1d3a !important; color: #fff !important; }
/* ChefMate: recipe app style ── */
.au-head-2 { display: flex; align-items: center; gap: 8px; padding: 6px 12px 4px; }
.au-head2-b { flex: 1; min-width: 0; }
.au-head2-sub { display: block; font-size: 6.5px; font-weight: 600; color: #9094bb; }
.au-head2-nm { display: block; font-size: 10px; font-weight: 800; color: #1a1d3a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-cat-tabs { display: flex; justify-content: space-around; padding: 0 10px 8px; }
.au-cat-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.au-cat-tab-i { width: 32px; height: 32px; border-radius: 10px; background: #f0ecff; display: flex; align-items: center; justify-content: center; }
.au-cat-tab-i i { font-size: 14px; color: var(--au); }
.au-cat-tab span { font-size: 6px; font-weight: 700; color: #7a80a8; }
.au-recipe-list { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 5px; }
.au-recipe { display: flex; align-items: center; gap: 7px; background: #fff; border-radius: 10px; padding: 6px 7px; box-shadow: 0 4px 10px -6px rgba(20,24,70,.12); }
.au-recipe-ico { width: 32px; height: 32px; border-radius: 10px; background: #f0ecff; display: flex; align-items: center; justify-content: center; font-size: 17px; flex: 0 0 auto; }
.au-recipe-b { flex: 1; min-width: 0; }
.au-recipe-nm { font-size: 8.5px; font-weight: 800; color: #1a1d3a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-recipe-sub { font-size: 6.5px; color: #9094bb; margin-top: 1px; }
.au-recipe-add { width: 18px; height: 18px; border-radius: 50%; background: var(--au); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-recipe-add i { font-size: 10px; color: #fff; }
.au-nav-chef { display: flex; justify-content: space-around; align-items: center; padding: 8px 0 10px; background: #fff; border-top: 1px solid #ebedf9; margin-top: 4px; }
.au-nav-chef i { font-size: 15px; color: #c3c7dd; }
.au-nav-chef i.on { color: var(--au); }
/* cart badge (ShopEase / ConnectHub) */
.au-cart { position: relative; width: 26px; height: 26px; border-radius: 50%; background: #e9ebf6; display: grid; place-items: center; flex: 0 0 auto; }
.au-cart i { font-size: 11px; color: #888db0; }
.au-badge { position: absolute; top: -3px; right: -3px; width: 10px; height: 10px; border-radius: 50%; background: var(--au); font-size: 6px; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; }
/* category pill row inside phone */
.au-cats { display: flex; gap: 5px; padding: 0 10px 7px; overflow-x: auto; scrollbar-width: none; }
.au-cats::-webkit-scrollbar { display: none; }
.au-cat-p { flex: 0 0 auto; font-size: 6.5px; font-weight: 700; padding: 3px 7px; border-radius: 20px; background: #edf0fb; color: #7a80a8; white-space: nowrap; display: inline-flex; align-items: center; gap: 2px; }
.au-cat-p.on { background: var(--au); color: #fff; }
/* flash sale bar (Kartly) */
.au-flash { margin: 0 10px 7px; border-radius: 9px; background: var(--au); padding: 5px 9px; display: flex; align-items: center; gap: 5px; }
.au-flash i { font-size: 11px; color: #fff; }
.au-flash-t { font-size: 7.5px; font-weight: 800; color: #fff; flex: 1; }
.au-flash-nums { display: flex; gap: 2px; align-items: center; }
.au-flash-n { background: rgba(0,0,0,.25); color: #fff; font-size: 7px; font-weight: 800; padding: 1.5px 3.5px; border-radius: 4px; }
.au-flash-sep { font-size: 8px; font-weight: 800; color: rgba(255,255,255,.7); }
/* balance card (FinPay) */
.au-bal { margin: 0 10px 7px; border-radius: 12px; background: var(--au-grad); padding: 9px 12px; position: relative; overflow: hidden; }
.au-bal::after { content: ""; position: absolute; right: -18px; top: -18px; width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.12); pointer-events: none; }
.au-bal-lbl { font-size: 7px; color: rgba(255,255,255,.7); font-weight: 600; }
.au-bal-amt { font-size: 18px; font-weight: 800; color: #fff; line-height: 1.1; margin: 1px 0 3px; }
.au-bal-sub { font-size: 6.5px; color: rgba(255,255,255,.6); letter-spacing: .5px; }
/* quick actions (FinPay) */
.au-qact { display: flex; justify-content: space-around; padding: 4px 8px 7px; }
.au-qa { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.au-qa-ico { width: 26px; height: 26px; border-radius: 50%; background: #edf0fb; display: flex; align-items: center; justify-content: center; }
.au-qa-ico i { font-size: 12px; color: var(--au); }
.au-qa span { font-size: 6.5px; font-weight: 700; color: #7a80a8; }
/* transactions (FinPay) */
.au-txns { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 5px; }
.au-txn { display: flex; align-items: center; gap: 7px; }
.au-txn-i { width: 22px; height: 22px; border-radius: 50%; background: #edf0fb; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-txn-i i { font-size: 10px; color: var(--au); }
.au-txn-b { flex: 1; min-width: 0; }
.au-txn-nm { font-size: 8px; font-weight: 700; color: #2a2d4a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-txn-dt { font-size: 6px; color: #9094bb; }
.au-txn-v { font-size: 8px; font-weight: 800; white-space: nowrap; }
.au-txn-v.neg { color: #ff4e6a; }
.au-txn-v.pos { color: #10b98e; }
/* location bar (QuickBite) */
.au-loc { display: flex; align-items: center; gap: 4px; margin: 0 10px 7px; background: #fff; border-radius: 8px; padding: 5px 8px; box-shadow: 0 4px 10px -6px rgba(20,24,70,.15); }
.au-loc i { font-size: 11px; color: var(--au); }
.au-loc span { font-size: 7px; font-weight: 700; color: #2a2d4a; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-loc-c { color: #b0b5d8 !important; font-size: 9px !important; flex: 0 0 auto !important; }
/* restaurant list (QuickBite) */
.au-rests { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 5px; }
.au-rest { display: flex; align-items: center; gap: 7px; background: #fff; border-radius: 9px; padding: 6px; box-shadow: 0 4px 10px -6px rgba(20,24,70,.12); }
.au-rest-i { width: 26px; height: 26px; border-radius: 7px; background: var(--au-grad); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-rest-i i { font-size: 12px; color: #fff; }
.au-rest-b { flex: 1; min-width: 0; }
.au-rest-nm { font-size: 8px; font-weight: 800; color: #1a1d3a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-rest-sub { font-size: 6px; color: #9094bb; }
.au-rest-eta { font-size: 7px; font-weight: 700; color: var(--au); white-space: nowrap; }
/* fitness ring (FitPulse) */
.au-fit-top { display: flex; align-items: center; gap: 10px; padding: 4px 12px 7px; }
.au-ring { width: 68px; height: 68px; position: relative; flex: 0 0 auto; }
.au-ring-svg { width: 68px; height: 68px; }
.au-ring-ctr { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.au-ring-ctr b { font-size: 11px; font-weight: 800; color: var(--au); line-height: 1; }
.au-ring-ctr small { font-size: 5.5px; color: #9094bb; }
.au-fit-stats { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.au-fit-st { display: flex; align-items: center; gap: 5px; }
.au-fit-st i { font-size: 11px; color: var(--au); width: 13px; flex: 0 0 auto; }
.au-fit-sl { font-size: 7px; color: #9094bb; flex: 1; }
.au-fit-sv { font-size: 8px; font-weight: 800; color: #2a2d4a; white-space: nowrap; }
/* workout list (FitPulse) */
.au-wkts { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 5px; }
.au-wkt { display: flex; align-items: center; gap: 7px; background: #fff; border-radius: 9px; padding: 5px 7px; box-shadow: 0 4px 10px -6px rgba(20,24,70,.12); }
.au-wkt-i { width: 24px; height: 24px; border-radius: 7px; background: var(--au-grad); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-wkt-i i { font-size: 11px; color: #fff; }
.au-wkt-b { flex: 1; min-width: 0; }
.au-wkt-nm { font-size: 8px; font-weight: 800; color: #1a1d3a; }
.au-wkt-sub { font-size: 6px; color: #9094bb; }
.au-wkt-dur { font-size: 7px; font-weight: 700; color: var(--au); white-space: nowrap; }
/* mood picker (MindEase) */
.au-mood-lbl { font-size: 7.5px; font-weight: 700; color: #555880; padding: 2px 12px 5px; }
.au-moods { display: flex; justify-content: space-around; padding: 0 8px 7px; }
.au-mood-b { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.au-mood-e { width: 26px; height: 26px; border-radius: 50%; background: #edf0fb; display: flex; align-items: center; justify-content: center; }
.au-mood-e i { font-size: 14px; color: #9094bb; }
.au-mood-e.sel { background: var(--au); }
.au-mood-e.sel i { color: #fff; }
.au-mood-b span { font-size: 5.5px; color: #9094bb; font-weight: 600; }
/* meditation card (MindEase) */
.au-med { margin: 0 10px 7px; border-radius: 12px; background: var(--au-grad); padding: 10px 12px; display: flex; align-items: center; gap: 10px; position: relative; overflow: hidden; }
.au-med::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.1); pointer-events: none; }
.au-med-ico { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-med-ico i { font-size: 18px; color: #fff; }
.au-med-t { font-size: 9px; font-weight: 800; color: #fff; line-height: 1.2; }
.au-med-s { font-size: 7px; color: rgba(255,255,255,.75); margin-top: 2px; }
/* streak bar */
.au-streak { margin: 0 10px; display: flex; align-items: center; gap: 6px; background: #fff5ee; border-radius: 9px; padding: 6px 9px; }
.au-streak i { font-size: 13px; color: #FF8E53; }
.au-streak-t { font-size: 7.5px; font-weight: 800; color: #2a2d4a; flex: 1; }
.au-streak-v { font-size: 8px; font-weight: 800; color: var(--au); }
/* stories row (ConnectHub) */
.au-stories { display: flex; gap: 8px; padding: 4px 10px 8px; overflow-x: auto; scrollbar-width: none; }
.au-stories::-webkit-scrollbar { display: none; }
.au-story { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 0 0 auto; }
.au-story-av { width: 30px; height: 30px; border-radius: 50%; background: var(--au-grad); border: 2px solid var(--au); display: flex; align-items: center; justify-content: center; }
.au-story-av.my { background: #edf0fb; border-color: #dde1f7; }
.au-story-av i { font-size: 14px; color: #fff; }
.au-story-av.my i { color: var(--au); font-size: 12px; }
.au-story-nm { font-size: 6px; font-weight: 700; color: #7a80a8; max-width: 36px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* social feed (ConnectHub) */
.au-feed { flex: 1; overflow: hidden; padding: 0 10px; display: flex; flex-direction: column; gap: 5px; }
.au-post { background: #fff; border-radius: 10px; padding: 6px; box-shadow: 0 4px 10px -6px rgba(20,24,70,.12); }
.au-post-hd { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.au-post-av { width: 18px; height: 18px; border-radius: 50%; background: var(--au-grad); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.au-post-av i { font-size: 9px; color: #fff; }
.au-post-user { font-size: 7.5px; font-weight: 800; color: #1a1d3a; flex: 1; }
.au-post-time { font-size: 6px; color: #9094bb; }
.au-post-img { height: 28px; border-radius: 7px; background: #edf0fb; margin-bottom: 4px; display: flex; align-items: center; justify-content: center; }
.au-post-img i { font-size: 14px; color: var(--au); opacity: .45; }
.au-post-ft { display: flex; gap: 8px; align-items: center; }
.au-post-ft-item { display: flex; align-items: center; gap: 3px; }
.au-post-ft-item i { font-size: 8px; color: #9094bb; }
.au-post-ft-item span { font-size: 6.5px; color: #9094bb; font-weight: 700; }
.app-cat { position: relative; z-index: 1; display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.42); border-radius: 30px; padding: .3rem .8rem; margin-bottom: .65rem; }
.app-title { position: relative; z-index: 1; font-size: 1.18rem; line-height: 1.25; color: #fff; margin: 0 0 .35rem; }
.app-desc { position: relative; z-index: 1; font-size: .83rem; color: rgba(255,255,255,.86); margin: 0 0 .9rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.app-link { position: relative; z-index: 1; margin-top: auto; display: inline-flex; align-items: center; gap: .45rem; font-family: var(--ff-head); font-weight: 800; font-size: .9rem; color: #fff; }
.app-link i { transition: transform .3s ease; }
.appcard:hover .app-link i { transform: translateX(5px); }
.app-stores { position: relative; z-index: 1; display: flex; gap: .45rem; margin-top: auto; flex-wrap: wrap; justify-content: center; }
.store-badge { display: inline-flex; align-items: center; gap: .38rem; font-size: .72rem; font-weight: 800; font-family: var(--ff-head); padding: .42rem .9rem; border-radius: 30px; text-decoration: none; transition: all .3s cubic-bezier(.22,1,.36,1); white-space: nowrap; border: 1.5px solid rgba(255,255,255,.38); background: rgba(255,255,255,.12); color: #fff; }
.store-badge:hover { background: #fff; color: #1a1d3a; border-color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px -8px rgba(0,0,0,.28); }
.store-badge i { font-size: .92rem; }
@media (max-width: 575.98px) { .appcard { min-height: 0; } }

/* portfolio chooser — two bold full-image pick cards */
.pf-pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.pf-pick { position: relative; display: block; overflow: hidden; border-radius: 26px; aspect-ratio: 1 / 1.04; min-height: 360px; text-decoration: none; color: #fff; background: #14182f; box-shadow: 0 30px 70px -32px rgba(20, 24, 70, .5); transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease; }
.pf-pick:hover { transform: translateY(-12px); box-shadow: 0 56px 96px -34px rgba(20, 24, 70, .58); }
.pf-pick-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .9s cubic-bezier(.22,1,.36,1); }
.pf-pick:hover .pf-pick-img { transform: scale(1.07); }
.pf-pick::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(9, 11, 30, .94) 2%, rgba(9, 11, 30, .68) 28%, rgba(9, 11, 30, .12) 56%, transparent 78%); }
.pf-pick-count { position: absolute; top: 1.1rem; right: 1.1rem; z-index: 3; font-family: var(--ff-head); font-weight: 800; font-size: .74rem; letter-spacing: .04em; color: #fff; background: rgba(15, 17, 40, .5); border: 1px solid rgba(255, 255, 255, .5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: .42rem .9rem; border-radius: 30px; white-space: nowrap; }
.pf-pick-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.7rem 1.9rem 1.85rem; }
.pf-pick-ic { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; font-size: 1.55rem; color: #fff; margin-bottom: .9rem; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .55); transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.pp-web .pf-pick-ic { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.pp-mobile .pf-pick-ic { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.pf-pick:hover .pf-pick-ic { transform: rotate(-7deg) scale(1.08); }
.pf-pick-body h3 { font-size: 1.5rem; margin-bottom: .35rem; color: #fff; }
.pf-pick-body > p { color: rgba(255, 255, 255, .82); font-size: .92rem; margin-bottom: 1.05rem; }
.pf-pick-link { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-head); font-weight: 800; font-size: .96rem; color: #fff; }
.pf-pick-link i { transition: transform .35s ease; }
.pf-pick:hover .pf-pick-link i { transform: translateX(6px); }
@media (max-width: 767.98px) { .pf-pick-grid { grid-template-columns: 1fr; gap: 1.3rem; padding: 0 8px; } .pf-pick { aspect-ratio: 1 / 0.92; min-height: 320px; } }

/* about page — gradient stat tiles */
.a-tiles { display: grid; grid-template-columns: repeat(2, minmax(132px, 178px)); gap: 16px; justify-content: center; }
.a-tile {
  height: 156px;
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  color: #fff; font-size: 2rem;
  box-shadow: 0 22px 46px -16px rgba(35, 39, 90, .4);
  animation: floatY 7s ease-in-out infinite;
}
.a-tile small { font-size: .78rem; font-weight: 800; }
.a-tile:nth-child(2) { margin-top: 26px; animation-delay: .5s; }
.a-tile:nth-child(3) { margin-top: -26px; animation-delay: 1s; }
.a-tile:nth-child(4) { animation-delay: 1.5s; }

/* journey year cards reuse .step2-card; smaller ghost year */
.year-card .step2-num { font-size: 2.7rem; top: 1.1rem; }

/* team */
.team2-card {
  height: 100%; text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 1.9rem 1.2rem 1.5rem;
  box-shadow: 0 22px 46px -18px rgba(20, 24, 70, .45);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.team2-card:hover { transform: translateY(-9px); box-shadow: 0 32px 60px -20px rgba(20, 24, 70, .55); }
.team2-av {
  width: 84px; height: 84px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  display: grid; place-items: center;
  color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 14px 30px -10px rgba(35, 39, 90, .4);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.team2-card:hover .team2-av { transform: scale(1.08) rotate(5deg); }
.team2-card h4 { font-size: 1.04rem; margin-bottom: .1rem; }
.team2-card span { display: block; font-size: .8rem; font-weight: 800; color: var(--violet); }
.av-7 { background: linear-gradient(135deg, #00F5A0, #5B8CFF); }
.av-8 { background: linear-gradient(135deg, #FFB84D, #6C63FF); }

.chip2 {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 40px;
  padding: .5rem 1.1rem;
  font-weight: 800; font-size: .85rem; color: var(--ink-2);
  box-shadow: var(--sh-sm);
}
.chip2 i { color: var(--violet); }

/* contact */
.form2-card {
  background: #fff;
  border: 2.5px solid #ECEAFF;
  border-radius: 26px;
  padding: clamp(1.5rem, 3.2vw, 2.4rem);
  box-shadow: var(--sh-lg);
}
.form2-card .form-label { font-weight: 800; font-size: .86rem; color: var(--ink); }
.form2-card .form-control,
.form2-card .form-select {
  border-radius: 14px;
  border: 2px solid #E4E1FF;
  padding: .8rem 1.05rem;
  font-weight: 600; color: var(--ink-2);
  box-shadow: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form2-card .form-control:focus,
.form2-card .form-select:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(108, 99, 255, .15); }
.form2-card .form-control::placeholder { color: var(--muted); font-weight: 500; }
.field-error { border-color: var(--coral) !important; box-shadow: 0 0 0 4px rgba(255, 107, 107, .15) !important; }
.spin-ico { display: inline-block; animation: spinSlow 1s linear infinite; }
.form-success { text-align: center; padding: 3rem 1.5rem; }
.fs-ico {
  width: 84px; height: 84px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--g-green); color: #fff; font-size: 2.2rem;
  box-shadow: 0 18px 40px -12px rgba(0, 212, 255, .6);
  animation: popIn .6s cubic-bezier(.34,1.56,.64,1) both;
}
.form-success h3 { margin-bottom: .5rem; }
.form-success p { max-width: 420px; margin: 0 auto 1.5rem; }

@keyframes popIn {
  from { opacity: 0; transform: scale(.86) translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ───────────────────────── 18c. PRODUCTS ─── */
/* product listing cards (innovative overlapping-icon design) */
.prod-card {
  position: relative; height: 100%;
  text-decoration: none; color: inherit; cursor: pointer;
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 52px -20px rgba(35, 39, 90, .3);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
.prod-card:hover { transform: translateY(-12px); box-shadow: 0 40px 74px -24px rgba(35, 39, 90, .42); }
.prod-top { position: relative; padding: 1.5rem 1.6rem 2.5rem; color: #fff; overflow: hidden; }
.prod-top::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .16) 1.8px, transparent 1.8px);
  background-size: 22px 22px; pointer-events: none;
}
.pg-1 .prod-top { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.pg-2 .prod-top { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
.pg-3 .prod-top { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.pg-4 .prod-top { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.pg-5 .prod-top { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
.pg-6 .prod-top { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.pg-7 .prod-top { background: linear-gradient(135deg, #0FA8A0, #20CBB4); }
.prod-watermark {
  position: absolute; right: -8px; bottom: -24px;
  font-size: 6.4rem; line-height: 1;
  color: rgba(255, 255, 255, .17); pointer-events: none;
  transition: transform .5s ease;
}
.prod-card:hover .prod-watermark { transform: rotate(-8deg) scale(1.08); }
.prod-cat {
  display: inline-block; position: relative; z-index: 1;
  font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(255, 255, 255, .22); border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 30px; padding: .25rem .7rem; margin-bottom: .7rem;
}
.prod-name { position: relative; z-index: 1; color: #fff; font-size: 1.32rem; margin-bottom: .3rem; padding-right: 92px; }
.prod-tagline { position: relative; z-index: 1; color: rgba(255, 255, 255, .92); font-size: .85rem; font-weight: 500; margin: 0; max-width: 80%; }
.prod-price {
  position: absolute; top: 1.3rem; right: 1.3rem; z-index: 2;
  background: #fff; border-radius: 13px; padding: .4rem .6rem; text-align: center;
  font-family: var(--ff-head); color: var(--ink);
  box-shadow: 0 8px 18px -6px rgba(20, 24, 70, .4);
  display: flex; flex-direction: column; gap: .26rem; min-width: 82px;
}
.prod-price b { display: block; font-weight: 800; font-size: .78rem; line-height: 1.12; }
.prod-price small { display: block; font-size: .5rem; font-weight: 700; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-top: 1px; }
.prod-price .pp-rent { padding-top: .3rem; border-top: 1px solid rgba(20, 24, 70, .1); color: var(--violet); }
.prod-price .pp-rent small { color: var(--violet); opacity: .65; }
.prod-ico {
  position: absolute; left: 1.5rem; top: -28px; z-index: 3;
  width: 56px; height: 56px; border-radius: 17px;
  display: grid; place-items: center;
  background: #fff; font-size: 1.4rem;
  box-shadow: 0 14px 30px -10px rgba(20, 24, 70, .45);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pg-1 .prod-ico { color: #6C63FF; } .pg-2 .prod-ico { color: #00A3E0; } .pg-3 .prod-ico { color: #00A57C; }
.pg-4 .prod-ico { color: #F0418C; } .pg-5 .prod-ico { color: #E08A00; } .pg-6 .prod-ico { color: #FF6B6B; } .pg-7 .prod-ico { color: #0C928B; }
.prod-card:hover .prod-ico { transform: rotate(-8deg) scale(1.1); }
.prod-body { position: relative; flex: 1; display: flex; flex-direction: column; padding: 2.4rem 1.6rem 1.6rem; }
.prod-feats { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: .45rem; }
.prod-feats li { display: flex; gap: .55rem; align-items: center; font-weight: 700; font-size: .85rem; color: var(--ink-2); }
.prod-feats li i { color: #00B58A; font-size: .98rem; width: 1.2em; text-align: center; flex: 0 0 auto; }
.prod-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; margin-bottom: 1.2rem; }
.prod-tags span {
  display: inline-flex; align-items: center; justify-content: center; gap: .3rem;
  border-radius: 9px; padding: .34rem .35rem; font-size: .62rem; font-weight: 800;
  letter-spacing: .01em; white-space: nowrap; overflow: hidden;
}
.prod-tags span i { font-size: .92rem; line-height: 1; }
.pt-html    { background: #FFEBE3; color: #C8401A; }
.pt-bs      { background: #EFE8FB; color: #6D3FB0; }
.pt-php     { background: #EBECF8; color: #545AA6; }
.pt-ci      { background: #FDE7E1; color: #CE391E; }
.pt-sql     { background: #E2F0F5; color: #1E6E8B; }
.pt-flutter { background: #E5F2FC; color: #0A6EBD; }
.prod-link {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 800; font-size: .92rem; color: var(--ink);
  border-top: 1.5px solid #EFEDFF; padding-top: 1rem;
  transition: color .25s ease;
}
.prod-link i { transition: transform .3s ease; }
.prod-card:hover .prod-link i { transform: translateX(5px); }
.pg-1:hover .prod-link { color: #6C63FF; } .pg-2:hover .prod-link { color: #00A3E0; } .pg-3:hover .prod-link { color: #00A57C; }
.pg-4:hover .prod-link { color: #F0418C; } .pg-5:hover .prod-link { color: #E08A00; } .pg-6:hover .prod-link { color: #FF6B6B; } .pg-7:hover .prod-link { color: #0C928B; }

/* module group cards (detail pages) */
.mod-card {
  height: 100%;
  background: #fff;
  border: 2.5px solid #ECEAFF;
  border-top: 6px solid var(--mc, #6C63FF);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.mod-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }
.mod-head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.mod-ico {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 13px; display: grid; place-items: center;
  color: #fff; font-size: 1.12rem;
  background: var(--mc, #6C63FF);
  box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--mc, #6C63FF) 70%, transparent);
}
.mod-head h4 { font-size: 1.06rem; margin: 0; }
.mod-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.mod-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .87rem; font-weight: 600; color: var(--ink-2); }
.mod-list li i { color: var(--mc, #6C63FF); font-size: .76rem; margin-top: 3px; flex: 0 0 auto; }
.mc-violet { --mc: #6C63FF; } .mc-cyan { --mc: #00B2FF; } .mc-pink { --mc: #FF5E9C; }
.mc-green { --mc: #00C9A7; } .mc-amber { --mc: #FFA63D; } .mc-coral { --mc: #FF6B6B; } .mc-teal { --mc: #0FA8A0; }

/* ───── innovative tabbed MODULE EXPLORER (detail pages) ─── */
.mod-explorer {
  background: #fff;
  border: 1.5px solid #ECEAFF;
  border-radius: 28px;
  box-shadow: var(--sh-md);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.4rem;
  position: relative;
}
/* left rail */
.mx-tabs { display: flex; flex-direction: column; gap: .6rem; }
.mx-tab {
  position: relative;
  display: flex; align-items: center; gap: .8rem;
  width: 100%; text-align: left;
  background: #F7F7FD;
  border: 1.5px solid transparent;
  border-radius: 16px;
  padding: .78rem .85rem;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .3s ease, border-color .3s ease;
}
.mx-tab:hover { background: #fff; border-color: color-mix(in srgb, var(--mc) 32%, #ECEAFF); transform: translateX(3px); }
.mx-tab-ic {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--mc) 14%, #fff);
  color: var(--mc); font-size: 1.1rem;
  transition: background .35s ease, color .35s ease;
}
.mx-tab-tx { display: flex; flex-direction: column; line-height: 1.22; min-width: 0; flex: 1; }
.mx-tab-name { font-family: var(--ff-head); font-weight: 800; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.mx-tab-meta { font-size: .71rem; font-weight: 600; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mx-tab-count {
  flex: 0 0 auto;
  font-family: var(--ff-head); font-weight: 800; font-size: .72rem;
  color: var(--mc); background: color-mix(in srgb, var(--mc) 14%, #fff);
  border-radius: 20px; padding: .12rem .5rem; min-width: 30px; text-align: center;
  transition: background .35s ease, color .35s ease;
}
.mx-tab.active {
  background: linear-gradient(135deg, var(--mc), color-mix(in srgb, var(--mc) 52%, #fff));
  border-color: transparent;
  box-shadow: 0 16px 30px -12px color-mix(in srgb, var(--mc) 72%, transparent);
  transform: translateX(5px);
}
.mx-tab.active .mx-tab-name { color: #fff; }
.mx-tab.active .mx-tab-meta { color: rgba(255, 255, 255, .85); }
.mx-tab.active .mx-tab-ic { background: rgba(255, 255, 255, .22); color: #fff; }
.mx-tab.active .mx-tab-count { background: rgba(255, 255, 255, .25); color: #fff; }
/* right panel */
.mx-panels { min-width: 0; }
.mx-pane-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1.15rem; border-bottom: 2px dashed #ECEAFF; }
.mx-pane-ic {
  width: 54px; height: 54px; flex: 0 0 54px; border-radius: 16px;
  display: grid; place-items: center; color: #fff; font-size: 1.4rem;
  background: var(--mc); box-shadow: 0 14px 28px -10px color-mix(in srgb, var(--mc) 65%, transparent);
}
.mx-pane-head h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1.28rem; margin: 0 0 .15rem; color: var(--ink); }
.mx-pane-head p { margin: 0; font-size: .89rem; color: var(--body); font-weight: 500; }
.mx-pane-stat { margin-left: auto; text-align: center; flex: 0 0 auto; padding-left: 1rem; }
.mx-pane-stat b { display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.7rem; line-height: 1; color: var(--mc); }
.mx-pane-stat span { font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.mx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mx-group {
  background: #FAFAFE; border: 1.5px solid #F0EEFB; border-radius: 18px; padding: 1.05rem 1.1rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.mx-group:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: color-mix(in srgb, var(--mc) 28%, #F0EEFB); background: #fff; }
.mx-group-h { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.mx-group-h i {
  width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px;
  display: grid; place-items: center; font-size: .92rem;
  color: var(--mc); background: color-mix(in srgb, var(--mc) 13%, #fff);
}
.mx-group-h h5 { margin: 0; font-family: var(--ff-head); font-weight: 800; font-size: .97rem; color: var(--ink); }
.mx-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: .42rem; }
.mx-feats li { display: flex; gap: .5rem; align-items: flex-start; font-size: .83rem; font-weight: 600; color: var(--ink-2); }
.mx-feats li i { color: #00B58A; font-size: .72rem; margin-top: 3px; flex: 0 0 auto; }
/* entrance animation on tab switch (no Bootstrap .fade used) */
.mx-panel.active { animation: mxIn .5s cubic-bezier(.22,1,.36,1); }
@keyframes mxIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 991.98px) {
  .mod-explorer { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .mx-tabs {
    flex-direction: row; overflow-x: auto; gap: .55rem;
    padding-bottom: .65rem; scroll-snap-type: x proximity;
    scrollbar-width: thin; scrollbar-color: #B9B3FF transparent;
    -webkit-mask-image: linear-gradient(to right, #000 87%, transparent 100%);
            mask-image: linear-gradient(to right, #000 87%, transparent 100%);
  }
  .mx-tabs::-webkit-scrollbar { height: 5px; }
  .mx-tabs::-webkit-scrollbar-track { background: #F0EEFB; border-radius: 20px; }
  .mx-tabs::-webkit-scrollbar-thumb { background: linear-gradient(90deg, #6C63FF, #00D4FF); border: 0; border-radius: 20px; }
  .mx-tab { flex: 0 0 auto; width: auto; scroll-snap-align: start; padding: .6rem .8rem; }
  .mx-tab:hover, .mx-tab.active { transform: none; }
  .mx-tab-meta { display: none; }
  .mx-grid { grid-template-columns: 1fr; }
  .mx-pane-stat { display: none; }
}
@media (max-width: 400px) { .mx-tab-count { display: none; } }

/* ───────────────────────── 18d. CAREERS / JOBS ─── */
.jobs-acc { display: flex; flex-direction: column; gap: 1rem; }
.jobs-acc .accordion-item {
  background: #fff;
  border: 2.5px solid #ECEAFF !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow .35s ease, border-color .35s ease;
}
.jobs-acc .accordion-item:hover { box-shadow: var(--sh-md); border-color: rgba(108, 99, 255, .28) !important; }
.jobs-acc .accordion-button {
  background: transparent;
  padding: 1.05rem 1.25rem;
  box-shadow: none !important;
  display: flex; align-items: center; gap: .9rem;
}
.jobs-acc .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: linear-gradient(120deg, rgba(108, 99, 255, .06), rgba(0, 212, 255, .04));
}
.job-ico {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; font-size: 1.15rem;
  box-shadow: 0 8px 18px -7px rgba(20, 24, 70, .4);
}
.jc-1 { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.jc-2 { background: linear-gradient(135deg, #00B2FF, #00D4FF); }
.jc-3 { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.jc-4 { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.jc-5 { background: linear-gradient(135deg, #FFA63D, #FFB84D); }
.jc-6 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.job-head-main { flex: 1; min-width: 0; }
.job-title { display: block; font-family: var(--ff-head); font-weight: 800; font-size: 1.06rem; color: var(--ink); line-height: 1.3; }
.job-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .42rem; }
.job-meta span { display: inline-flex; align-items: center; gap: .3rem; font-size: .7rem; font-weight: 700; color: var(--ink-2); background: #F2F1FF; border-radius: 20px; padding: .2rem .6rem; }
.job-meta span i { color: var(--violet); font-size: .7rem; }
.job-meta .sal { background: rgba(0, 245, 160, .16); color: #00936E; }
.job-meta .sal i { color: #00936E; }
.jobs-acc .accordion-button::after {
  background-image: none; content: "\F64D"; font-family: "bootstrap-icons";
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--g-violet); color: #fff; font-size: .8rem;
  margin-left: auto; flex-shrink: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.jobs-acc .accordion-button:not(.collapsed)::after { transform: rotate(45deg); }
.jobs-acc .accordion-body { padding: 0 1.3rem 1.4rem; color: var(--body); }
.job-sub { font-size: .95rem; margin-bottom: 1.1rem; }
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 600px) { .job-grid { grid-template-columns: 1fr; } }
.job-col h5 { font-family: var(--ff-head); font-weight: 800; font-size: .92rem; color: var(--ink); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.job-col h5 i { color: var(--violet); }
.job-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .42rem; }
.job-col li { display: flex; gap: .5rem; align-items: flex-start; font-size: .87rem; font-weight: 600; color: var(--ink-2); }
.job-col li i { color: #00B58A; font-size: .74rem; margin-top: 3px; flex: 0 0 auto; }
.job-apply { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.job-apply small { color: var(--muted); font-weight: 600; }

/* ───────────────────────── 19. KEYFRAMES ─── */
@keyframes scrollX { to { transform: translateX(-50%); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes gradPan { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes barBreathe { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.8); } }
@keyframes blink { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }
@keyframes twinkle { 0%, 100% { opacity: .3; transform: scale(.75) rotate(0); } 50% { opacity: 1; transform: scale(1.25) rotate(22deg); } }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 14% { transform: scale(1.3); } 28% { transform: scale(1); } 42% { transform: scale(1.3); } }
@keyframes preSpin { 0%, 100% { transform: rotate(0) scale(1); } 50% { transform: rotate(180deg) scale(1.18); } }
@keyframes preLoad { 0% { transform: translateX(-110%); } 100% { transform: translateX(290%); } }

/* ─── ABOUT INTRO STAT CARDS ─── */
.ab-stat-card { background: #fff; border: 1.5px solid #F0EEFF; border-radius: 16px; padding: 1.5rem 1rem; text-align: center; transition: transform .3s ease, box-shadow .3s ease; }
.ab-stat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -12px rgba(108,99,255,.2); }
.ab-ic { font-size: 2rem; margin-bottom: .6rem; display: block; }
.ab-num { font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: var(--dark); }
.ab-label { font-size: .85rem; font-weight: 600; color: var(--muted); margin-top: .2rem; }

/* ───────────────────────── 20. RESPONSIVE ─── */
@media (max-width: 1199.98px) {
  .to-2 { right: 0; }
  .to-4 { left: 0; }
}

@media (max-width: 991.98px) {
  .sec2 { padding: 48px 0; }
  .page-hero2 { padding: 94px 0 40px; min-height: 300px; }
  .banner-wrap { min-height: auto; padding: 92px 24px 44px; }
  .banner-wrap .row { --bs-gutter-y: .5rem; }
  .b-sub { margin-bottom: .55rem; }
  .b-visual { margin-top: .8rem; min-height: 220px; }
  .hero-ctrls { right: 50%; transform: translateX(50%); bottom: 24px; }
  .hero-carousel .carousel-indicators { bottom: 88px; }
}

@media (max-width: 575.98px) {
  .sec2 { padding: 40px 0; }
  .page-hero2 { padding: 84px 0 34px; min-height: 0; }
  .a-tile { height: 128px; font-size: 1.6rem; }
  .pf-filter { padding: .5rem 1.05rem; font-size: .82rem; }
  .banner-wrap { padding: 80px 20px 36px; }
  .b-sub { margin-bottom: .45rem; }
  .b-visual { min-height: 188px; }
  .b-title { font-size: 1.8rem; line-height: 1.14; }
  .b-badge { font-size: .72rem; letter-spacing: .03em; padding: .48rem 1rem; gap: .4rem; }
  .b-img { width: 100%; }
  .float-chip { padding: .5rem .7rem; font-size: .72rem; }
  .tech-orb { width: 44px; height: 44px; font-size: 1.2rem; }
  .tk-item { font-size: .85rem; }
  .step2-num { font-size: 3.4rem; }
  .news2 { padding: 1.5rem 1.4rem; }
  .news-form { flex-direction: column; min-width: 100%; }
  .news-form .btn { width: 100%; }
  .cta2-actions .btn { width: 100%; }
  .f2-bottom { justify-content: center; text-align: center; }
  .to-top { bottom: 98px; right: 14px; width: 46px; height: 46px; }
}

/* ───────────────────────── 20b. FLOATING CTA BUTTON ─── */
/* innovative animated gradient pill (Request a Quote / Buy This Product) */
.cta-mega {
  --cta-glow: 108, 99, 255;
  position: relative;
  display: inline-flex; align-items: center;
  padding: 9px 20px 9px 9px; border-radius: 50px;
  background: linear-gradient(120deg, #6C63FF, #5B8CFF, #00D4FF, #6C63FF);
  background-size: 300% 100%;
  color: #fff; font-weight: 800; font-size: 1.02rem; text-decoration: none;
  overflow: hidden;
  animation: ctaGradient 6s linear infinite, ctaRing 2.8s ease-out infinite;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
@keyframes ctaGradient { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
@keyframes ctaRing {
  0%   { box-shadow: 0 14px 34px -10px rgba(var(--cta-glow), .6), 0 0 0 0 rgba(var(--cta-glow), .5); }
  70%  { box-shadow: 0 14px 34px -10px rgba(var(--cta-glow), .6), 0 0 0 13px rgba(var(--cta-glow), 0); }
  100% { box-shadow: 0 14px 34px -10px rgba(var(--cta-glow), .6), 0 0 0 0 rgba(var(--cta-glow), 0); }
}
.cta-mega:hover { color: #fff; transform: translateY(-3px) scale(1.03); }
.cta-mega:active { transform: translateY(-1px) scale(.99); }

.cta-mega-ic {
  display: grid; place-items: center;
  width: 32px; height: 32px; margin-right: 11px; flex: 0 0 32px;
  border-radius: 50%; background: rgba(255, 255, 255, .22); font-size: 1rem;
  transition: transform .4s;
}
.cta-mega:hover .cta-mega-ic { transform: rotate(-8deg) scale(1.08); }
.cta-mega-txt { white-space: nowrap; position: relative; z-index: 2; }
.float-cta-arrow { margin-left: 10px; font-size: 1rem; position: relative; z-index: 2; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.cta-mega:hover .float-cta-arrow { transform: translateX(4px); }

/* shine sweep on hover */
.cta-mega::before {
  content: ""; position: absolute; top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); transition: left .6s ease; pointer-events: none; z-index: 1;
}
.cta-mega:hover::before { left: 130%; }

/* product "Buy" variant — warm fire theme */
.cta-mega-buy {
  --cta-glow: 255, 107, 107;
  background: linear-gradient(120deg, #FF6B6B, #FF8E53, #FFB84D, #FF6B6B);
  background-size: 300% 100%;
}

/* fixed floating placement — horizontally centered (declared after .cta-mega so it wins) */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 26px;
  margin-inline: auto; width: max-content; max-width: calc(100vw - 32px);
  z-index: 1041;
}
body.menu-open .float-cta { opacity: 0; pointer-events: none; }

@media (max-width: 991.98px) {
  .float-cta { bottom: 100px; }
}
@media (max-width: 575.98px) {
  .cta-mega { font-size: .9rem; padding: 8px 16px 8px 8px; }
  .cta-mega-ic { width: 28px; height: 28px; flex-basis: 28px; margin-right: 9px; }
}

/* ───────────────────────── 21. REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .bx { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

/* ───────────────────────── 22. ENQUIRY WIZARD (multi-step) ─── */
body.enq-page { background: linear-gradient(180deg, #f3f5ff 0%, #eaeefb 100%); }

/* hero strip */
.enq-hero {
  position: relative; padding: 82px 0 34px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, #6C63FF 0%, #5B8CFF 55%, #00D4FF 100%);
}
.enq-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -10%, rgba(255,255,255,.25), transparent 45%);
  pointer-events: none;
}
.enq-hero .container { position: relative; z-index: 2; }
.enq-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); color: #fff;
  font-weight: 800; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .42rem .95rem; border-radius: 50px; margin-bottom: 14px; backdrop-filter: blur(6px);
}
.enq-hero h1 { color: #fff; font-size: clamp(1.55rem, 4vw, 2.3rem); font-weight: 800; margin: 0; }
.enq-hero p { color: rgba(255,255,255,.88); margin: .55rem auto 0; max-width: 520px; font-size: 1rem; }
/* desktop: navbar is sticky (in-flow), so the hero needs little top padding — remove the gap */
@media (min-width: 992px) { .enq-hero { padding-top: 32px; } }

/* shell card pulled up over hero */
.enq-wrap { padding: 0 0 72px; }
.enq-shell {
  max-width: 720px; margin: -20px auto 0; background: #fff; border-radius: 24px;
  box-shadow: 0 40px 90px -34px rgba(20,24,70,.45); position: relative; z-index: 3; overflow: hidden;
}

/* stepper */
.enq-stepper { display: flex; align-items: flex-start; justify-content: space-between; gap: 4px; padding: 26px 30px 6px; }
.enq-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; position: relative; text-align: center; }
.enq-step .es-dot {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; background: #eef0fb; color: #9094bb; border: 2px solid #e3e7f5;
  transition: all .3s; z-index: 2;
}
.enq-step .es-label { font-size: .72rem; font-weight: 700; color: #9094bb; line-height: 1.2; }
.enq-step.is-active .es-dot { background: var(--g-violet); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -6px rgba(108,99,255,.6); }
.enq-step.is-active .es-label { color: var(--violet); }
.enq-step.is-done .es-dot { background: #10B98E; color: #fff; border-color: transparent; }
.enq-step.is-done .es-label { color: #0E9E7A; }
.enq-step + .enq-step::before {
  content: ""; position: absolute; left: -50%; top: 19px; width: 100%; height: 3px;
  background: #e3e7f5; z-index: 1; border-radius: 3px;
}
.enq-step.is-done + .enq-step::before, .enq-step.is-active + .enq-step::before { background: linear-gradient(90deg, #10B98E, var(--violet)); }

/* body / panes */
.enq-body { padding: 16px 30px 30px; }
.enq-pane { animation: enqIn .3s ease both; }
@keyframes enqIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.enq-heading { text-align: center; margin-bottom: 14px; }
.eh-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--g-violet); color: #fff; display: grid; place-items: center; font-size: 1.55rem; margin: 0 auto 13px; box-shadow: 0 14px 30px -10px rgba(108,99,255,.6); }
.enq-heading h2 { font-size: 1.42rem; font-weight: 800; margin: 0 0 5px; color: var(--ink); }
.enq-heading h2 em { font-style: normal; background: var(--g-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.enq-heading p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---- step 3: enquiry-type selector ---- */
.enq-ghead { display: flex; align-items: center; gap: 12px; margin: 20px 0 12px; }
.enq-ghead:first-child { margin-top: 4px; }
.gh-line { flex: 1; height: 2px; border-radius: 2px; }
.gh-project .gh-line { background: linear-gradient(90deg, transparent, #00D4FF 55%, #6C63FF); }
.gh-project .gh-line:last-child { background: linear-gradient(90deg, #6C63FF, #00D4FF 45%, transparent); }
.gh-other .gh-line { background: linear-gradient(90deg, transparent, #FFC24A 55%, #FF7A53); }
.gh-other .gh-line:last-child { background: linear-gradient(90deg, #FF7A53, #FFC24A 45%, transparent); }
.gh-pill { display: inline-flex; align-items: center; gap: 9px; padding: 6px 16px 6px 6px; border-radius: 50px; white-space: nowrap; }
.gh-ic { width: 28px; height: 28px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-size: .8rem; flex: 0 0 auto; }
.gh-t { font-weight: 800; font-size: .88rem; letter-spacing: .02em; }
.gh-project .gh-pill { background: rgba(108, 99, 255, .1); }
.gh-project .gh-ic { background: var(--g-violet); box-shadow: 0 6px 13px -5px rgba(108,99,255,.65); }
.gh-project .gh-t { color: #5a4fd6; }
.gh-other .gh-pill { background: rgba(255, 142, 83, .13); }
.gh-other .gh-ic { background: linear-gradient(145deg, #FF8E53, #FFB14A); box-shadow: 0 6px 13px -5px rgba(255,142,83,.6); }
.gh-other .gh-t { color: #E0762F; }

.enq-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.enq-type-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; background: #fff; border: 1.8px solid #e8eaf6; border-radius: 15px; padding: 14px 12px 13px; cursor: pointer; transition: transform .22s, box-shadow .22s, border-color .22s, background .22s; }
.enq-type-card:hover { border-color: #c9cdf0; transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(20,24,70,.32); }
.enq-type-card.sel { border-color: var(--violet); background: linear-gradient(180deg, #f7f5ff, #fff); box-shadow: 0 16px 34px -16px rgba(108,99,255,.45); }
.etc-ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-size: 1.25rem; margin-bottom: 5px; box-shadow: 0 11px 22px -10px rgba(20,24,70,.45); }
.etc-quote .etc-ic { background: var(--g-violet); }
.etc-buy .etc-ic { background: var(--g-fire); }
.etc-career .etc-ic { background: linear-gradient(145deg, #FF5E9C, #FF88BF); }
.etc-contact .etc-ic { background: linear-gradient(145deg, #0DA6C9, #3ACFE6); }
.etc-t { font-weight: 800; font-size: .95rem; color: var(--ink); }
.etc-line { font-size: .76rem; color: var(--muted); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.etc-check { position: absolute; top: 10px; right: 10px; width: 21px; height: 21px; border-radius: 50%; background: var(--violet); color: #fff; display: grid; place-items: center; font-size: .76rem; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .2s; }
.enq-type-card.sel .etc-check { opacity: 1; transform: scale(1); }

/* fields */
.enq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 11px; }
.enq-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.enq-field.full { grid-column: 1 / -1; }
.enq-lbl { font-size: .82rem; font-weight: 700; color: #3a3f63; display: flex; align-items: center; gap: 6px; }
.enq-lbl .req { color: #FF5E7A; }
.enq-input, .enq-field select, .enq-field textarea {
  width: 100%; border: 1.6px solid #e3e7f5; border-radius: 12px; padding: .72rem .9rem;
  font-size: .92rem; font-family: inherit; color: var(--ink); background: #fbfcff;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.enq-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238A8FB0'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2rem; }
.enq-input:focus, .enq-field select:focus, .enq-field textarea:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(108,99,255,.12); background: #fff; }
.enq-field textarea { resize: vertical; min-height: 100px; }
.enq-hint { font-size: .76rem; font-weight: 600; color: var(--violet); display: inline-flex; align-items: center; gap: 5px; margin-top: 1px; }
.enq-hint i { font-size: .85rem; }

/* phone field with country code */
.enq-phone { display: flex; align-items: stretch; border: 1.6px solid #e3e7f5; border-radius: 12px; overflow: hidden; background: #fbfcff; transition: border-color .2s, box-shadow .2s; }
.enq-phone:focus-within { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(108,99,255,.12); background: #fff; }
.enq-cc { position: relative; display: flex; align-items: center; gap: 5px; padding: 0 11px; background: #f1f3fb; font-weight: 800; font-size: .86rem; color: #3a3f63; border-right: 1.6px solid #e3e7f5; white-space: nowrap; cursor: pointer; }
.enq-cc .cc-flag { font-size: 1.05rem; line-height: 1; }
.enq-cc .cc-chev { font-size: .65rem; color: #9094bb; }
.enq-cc select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; border: 0; cursor: pointer; }
.enq-phone input { flex: 1; min-width: 0; border: 0; background: transparent; padding: .72rem .9rem; font-size: .92rem; color: var(--ink); outline: none; }

/* chips (single-select pills) */
.enq-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.enq-chip { border: 1.6px solid #e3e7f5; background: #fff; color: #3a3f63; font-weight: 700; font-size: .84rem; padding: .5rem .95rem; border-radius: 50px; cursor: pointer; transition: all .2s; }
.enq-chip:hover { border-color: var(--violet); color: var(--violet); }
.enq-chip.sel { background: var(--g-violet); color: #fff; border-color: transparent; box-shadow: 0 8px 18px -8px rgba(108,99,255,.6); }

/* icon-card picker (services / products) */
.enq-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 10px; }
.enq-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: #fff; border: 1.8px solid #e8eaf6; border-radius: 14px; padding: 15px 10px 14px; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
.enq-card:hover { border-color: #c9cdf0; transform: translateY(-2px); box-shadow: 0 13px 26px -16px rgba(20,24,70,.32); }
.enq-card.sel { border-color: var(--violet); background: linear-gradient(180deg, #f7f5ff, #fff); box-shadow: 0 14px 30px -16px rgba(108,99,255,.45); }
.ec-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--g-violet); color: #fff; display: grid; place-items: center; font-size: 1.3rem; box-shadow: 0 11px 22px -10px rgba(108,99,255,.6); }
.ec-t { font-weight: 700; font-size: .82rem; color: var(--ink); line-height: 1.3; }
.ec-check { position: absolute; top: 8px; right: 8px; width: 19px; height: 19px; border-radius: 50%; background: var(--violet); color: #fff; display: grid; place-items: center; font-size: .68rem; opacity: 0; transform: scale(.4); transition: opacity .2s, transform .2s; }
.enq-card.sel .ec-check { opacity: 1; transform: scale(1); }

/* live character counter */
.enq-count { display: block; text-align: right; font-size: .74rem; font-weight: 600; color: var(--muted); margin-top: 5px; }
.enq-count.low { color: #E07636; }

/* reCAPTCHA */
.enq-captcha { display: flex; justify-content: center; margin-top: 18px; }

/* file upload */
.enq-file { position: relative; border: 2px dashed #d6daee; border-radius: 14px; padding: 18px; text-align: center; cursor: pointer; transition: all .2s; background: #fbfcff; }
.enq-file:hover { border-color: var(--violet); background: #f6f4ff; }
.enq-file i { font-size: 1.6rem; color: var(--violet); }
.enq-file p { margin: 6px 0 0; font-size: .82rem; color: var(--muted); }
.enq-file.has-file { border-style: solid; border-color: #10B98E; background: #f0fbf7; }
.enq-file.has-file i { color: #10B98E; }
.enq-file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* OTP */
.otp-sent { text-align: center; font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.otp-sent b { color: var(--ink); }
.otp-boxes { display: flex; justify-content: center; gap: 10px; margin: 4px 0; }
.otp-box { width: 50px; height: 58px; text-align: center; font-size: 1.45rem; font-weight: 800; color: var(--ink); border: 1.8px solid #e3e7f5; border-radius: 12px; background: #fbfcff; transition: all .2s; }
.otp-box:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(108,99,255,.14); background: #fff; }
.otp-box.filled { border-color: var(--violet); background: #fff; }
.otp-meta { text-align: center; font-size: .85rem; color: var(--muted); margin-top: 16px; }
.otp-meta a, .otp-edit a { color: var(--violet); font-weight: 700; text-decoration: none; cursor: pointer; }
.otp-meta a.disabled { color: #b9bdd6; cursor: default; pointer-events: none; }
.otp-edit { text-align: center; font-size: .85rem; margin-top: 6px; }

/* error + actions */
.enq-error { display: none; align-items: center; gap: 7px; color: #E23D5B; font-size: .84rem; font-weight: 600; margin-top: 14px; justify-content: center; }
.enq-error.show { display: flex; }
/* subtle divider line before the (centered) buttons */
.enq-divider { height: 1px; margin: 24px auto 0; background: linear-gradient(90deg, transparent, #e3e7f5 18%, #e3e7f5 82%, transparent); }
.enq-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.btn-back { background: #f1f3fb; color: #3a3f63; border: 0; border-radius: 50px; font-weight: 800; padding: .8rem 1.4rem; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: all .2s; cursor: pointer; }
.btn-back:hover { background: #e6e9f7; color: #3a3f63; }

/* trust strip */
.enq-trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; color: #9094bb; font-size: .78rem; font-weight: 600; }
.enq-trust span { display: inline-flex; align-items: center; gap: 5px; }
.enq-trust i { color: #10B98E; }

/* success */
.enq-success { text-align: center; padding: 14px 0 10px; }
.es-ico { position: relative; width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(145deg, #10B98E, #2DD3A6); color: #fff; display: grid; place-items: center; font-size: 2.7rem; margin: 0 auto 18px; box-shadow: 0 20px 42px -12px rgba(16,185,142,.6); animation: enqPop .55s cubic-bezier(.22,1.4,.4,1) both; }
.es-ico::before, .es-ico::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(16,185,142,.35); animation: esRing 2.4s ease-out infinite; }
.es-ico::after { animation-delay: 1.2s; }
@keyframes esRing { 0% { transform: scale(.86); opacity: .8; } 70%, 100% { transform: scale(1.35); opacity: 0; } }
@keyframes enqPop { 0% { transform: scale(.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.enq-success h2 { font-size: 1.6rem; font-weight: 800; margin: 0 0 8px; color: var(--ink); }
.enq-success p { color: var(--muted); max-width: 430px; margin: 0 auto 24px; }
.enq-summary { max-width: 440px; margin: 0 auto 24px; text-align: left; display: flex; flex-direction: column; gap: 9px; }
.enq-summary .sr { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #eef0f8; border-radius: 13px; padding: 11px 14px; box-shadow: 0 6px 16px -12px rgba(20,24,70,.3); }
.sr-ic { width: 36px; height: 36px; border-radius: 11px; color: #fff; display: grid; place-items: center; font-size: 1rem; flex: 0 0 auto; box-shadow: 0 8px 16px -8px rgba(20,24,70,.4); }
.sr-l { font-size: .82rem; color: var(--muted); font-weight: 600; }
.sr-v { margin-left: auto; font-size: .92rem; color: var(--ink); font-weight: 800; text-align: right; word-break: break-word; }
.sr-name .sr-ic { background: var(--g-violet); }
.sr-mobile .sr-ic { background: linear-gradient(145deg, #10B98E, #2DD3A6); }
.sr-email .sr-ic { background: linear-gradient(145deg, #0DA6C9, #3ACFE6); }
.sr-request .sr-ic { background: var(--g-fire); }

@media (max-width: 575.98px) {
  .enq-hero { padding: 80px 0 40px; }
  .enq-grid { grid-template-columns: 1fr; }
  /* keep the enquiry-type cards 2-per-row on mobile too */
  .enq-types { grid-template-columns: 1fr 1fr; gap: 10px; }
  .enq-type-card { padding: 13px 8px 12px; }
  .etc-ic { width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem; margin-bottom: 4px; }
  .etc-t { font-size: .82rem; }
  .etc-line { font-size: .66rem; line-height: 1.3; white-space: normal; }
  .etc-check { top: 8px; right: 8px; width: 19px; height: 19px; font-size: .68rem; }
  .gh-pill { padding: 5px 12px 5px 5px; }
  .gh-t { font-size: .8rem; }
  .enq-shell { margin: -34px 14px 0; border-radius: 18px; }
  .enq-body { padding: 14px 16px 24px; }
  .enq-stepper { padding: 20px 14px 6px; }
  .enq-step .es-dot { width: 34px; height: 34px; font-size: .9rem; }
  .enq-step .es-label { font-size: .6rem; }
  .enq-step + .enq-step::before { top: 16px; }
  .otp-box { width: 42px; height: 52px; font-size: 1.25rem; }
  .otp-boxes { gap: 7px; }
}

/* contact page — form replaced by an enquiry CTA */
.contact-cta-box { text-align: center; padding: 22px 6px; }
.contact-cta-box .cc-ic { width: 70px; height: 70px; border-radius: 20px; background: var(--g-violet); color: #fff; display: grid; place-items: center; font-size: 1.95rem; margin: 0 auto 18px; box-shadow: 0 16px 34px -12px rgba(108,99,255,.6); }
.contact-cta-box .form2-title { margin-bottom: 8px; }
.contact-cta-box .form2-note { max-width: 390px; margin: 0 auto 24px; }
.cc-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 22px; color: var(--muted); font-size: .82rem; font-weight: 600; }
.cc-points span { display: inline-flex; align-items: center; gap: 6px; }
.cc-points i { color: #10B98E; }

/* ── Contact Split Panel (contact.html) ── */
.contact-split-section { background: #f5f4ff; }
.contact-split-row { border-radius: 28px; overflow: hidden; box-shadow: 0 48px 100px -36px rgba(20,24,70,.22); }

/* LEFT dark panel */
.contact-dark-panel {
  background: linear-gradient(150deg, #2D2466 0%, #3E2F90 50%, #1a1250 100%);
  position: relative; overflow: hidden;
}
.contact-dark-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 88% 8%, rgba(108,99,255,.35), transparent 52%),
              radial-gradient(circle at 12% 92%, rgba(0,212,255,.2), transparent 48%);
}
.cdp-inner {
  padding: 28px 30px; height: 100%;
  display: flex; flex-direction: column; position: relative; z-index: 2;
}
.cdp-floaters { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 1; }
.cdp-floaters i:nth-child(1) { position: absolute; top: -30px; right: -30px; font-size: 9rem; color: rgba(255,255,255,.04); }
.cdp-floaters i:nth-child(2) { position: absolute; bottom: 50px; right: 10px; font-size: 5.5rem; color: rgba(255,255,255,.04); }
.cdp-floaters i:nth-child(3) { position: absolute; bottom: -20px; left: -20px; font-size: 8rem; color: rgba(255,255,255,.04); }
.cdp-tagline { color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 500; margin-bottom: 1.8rem; }
.cdp-cards { display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.cdp-card {
  display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; border-radius: 18px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1);
  text-decoration: none; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.cdp-card:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.22); transform: translateX(5px); }
.cdp-card-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.18rem; color: #fff; flex: 0 0 48px; box-shadow: 0 10px 22px -8px rgba(0,0,0,.45); }
.cdp-c-v { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.cdp-c-g { background: linear-gradient(135deg, #00C9A7, #00F5A0); }
.cdp-c-p { background: linear-gradient(135deg, #FF5E9C, #FF7AC6); }
.cdp-card-txt { flex: 1; min-width: 0; }
.cdp-card-label { display: block; color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .14rem; }
.cdp-card-val { display: block; color: #fff; font-size: .9rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cdp-arr { color: rgba(255,255,255,.28); font-size: .8rem; transition: color .25s, transform .3s; }
.cdp-card:hover .cdp-arr { color: rgba(255,255,255,.7); transform: translateX(4px); }
.cdp-social { display: flex; gap: .6rem; margin-top: 1.8rem; }
.cdp-social a {
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); display: grid; place-items: center; font-size: .95rem; text-decoration: none;
  transition: background .25s, color .25s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.cdp-social a:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-4px) scale(1.1); }
.cdp-reply-badge {
  display: inline-flex; align-items: center; gap: .5rem; align-self: flex-start;
  margin-top: 1.6rem; padding: .42rem 1rem; border-radius: 50px;
  background: rgba(16,185,142,.15); border: 1px solid rgba(16,185,142,.3);
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 600;
}
.cdp-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B98E; flex: 0 0 8px;
  box-shadow: 0 0 0 3px rgba(16,185,142,.3);
  animation: cdpPulse 2s ease-in-out infinite;
}
@keyframes cdpPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,142,.3); }
  50%       { box-shadow: 0 0 0 7px rgba(16,185,142,.08); }
}

/* RIGHT light panel */
.contact-light-panel { background: #fff; }
.clp-inner { padding: 28px 30px; display: flex; flex-direction: column; gap: 1.2rem; height: 100%; }
.clp-stats {
  display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 1.5rem;
  border-radius: 18px; background: #f8f6ff; border: 1.5px solid #ede9ff;
}
.clp-stat { text-align: center; flex: 1; }
.clp-stat-num { display: block; font-size: 1.65rem; font-weight: 900; background: var(--g-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.clp-stat-label { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.clp-stat-div { width: 1.5px; height: 38px; background: #ddd8ff; flex: 0 0 auto; }
.clp-cta { text-align: center; }
.clp-cta-ic {
  width: 74px; height: 74px; border-radius: 22px; background: var(--g-violet); color: #fff;
  display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px;
  box-shadow: 0 20px 40px -14px rgba(108,99,255,.65); animation: ctaRing 2.8s ease-out infinite;
}
.clp-cta-title { font-size: 1.5rem; font-weight: 900; color: var(--ink); margin-bottom: .5rem; }
.clp-cta-note { color: var(--muted); font-size: .92rem; max-width: 400px; margin: 0 auto 1.5rem; }
.clp-btn { font-size: 1.02rem !important; padding: 14px 28px !important; border-radius: 50px !important; }
.clp-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; margin-top: 1rem; color: var(--muted); font-size: .8rem; font-weight: 700; }
.clp-trust span { display: inline-flex; align-items: center; gap: .35rem; }
.clp-trust i { color: #10B98E; }
.clp-services { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; padding-top: 1.6rem; border-top: 1.5px solid #f0eeff; }
.clp-chip { display: inline-flex; align-items: center; gap: .38rem; padding: .42rem .95rem; border-radius: 50px; background: #f2f0ff; border: 1.5px solid #e3deff; color: var(--violet); font-size: .78rem; font-weight: 700; }

/* Social bar */
.contact-social-bar {
  margin-top: 2.2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  background: #fff; border-radius: 20px; padding: 1.2rem 2rem;
  box-shadow: 0 8px 30px -12px rgba(20, 24, 70, .14);
  border: 1.5px solid #ede9ff;
}
.csb-label {
  font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.csb-icons { display: flex; flex-wrap: wrap; gap: .75rem; flex: 1; }
.csb-ic {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.15rem; border-radius: 50px; font-size: .85rem; font-weight: 700;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, filter .3s ease;
}
.csb-ic i { font-size: 1.05rem; }
.csb-ic:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 14px 28px -10px rgba(0,0,0,.25); }

.csb-fb  { background: #E8F0FF; color: #1877F2; border-color: #C4D7FF; }
.csb-fb:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.csb-ig  { background: #FFE8F5; color: #E1306C; border-color: #FFB3D9; }
.csb-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: transparent; }
.csb-yt  { background: #FFE8E8; color: #FF0000; border-color: #FFBFBF; }
.csb-yt:hover  { background: #FF0000; color: #fff; border-color: #FF0000; }
.csb-li  { background: #E8F4FF; color: #0A66C2; border-color: #B3D9FF; }
.csb-li:hover  { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.csb-wa  { background: #E8FFF3; color: #25D366; border-color: #A8EFC9; }
.csb-wa:hover  { background: #25D366; color: #fff; border-color: #25D366; }

@media (max-width: 991.98px) {
  .cdp-inner, .clp-inner { padding: 38px 30px; }
  .contact-social-bar { padding: 1rem 1.4rem; gap: 1rem; }
}
@media (max-width: 575.98px) {
  .cdp-inner, .clp-inner { padding: 28px 20px; }
  .clp-stats { gap: .6rem; }
  .clp-stat-num { font-size: 1.3rem; }
  .contact-social-bar { flex-direction: column; align-items: flex-start; }
  .csb-ic span { display: none; }
  .csb-ic { padding: .6rem .75rem; border-radius: 14px; }
}

/* ───────────────────────── 23. BLOG ─── */
.bg-violet { background: linear-gradient(135deg, #6C63FF, #5B8CFF); }
.bg-pink   { background: linear-gradient(135deg, #FF5E9C, #FF88BF); }
.bg-orange { background: linear-gradient(135deg, #FF8E53, #FFB14A); }
.bg-green  { background: linear-gradient(135deg, #10B98E, #2DD3A6); }
.bg-cyan   { background: linear-gradient(135deg, #0DA6C9, #3ACFE6); }
.bg-purple { background: linear-gradient(135deg, #8B5CFF, #B561FF); }

.blog-wrap { padding: 56px 0 72px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

/* category cards (blog.html) — icon-led & colour-coded, distinct from photo post cards */
.cat-card {
  --acc: #6C63FF; --acc2: #5B8CFF; --acc-soft: rgba(108,99,255,.12);
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid #eef0f8; border-radius: 22px;
  padding: 26px 24px 24px; text-decoration: none;
  box-shadow: 0 24px 50px -34px rgba(20,24,70,.4);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.cat-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.cat-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: 0 42px 72px -34px rgba(20,24,70,.5); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-watermark {
  position: absolute; right: -16px; bottom: -26px; z-index: 0;
  font-size: 8.5rem; line-height: 1; color: var(--acc);
  opacity: .07; transform: rotate(-8deg); pointer-events: none;
  transition: opacity .35s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.cat-card:hover .cat-watermark { opacity: .13; transform: rotate(0) scale(1.06); }
.cat-num {
  position: absolute; top: 18px; right: 22px; z-index: 1;
  font-family: var(--ff-head); font-weight: 800; font-size: 2.2rem;
  color: var(--acc); opacity: .14; letter-spacing: -.02em;
}
.cat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; position: relative; z-index: 1; }
.cat-ic {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 17px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--acc), var(--acc2));
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 14px 28px -10px var(--acc);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.cat-card:hover .cat-ic { transform: rotate(-7deg) scale(1.08); }
.cat-count {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .73rem; font-weight: 800; color: var(--acc);
  background: var(--acc-soft); padding: .35rem .7rem; border-radius: 50px;
}
.cat-count i { font-size: .8rem; }
.cat-card h3 { font-family: var(--ff-head); font-size: 1.24rem; font-weight: 800; color: var(--ink); margin: 0 0 9px; position: relative; z-index: 1; }
.cat-card p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 0 0 20px; flex: 1; position: relative; z-index: 1; }
.cat-go {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  font-family: var(--ff-head); font-weight: 800; font-size: .9rem; color: var(--acc);
  position: relative; z-index: 1;
}
.cat-go-arrow {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--acc), var(--acc2)); color: #fff; font-size: .82rem;
  box-shadow: 0 8px 18px -8px var(--acc); transition: transform .3s ease;
}
.cat-card:hover .cat-go-arrow { transform: translateX(5px); }
/* per-category accents */
.cat-bg-violet { --acc: #6C63FF; --acc2: #5B8CFF; --acc-soft: rgba(108,99,255,.12); }
.cat-bg-pink   { --acc: #FF4D94; --acc2: #FF7AC6; --acc-soft: rgba(255,77,148,.12); }
.cat-bg-orange { --acc: #FB8C2E; --acc2: #FFB84D; --acc-soft: rgba(251,140,46,.13); }
.cat-bg-green  { --acc: #06C29C; --acc2: #00E0A1; --acc-soft: rgba(6,194,156,.13); }
.cat-bg-cyan   { --acc: #00ADD4; --acc2: #19D3F0; --acc-soft: rgba(0,173,212,.13); }
.cat-bg-purple { --acc: #A855F7; --acc2: #C77DFF; --acc-soft: rgba(168,85,247,.12); }

/* post cards (category + related) */
.blog-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 22px 46px -30px rgba(20,24,70,.4); border: 1px solid #eef0f8; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 32px 56px -28px rgba(20,24,70,.45); }
.blog-card-cover { display: block; height: 150px; position: relative; overflow: hidden; text-decoration: none; }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.blog-card:hover .blog-card-cover img { transform: scale(1.05); }
.blog-card-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: #2a2d4a; font-size: .68rem; font-weight: 800; padding: .25rem .6rem; border-radius: 50px; z-index: 2; }
.blog-card-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: .75rem; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 800; line-height: 1.35; margin: 0 0 8px; }
.blog-card-body h3 a { color: var(--ink); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--violet); }
.blog-card-body p { color: var(--muted); font-size: .86rem; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.blog-readmore { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; color: var(--violet); font-weight: 800; font-size: .84rem; text-decoration: none; }
.blog-readmore i { transition: transform .25s; }
.blog-readmore:hover i { transform: translateX(4px); }

/* details — full-width scrolling hero banner */
.blog-hero-banner { width: 100%; margin-top: 76px; position: relative; }
.blog-hero-banner img { width: 100%; height: clamp(220px, 32vw, 400px); object-fit: cover; display: block; }
.blog-hero-banner .owl-dots { position: absolute; bottom: 14px; left: 0; right: 0; }
.blog-hero-banner .owl-dot span { width: 9px !important; height: 9px !important; background: rgba(255,255,255,.6) !important; }
.blog-hero-banner .owl-dot.active span { background: #fff !important; width: 26px !important; border-radius: 5px !important; }

/* related carousel — equal-height cards */
.blog-related-owl .owl-stage { display: flex; }
.blog-related-owl .owl-item { display: flex; }
.blog-related-owl .owl-item .blog-card { width: 100%; }

/* details — article */
.blog-article { max-width: 760px; margin: 0 auto; }
.blog-tag { display: inline-flex; align-items: center; gap: 6px; background: #f0ecff; color: var(--violet); font-weight: 800; font-size: .78rem; padding: .4rem .9rem; border-radius: 50px; margin-bottom: 14px; }
.blog-article h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; color: var(--ink); line-height: 1.18; margin: 0 0 12px; }
.blog-pubdate { display: flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 700; font-size: .88rem; margin: 0 0 26px; padding-bottom: 22px; border-bottom: 1px solid #ececf4; }
.blog-content p { color: #3f4366; font-size: 1.04rem; line-height: 1.8; margin: 0 0 20px; }
.blog-content p:first-of-type { font-size: 1.12rem; color: #2a2d4a; }
.blog-related-title { font-size: 1.5rem; font-weight: 800; color: var(--ink); text-align: center; margin: 0 0 6px; }

/* related carousel nav */
.blog-related-owl .owl-nav { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.blog-related-owl .owl-nav button { width: 44px; height: 44px; border-radius: 50% !important; background: #fff !important; box-shadow: 0 10px 24px -12px rgba(20,24,70,.4) !important; color: var(--violet) !important; font-size: 1.1rem !important; transition: transform .2s, background .2s, color .2s; }
.blog-related-owl .owl-nav button:hover { transform: translateY(-2px); background: var(--g-violet) !important; color: #fff !important; }
.blog-related-owl .owl-nav button.disabled { opacity: .35; }

@media (max-width: 575.98px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-banner-slide { height: 200px; font-size: 3.4rem; }
}

/* ───────────────────────── 24. BRAND LOGO (image) ─── */
.logo-img { display: block; height: 40px; width: auto; }
/* collapse the brand anchor's default padding so a bigger logo doesn't grow the navbar height */
.navbar2 .navbar-brand { padding-top: 0; padding-bottom: 0; line-height: 1; }
.nav-logo .logo-img { height: 52px; }
.dh-logo { background: #fff; padding: 8px 12px; border-radius: 12px; box-shadow: 0 8px 20px -10px rgba(20,24,70,.4); }
.dh-logo .logo-img { height: 46px; }
.f2-brand .nav-logo { display: inline-flex; background: #fff; padding: 9px 16px; border-radius: 14px; box-shadow: 0 12px 28px -14px rgba(0,0,0,.5); }
.f2-brand .nav-logo .logo-img { height: 56px; }
@media (max-width: 991.98px) { .nav-logo .logo-img { height: 46px; } }

/* ── Navbar & Drawer floating icons ── */
.nav-floaters, .drawer-floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.nav-floaters i, .drawer-floaters i { position: absolute; animation: floatY 9s ease-in-out infinite; }

@media (max-width: 991.98px) {
  .navbar2 .nav-floaters { display: none; }
}

.nav-floaters i:nth-child(1)  { top: 20%; left: 2%;   font-size: 1.5rem; animation-delay: 0s;   color: rgba(108,99,255,.45); }
.nav-floaters i:nth-child(2)  { top: 55%; left: 8%;   font-size: 1.2rem; animation-delay: .6s;  color: rgba(236,72,153,.42); }
.nav-floaters i:nth-child(3)  { top: 15%; left: 16%;  font-size: 1.4rem; animation-delay: 1.2s; color: rgba(6,182,212,.42); }
.nav-floaters i:nth-child(4)  { top: 60%; left: 23%;  font-size: 1.1rem; animation-delay: .3s;  color: rgba(245,158,11,.42); }
.nav-floaters i:nth-child(5)  { top: 25%; left: 34%;  font-size: 1.3rem; animation-delay: .9s;  color: rgba(16,185,129,.42); }
.nav-floaters i:nth-child(6)  { top: 55%; left: 44%;  font-size: 1.5rem; animation-delay: 1.5s; color: rgba(239,68,68,.40); }
.nav-floaters i:nth-child(7)  { top: 20%; left: 55%;  font-size: 1.2rem; animation-delay: .4s;  color: rgba(108,99,255,.42); }
.nav-floaters i:nth-child(8)  { top: 60%; left: 63%;  font-size: 1.4rem; animation-delay: 1.1s; color: rgba(236,72,153,.40); }
.nav-floaters i:nth-child(9)  { top: 25%; left: 74%;  font-size: 1.2rem; animation-delay: .7s;  color: rgba(6,182,212,.42); }
.nav-floaters i:nth-child(10) { top: 60%; left: 82%;  font-size: 1.3rem; animation-delay: 1.8s; color: rgba(245,158,11,.40); }
.nav-floaters i:nth-child(11) { top: 15%; left: 90%;  font-size: 1.2rem; animation-delay: .2s;  color: rgba(16,185,129,.42); }
.nav-floaters i:nth-child(12) { top: 65%; left: 96%;  font-size: 1.4rem; animation-delay: 1.4s; color: rgba(108,99,255,.42); }

.drawer-floaters i:nth-child(1)  { top: 3%;  left: 5%;   font-size: 3rem;   animation-delay: 0s;   color: rgba(108,99,255,.35); }
.drawer-floaters i:nth-child(2)  { top: 18%; left: 65%;  font-size: 2.4rem; animation-delay: .7s;  color: rgba(236,72,153,.32); }
.drawer-floaters i:nth-child(3)  { top: 35%; left: 10%;  font-size: 2.2rem; animation-delay: 1.3s; color: rgba(6,182,212,.32); }
.drawer-floaters i:nth-child(4)  { top: 50%; left: 75%;  font-size: 2.7rem; animation-delay: .4s;  color: rgba(245,158,11,.30); }
.drawer-floaters i:nth-child(5)  { top: 65%; left: 20%;  font-size: 2rem;   animation-delay: 1.0s; color: rgba(16,185,129,.32); }
.drawer-floaters i:nth-child(6)  { top: 78%; left: 55%;  font-size: 2.5rem; animation-delay: .2s;  color: rgba(239,68,68,.30); }
.drawer-floaters i:nth-child(7)  { top: 88%; left: 8%;   font-size: 2.2rem; animation-delay: 1.6s; color: rgba(108,99,255,.33); }
.drawer-floaters i:nth-child(8)  { top: 10%; left: 40%;  font-size: 2rem;   animation-delay: .9s;  color: rgba(236,72,153,.30); }
.drawer-floaters i:nth-child(9)  { top: 55%; left: 45%;  font-size: 2.6rem; animation-delay: 1.8s; color: rgba(6,182,212,.30); }
.drawer-floaters i:nth-child(10) { top: 30%; left: 85%;  font-size: 2.2rem; animation-delay: .5s;  color: rgba(245,158,11,.32); }

/* ───────────────────────── 25. TOPBAR (desktop announcement strip) ─── */
.topbar { display: none; }

@media (min-width: 992px) {
  .topbar {
    display: block;
    height: 38px;
    background: linear-gradient(90deg, #6C63FF 0%, #7B61FF 32%, #FF5E9C 68%, #FFB84D 100%);
    color: #fff;
    font-size: .85rem;
    box-shadow: 0 3px 12px -6px rgba(20, 24, 70, .45);
  }
  .topbar-inner {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .tb-tagline {
    margin: 0;
    font-weight: 700; letter-spacing: .015em;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .tb-tagline i { font-size: 1rem; color: rgba(255, 255, 255, .92); }
  .tb-accent { font-weight: 800; }

  .tb-links { display: inline-flex; align-items: center; gap: 1.5rem; }
  .tb-links a {
    color: rgba(255, 255, 255, .94); text-decoration: none; font-weight: 600;
    display: inline-flex; align-items: center; gap: .4rem;
    transition: color .25s ease, transform .25s ease;
  }
  .tb-links a:hover { color: #fff; transform: translateY(-1px); }
  .tb-links i { font-size: .9rem; }

  /* topbar scrolls away; navbar sticks to viewport top after topbar leaves */
  .navbar2 { position: sticky; top: 0; }
}

/* ───────────────────────── 30. UTILITY CLASSES (replace former inline styles) ─── */
.tc-google    { color: #4285F4; }
.tc-meta      { color: #0866FF; }
.tc-ga4       { color: #E8710A; }
.tc-semrush   { color: #FF642D; }
.tc-mailchimp { color: #FFE01B; }
.tc-hubspot   { color: #FF7A59; }
.tc-gds       { color: #00B2FF; }
.tc-stripe    { color: #635BFF; }
.tc-maps      { color: #34A853; }
.link-violet  { color: var(--violet); }
.note-strong  { font-weight: 700; color: var(--ink-2); }
.pt-40        { padding-top: 40px; }

/* ───────────────────────── 31. WEB STORIES — landing grid ─── */
.ws-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.ws-filter { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1.5px solid #e7e9f5; color: #44496b; font-family: var(--ff-head); font-weight: 800; font-size: .85rem; padding: .55rem 1.15rem; border-radius: 50px; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.ws-filter i { font-size: .92rem; }
.ws-filter:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.ws-filter.active { background: var(--g-violet); color: #fff; border-color: transparent; box-shadow: 0 12px 26px -10px rgba(108,99,255,.6); }
.ws-card.ws-hide { display: none; }
.ws-pop { animation: wsPop .4s cubic-bezier(.22,1,.36,1) both; }
@keyframes wsPop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.ws-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.ws-card {
  position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden;
  text-decoration: none; color: #fff; isolation: isolate;
  box-shadow: 0 26px 54px -28px rgba(20,24,70,.5);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.ws-card:hover { transform: translateY(-8px) scale(1.012); box-shadow: 0 42px 72px -30px rgba(20,24,70,.6); }
.ws-card-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.ws-card:hover .ws-card-bg { transform: scale(1.07); }
.ws-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,8,30,.15) 0%, rgba(10,8,30,0) 28%, rgba(10,8,30,.5) 74%, rgba(10,8,30,.85) 100%); }
.ws-card-glyph { position: absolute; right: -10px; top: 33%; z-index: 1; font-size: 6.2rem; color: #fff; opacity: .15; transform: rotate(-8deg); transition: transform .6s ease; }
.ws-card:hover .ws-card-glyph { transform: rotate(-2deg) scale(1.08); }
.ws-card-bars { position: absolute; top: 12px; left: 13px; right: 13px; z-index: 3; display: flex; gap: 4px; }
.ws-card-bars span { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.45); }
.ws-card-bars span:first-child { background: #fff; }
.ws-card-top { position: absolute; top: 24px; left: 14px; right: 14px; z-index: 3; display: flex; align-items: center; gap: 8px; }
.ws-card-ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.42); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-size: 1rem; }
.ws-card-tag { font-size: .64rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.34); padding: .28rem .6rem; border-radius: 50px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); white-space: nowrap; }
.ws-card-foot { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3; display: flex; flex-direction: column; gap: 7px; }
.ws-card-title { font-family: var(--ff-head); font-weight: 800; font-size: 1.02rem; line-height: 1.22; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.ws-card-meta { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.9); }
.ws-card-meta i { font-size: .85rem; }
@media (max-width: 767.98px) {
  .ws-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 16px;
  }
  .ws-filters::-webkit-scrollbar { display: none; }
  .ws-filter { flex: 0 0 auto; scroll-snap-align: center; }
}
@media (max-width: 575.98px) { .ws-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .ws-card-title { font-size: .92rem; } .ws-card-glyph { font-size: 5rem; } }

/* ───────────────────────── 32. WEB STORY — full-screen player ─── */
.story-body { margin: 0; background: #0a0820; overflow: hidden; }
.story-body main { margin: 0; padding: 0; }
.story { position: fixed; inset: 0; z-index: 1; display: grid; place-items: center; background: radial-gradient(circle at 50% 28%, #1c1846, #0a0820 72%); }
.story-frame {
  position: relative; width: 100vw; height: 100vh; height: 100dvh;
  overflow: hidden; background: #14132b;
  user-select: none; -webkit-user-select: none; touch-action: manipulation;
}
@media (min-width: 600px) {
  .story { padding: 18px; }
  .story-frame { width: auto; height: 100%; max-height: 920px; aspect-ratio: 9 / 16; border-radius: 26px; box-shadow: 0 50px 120px -28px rgba(0,0,0,.85); }
}
/* progress bars */
.story-progress { position: absolute; top: 12px; left: 12px; right: 12px; z-index: 6; display: flex; gap: 5px; }
.story-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.32); overflow: hidden; }
.story-bar-fill { display: block; height: 100%; width: 0; background: #fff; border-radius: 3px; }
/* top: brand + close */
.story-top { position: absolute; top: 26px; left: 15px; right: 15px; z-index: 6; display: flex; align-items: center; justify-content: space-between; }
.story-brand { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-family: var(--ff-head); font-weight: 800; font-size: .92rem; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
.story-brand:hover { color: #fff; }
.story-brand-mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.36); font-size: .9rem; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.story-close { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 1rem; background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.24); text-decoration: none; transition: background .2s, transform .2s; }
.story-close:hover { color: #fff; background: rgba(0,0,0,.55); transform: scale(1.06); }
/* slides */
.story-slides { position: absolute; inset: 0; z-index: 1; }
.story-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; background-size: cover; background-position: center; opacity: 0; visibility: hidden; }
.story-slide.is-on { opacity: 1; visibility: visible; }
.story-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,6,26,.3) 0%, rgba(8,6,26,0) 24%, rgba(8,6,26,.48) 64%, rgba(8,6,26,.84) 100%); }
.story-glyph { position: absolute; z-index: 1; right: -20px; top: 15%; font-size: 12rem; color: #fff; opacity: .13; transform: rotate(-8deg); }
.story-slide.is-on .story-glyph { animation: storyGlyph 6s ease-out forwards; }
@keyframes storyGlyph { from { transform: rotate(-8deg) scale(1); } to { transform: rotate(-3deg) scale(1.13); } }
.story-shape { position: absolute; z-index: 1; pointer-events: none; }
.story-shape-a { width: 230px; height: 230px; border-radius: 50%; top: -70px; left: -80px; background: rgba(255,255,255,.07); }
.story-shape-b { width: 150px; height: 150px; border-radius: 50%; bottom: 34%; right: -54px; border: 22px solid rgba(255,255,255,.08); }
/* content */
.story-content { position: relative; z-index: 2; width: 100%; padding: 0 28px 88px; }
.story-slide.is-on .story-content > * { animation: storyUp .55s cubic-bezier(.22,1,.36,1) both; }
.story-slide.is-on .story-badge { animation-delay: .05s; }
.story-slide.is-on .story-title { animation-delay: .14s; }
.story-slide.is-on .story-text  { animation-delay: .24s; }
.story-slide.is-on .story-cta   { animation-delay: .34s; }
@keyframes storyUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.story-badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-head); font-weight: 800; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.34); padding: .35rem .8rem; border-radius: 50px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); margin-bottom: 15px; }
.story-title { font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.7rem, 7.4vw, 2.35rem); line-height: 1.12; color: #fff; margin: 0 0 13px; text-shadow: 0 4px 22px rgba(0,0,0,.45); }
.story-text { font-size: clamp(.96rem, 4.2vw, 1.1rem); line-height: 1.5; color: rgba(255,255,255,.93); margin: 0; max-width: 31ch; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.story-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; background: #fff; color: #14132b; font-family: var(--ff-head); font-weight: 800; font-size: .92rem; padding: .82rem 1.5rem; border-radius: 50px; text-decoration: none; box-shadow: 0 16px 34px -12px rgba(0,0,0,.55); transition: transform .25s ease; }
.story-cta:hover { color: #14132b; transform: translateY(-2px) scale(1.02); }
.story-cta i { transition: transform .25s ease; }
.story-cta:hover i { transform: translateX(4px); }
/* tap zones */
.story-tap { position: absolute; top: 0; bottom: 0; z-index: 4; border: 0; background: transparent; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.story-tap-prev { left: 0; width: 30%; }
.story-tap-next { left: 30%; right: 0; }
/* paused dim + tap hint */
.story.is-paused .story-slide.is-on::before { content: ""; position: absolute; inset: 0; z-index: 3; background: rgba(0,0,0,.18); }
.story-hint { position: absolute; left: 50%; bottom: 30px; z-index: 5; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; font-weight: 700; color: #fff; background: rgba(0,0,0,.42); padding: .5rem .95rem; border-radius: 50px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: storyHintPulse 1.6s ease-in-out infinite; transition: opacity .4s ease; }
.story-hint.gone { opacity: 0; pointer-events: none; }
@keyframes storyHintPulse { 0%,100% { transform: translateX(-50%) translateY(0); opacity: .92; } 50% { transform: translateX(-50%) translateY(-4px); opacity: 1; } }
