/* ============================================================
   TPS Xperts Global Certifications — Design System v2
   Theme: Option B | Primary: #1b75be | Light Blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Design Tokens ---- */
:root {
  --primary:        #1b75be;
  --primary-dark:   #155fa0;
  --primary-light:  #2386d1;
  --primary-pale:   #e8f4fd;
  --secondary:      #5ba4d4;
  --accent:         #E8A020;
  --accent-dark:    #c9871a;
  --bg:             #FFFFFF;
  --surface:        #f0f7ff;
  --surface-2:      #dceeff;
  --text:           #1a2033;
  --text-muted:     #4a5c7a;
  --text-light:     #8899bb;
  --border:         #bcd8f0;
  --border-light:   #daeaf8;
  --white:          #ffffff;
  --shadow-sm:      0 1px 4px rgba(27,117,190,.08);
  --shadow-md:      0 4px 20px rgba(27,117,190,.13);
  --shadow-lg:      0 12px 40px rgba(27,117,190,.18);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      20px;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
  --nav-h:          74px;
  --topbar-h:       36px;
}

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--text);background:var(--bg);line-height:1.6;font-size:16px;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ---- Typography ---- */
h1,h2,h3,h4,h5{font-family:var(--font-heading);line-height:1.2;color:var(--text)}
h1{font-size:clamp(1.9rem,4vw,3rem);font-weight:800}
h2{font-size:clamp(1.5rem,3vw,2.3rem);font-weight:700}
h3{font-size:clamp(1rem,2vw,1.3rem);font-weight:600}
h4{font-size:1rem;font-weight:600}
p{line-height:1.75;color:var(--text-muted)}
.section-label{display:inline-block;font-family:var(--font-heading);font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:.75rem}
.section-label--blue{color:var(--primary)}

/* ---- Layout ---- */
.container{max-width:1240px;margin:0 auto;padding:0 24px}
.container--wide{max-width:1400px;margin:0 auto;padding:0 40px}
section{padding:96px 0}
.section--surface{background:var(--surface)}
.section--surface2{background:var(--surface-2)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.grid-5{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}
.text-center{text-align:center}
.divider{width:48px;height:4px;background:var(--accent);border-radius:2px;margin:18px 0 28px}
.divider--center{margin:18px auto 28px}

/* ---- Buttons ---- */
.btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-heading);font-weight:700;font-size:.875rem;letter-spacing:.03em;padding:13px 30px;border-radius:var(--radius-sm);transition:all .25s ease}
.btn--primary{background:var(--accent);color:var(--white)}
.btn--primary:hover{background:var(--accent-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(232,160,32,.35)}
.btn--blue{background:var(--primary);color:var(--white)}
.btn--blue:hover{background:var(--primary-dark);box-shadow:0 6px 20px rgba(27,117,190,.35)}
.btn--outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.5)}
.btn--outline:hover{border-color:var(--white);background:rgba(255,255,255,.1)}
.btn--outline-blue{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn--outline-blue:hover{background:var(--primary);color:var(--white)}
.btn--sm{padding:9px 20px;font-size:.8rem}
.btn--lg{padding:15px 40px;font-size:.95rem}

/* ---- Cards ---- */
.card{background:var(--white);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:36px 32px;border:1px solid var(--border-light);transition:box-shadow .25s,transform .25s}
.card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.card-icon{width:52px;height:52px;border-radius:var(--radius-sm);background:var(--primary);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.card-icon svg{width:24px;height:24px;color:var(--white)}

/* ---- Section headers ---- */
.section-header{margin-bottom:52px}
.section-header--center{text-align:center}
.section-header h2{margin-bottom:14px}
.section-header p{font-size:1rem;max-width:620px;color:var(--text-muted)}
.section-header--center p{margin:0 auto}

/* ============================================================
   TOPBAR — STICKY (frozen at top always)
   ============================================================ */
.topbar{
  background:var(--surface);
  border-bottom:1px solid var(--border-light);
  height:var(--topbar-h);
  display:flex;align-items:center;
  position:sticky;
  top:0;
  z-index:1001;  /* above nav */
}
.topbar__inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;justify-content:space-between;
  width:100%;
}
.topbar__right{display:flex;align-items:center;gap:4px}
.topbar__link{
  font-size:.72rem;font-weight:500;color:var(--text-muted);
  padding:4px 12px;border-radius:var(--radius-sm);
  transition:color .2s,background .2s;white-space:nowrap;
}
.topbar__link:hover{color:var(--primary);background:var(--primary-pale)}
.topbar__sep{color:var(--border);font-size:.7rem}

/* Language selector */
.lang-selector{
  position:relative;margin-left:8px;
}
.lang-btn{
  display:flex;align-items:center;gap:5px;
  padding:4px 10px;border-radius:var(--radius-sm);
  background:transparent;border:1px solid var(--border);
  font-size:.72rem;font-weight:600;color:var(--text-muted);
  cursor:pointer;font-family:var(--font-body);
  transition:all .2s;
}
.lang-btn:hover{border-color:var(--primary);color:var(--primary);background:var(--primary-pale)}
.lang-flag{font-size:.85rem}
.lang-dropdown{
  display:none;
  position:absolute;top:calc(100% + 6px);right:0;
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-md);box-shadow:var(--shadow-md);
  min-width:180px;z-index:1100;overflow:hidden;
  pointer-events:auto;
}
.lang-dropdown.open{display:block;animation:dropFade .18s ease}
.lang-option{
  display:flex;align-items:center;gap:8px;
  padding:9px 14px;font-size:.8rem;color:var(--text);
  transition:background .15s;cursor:pointer;
}
.lang-option:hover{background:var(--surface)}
.lang-option .flag{font-size:1rem}
@keyframes dropFade{from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}

