:root{
  --primary:#0b5ed7;
  --text:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
}

.container{
  max-width:1200px;
  margin:auto;
  padding:20px;
}

/* =========================================
   HEADER
========================================= */
.header{
  border-bottom:1px solid #e5e7eb;
  padding:12px 0;
}

.headerRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

/* Logo header */
.logo{
  height:95px;
  width:auto;
  display:block;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav a,
.navLink,
.lang{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.sep{ color:var(--muted); }

/* Mobile button */
.menuBtn{
  display:none;
  border:1px solid #e5e7eb;
  background:#fff;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
}

/* Mobile nav */
.mobileNav{ display:none; }
.mobileNav.isOpen{ display:block; }

.mobileNav a{
  text-decoration:none;
  color:var(--text);
  display:block;
  padding:10px 0;
}

/* Mobile behavior */
@media (max-width:900px){
  .nav{ display:none; }
  .actions{ display:none; }
  .menuBtn{ display:inline-flex; }

  .mobileNav{
    display:none;
    padding:12px 20px;
    border-top:1px solid #e5e7eb;
  }
  .mobileNav.isOpen{ display:block; }
}

/* =========================================
   PREMIUM GLOBAL SYSTEM (Fortune 500)
========================================= */

/* Spacing */
.hero{ padding-top:22px; padding-bottom:22px; }
.section{ padding:36px 0; }
.section.alt{ padding:36px 0; }

/* Typography */
h1,h2,h3{ color:var(--primary); }
.sectionHead p, .lead, p{ color:#334155; }
a{ color:var(--primary); }

h1{
  font-weight:900;
  letter-spacing:-0.03em;
  line-height:1.06;
  font-size:clamp(2.1rem, 3.1vw, 2.9rem);
  margin-bottom:10px;
}
h2{
  font-weight:850;
  letter-spacing:-0.02em;
}
h3{
  font-weight:800;
  letter-spacing:-0.01em;
}

.lead{
  font-size:1.04rem;
  line-height:1.7;
  max-width:62ch;
  margin-top:0;
  margin-bottom:16px;
  color:#334155;
}

/* NAV HOVER (premium) */
.nav .navLink{
  position:relative;
  transition:color .18s ease, background-color .18s ease;
  padding:8px 12px;
  border-radius:10px;
  color:#0f172a;
  font-weight:600;
}

.nav .navLink:hover{
  color:var(--primary);
  background:rgba(11,94,215,0.08);
}

.nav .navLink::after{
  content:"";
  position:absolute;
  left:12px;
  bottom:4px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:width .22s ease;
  border-radius:2px;
}

.nav .navLink:hover::after{
  width:calc(100% - 24px);
}

.nav .navLink[aria-current="page"]{
  color:var(--primary);
  background:rgba(11,94,215,0.08);
}
.nav .navLink[aria-current="page"]::after{
  width:calc(100% - 24px);
}

/* Buttons */
.btn{
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid var(--primary);
  margin-right:10px;
  background:var(--primary);
  color:#fff;
  font-weight:750;
  box-shadow:0 10px 22px rgba(11,94,215,0.16);
  transition:background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover{
  background:#0b5ed7;
  border-color:#0b5ed7;
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(11,94,215,0.22);
}

.btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(11,94,215,0.18);
}

.btnPrimary{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}

/* CTA row / trust row */
.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.trustRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border:1px solid var(--primary);
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 22px rgba(11,94,215,0.16);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.pill:hover{
  background:#0b5ed7;
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(11,94,215,0.22);
}

/* Images safety */
main img{ max-width:100%; height:auto; }

/* =========================================
   PRODUCTS — COMPLIANCE BADGES ROW
========================================= */
.badgeRow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:14px;
}

.sealBadge{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(11,94,215,0.18);
  background:rgba(255,255,255,0.92);
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 12px 26px rgba(15,23,42,0.06);
  backdrop-filter:blur(8px);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sealBadge:hover{
  transform:translateY(-2px);
  border-color:rgba(11,94,215,0.32);
  box-shadow:0 18px 34px rgba(11,94,215,0.12);
}

.sealIcon{
  width:36px;
  height:36px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,94,215,0.10);
  border:1px solid rgba(11,94,215,0.22);
  color:var(--primary);
  flex:0 0 auto;
}

.sealText{ line-height:1.1; }

.sealTop{
  display:block;
  font-size:11px;
  letter-spacing:.08em;
  font-weight:900;
  color:#0b3fae;
}
.sealBottom{
  display:block;
  font-size:13px;
  font-weight:800;
  color:#0f172a;
}

@media (max-width:520px){
  .sealBadge{ width:100%; }
}

/* =========================================
   LAYOUT GRIDS
========================================= */
.heroGrid{
  display:grid;
  gap:28px;
  align-items:center;
}

@media (min-width:1024px){
  .heroGrid{ grid-template-columns:1.2fr 0.8fr; }
}

.grid2, .grid3{
  display:grid;
  gap:16px;
  margin-top:18px;
}

@media (min-width:900px){
  .grid2{ grid-template-columns:repeat(2, 1fr); }
  .grid3{ grid-template-columns:repeat(3, 1fr); }
}

/* Cards (global) */
.card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.06);
  box-shadow:0 14px 34px rgba(15,23,42,0.06);
  border-radius:16px;
  padding:18px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:linear-gradient(90deg, rgba(11,94,215,1), rgba(11,94,215,0.35));
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 45px rgba(15,23,42,0.10);
  border-color:rgba(11,94,215,0.25);
}

