/* ===========================================================
   Dava Infotech / TradePlus — Design System
   Display: Space Grotesk | Body: IBM Plex Sans | Data: IBM Plex Mono
=============================================================== */

:root{
  --bg:            #FAFAF8;
  --surface:       #FFFFFF;
  --surface-tint:  #F1F4FA;
  --ink:           #10141C;
  --ink-soft:      #4B5566;
  --ink-faint:     #8A93A3;
  --line:          #E3E5E4;
  --line-strong:   #CBD0D8;

  --primary:       #17307A;   /* deep ledger blue  */
  --primary-2:     #23439E;   /* mid blue          */
  --bright:        #2F6FED;   /* action blue       */
  --accent:        #12A882;   /* stock-green        */
  --accent-soft:   #E5F7F1;
  --amber:         #E8A33D;   /* highlight amber    */

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;

  --shadow-soft: 0 1px 2px rgba(16,20,28,.04), 0 12px 32px -16px rgba(16,20,28,.18);
  --shadow-hard: 0 2px 0 0 var(--primary);
}

*{ box-sizing: border-box; }
.hidden{ display: none !important; }
html{ scroll-behavior: smooth; }
body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
::selection{ background: var(--accent-soft); color: var(--primary); }

h1,h2,h3,h4, .font-display{
  font-family: 'Space Grotesk', 'IBM Plex Sans', sans-serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.font-mono{ font-family: 'IBM Plex Mono', monospace; }

a{ color: inherit; }

.wrap{
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px){
  .wrap{ padding-inline: 40px; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover{ background: var(--primary-2); transform: translateY(-1px); }

.btn-accent{
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover{ background: #0e9271; transform: translateY(-1px); }

.btn-ghost{
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover{ border-color: var(--primary); background: var(--surface-tint); }

.btn-sm{ padding: 9px 16px; font-size: 13.5px; }

/* ---------- Navbar ---------- */
.nav-link{
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color .15s ease, background-color .15s ease;
}
.nav-link:hover{ color: var(--primary); background: var(--surface-tint); }
.nav-link.active{
  color: #fff;
  background: var(--primary);
}

/* ---------- Section labels (used sparingly, only when it aids scanning) ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.eyebrow::before{
  content: "";
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- Barcode divider — signature motif ---------- */
.barcode-rule{
  height: 22px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--line-strong) 0px, var(--line-strong) 1px,
    transparent 1px, transparent 5px,
    var(--line-strong) 5px, var(--line-strong) 7px,
    transparent 7px, transparent 11px,
    var(--line-strong) 11px, var(--line-strong) 12px,
    transparent 12px, transparent 18px
  );
  opacity: .55;
}

/* ---------- Cards ---------- */
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

.product-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.product-card:hover{
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.module-tile{
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 22px;
}

/* ---------- Ledger mock (hero visual) ---------- */
.ledger-panel{
  background: var(--primary);
  border-radius: var(--radius-l);
  padding: 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ledger-panel::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(47,111,237,.55), transparent 55%);
  pointer-events: none;
}
.ledger-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}
.ledger-row:last-child{ border-bottom: none; }
.ledger-figure{
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
}
.up{ color: #6EE7B7; }
.down{ color: #FCA5A5; }

/* ---------- Stat ---------- */
.stat-num{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--primary);
  line-height: 1;
}

/* ---------- Footer ---------- */
.footer-link{
  color: #C7CEDD;
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer-link:hover{ color: #fff; }

/* ---------- Utility reveal (single orchestrated hero entrance only) ---------- */
.reveal-up{
  animation: reveal-up .7s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes reveal-up{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ---------- Shared scroll-reveal (generic, IntersectionObserver-driven) ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
}

/* Mobile menu */
#mobile-menu{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
#mobile-menu.open{ max-height: 480px; }

/* ===========================================================
   SITE HEADER — shared navbar, identical on every page
=============================================================== */
.site-header-wrap{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,23,42,.07);
  transition: background .3s ease, box-shadow .3s ease;
}
#site-nav.scrolled{
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 35px rgba(15,23,42,.08);
}
.site-nav-inner{
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-brand-mark{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.site-brand-mark svg{ width: 27px; height: 27px; }
.site-brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ---------- Shared footer logo chip (used on every page footer) ---------- */
.footer-logo{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-brand-name{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
  display: block;
}
.site-brand-subtitle{
  font-size: 10px;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
}
.site-nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav-link{
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.site-nav-link:hover{
  color: var(--primary);
  background: rgba(23,48,122,.05);
}
.site-nav-link.active{
  color: var(--primary);
  font-weight: 600;
}
.site-nav-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-call-link{
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.site-menu-btn{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #F3F5F9;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-menu-btn svg{ width: 22px; height: 22px; }
#mobile-menu.site-mobile-menu{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
}
.site-mobile-inner{
  padding: 16px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-mobile-link{
  padding: 13px 14px;
  border-radius: 12px;
  color: #344054;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}
.site-mobile-link:hover,
.site-mobile-link.active{
  background: rgba(23,48,122,.06);
  color: var(--primary);
}
.site-mobile-cta{ margin-top: 8px; width: 100%; }

@media (max-width: 1100px){
  .site-nav-links, .site-nav-actions{ display: none; }
  .site-menu-btn{ display: flex; }
}
@media (max-width: 520px){
  .site-header-wrap{ padding: 0 16px; }
  .site-nav-inner{ height: 68px; }
  .site-brand-mark{ width: 39px; height: 39px; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--bright);
  outline-offset: 2px;
}

/* ---------- Form fields — premium focus treatment ---------- */
#enquiry-form input,
#enquiry-form select,
#enquiry-form textarea{
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  background: var(--surface);
}
#enquiry-form input:hover,
#enquiry-form select:hover,
#enquiry-form textarea:hover{
  border-color: var(--line-strong);
}
#enquiry-form input:focus,
#enquiry-form select:focus,
#enquiry-form textarea:focus{
  outline: none;
  border-color: var(--bright) !important;
  box-shadow: 0 0 0 4px rgba(47,111,237,.12);
  background: #fff;
}
#enquiry-form label{ color: var(--ink); }
#enquiry-form .btn-primary{
  position: relative;
  overflow: hidden;
}
#form-status{
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
#form-status.show{ opacity: 1; transform: translateY(0); }
#form-status .status-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
#form-status.success .status-icon{ background: var(--accent-soft); color: var(--accent); }
#form-status.error .status-icon{ background: #FBE7E7; color: #C0392B; }

/* ---------- Contact page: registered office rows ---------- */
.contact-row-list{ display:flex; flex-direction:column; gap:10px; }
.contact-row{
  display:flex;
  gap:14px;
  font-size:13.5px;
  line-height:1.6;
}
.contact-row-label{
  flex:0 0 64px;
  font-weight:600;
  color:var(--ink);
}
.contact-row-value{ color:var(--ink-soft); }
.contact-row-value a{ color:var(--ink-soft); transition:color .15s ease; }
.contact-row-value a:hover{ color:var(--primary); }

/* ---------- Contact page: regional office cards ---------- */
.office-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:22px;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.office-card:hover{
  border-color:var(--primary);
  box-shadow:var(--shadow-soft);
  transform:translateY(-3px);
}
.office-card-city{
  font-family:'Space Grotesk','IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:16px;
  margin-bottom:10px;
  color:var(--ink);
}
.office-card-line{
  font-size:13px;
  color:var(--ink-soft);
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:4px;
}
.office-card-line span{ color:var(--ink-faint); min-width:0; }
.office-card-line a{ color:var(--ink-soft); transition:color .15s ease; }
.office-card-line a:hover{ color:var(--primary); }
.office-card-links{ display:flex; flex-direction:column; }
.office-card-links a{
  color:var(--primary);
  font-size:13.5px;
  font-weight:500;
  margin-top:4px;
}
.office-card-links a:hover{ text-decoration:underline; }

/* ---------- Contact page: supporter badge chips ---------- */
.badge-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  font-size:13.5px;
  font-weight:500;
  color:var(--ink-soft);
  transition:border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.badge-chip:hover{ border-color:var(--primary); color:var(--primary); box-shadow:var(--shadow-soft); }
.badge-chip-accent{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  font-weight:600;
}
.badge-chip-accent:hover{ background:var(--primary-2); color:#fff; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- HERO — premium treatment ---------- */
.hero-section{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}
.hero-glow-1{
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(47,111,237,.35), transparent 70%);
  top: -180px; right: -120px;
}
.hero-glow-2{
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(18,168,130,.28), transparent 70%);
  bottom: -160px; left: -100px;
}
.hero-grid{
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(16,20,28,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,28,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 20%, black, transparent 75%);
}

.badge-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line-strong);
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.badge-pill .dot{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}

.headline-accent{
  background: linear-gradient(100deg, var(--primary) 10%, var(--bright) 55%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.avatar-stack{ display:flex; align-items:center; }
.avatar-stack span{
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  display:flex; align-items:center; justify-content:center;
  font-size: 11px; font-weight:700; color:#fff;
}
.avatar-stack span:first-child{ margin-left: 0; }

/* Browser-chrome product mockup */
.browser-frame{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: 0 30px 60px -25px rgba(23,48,122,.35), 0 8px 24px -10px rgba(16,20,28,.12);
  overflow: hidden;
}
.browser-topbar{
  display:flex; align-items:center; gap:6px;
  padding: 12px 16px;
  background: var(--surface-tint);
  border-bottom: 1px solid var(--line);
}
.browser-topbar .tdot{ width:9px; height:9px; border-radius:50%; }

.float-card{
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: 0 18px 40px -18px rgba(16,20,28,.28);
  padding: 14px 16px;
  animation: float-y 5s ease-in-out infinite;
}
.float-card-2{ animation-delay: 1.4s; }
@keyframes float-y{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

.mini-bars{ display:flex; align-items:flex-end; gap:5px; height: 46px; }
.mini-bars span{
  width: 7px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--bright), var(--primary));
}

.pulse-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.pulse-dot::after{
  content:"";
  position:absolute; inset:-4px;
  border-radius:50%;
  border: 1.5px solid var(--accent);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring{
  0%{ transform: scale(.6); opacity: .8; }
  100%{ transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .float-card{ animation: none; }
  .pulse-dot::after{ animation: none; }
}

/* ---------- Industry focus banner (real photo strip) ---------- */
.industry-banner{
  position: relative;
  height: 130px;
  overflow: hidden;
}
.industry-banner-img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.industry-banner-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,37,104,.88) 0%, rgba(15,37,104,.55) 45%, rgba(15,37,104,.15) 100%);
}
.industry-banner-content{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 768px){
  .industry-banner{ height: 160px; }
}

/* ---------- Products page hero (light variant) ---------- */
.products-hero{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--surface-tint) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.products-hero .hero-glow-1{ top:-160px; right:-100px; }
.products-hero .hero-glow-2{ bottom:-140px; left:-80px; }

/* ---------- Product screenshot panel (replaces dark mock in tabs) ---------- */
.screenshot-panel{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.screenshot-panel .browser-topbar{ border-radius: 0; }
.screenshot-caption{
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--surface-tint);
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- HERO — premium dark treatment ---------- */
.hero-dark{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(120% 140% at 15% 0%, #1C3D9E 0%, #12245E 42%, #0A1638 100%);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.hero-dark .hero-glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.hero-dark .hero-glow-1{
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(47,111,237,.45), transparent 70%);
  top: -220px; right: -140px;
}
.hero-dark .hero-glow-2{
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(18,168,130,.35), transparent 70%);
  bottom: -200px; left: -120px;
}
.hero-dark .hero-grid{
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 85% 65% at 65% 15%, black, transparent 78%);
}
.hero-dark .barcode-edge{
  position: absolute; top: 0; right: 0; bottom: 0; width: 70px;
  z-index: 0; opacity: .12;
  background-image: repeating-linear-gradient(90deg, #fff 0px, #fff 2px, transparent 2px, transparent 7px, #fff 7px, #fff 8px, transparent 8px, transparent 15px);
}
.hero-dark .wrap{ position: relative; z-index: 1; }

.badge-pill-dark{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #DCE6FF;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-pill-dark .dot{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(18,168,130,.25);
  color: #6EE7B7;
  display: flex; align-items: center; justify-content: center;
}

.headline-accent-dark{
  background: linear-gradient(100deg, #9CB8FF 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.avatar-stack-dark span{
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #12245E;
  margin-left: -10px;
  display:flex; align-items:center; justify-content:center;
  font-size: 11px; font-weight:700; color:#fff;
}
.avatar-stack-dark span:first-child{ margin-left: 0; }

.hero-stat-num{
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 34px);
  color: #fff;
  line-height: 1;
}

/* Browser-chrome product mockup — elevated on dark hero */
.browser-frame-elevated{
  background: var(--surface);
  border-radius: var(--radius-l);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}

/* ---------- Product badge (Our Products showcase) ---------- */
.product-badge-card{
  display: block;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-badge-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary);
}
.product-badge-banner{
  position: relative;
  padding: 30px 28px;
  min-height: 108px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, #0F2568 0%, #23439E 42%, #2F6FED 78%, #12A882 100%);
  overflow: hidden;
}
.product-badge-banner::after{
  content:"";
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0px, rgba(255,255,255,.06) 1px, transparent 1px, transparent 10px);
}
.product-wordmark{
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.01em;
}
.product-wordmark .plus-dot{
  display:inline-flex; align-items:center; justify-content:center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--amber);
  color: #12245E;
  font-size: 13px; font-weight: 800; font-style: normal;
  margin: 0 3px;
  vertical-align: middle;
}
.product-seal{
  position: absolute; top: 14px; right: 16px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px dashed rgba(255,255,255,.7);
  display:flex; align-items:center; justify-content:center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 13px;
  color: #12245E;
  transform: rotate(8deg);
  z-index: 2;
}
.product-code-tag{
  position: relative;
  align-self: flex-end;
  margin-left: auto;
  background: var(--amber);
  color: #12245E;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
}

/* Tabs (products page) */
.tab-btn{
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: #fff;
  transition: all .15s ease;
}
.tab-btn.active{
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---------- Floating WhatsApp button (site-wide) ---------- */
.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float svg{ width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 34px -6px rgba(37,211,102,.65), 0 4px 10px rgba(0,0,0,.18);
}
.whatsapp-float::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse{
  0%{ transform: scale(1); opacity: .55; }
  100%{ transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip{
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #101828;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-tooltip::after{
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #101828;
}
.whatsapp-float:hover .whatsapp-tooltip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px){
  .whatsapp-float{ width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
  .whatsapp-tooltip{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation: none; }
}