/* ============================================================
   NAVIGATION — sticky below topbar
   ============================================================ */
.nav{
  position:sticky;
  top:var(--topbar-h); /* sticks right below the frozen topbar */
  left:0;right:0;
  z-index:1000;
  background:var(--white);
  border-bottom:1px solid var(--border-light);
  height:var(--nav-h);
  transition:box-shadow .3s;
}
.nav.scrolled{box-shadow:var(--shadow-md)}
.nav__inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  height:100%;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.nav__logo{display:flex;align-items:center;flex-shrink:0;text-decoration:none}
.nav__logo-img{height:54px;width:auto;display:block}

/* Nav menu */
.nav__menu{display:flex;align-items:center;gap:2px;flex:1;justify-content:center}
.nav__item{position:relative}
.nav__link{
  display:flex;align-items:center;gap:4px;
  padding:10px 14px;
  font-size:.82rem;font-weight:600;font-family:var(--font-heading);
  color:var(--text);letter-spacing:.02em;
  border-radius:var(--radius-sm);
  transition:color .2s,background .2s;white-space:nowrap;
}
.nav__link:hover,.nav__link.active{color:var(--primary);background:var(--primary-pale)}
.nav__link svg{width:13px;height:13px;opacity:.5;transition:transform .2s}
.nav__item:hover .nav__link svg{transform:rotate(180deg)}