/* checklist */
.checklist{
  margin:0;
  padding-left:18px;
  color:var(--text);
}
.checklist li{
  margin:8px 0;
  color:var(--text);
}

/* Hero right card */
.heroCard{
  background:rgba(255,255,255,0.96);
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  box-shadow:
    0 26px 60px rgba(15,23,42,0.10),
    0 10px 22px rgba(15,23,42,0.06);
  backdrop-filter:blur(10px);
  padding:18px;
  margin-top:4px;
}

.heroRight{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

@media (min-width:981px){
  .heroRight .heroCard{
    transform:translateX(-28px) translateY(20);
    max-width:520px;
    transition:transform 600ms ease, box-shadow 600ms ease;
  }
}

.gradientPanel{
  height:180px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  margin-top:14px;
  background:linear-gradient(135deg, rgba(11,94,215,.15), rgba(100,116,139,.10));
  opacity:0.12;
  filter:saturate(0.9);
}

@media (max-width:980px){
  .heroRight .heroCard{
    transform:none;
    max-width:none;
  }
}

/* =========================================
   HOME HERO (VIDEO)
========================================= */
#home{
  position:relative;
  overflow:hidden;
  min-height:600px;
  display:flex;
  align-items:center;
  background:#000;
}

#home .heroVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:85% 62%;
  z-index:0;
  pointer-events:none;
}

#home::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.985) 36%,
    rgba(255,255,255,0.90) 54%,
    rgba(255,255,255,0.55) 72%,
    rgba(255,255,255,0.18) 86%,
    rgba(255,255,255,0.00) 94%
  );
  pointer-events:none;
  z-index:1;
}

#home::after{ content:none; display:none; }

#home .container{
  position:relative;
  z-index:2;
}

#home:hover{ background-position:88% 60%; }

@media (max-width:980px){
  #home{ min-height:560px; background-position:70% 55%; }
  #home:hover{ background-position:70% 55%; }
}

@media (max-width:640px){
  #home{ min-height:520px; background-position:65% 45%; }
  .pill{ width:fit-content; }
}

/* =========================================
   PRODUCTS / SERVICES subtle background wash
========================================= */
#products.section,
#services.section{
  position:relative;
}

#products.section::before,
#services.section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 260px at 20% 0%, rgba(11,94,215,0.10), rgba(11,94,215,0) 70%),
    radial-gradient(700px 240px at 85% 20%, rgba(11,94,215,0.08), rgba(11,94,215,0) 70%);
  pointer-events:none;
  z-index:0;
}

#products.section .container,
#services.section .container{
  position:relative;
  z-index:1;
}

/* =========================================
   ABOUT media cards + watermark (hover only)
========================================= */
.cardMedia{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.08);
  margin-bottom:12px;
  box-shadow:0 12px 30px rgba(15,23,42,0.05);
}

.cardMedia img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

/* Watermark on hover only */
.cardMedia::after{
  content:"";
  position:absolute;
  top:12px;
  right:12px;
  width:112px;
  height:34px;
  background:url('/assets/logo.png') no-repeat center / contain;
  opacity:0;
  transition:opacity .35s ease;
  z-index:3;
  pointer-events:none;
}

