
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root{
  --bg:#F5F8FB;
  --surface:#FFFFFF;
  --surface-2:#FAFCFE;
  --ink:#10233A;
  --muted:#6F8195;
  --line:#E1EAF2;
  --green:#052659;
  --green-2:#5483B3;
  --green-soft:#EAF3FA;
  --gold:#7DA0CA;
  --gold-soft:#EEF5FB;
  --shadow:0 20px 55px rgba(2,24,50,.10);
  --shadow-soft:0 8px 25px rgba(2,24,50,.06);
  --radius:22px;
  --max:1080px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"DM Sans",Arial,sans-serif;
  line-height:1.65;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max),92%);margin:0 auto}

/* HEADER */
.topbar{
  height:32px;
  background:var(--green);
  color:#dcebe5;
  font-size:10px;
}
.topbar .container{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(15px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:13px;
  background:linear-gradient(145deg,#052659,#5483B3);
  color:#fff;
  display:grid;
  place-items:center;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:18px;
  font-weight:800;
}
.brand-text strong{
  display:block;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:15px;
  line-height:1.1;
  letter-spacing:.05em;
}
.brand-text span{
  display:block;
  color:var(--muted);
  font-size:9px;
  margin-top:3px;
}

.nav-menu{
  margin-left:auto !important;
  display:flex !important;
  align-items:center !important;
  gap:4px !important;
  padding:5px !important;
  background:#EAF0F5 !important;
  border:1px solid #DCE5EC !important;
  border-radius:999px !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.95) !important;
}

.nav-menu a{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:36px !important;
  padding:9px 14px !important;
  border-radius:999px !important;
  background:transparent !important;
  border:1px solid transparent !important;
  color:#6B7B87 !important;
  font-size:11px !important;
  font-weight:700 !important;
  transition:all .25s cubic-bezier(.2,.8,.2,1) !important;
}


.nav-menu a:hover{
  color:#052659 !important;
  background:#FFFFFF !important;
  border-color:#DCE5EC !important;
  transform:translateY(-2px) !important;
  box-shadow:0 7px 16px rgba(5,38,89,.11) !important;
}


.nav-menu a.active{
  color:#052659 !important;
  background:#FFFFFF !important;
  border-color:#E1E9EF !important;
  transform:none !important;
  box-shadow:0 6px 17px rgba(5,38,89,.10) !important;
}


.search{display:none !important}

.menu-toggle{
  display:none !important;
  margin-left:auto !important;
  border:0 !important;
  background:#EAF3FA !important;
  color:#052659 !important;
  width:40px !important;
  height:40px !important;
  border-radius:11px !important;
  font-size:18px !important;
}

/* HERO */
.hero{
  padding:42px 0 52px;
}
.hero-shell{
  background:linear-gradient(135deg,#fbfcff 0%,#f4f8f6 100%);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:42px 48px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .78fr;
  gap:45px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  font-weight:800;
  color:#59726a;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.eyebrow-dot{
  width:7px;height:7px;border-radius:50%;background:var(--gold);
}
.hero h1{
  margin:14px 0 14px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:clamp(38px,5vw,61px);
  line-height:1.04;
  letter-spacing:-.045em;
  max-width:610px;
}
.hero h1 span{color:#5483B3}
.hero p{
  margin:0;
  color:#6b7b75;
  font-size:14px;
  max-width:560px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:10px 15px;
  border-radius:11px;
  font-size:11px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 10px 22px rgba(20,99,78,.16);
}
.btn-light{
  background:#fff;
  border-color:var(--line);
  color:#41564f;
}
.hero-visual{
  position:relative;
  min-height:285px;
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.visual-card{
  width:min(285px,100%);
  background:linear-gradient(160deg,#052659,#0c3f7e 58%,#5483B3);
  color:#fff;
  border-radius:25px;
  padding:19px;
  box-shadow:0 24px 45px rgba(5,38,89,.24);
  transform:rotate(1.8deg);
}
.visual-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:10px;
  font-weight:700;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.visual-title{
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:22px;
  font-weight:800;
  margin:20px 0 14px;
}
.visual-row{
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px;
  border-radius:15px;
  background:rgba(255,255,255,.14);
  margin-top:9px;
}
.visual-row.active{background:#fff;color:#253e35}
.visual-icon{
  width:33px;height:33px;border-radius:10px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.22);
}
.visual-row.active .visual-icon{background:#ddf2e8}
.visual-row strong{display:block;font-size:11px}
.visual-row span{display:block;font-size:8px;opacity:.8}
.float-dot{
  position:absolute;
  width:50px;height:50px;border-radius:50%;
  background:#fff;
  box-shadow:var(--shadow-soft);
  right:0;
  bottom:26px;
  display:grid;place-items:center;
  color:#7DA0CA;
  font-size:20px;
}
.hero-note{
  position:absolute;
  left:0;
  bottom:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:13px;
  padding:9px 11px;
  font-size:9px;
  color:#65766f;
  box-shadow:var(--shadow-soft);
}

/* STEPS */
.section{padding:16px 0 62px}
.section-center{text-align:center}
.section-kicker{
  font-size:10px;
  color:#5483B3;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.section h2{
  margin:8px 0 7px;
  font-family:"Plus Jakarta Sans",sans-serif;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-.035em;
}
.section-sub{
  margin:0 auto;
  max-width:560px;
  font-size:12px;
  color:var(--muted);
}
.steps{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:13px;
}
.step{
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  text-align:left;
  box-shadow:var(--shadow-soft);
}
.step-num{
  width:29px;height:29px;border-radius:9px;
  background:#EAF1F8;
  color:#052659;
  display:grid;place-items:center;
  font-size:11px;font-weight:800;
  margin-bottom:12px;
}
.step h3{margin:0 0 4px;font-size:12px}
.step p{margin:0;color:var(--muted);font-size:10px;line-height:1.55}

/* CONTENT */
.clean-section{
  margin-top:12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}
.section-top{
  display:flex;align-items:end;justify-content:space-between;gap:16px;
  margin-bottom:18px;
}
.section-top h3{margin:0;font-family:"Plus Jakarta Sans",sans-serif;font-size:20px}
.section-top p{margin:5px 0 0;color:var(--muted);font-size:10px}
.mini-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.mini-card{
  border:1px solid var(--line);
  border-radius:15px;
  overflow:hidden;
  background:#fff;
}
.mini-thumb{aspect-ratio:16/10;background:#e8efec;overflow:hidden}
.mini-thumb img{width:100%;height:100%;object-fit:cover}
.mini-body{padding:12px}
.mini-body span{font-size:9px;color:var(--green);font-weight:800}
.mini-body h4{font-size:12px;line-height:1.4;margin:5px 0 0}

/* VIDEO / GALLERY */
.media-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.media-box{
  border:1px solid var(--line);
  border-radius:16px;
  padding:13px;
  background:#fff;
}
.media-box h4{margin:0 0 9px;font-size:13px}
.media-video{
  aspect-ratio:16/9;
  border-radius:11px;
  overflow:hidden;
  background:#16322a;
}
.media-video iframe,.media-video video{width:100%;height:100%;border:0}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}
.gallery-item{aspect-ratio:1.25;border-radius:10px;overflow:hidden;background:#e4ece8}
.gallery-item img{width:100%;height:100%;object-fit:cover}
.empty{
  border:1px dashed #cdd9d4;
  border-radius:14px;
  padding:30px 20px;
  text-align:center;
  color:var(--muted);
  font-size:11px;
  background:#fafcfb;
}

/* CTA */
.cta-wrap{
  padding:0 0 55px;
}
.cta{
  border-radius:22px;
  background:linear-gradient(135deg,#021024 0%,#052659 58%,#5483B3 100%);
  color:#fff;
  padding:28px 30px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.cta h3{
  font-family:"Plus Jakarta Sans",sans-serif;
  margin:0 0 4px;
  font-size:22px;
}
.cta p{margin:0;color:#C1E8FF;font-size:10px}


/* FOOTER MODERN */
footer{
  background:linear-gradient(180deg,#f9fbfd 0%,#f1f6fa 100%);
  border-top:1px solid var(--line);
  padding:42px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr .9fr 1fr;
  gap:22px;
  align-items:stretch;
}
.footer-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}
.footer-brand-box{
  background:linear-gradient(145deg,#052659,#0b3c75);
  color:#fff;
  border-color:transparent;
}
.footer-brand-box .brand-text strong{color:#fff}
.footer-brand-box .brand-text span{color:#c1e8ff}
.footer-brand-box p{
  color:#d4e3f0;
  font-size:10px;
  line-height:1.75;
  margin:14px 0 0;
}
.footer-title{
  margin:0 0 12px;
  font-size:11px;
  font-weight:800;
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.footer-menu{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.footer-menu a{
  display:flex;
  align-items:center;
  min-height:34px;
  padding:7px 9px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fbfdfe;
  color:#536775;
  font-size:10px;
  font-weight:700;
  transition:.18s ease;
}
.footer-menu a:hover{
  background:#eaf3fa;
  color:#052659;
  border-color:#c8ddeb;
  transform:translateY(-1px);
}
.footer-contact{
  display:grid;
  gap:8px;
}
.footer-contact a,
.footer-contact div{
  display:flex;
  align-items:flex-start;
  gap:9px;
  padding:9px 10px;
  border-radius:10px;
  background:#f7fafc;
  border:1px solid #e9eff3;
  color:#60717d;
  font-size:10px;
  line-height:1.55;
}
.footer-contact .ico{
  width:25px;
  height:25px;
  border-radius:8px;
  background:#e8f2fa;
  color:#052659;
  display:grid;
  place-items:center;
  flex:0 0 25px;
  font-size:11px;
}
.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:12px;
}
.footer-social a{
  width:32px;
  height:32px;
  border-radius:9px;
  background:#fff;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:#315a7e;
  font-size:12px;
  transition:.18s ease;
}
.footer-social a:hover{
  background:#eaf3fa;
  color:#052659;
  transform:translateY(-1px);
}
.footer-bottom{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  color:#82919b;
  font-size:9px;
}
.footer-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.footer-bottom-links a{
  padding:6px 9px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  color:#758590;
}
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-brand-box{grid-column:1/-1}
}

@media(max-width:700px){
  .topbar .container{justify-content:center}
  .topbar .container>span:last-child{display:none}
  .nav-inner{min-height:65px}
  .hero{padding:25px 0 38px}
  .hero-shell{padding:27px 22px;border-radius:21px}
  .hero h1{font-size:39px}
  .hero p{font-size:13px}
  .hero-visual{min-height:260px}
  .visual-card{width:255px}
  .section{padding-bottom:45px}
  .steps{grid-template-columns:1fr}
  .mini-grid{grid-template-columns:1fr}
  .media-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .cta{display:block;padding:23px}
  .cta .btn{margin-top:13px;background:#C1E8FF;color:#052659;border-color:#C1E8FF}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .contact-box{grid-template-columns:1fr}
}

.nav-menu a:focus-visible{
  outline:3px solid rgba(125,160,202,.35);
  outline-offset:2px;
}

/* FINAL NAV OVERRIDE */
@media(min-width:701px){
  header.navbar .nav-inner nav.nav-menu{
    display:flex !important;
    align-items:center !important;
    gap:4px !important;
    padding:5px !important;
    background:#EAF0F5 !important;
    border:1px solid #DCE5EC !important;
    border-radius:999px !important;
  }
  header.navbar .nav-inner nav.nav-menu > a{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:36px !important;
    padding:9px 14px !important;
    border-radius:999px !important;
    color:#6B7B87 !important;
    background:transparent !important;
    border:1px solid transparent !important;
  }
  header.navbar .nav-inner nav.nav-menu > a:hover{
    color:#052659 !important;
    background:#fff !important;
    border-color:#DCE5EC !important;
    transform:translateY(-2px) !important;
    box-shadow:0 7px 16px rgba(5,38,89,.11) !important;
  }
  header.navbar .nav-inner nav.nav-menu > a.active{
    color:#052659 !important;
    background:#fff !important;
    border-color:#E1E9EF !important;
    box-shadow:0 6px 17px rgba(5,38,89,.10) !important;
  }
}

/* FINAL BLUE CTA */
.cta-wrap .cta{
  background:linear-gradient(135deg,#021024 0%,#052659 58%,#5483B3 100%) !important;
}
.cta-wrap .cta h3{
  color:#FFFFFF !important;
}
.cta-wrap .cta p{
  color:#C1E8FF !important;
}
.cta-wrap .cta .btn,
.cta-wrap .cta .btn-light,
.cta-wrap .cta .btn-primary{
  background:#C1E8FF !important;
  color:#052659 !important;
  border-color:#C1E8FF !important;
  box-shadow:0 8px 20px rgba(2,16,36,.18) !important;
}
.cta-wrap .cta .btn:hover{
  background:#FFFFFF !important;
  border-color:#FFFFFF !important;
  color:#021024 !important;
  transform:translateY(-2px);
}

/* FINAL: no underline on navigation hover */
.nav-menu a::after,
.nav-menu a:hover::after,
.nav-menu a.active::after{
  content:none !important;
  display:none !important;
  width:0 !important;
  height:0 !important;
}

/* =========================================================
   V21 - STANDALONE MOBILE DRAWER
   Desktop navigation is untouched.
   No overlay.
   ========================================================= */

.mobile-drawer{
  display:none;
}

@media screen and (max-width:700px){

  header.navbar .menu-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    padding:0 !important;
    margin-left:auto !important;
    border:1px solid #DCE7EF !important;
    border-radius:11px !important;
    background:#EAF3FA !important;
    color:#052659 !important;
    font-size:20px !important;
    cursor:pointer !important;
    position:relative !important;
    z-index:9001 !important;
  }

  /* Hide only desktop nav links on mobile. */
  header.navbar .nav-menu{
    display:none !important;
  }

  .mobile-drawer{
    display:block;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:min(300px,82vw);
    background:#fff;
    border-left:1px solid #DCE6EE;
    border-radius:16px 0 0 16px;
    box-shadow:-14px 0 30px rgba(2,16,36,.12);
    padding:22px 14px 18px;
    z-index:9000;
    transform:translateX(105%);
    transition:transform .26s ease;
    overflow-y:auto;
    overflow-x:hidden;
  }

  .mobile-drawer.show{
    transform:translateX(0);
  }

  .mobile-drawer-close{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:15px;
    right:13px;
    width:38px;
    height:38px;
    border:1px solid #DCE7EF;
    border-radius:10px;
    background:#EAF3FA;
    color:#052659;
    font-size:23px;
    line-height:1;
    cursor:pointer;
  }

  .mobile-drawer-title{
    margin:20px 5px 22px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    color:#052659;
  }

  .mobile-drawer-links{
    display:flex;
    flex-direction:column;
    gap:6px;
  }

  .mobile-drawer-links .mobile-link{
    display:flex;
    align-items:center;
    width:100%;
    min-height:48px;
    padding:12px 13px;
    border:1px solid transparent;
    border-radius:11px;
    background:#fff;
    color:#536775;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    transition:background .15s ease,color .15s ease,border-color .15s ease;
  }

  .mobile-drawer-links .mobile-link:hover,
  .mobile-drawer-links .mobile-link:active,
  .mobile-drawer-links .mobile-link.active{
    background:#EAF3FA;
    border-color:#D7E5EF;
    color:#052659;
  }

  .mobile-drawer-links .mobile-link::after{
    display:none !important;
    content:none !important;
  }
}

@media screen and (min-width:701px){
  .mobile-drawer{
    display:none !important;
  }
}
/* V25 - MOBILE: visual tetap satu container seperti desain asli */
@media(max-width:700px){
  /* Hero teks tetap terpisah, tetapi seluruh visual tetap berada
     dalam SATU kartu biru seperti desain asli. */
  .hero-shell{
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
    padding:0;
    overflow:visible;
  }

  .hero-grid{
    display:block;
  }

  .hero-grid > .reveal:first-child{
    background:linear-gradient(135deg,#fbfcff 0%,#f4f8f6 100%);
    border:1px solid var(--line);
    border-radius:21px;
    box-shadow:var(--shadow);
    padding:27px 22px;
  }

  .hero-visual{
    min-height:0;
    display:block;
    width:100%;
    margin-top:16px;
    padding:0 4px 18px;
    position:relative;
  }

  /* SATU container visual: jangan pecah menjadi beberapa container */
  .visual-card{
    width:100%;
    max-width:none;
    box-sizing:border-box;
    background:linear-gradient(160deg,#052659,#0c3f7e 58%,#5483B3);
    color:#fff;
    border-radius:25px;
    padding:19px;
    box-shadow:0 24px 45px rgba(5,38,89,.24);
    transform:rotate(1.8deg);
  }

  .visual-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:10px;
    font-weight:700;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,.16);
  }

  .visual-title{
    background:transparent;
    border:0;
    border-radius:0;
    padding:0;
    box-shadow:none;
    font-family:"Plus Jakarta Sans",sans-serif;
    font-size:clamp(30px,8vw,42px);
    line-height:1.08;
    font-weight:800;
    margin:20px 0 14px;
    color:#fff;
  }

  .visual-row,
  .visual-row.active{
    display:flex;
    gap:10px;
    align-items:center;
    padding:12px;
    border-radius:15px;
    background:rgba(255,255,255,.14);
    border:0;
    margin-top:9px;
    box-shadow:none;
    color:#fff;
  }

  .visual-row.active{
    background:#fff;
    color:#253e35;
  }

  .visual-icon,
  .visual-row.active .visual-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.22);
    color:inherit;
  }

  .visual-row.active .visual-icon{
    background:#ddf2e8;
  }

  .visual-row strong{
    display:block;
    font-size:14px;
  }

  .visual-row span{
    display:block;
    font-size:10px;
    opacity:.8;
  }

  .visual-row.active span{
    color:#65766f;
    opacity:1;
  }

  .float-dot{
    position:absolute;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow-soft);
    right:-2px;
    bottom:8px;
    display:grid;
    place-items:center;
    color:#7DA0CA;
    font-size:20px;
  }

  .hero-note{
    position:absolute;
    left:-1px;
    bottom:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:13px;
    padding:9px 11px;
    font-size:9px;
    color:#65766f;
    box-shadow:var(--shadow-soft);
    z-index:2;
  }
}


/* =========================================================
   V26 - MOBILE NAV: SLIM ICON + LABEL DRAWER
   Only affects phones. Desktop navigation remains unchanged.
   No overlay.
   ========================================================= */
@media screen and (max-width:700px){
  .mobile-drawer{
    width:min(260px,82vw) !important;
    padding:18px 10px 20px !important;
    border-radius:22px 0 0 22px !important;
    box-shadow:-12px 0 28px rgba(2,16,36,.16) !important;
    background:#ffffff !important;
  }

  .mobile-drawer-close{
    top:12px !important;
    right:10px !important;
    width:36px !important;
    height:36px !important;
    border:0 !important;
    border-radius:50% !important;
    background:#f1f8fc !important;
    color:#052659 !important;
    font-size:23px !important;
  }

  .mobile-drawer-title{
    margin:8px 48px 18px 10px !important;
    padding-bottom:14px !important;
    border-bottom:1px solid #e5edf3 !important;
    font-size:14px !important;
    letter-spacing:.04em !important;
  }

  .mobile-drawer-links{
    gap:6px !important;
  }

  .mobile-drawer-links .mobile-link{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    gap:13px !important;
    width:100% !important;
    min-height:54px !important;
    box-sizing:border-box !important;
    padding:8px 12px !important;
    border:0 !important;
    border-radius:12px !important;
    background:#fff !important;
    color:#425766 !important;
    font-size:14px !important;
    font-weight:700 !important;
    text-decoration:none !important;
  }

  .mobile-drawer-links .mobile-link:hover,
  .mobile-drawer-links .mobile-link:active,
  .mobile-drawer-links .mobile-link.active{
    background:#08afe4 !important;
    color:#fff !important;
    border:0 !important;
  }

  .mobile-link-icon{
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    border:1.8px solid currentColor !important;
    border-radius:10px !important;
    display:grid !important;
    place-items:center !important;
    position:relative !important;
    color:inherit !important;
    opacity:.95 !important;
  }

  /* Simple line icons, deliberately CSS-only so the menu has no external dependency. */
  .mobile-icon-home::before{content:'⌂';font-size:24px;line-height:1;transform:translateY(-1px)}
  .mobile-icon-article::before{content:'▤';font-size:21px;line-height:1}
  .mobile-icon-video::before{content:'▶';font-size:17px;line-height:1;margin-left:2px}
  .mobile-icon-gallery::before{content:'▧';font-size:22px;line-height:1}
  .mobile-icon-about::before{content:'◎';font-size:24px;line-height:1}
  .mobile-icon-contact::before{content:'♧';font-size:24px;line-height:1}

  .mobile-link-label{
    display:block !important;
    flex:1 !important;
    line-height:1.2 !important;
    white-space:normal !important;
  }

  .mobile-drawer-links .mobile-link::after{
    display:none !important;
    content:none !important;
  }
}