/* SGS-style Mega Menu — JS controlled (no CSS hover flicker) */
.mega-menu{
  display:none;
  position:absolute;top:calc(100% + 4px);left:50%;
  transform:translateX(-50%);
  background:var(--white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:28px 32px;
  min-width:480px;
  z-index:500;
  pointer-events:auto;
}
.mega-menu.open{display:block;animation:menuFade .18s ease forwards}
@keyframes menuFade{from{opacity:0;transform:translateX(-50%) translateY(6px)}to{opacity:1;transform:translateX(-50%) translateY(0)}}

/* SGS arrow-style links */
.mega-menu__section{margin-bottom:20px}
.mega-menu__section:last-child{margin-bottom:0}
.mega-menu__section-title{
  font-size:.65rem;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--text-light);
  margin-bottom:10px;padding-bottom:8px;
  border-bottom:1px solid var(--border-light);
}
.mega-menu__grid{display:grid;grid-template-columns:1fr 1fr;gap:4px}
.mega-menu__link{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 14px;border-radius:var(--radius-sm);
  font-size:.875rem;font-weight:600;color:var(--text);
  transition:background .15s,color .15s;
  font-family:var(--font-heading);
}
.mega-menu__link:hover{background:var(--surface);color:var(--primary)}
.mega-menu__link .arrow{color:var(--accent);font-size:.9rem;font-weight:800;opacity:0;transition:opacity .15s,transform .15s}
.mega-menu__link:hover .arrow{opacity:1;transform:translateX(3px)}
.mega-menu__link .badge-tag{
  font-size:.62rem;font-weight:700;padding:2px 7px;border-radius:30px;
  margin-left:6px;font-family:var(--font-heading);letter-spacing:.04em;
}
.badge-tag--green{background:#dcfce7;color:#15803d}
.badge-tag--blue{background:var(--surface-2);color:var(--primary)}
.badge-tag--grey{background:#f1f5f9;color:#64748b}
.mega-menu__link-sub{font-size:.72rem;font-weight:400;color:var(--text-light);display:block;margin-top:1px}

/* Nav actions */
.nav__actions{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav__verify{
  display:inline-flex;align-items:center;gap:6px;
  padding:9px 16px;
  background:transparent;color:var(--primary);
  font-size:.78rem;font-weight:700;font-family:var(--font-heading);
  border:1.5px solid var(--primary);border-radius:var(--radius-sm);
  transition:all .2s;
}
.nav__verify:hover{background:var(--primary);color:var(--white)}
.nav__verify svg{width:14px;height:14px}
.nav__cta{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 22px;
  background:var(--accent);color:var(--white);
  font-size:.82rem;font-weight:700;font-family:var(--font-heading);
  border-radius:var(--radius-sm);transition:all .25s;
}
.nav__cta:hover{background:var(--accent-dark);box-shadow:0 4px 16px rgba(232,160,32,.4)}
.nav__hamburger{display:none;flex-direction:column;gap:5px;padding:8px}
.nav__hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:all .3s}

/* Mobile nav */
.mobile-nav{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;bottom:0;
  background:var(--white);z-index:999;overflow-y:auto;padding:20px 24px;
}
.mobile-nav.open{display:block}
.mobile-nav__item{border-bottom:1px solid var(--border-light)}
.mobile-nav__link{display:flex;align-items:center;justify-content:space-between;padding:15px 0;font-size:.95rem;font-weight:600;font-family:var(--font-heading);color:var(--text)}
.mobile-nav__sub{padding:0 0 8px 14px}
.mobile-nav__sub a{display:block;padding:9px 0;font-size:.88rem;color:var(--text-muted);border-bottom:1px solid var(--surface)}
.mobile-nav__sub a:last-child{border-bottom:none}
.mobile-nav__cta{margin-top:20px;display:flex;flex-direction:column;gap:10px}
.mobile-nav__cta .btn{width:100%;justify-content:center}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider{
  position:relative;overflow:hidden;
  margin-top:0;
}
.hero-slide{
  display:none;
  min-height:580px;align-items:center;
  position:relative;overflow:hidden;
}
.hero-slide.active{display:flex;animation:slideIn .7s ease}
@keyframes slideIn{from{opacity:0}to{opacity:1}}

/* Hero backgrounds — real photos with overlay */
.hero-slide--1{background:linear-gradient(135deg,rgba(5,18,40,.80) 0%,rgba(27,117,190,.58) 100%),url('../assets/hero-slide1.jpg') center/cover no-repeat;}
.hero-slide--2{background:linear-gradient(135deg,rgba(7,22,46,.82) 0%,rgba(21,95,160,.68) 100%),url('../assets/hero-slide2.jpg') center/cover no-repeat;}
.hero-slide--3{background:linear-gradient(135deg,rgba(3,10,28,.84) 0%,rgba(27,117,190,.72) 100%),url('../assets/hero-slide3.jpg') center/cover no-repeat;}

/* Slide pattern overlay */
.hero-slide::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-slide::after{
  content:'';position:absolute;right:0;top:0;bottom:0;width:45%;
  background:rgba(255,255,255,.03);
  clip-path:polygon(15% 0,100% 0,100% 100%,0 100%);
}

.hero-slide__inner{
  max-width:1400px;margin:0 auto;padding:80px 40px;
  display:grid;grid-template-columns:1fr 1fr;gap:60px;
  align-items:center;position:relative;z-index:1;width:100%;
}
.hero-slide__badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(232,160,32,.2);border:1px solid rgba(232,160,32,.4);
  color:var(--accent);font-size:.72rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  padding:5px 13px;border-radius:30px;margin-bottom:20px;
}
.hero-slide__badge-dot{width:6px;height:6px;border-radius:50%;background:var(--accent)}
.hero-slide__title{color:var(--white);margin-bottom:18px;line-height:1.15}
.hero-slide__title span{color:var(--accent)}
.hero-slide__sub{font-size:1rem;color:rgba(255,255,255,.78);margin-bottom:32px;line-height:1.75;max-width:520px}
.hero-slide__actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap}

.hero-slide__visual{display:flex;flex-direction:column;gap:16px}
.hero-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.hero-stat{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-lg);padding:22px;text-align:center;
  backdrop-filter:blur(8px);
}
.hero-stat__value{font-family:var(--font-heading);font-size:1.6rem;font-weight:800;color:var(--white);line-height:1}
.hero-stat__label{font-size:.75rem;color:rgba(255,255,255,.6);margin-top:5px}

.hero-cert-strip{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-md);padding:14px 18px;
  display:flex;align-items:center;gap:12px;
}
.hero-cert-strip svg{width:28px;height:28px;color:var(--accent);flex-shrink:0}
.hero-cert-strip span{font-size:.8rem;color:rgba(255,255,255,.8);line-height:1.5}
.hero-cert-strip strong{display:block;font-size:.88rem;color:var(--white);margin-bottom:2px}

/* Slider controls */
.hero-slider__dots{
  position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
  display:flex;gap:8px;z-index:10;
}
.hero-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,.35);border:none;cursor:pointer;
  transition:all .3s;padding:0;
}
.hero-dot.active{background:var(--accent);width:24px;border-radius:4px}
.hero-slider__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:10;
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);
  color:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.hero-slider__arrow:hover{background:rgba(255,255,255,.22)}
.hero-slider__arrow svg{width:18px;height:18px}
.hero-slider__arrow--prev{left:20px}
.hero-slider__arrow--next{right:20px}

/* ============================================================
   ACCREDITATION STRIP
   ============================================================ */
.accred-strip{
  background:var(--white);border-bottom:1px solid var(--border-light);
  padding:18px 0;
}
.accred-strip__inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
}
.accred-strip__label{
  font-size:.68rem;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--text-light);
  white-space:nowrap;
}
.accred-strip__sep{width:1px;height:24px;background:var(--border-light)}
.accred-strip__items{display:flex;align-items:center;gap:20px;flex-wrap:wrap}
.accred-item{
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;font-weight:600;color:var(--text-muted);
}
.accred-item__badge{
  width:36px;height:28px;background:var(--surface);
  border:1px solid var(--border-light);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-heading);font-size:.62rem;font-weight:800;color:var(--primary);
}
.accred-item--accredited .accred-item__badge{background:var(--primary);color:var(--white);border-color:var(--primary)}