.card:hover .cardMedia::after{
  opacity:0.18;
}

@media (max-width:640px){
  .cardMedia img{ height:150px; }
  .cardMedia::after{
    width:96px;
    height:30px;
    top:10px;
    right:10px;
  }
}

/* =========================================
   ABOUT — Premium glow section background
========================================= */
.section.aboutGlow{ position:relative; }

.section.aboutGlow::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 260px at 18% 0%, rgba(11,94,215,0.10), rgba(11,94,215,0) 70%),
    radial-gradient(700px 240px at 86% 20%, rgba(11,94,215,0.08), rgba(11,94,215,0) 70%);
  pointer-events:none;
  z-index:0;
}

.section.aboutGlow > .container{
  position:relative;
  z-index:1;
}

/* Corporate Overview — corporate long text (B) */
.aboutGlow .sectionHead .lead{
  max-width:95ch;
}

/* ABOUT HERO — Premium behavior (no background image here; set in HTML or page CSS) */
#aboutHero{
  background-size:cover;
  background-position:78% 55%;
  background-repeat:no-repeat;
  background-color:#000;
  transition:background-position 0.6s ease;
}

@media (max-width:980px){
  #aboutHero{
    background-position:65% 45%;
    min-height:520px;
  }
}

@media (max-width:640px){
  #aboutHero{
    background-position:60% 42%;
    min-height:480px;
  }
}

/* soften extra pills in about hero (optional) */
#aboutHero .pill:nth-child(n+4){
  background:rgba(11,94,215,0.08);
  color:#0b5ed7;
  border-color:rgba(11,94,215,0.22);
  box-shadow:none;
}
#aboutHero .pill:nth-child(n+4):hover{
  background:rgba(11,94,215,0.14);
  transform:translateY(-1px);
}

/* Hero card micro-lift */
@media (min-width:981px){
  #aboutHero:hover .heroRight .heroCard{
    transform:translateX(-28px) translateY(-12px);
  }
}

/* =========================================
   FOOTER
========================================= */
.logoFoot{
  height:38px;
  width:auto;
  opacity:0.95;
  padding:4px;
  border-radius:10px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 8px 18px rgba(15,23,42,0.10);
  transition:transform .2s ease, box-shadow .2s ease;
}

.logoFoot:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,0.18);
}


/* Layout */
.footerGlobal{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
}

.footerLocation{
  margin:8px 0 0 0;
  color:#64748b;
}

.footerRights{
  margin:4px 0 0 0;
  color:#64748b;
}

/* Logo + PYME */
.footerBrand{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:8px;
}

.footerPyme{
  width:70px;
  height:auto;
  opacity:0.95;
  padding:4px;
  border-radius:10px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 8px 18px rgba(15,23,42,0.10);
  transition:transform .2s ease, box-shadow .2s ease;
}
.footerPyme:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(15,23,42,0.18);
}

/* TRUSTED BY / CERTIFIED */
.footerTrust{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,0.08);
  background:rgba(255,255,255,0.82);
  backdrop-filter:blur(10px);
  box-shadow:0 16px 38px rgba(15,23,42,0.10);
}

.trustLabel{
  text-align:right;
  line-height:1.1;
}

.trustKicker{
  display:block;
  font-size:11px;
  letter-spacing:.14em;
  font-weight:900;
  color:rgba(11,94,215,0.95);
}

.trustTitle{
  display:block;
  margin-top:3px;
  font-size:13px;
  font-weight:800;
  color:#0f172a;
}

.trustBadges{
  display:flex;
  gap:10px;
  align-items:center;
}

.trustBadge{
  width:74px;
  height:auto;
  display:block;
  padding:8px;
  border-radius:14px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(11,94,215,0.16);
  box-shadow:0 12px 26px rgba(15,23,42,0.14);
  filter:saturate(1.02);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.trustBadge:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(15,23,42,0.18);
  border-color:rgba(11,94,215,0.28);
}

/* Responsive footer */
@media (max-width:820px){
  .footerGlobal{
    flex-direction:column;
    align-items:flex-start;
  }
  .footerTrust{
    width:100%;
    align-items:flex-start;
  }
  .trustLabel{ text-align:left; }
  .trustBadges{ justify-content:flex-start; flex-wrap:wrap; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
  #aboutHero{ transition:none !important; }
}