/* ============================================================
   SERVICES SECTION (SGS inspired)
   ============================================================ */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--border-light);border:1px solid var(--border-light);border-radius:var(--radius-lg);overflow:hidden;margin-top:48px}
.service-tile{
  background:var(--white);padding:36px 32px;
  display:flex;flex-direction:column;
  transition:background .2s;cursor:pointer;
  text-decoration:none;
}
.service-tile:hover{background:var(--primary)}
.service-tile__icon{
  width:48px;height:48px;border-radius:var(--radius-sm);
  background:var(--surface);display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;transition:background .2s;
}
.service-tile__icon svg{width:24px;height:24px;color:var(--primary);transition:color .2s}
.service-tile:hover .service-tile__icon{background:rgba(255,255,255,.15)}
.service-tile:hover .service-tile__icon svg{color:var(--white)}
.service-tile__label{font-size:.65rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--text-light);margin-bottom:6px;transition:color .2s}
.service-tile:hover .service-tile__label{color:rgba(255,255,255,.6)}
.service-tile__name{font-family:var(--font-heading);font-size:1.05rem;font-weight:700;color:var(--text);margin-bottom:10px;transition:color .2s}
.service-tile:hover .service-tile__name{color:var(--white)}
.service-tile__desc{font-size:.82rem;color:var(--text-muted);line-height:1.65;flex:1;transition:color .2s}
.service-tile:hover .service-tile__desc{color:rgba(255,255,255,.75)}
.service-tile__arrow{
  margin-top:20px;font-size:.82rem;font-weight:700;
  color:var(--accent);font-family:var(--font-heading);
  display:flex;align-items:center;gap:4px;
  transition:gap .2s;
}
.service-tile:hover .service-tile__arrow{gap:8px;color:var(--accent)}
.service-tile__status{
  display:inline-block;margin-bottom:8px;
  font-size:.62rem;font-weight:700;padding:2px 8px;
  border-radius:30px;font-family:var(--font-heading);
  letter-spacing:.06em;
}
.status--accredited{background:#dcfce7;color:#15803d}
.status--active{background:var(--surface-2);color:var(--primary)}
.status--upcoming{background:#f1f5f9;color:#64748b}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.industry-card{
  background:var(--white);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:28px 24px;
  transition:all .25s;text-decoration:none;display:block;
}
.industry-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px);border-color:var(--primary)}
.industry-card__icon{
  width:52px;height:52px;border-radius:var(--radius-md);
  background:var(--primary);display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.industry-card__icon svg{width:26px;height:26px;color:var(--white)}
.industry-card__tag{
  display:inline-block;font-size:.62rem;font-weight:700;
  padding:2px 8px;border-radius:30px;background:var(--surface-2);
  color:var(--primary);font-family:var(--font-heading);
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:10px;
}
.industry-card__tag--future{background:#f0fdf4;color:#16a34a}
.industry-card h4{font-size:.95rem;font-weight:700;margin-bottom:8px;color:var(--text)}
.industry-card p{font-size:.8rem;color:var(--text-muted);line-height:1.6}
.industry-card__iaf{
  margin-top:12px;font-size:.68rem;font-weight:600;
  color:var(--text-light);font-family:var(--font-heading);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section{background:var(--primary)}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.stat-item{
  padding:52px 32px;text-align:center;
  border-right:1px solid rgba(255,255,255,.1);
}
.stat-item:last-child{border-right:none}
.stat-item__icon{
  width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
}
.stat-item__icon svg{width:24px;height:24px;color:rgba(255,255,255,.85)}
.stat-item__value{
  font-family:var(--font-heading);font-size:1.6rem;font-weight:800;
  color:var(--white);line-height:1;margin-bottom:6px;
}
.stat-item__label{font-size:.82rem;color:rgba(255,255,255,.65);line-height:1.4}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.why-features{display:flex;flex-direction:column;gap:24px}
.why-feature{display:flex;gap:18px}
.why-feature__icon{
  width:44px;height:44px;border-radius:var(--radius-md);
  background:var(--primary);display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.why-feature__icon svg{width:22px;height:22px;color:var(--white)}
.why-feature__title{font-size:.95rem;font-weight:700;margin-bottom:5px}
.why-feature__desc{font-size:.85rem;color:var(--text-muted)}
.why-visual{
  background:var(--primary);border-radius:var(--radius-xl);
  padding:44px;color:var(--white);
}
.why-visual__title{font-size:1.2rem;font-weight:700;color:var(--white);margin-bottom:24px}
.why-point{
  display:flex;gap:14px;padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.why-point:last-child{border-bottom:none}
.why-point svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;margin-top:2px}
.why-point-text{font-size:.85rem;color:rgba(255,255,255,.82);line-height:1.65}
.why-point-text strong{display:block;color:var(--white);margin-bottom:2px}

/* ============================================================
   PROCESS FLOW
   ============================================================ */
.process-flow{
  display:grid;grid-template-columns:repeat(7,1fr);
  gap:0;position:relative;
}
.process-flow::before{
  content:'';position:absolute;
  top:36px;left:8%;right:8%;height:2px;
  background:var(--border-light);z-index:0;
}
.process-node{
  display:flex;flex-direction:column;align-items:center;gap:12px;
  padding:8px;text-align:center;position:relative;z-index:1;
}
.process-node__circle{
  width:72px;height:72px;border-radius:50%;
  background:var(--white);border:2px solid var(--border-light);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-heading);font-weight:800;font-size:.82rem;color:var(--primary);
  transition:all .25s;position:relative;
}
.process-node__circle.active{
  background:var(--primary);color:var(--white);border-color:var(--primary);
  box-shadow:0 0 0 6px rgba(27,117,190,.12);
}
.process-node:hover .process-node__circle{background:var(--primary);color:var(--white);border-color:var(--primary)}
.process-node__label{font-size:.74rem;font-weight:600;color:var(--text-muted);line-height:1.4}

/* ============================================================
   CTA
   ============================================================ */
.cta-section{
  background:linear-gradient(135deg,#071830 0%,#155fa0 60%,#1b75be 100%);
  padding:96px 0;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;right:-5%;top:-40%;
  width:500px;height:500px;border-radius:50%;
  background:rgba(255,255,255,.04);
}
.cta-section__inner{
  max-width:760px;margin:0 auto;
  text-align:center;position:relative;z-index:1;padding:0 32px;
}
.cta-section h2{color:var(--white);margin-bottom:18px}
.cta-section p{color:rgba(255,255,255,.74);font-size:1rem;margin-bottom:36px}
.cta-section__actions{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap}

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip{background:var(--surface);padding:56px 0;border-top:1px solid var(--border-light)}
.contact-strip__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.contact-item{display:flex;align-items:flex-start;gap:14px}
.contact-item__icon{
  width:44px;height:44px;flex-shrink:0;
  background:var(--primary);border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;
}
.contact-item__icon svg{width:20px;height:20px;color:var(--white)}
.contact-item__label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-light);margin-bottom:4px}
.contact-item__value{font-size:.88rem;font-weight:600;color:var(--text)}

/* ============================================================
   FOOTER — Option B style with #1b75be
   ============================================================ */
.footer{background:var(--white);border-top:3px solid var(--primary);padding-top:56px}
.footer__main{
  max-width:1400px;margin:0 auto;padding:0 40px 48px;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;
}
.footer__brand{}
.footer__logo-img{height:48px;width:auto;margin-bottom:16px}
.footer__tagline{font-size:.82rem;color:var(--text-muted);line-height:1.7;margin-bottom:20px;max-width:300px}
.footer__badges{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:20px}
.footer__badge{
  display:inline-flex;align-items:center;gap:4px;
  background:var(--surface);border:1px solid var(--border-light);
  border-radius:var(--radius-sm);padding:4px 10px;
  font-size:.68rem;font-weight:700;color:var(--primary);
  font-family:var(--font-heading);letter-spacing:.04em;
}
.footer__socials{display:flex;gap:8px}
.footer__social{
  width:32px;height:32px;border:1px solid var(--border);
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-muted);transition:all .2s;
}
.footer__social:hover{background:var(--primary);border-color:var(--primary);color:var(--white)}
.footer__social svg{width:14px;height:14px}

.footer__col-title{
  font-family:var(--font-heading);font-size:.68rem;font-weight:800;
  letter-spacing:.14em;text-transform:uppercase;color:var(--primary);
  margin-bottom:16px;padding-bottom:8px;
  border-bottom:2px solid var(--surface-2);
}
.footer__links{display:flex;flex-direction:column;gap:8px}
.footer__link{font-size:.82rem;color:var(--text-muted);transition:color .2s}
.footer__link:hover{color:var(--primary)}
.footer__link--accent{color:var(--primary);font-weight:600}

/* Footer mid strip */
.footer__mid{
  background:var(--surface);
  border-top:1px solid var(--border-light);
  border-bottom:1px solid var(--border-light);
  padding:16px 0;
}
.footer__mid-inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;
}
.footer__mid-label{font-size:.68rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--text-light);margin-right:8px}
.footer__mid-badges{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.footer__mid-badge{
  background:var(--surface-2);border:1px solid var(--border-light);
  border-radius:var(--radius-sm);padding:4px 12px;
  font-size:.7rem;font-weight:700;color:var(--primary);
  font-family:var(--font-heading);
}
.footer__mid-right{display:flex;align-items:center;gap:12px}
.footer__mid-social{font-size:.78rem;color:var(--text-muted)}
.footer__mid-social a{color:var(--primary);font-weight:600;margin-left:6px}

/* Footer bottom */
.footer__bottom{
  background:#07091a;padding:16px 0;
}
.footer__bottom-inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:10px;
}
.footer__copy{font-size:.74rem;color:rgba(255,255,255,.4)}
.footer__legal{display:flex;gap:16px;flex-wrap:wrap}
.footer__legal a{font-size:.72rem;color:rgba(255,255,255,.4);transition:color .2s}
.footer__legal a:hover{color:rgba(255,255,255,.75)}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{
  background:linear-gradient(135deg,#071830 0%,#1b75be 100%);
  padding-top:0; /* topbar + nav are both sticky so no extra offset needed */
  padding-bottom:60px;
}
.page-hero__inner{
  max-width:1400px;margin:0 auto;
  padding:52px 40px 0;
}
.page-hero__breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;color:rgba(255,255,255,.5);margin-bottom:22px;
}
.page-hero__breadcrumb a{color:rgba(255,255,255,.5);transition:color .2s}
.page-hero__breadcrumb a:hover{color:var(--accent)}
.page-hero__breadcrumb span{color:rgba(255,255,255,.25)}
.page-hero__breadcrumb .current{color:rgba(255,255,255,.82)}
.page-hero h1{color:var(--white);max-width:700px;margin-bottom:14px}
.page-hero__sub{font-size:1rem;color:rgba(255,255,255,.72);max-width:640px;line-height:1.75}

/* ============================================================
   FORMS
   ============================================================ */
.form-group{margin-bottom:22px}
.form-label{display:block;font-size:.8rem;font-weight:600;margin-bottom:7px;color:var(--text)}
.form-input{
  width:100%;padding:12px 15px;
  border:1.5px solid var(--border);border-radius:var(--radius-md);
  font-family:var(--font-body);font-size:.9rem;color:var(--text);
  background:var(--white);outline:none;transition:border-color .2s,box-shadow .2s;
}
.form-input:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(27,117,190,.1)}
.form-textarea{
  width:100%;min-height:130px;padding:12px 15px;
  border:1.5px solid var(--border);border-radius:var(--radius-md);
  font-family:var(--font-body);font-size:.9rem;color:var(--text);
  resize:vertical;outline:none;transition:border-color .2s;
}
.form-textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(27,117,190,.1)}
.form-select{
  width:100%;padding:12px 15px;
  border:1.5px solid var(--border);border-radius:var(--radius-md);
  font-family:var(--font-body);font-size:.9rem;color:var(--text);
  background:var(--white);outline:none;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5c7a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;padding-right:38px;
  transition:border-color .2s;
}
.form-select:focus{border-color:var(--primary)}
.form-hint{font-size:.75rem;color:var(--text-light);margin-top:5px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail__intro{display:grid;grid-template-columns:2fr 1fr;gap:56px;align-items:start}
.service-sidebar{
  background:var(--surface);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:28px;
  position:sticky;top:calc(var(--nav-h) + var(--topbar-h) + 20px);
}
.service-sidebar__title{font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--text-light);margin-bottom:14px}
.service-sidebar__links{display:flex;flex-direction:column;gap:3px}
.service-sidebar__link{
  display:flex;align-items:center;gap:8px;padding:9px 12px;
  border-radius:var(--radius-sm);font-size:.85rem;font-weight:500;color:var(--text-muted);
  transition:all .2s;
}
.service-sidebar__link:hover,.service-sidebar__link.active{background:var(--primary);color:var(--white)}
.service-sidebar__cta{margin-top:24px;padding-top:20px;border-top:1px solid var(--border-light)}
.service-sidebar__cta .btn{width:100%;justify-content:center}

.benefit-item{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px 18px;background:var(--surface);border-radius:var(--radius-md);margin-bottom:10px;
}
.benefit-item svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;margin-top:1px}
.benefit-item-text{font-size:.875rem;color:var(--text)}
.benefit-item-text strong{display:block;font-weight:600;margin-bottom:2px;color:var(--text)}
.benefits-list{margin:20px 0}

/* ============================================================
   POLICIES
   ============================================================ */
.policy-layout{display:grid;grid-template-columns:250px 1fr;gap:48px;align-items:start}
.policy-sidebar{position:sticky;top:calc(var(--nav-h) + var(--topbar-h) + 20px);background:var(--surface);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:24px}
.policy-sidebar__title{font-size:.68rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--text-light);margin-bottom:12px}

/* ============================================================
   DOWNLOAD CARDS
   ============================================================ */
.download-card{
  display:flex;align-items:center;gap:18px;
  background:var(--white);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:22px 24px;transition:all .25s;
}
.download-card:hover{box-shadow:var(--shadow-md);border-color:var(--primary)}
.download-card__icon{
  width:48px;height:48px;flex-shrink:0;background:var(--surface);
  border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;
}
.download-card__icon svg{width:22px;height:22px;color:var(--primary)}
.download-card__info{flex:1}
.download-card__name{font-size:.92rem;font-weight:700;color:var(--text);margin-bottom:3px}
.download-card__meta{font-size:.78rem;color:var(--text-muted)}
.download-card__btn{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 18px;background:var(--primary);color:var(--white);
  font-size:.78rem;font-weight:700;font-family:var(--font-heading);
  border-radius:var(--radius-sm);transition:all .2s;flex-shrink:0;
}
.download-card__btn:hover{background:var(--primary-dark)}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar{background:var(--white);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light);padding:22px 0}
.trust-bar__inner{
  max-width:1400px;margin:0 auto;padding:0 40px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.trust-item{display:flex;align-items:center;gap:8px;font-size:.82rem;font-weight:500;color:var(--text-muted)}
.trust-item svg{width:18px;height:18px;color:var(--primary)}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card{
  background:var(--white);border:1px solid var(--border-light);
  border-radius:var(--radius-lg);padding:32px;
}
.testimonial-card__stars{display:flex;gap:3px;margin-bottom:6px}
.testimonial-card__stars span{font-size:.9rem;color:var(--accent)}
.testimonial-card__quote{font-size:.9rem;line-height:1.8;color:var(--text-muted);margin-bottom:24px;position:relative;padding-top:20px}
.testimonial-card__quote::before{content:'"';position:absolute;top:0;left:0;font-size:2.2rem;color:var(--primary);font-family:Georgia,serif;line-height:1}
.testimonial-card__author{display:flex;align-items:center;gap:12px}
.testimonial-card__avatar{width:40px;height:40px;border-radius:50%;background:var(--primary);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-size:.82rem;font-weight:700;color:var(--white)}
.testimonial-card__name{font-size:.88rem;font-weight:700;color:var(--text)}
.testimonial-card__title{font-size:.75rem;color:var(--text-muted)}

/* ============================================================
   VERIFICATION PAGE
   ============================================================ */
.vr-box{border-radius:var(--radius-lg);padding:26px;margin-top:22px}
.vr-box__header{display:flex;align-items:flex-start;gap:14px;margin-bottom:12px}
.vr-box__icon{width:42px;height:42px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.vr-box__icon svg{width:20px;height:20px}
.vr-box__status{font-family:var(--font-heading);font-size:1rem;font-weight:700}
.vr-box__id{font-size:.78rem;color:var(--text-muted);margin-top:2px}
.vr-box__msg{font-size:.875rem;line-height:1.7;margin-bottom:14px}
.vr-valid{background:#f0fdf4;border:1.5px solid #86efac}
.vr-valid .vr-box__icon{background:#dcfce7;color:#16a34a}
.vr-valid .vr-box__status{color:#15803d}
.vr-expired{background:#fefce8;border:1.5px solid #fde047}
.vr-expired .vr-box__icon{background:#fef9c3;color:#a16207}
.vr-expired .vr-box__status{color:#a16207}
.vr-withdrawn{background:#fef2f2;border:1.5px solid #fca5a5}
.vr-withdrawn .vr-box__icon{background:#fee2e2;color:#dc2626}
.vr-withdrawn .vr-box__status{color:#dc2626}
.vr-suspended{background:#fff7ed;border:1.5px solid #fdba74}
.vr-suspended .vr-box__icon{background:#ffedd5;color:#ea580c}
.vr-suspended .vr-box__status{color:#ea580c}
.vr-invalid{background:#fef2f2;border:1.5px solid #fca5a5}
.vr-invalid .vr-box__icon{background:#fee2e2;color:#dc2626}
.vr-invalid .vr-box__status{color:#dc2626}
.vr-details{background:var(--white);border:1px solid var(--border-light);border-radius:var(--radius-md);overflow:hidden;margin:14px 0}
.vr-detail-row{display:flex;align-items:flex-start;gap:14px;padding:10px 16px;border-bottom:1px solid var(--border-light);font-size:.85rem}
.vr-detail-row:last-child{border-bottom:none}
.vr-detail-label{width:155px;flex-shrink:0;font-weight:600;color:var(--text-muted);font-size:.78rem}
.vr-detail-value{color:var(--text);line-height:1.55}
.vr-actions{margin-top:18px}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{display:grid;grid-template-columns:1fr 1.6fr;gap:56px}
.contact-info{display:flex;flex-direction:column;gap:24px}
.contact-info-item{display:flex;gap:14px;align-items:flex-start}
.contact-info-item__icon{width:44px;height:44px;flex-shrink:0;background:var(--surface);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;border:1px solid var(--border-light)}
.contact-info-item__icon svg{width:20px;height:20px;color:var(--primary)}
.contact-info-item__label{font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-light);margin-bottom:3px}
.contact-info-item__value{font-size:.92rem;font-weight:600;color:var(--text)}
.contact-form{background:var(--white);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:40px}

/* ============================================================
   ABOUT
   ============================================================ */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.mv-card{border-radius:var(--radius-xl);padding:44px 36px;position:relative;overflow:hidden}
.mv-card--mission{background:var(--primary)}
.mv-card--vision{background:var(--surface);border:1px solid var(--border-light)}
.mv-card__icon{width:52px;height:52px;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.mv-card--mission .mv-card__icon{background:rgba(255,255,255,.15)}
.mv-card--vision .mv-card__icon{background:var(--primary)}
.mv-card__icon svg{width:26px;height:26px;color:var(--white)}
.mv-card h3{margin-bottom:14px}
.mv-card--mission h3{color:var(--white)}
.mv-card--mission p{color:rgba(255,255,255,.8)}
.principles-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.principle-card{background:var(--white);border:1px solid var(--border-light);border-radius:var(--radius-lg);padding:24px 18px;text-align:center;transition:all .25s}
.principle-card:hover{border-color:var(--primary);box-shadow:var(--shadow-md)}
.principle-card__icon{width:48px;height:48px;background:var(--surface);border-radius:50%;margin:0 auto 14px;display:flex;align-items:center;justify-content:center}
.principle-card__icon svg{width:22px;height:22px;color:var(--primary)}
.principle-card h4{font-size:.88rem;margin-bottom:7px}
.principle-card p{font-size:.78rem}

/* ============================================================
   UTILITY & ANIMATIONS
   ============================================================ */
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
[data-animate]{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
[data-animate].visible{opacity:1;transform:translateY(0)}
.delay-1{transition-delay:.1s!important}
.delay-2{transition-delay:.2s!important}
.delay-3{transition-delay:.3s!important}
.badge-pill{display:inline-flex;align-items:center;padding:3px 10px;border-radius:30px;font-size:.72rem;font-weight:700;font-family:var(--font-heading)}
.badge-pill--primary{background:var(--surface-2);color:var(--primary)}
.badge-pill--accent{background:rgba(232,160,32,.12);color:var(--accent-dark)}
.badge-pill--green{background:#eafaf3;color:#1a7a44}
@keyframes spin{to{transform:rotate(360deg)}}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media(max-width:1100px){
  .footer__main{grid-template-columns:1fr 1fr 1fr}
  .footer__main>:first-child{grid-column:1/-1}
  .grid-5,.services-grid{grid-template-columns:repeat(3,1fr)}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)}
  .stat-item:nth-last-child(-n+2){border-bottom:none}
  .process-flow{grid-template-columns:repeat(4,1fr)}
  .principles-grid{grid-template-columns:repeat(3,1fr)}
  .industry-cards{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  :root{--nav-h:68px;--topbar-h:0px}
  .topbar{display:none}
  .nav__menu{display:none}
  .nav__hamburger{display:flex}
  .nav__verify{display:none}
  .page-hero{padding-top:var(--nav-h)}
  .hero-slide__inner{grid-template-columns:1fr}
  .hero-slide__visual{display:none}
  .grid-2{grid-template-columns:1fr;gap:32px}
  .grid-3{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .services-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .service-detail__intro{grid-template-columns:1fr;gap:28px}
  .service-sidebar{position:static}
  .mv-grid{grid-template-columns:1fr}
  .contact-strip__grid{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .stat-item{padding:36px 20px}
  .policy-layout{grid-template-columns:1fr}
  .policy-sidebar{position:static}
  .container--wide{padding:0 20px}
}
@media(max-width:640px){
  :root{--nav-h:62px}
  section{padding:56px 0}
  .container,.container--wide{padding:0 16px}
  .nav__inner{padding:0 16px}
  .nav__logo-img{height:42px}
  .hero-slide{min-height:auto}
  .hero-slide__inner{padding:48px 16px 72px}
  .hero-slide__actions{flex-direction:column;width:100%}
  .hero-slide__actions .btn{width:100%;justify-content:center}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .industry-cards{grid-template-columns:1fr}
  .stat-item{padding:28px 16px}
  .stats-grid{grid-template-columns:1fr 1fr}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.1)}
  .contact-strip__grid{grid-template-columns:1fr}
  .contact-strip{padding:40px 0}
  .cta-section{padding:60px 0}
  .cta-section__actions{flex-direction:column;align-items:stretch}
  .cta-section__actions .btn{width:100%;justify-content:center}
  .footer__main{grid-template-columns:1fr;gap:28px}
  .footer__bottom-inner{flex-direction:column;text-align:center}
  .footer__legal{justify-content:center}
  .hero-slider__arrow{display:none}
  .process-flow{grid-template-columns:repeat(2,1fr)}
  .process-flow::before{display:none}
  .principles-grid{grid-template-columns:1fr 1fr}
  .mv-card{padding:28px 20px}
  .contact-form{padding:24px 16px}
  .trust-bar__inner{overflow-x:auto;flex-wrap:nowrap;gap:16px;padding:0 16px}
  .trust-item{white-space:nowrap}
}

/* ============================================================
   TPS BRAND MARK
   ============================================================ */
.tps-mark{font-size:.52em;vertical-align:super;color:var(--primary);opacity:.4;font-weight:700;letter-spacing:0;font-family:var(--font-heading);pointer-events:none;user-select:none}
.footer__footnote{font-size:.68rem;color:rgba(255,255,255,.28);margin-top:6px}

/* CRITICAL FIX — Force mobile nav hidden on desktop always */
@media(min-width:901px){
  .mobile-nav,.mobile-nav.open{display:none!important;visibility:hidden!important;pointer-events:none!important;height:0!important;overflow:hidden!important}
}
