:root{
      --warna-tema:#0B3D91;
      --warna-tema-template:{主题色};
      --warna-tema-gelap:#072b69;
      --warna-tema-muda:#eaf1ff;
      --warna-aksen:#e3483d;
      --warna-tinta:#101828;
      --warna-teks:#344054;
      --warna-redup:#667085;
      --warna-garis:#e4e7ec;
      --warna-latar:#f7f9fc;
      --warna-putih:#ffffff;
      --bayangan:0 18px 48px rgba(16,24,40,.10);
      --radius:18px;
      --container:1200px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      min-width:320px;
      color:var(--warna-tinta);
      background:var(--warna-putih);
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      line-height:1.6;
      -webkit-font-smoothing:antialiased;
    }

    body.drawer-lock{
      overflow:hidden;
    }

    img{
      display:block;
      max-width:100%;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button,
    input,
    select{
      font:inherit;
    }

    button{
      color:inherit;
    }

    .container{
      width:min(calc(100% - 40px),var(--container));
      margin-inline:auto;
    }

    .topbar{
      position:relative;
      z-index:110;
      color:#dce8ff;
      background:#071b3a;
      font-size:13px;
    }

    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .topbar-contact{
      display:flex;
      align-items:center;
      gap:20px;
    }

    .topbar a{
      transition:color .2s ease;
    }

    .topbar a:hover{
      color:#ffffff;
    }

    .header{
      position:relative;
      z-index:100;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--warna-garis);
      box-shadow:0 5px 18px rgba(16,24,40,.04);
    }

    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:26px;
    }

    .logo{
      min-width:0;
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:850;
      letter-spacing:-.025em;
    }

    .header .logo{
      flex:0 0 auto;
      max-width:220px;
    }

    .logo img{
      width:40px;
      height:40px;
      flex:0 0 auto;
      object-fit:contain;
      border-radius:10px;
    }

    .logo span{
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .main-nav{
      align-self:stretch;
      margin-left:auto;
    }

    .nav-list{
      height:100%;
      margin:0;
      padding:0;
      display:flex;
      align-items:stretch;
      list-style:none;
    }

    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }

    .nav-link{
      height:100%;
      padding:0 13px;
      display:flex;
      align-items:center;
      color:#344054;
      font-size:14px;
      font-weight:720;
      white-space:nowrap;
      transition:color .2s ease;
    }

    .nav-item:hover > .nav-link,
    .nav-item:focus-within > .nav-link{
      color:var(--warna-tema);
    }

    .nav-item:hover > .nav-link::after,
    .nav-item:focus-within > .nav-link::after{
      transform:scaleX(1);
    }

    .nav-link::after{
      content:"";
      position:absolute;
      right:13px;
      bottom:0;
      left:13px;
      height:3px;
      background:var(--warna-tema);
      transform:scaleX(0);
      transform-origin:center;
      transition:transform .2s ease;
    }

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translateY(10px);
      transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
      background:#ffffff;
      border:1px solid var(--warna-garis);
      border-radius:0 0 18px 18px;
      box-shadow:0 24px 60px rgba(16,24,40,.16);
    }

    .dropdown-panel::before,
    .mega-menu::before{
      content:"";
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:12px;
    }

    .nav-item:hover > .dropdown-panel,
    .nav-item:focus-within > .dropdown-panel,
    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
      transform:translateY(0);
    }

    .dropdown-panel{
      left:0;
      width:350px;
      padding:24px;
    }

    .dropdown-title,
    .mega-title{
      margin:0 0 12px;
      font-size:18px;
      line-height:1.3;
    }

    .dropdown-list{
      display:grid;
      gap:3px;
    }

    .dropdown-list a{
      padding:10px 0;
      color:var(--warna-teks);
      font-size:14px;
      font-weight:650;
      border-bottom:1px solid #edf0f4;
    }

    .dropdown-list a:hover{
      color:var(--warna-tema);
    }

    .panel-more{
      margin-top:15px;
      display:inline-flex;
      color:var(--warna-tema);
      font-size:14px;
      font-weight:800;
    }

    .mega-menu{
      left:50%;
      width:min(980px,calc(100vw - 40px));
      padding:25px;
      transform:translate(-50%,10px);
    }

    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu{
      transform:translate(-50%,0);
    }

    .nav-item:nth-last-child(-n+3) .mega-menu{
      right:-100px;
      left:auto;
      transform:translateY(10px);
    }

    .nav-item:nth-last-child(-n+3):hover > .mega-menu,
    .nav-item:nth-last-child(-n+3):focus-within > .mega-menu{
      transform:translateY(0);
    }

    .mega-grid{
      display:grid;
      grid-template-columns:230px minmax(0,1fr);
      gap:24px;
    }

    .mega-intro{
      padding:22px;
      color:#ffffff;
      background:linear-gradient(145deg,var(--warna-tema),var(--warna-tema-gelap));
      border-radius:16px;
    }

    .mega-intro p{
      margin:0 0 18px;
      color:#dbe8ff;
      font-size:14px;
    }

    .mega-intro a{
      display:inline-flex;
      padding:9px 13px;
      color:var(--warna-tema-gelap);
      background:#ffffff;
      border-radius:9px;
      font-size:13px;
      font-weight:800;
    }

    .mega-cards{
      min-width:0;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }

    .mega-card{
      min-width:0;
      padding:14px;
      background:#f8fafc;
      border:1px solid #e8ecf2;
      border-radius:13px;
      transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
    }

    .mega-card:hover{
      border-color:#b8c9e8;
      box-shadow:0 10px 24px rgba(11,61,145,.10);
      transform:translateY(-2px);
    }

    .mega-card img{
      width:34px;
      height:34px;
      margin-bottom:9px;
      object-fit:contain;
      border-radius:8px;
    }

    .mega-card .video-thumb,
    .mega-card .product-thumb{
      width:100%;
      height:76px;
      object-fit:cover;
    }

    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#1d2939;
      font-size:13px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .mega-card p{
      margin:5px 0 0;
      display:-webkit-box;
      overflow:hidden;
      color:var(--warna-redup);
      font-size:12px;
      line-height:1.45;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .mega-meta{
      margin-top:7px;
      display:flex;
      flex-wrap:wrap;
      gap:5px 9px;
      color:var(--warna-tema);
      font-size:11px;
      font-weight:720;
    }

    .category-links{
      margin-bottom:18px;
      padding-bottom:16px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      border-bottom:1px solid var(--warna-garis);
    }

    .category-links a{
      padding:7px 11px;
      color:var(--warna-tema);
      background:var(--warna-tema-muda);
      border-radius:999px;
      font-size:12px;
      font-weight:750;
    }

    .header-btns{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .open-account{
      padding:11px 16px;
      color:#ffffff;
      background:var(--warna-tema);
      border-radius:10px;
      font-size:13px;
      font-weight:820;
      box-shadow:0 8px 18px rgba(11,61,145,.20);
      transition:background .2s ease,transform .2s ease;
    }

    .open-account:hover{
      background:var(--warna-tema-gelap);
      transform:translateY(-1px);
    }

    .hamburger{
      width:44px;
      height:44px;
      padding:0;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      background:#ffffff;
      border:1px solid var(--warna-garis);
      border-radius:10px;
      cursor:pointer;
    }

    .hamburger span{
      width:19px;
      height:2px;
      background:#101828;
      border-radius:4px;
      transition:transform .2s ease,opacity .2s ease;
    }

    .hamburger.active span:nth-child(1){
      transform:translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2){
      opacity:0;
    }

    .hamburger.active span:nth-child(3){
      transform:translateY(-7px) rotate(-45deg);
    }

    .drawer-overlay{
      position:fixed;
      z-index:190;
      inset:0;
      opacity:0;
      visibility:hidden;
      background:rgba(7,18,38,.58);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

    .drawer-overlay.open{
      opacity:1;
      visibility:visible;
    }

    .mobile-drawer{
      position:fixed;
      z-index:200;
      top:0;
      right:0;
      bottom:0;
      width:min(400px,92vw);
      overflow-y:auto;
      background:#ffffff;
      box-shadow:-20px 0 60px rgba(16,24,40,.22);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

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

    .drawer-head{
      min-height:76px;
      padding:15px 18px;
      display:flex;
      align-items:center;
      gap:10px;
      border-bottom:1px solid var(--warna-garis);
    }

    .drawer-head > a{
      padding:9px 12px;
      color:#ffffff;
      background:var(--warna-tema);
      border-radius:8px;
      font-size:13px;
      font-weight:780;
    }

    .drawer-close{
      width:40px;
      height:40px;
      margin-left:auto;
      padding:0;
      color:#344054;
      background:#f2f4f7;
      border:0;
      border-radius:10px;
      font-size:26px;
      line-height:1;
      cursor:pointer;
    }

    .drawer-menu{
      padding:14px 18px 36px;
    }

    .drawer-link,
    .drawer-toggle{
      width:100%;
      padding:14px 4px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      color:#1d2939;
      background:transparent;
      border:0;
      border-bottom:1px solid #edf0f4;
      font-weight:760;
      text-align:left;
      cursor:pointer;
    }

    .drawer-toggle::after{
      content:"+";
      color:var(--warna-tema);
      font-size:20px;
      font-weight:500;
    }

    .drawer-toggle.active::after{
      content:"−";
    }

    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      padding:0 10px;
      background:#f8fafc;
      transition:max-height .3s ease,padding .3s ease;
    }

    .drawer-submenu.open{
      max-height:620px;
      padding:8px 10px;
    }

    .drawer-submenu a{
      padding:10px 6px;
      display:block;
      color:#475467;
      border-bottom:1px dashed #e2e7ee;
      font-size:14px;
    }

    .tools-page{
      min-width:0;
      overflow:hidden;
      background:var(--warna-latar);
    }

    .tools-page .tools-intro{
      position:relative;
      padding:74px 0 68px;
      overflow:hidden;
      color:#ffffff;
      background:
        radial-gradient(circle at 84% 16%,rgba(255,255,255,.17),transparent 26%),
        radial-gradient(circle at 13% 88%,rgba(49,125,255,.34),transparent 32%),
        linear-gradient(135deg,#061a3b 0%,#0B3D91 62%,#165ec2 100%);
    }

    .tools-page .tools-intro::before,
    .tools-page .tools-intro::after{
      content:"";
      position:absolute;
      border:1px solid rgba(255,255,255,.13);
      border-radius:50%;
    }

    .tools-page .tools-intro::before{
      width:420px;
      height:420px;
      top:-260px;
      right:5%;
    }

    .tools-page .tools-intro::after{
      width:260px;
      height:260px;
      bottom:-190px;
      left:7%;
    }

    .tools-page .intro-content{
      position:relative;
      z-index:1;
      max-width:850px;
    }

    .tools-page .eyebrow{
      margin-bottom:16px;
      display:inline-flex;
      align-items:center;
      gap:9px;
      color:#d9e7ff;
      font-size:13px;
      font-weight:820;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .tools-page .eyebrow::before{
      content:"";
      width:28px;
      height:2px;
      background:#ffffff;
    }

    .tools-page h1{
      max-width:790px;
      margin:0;
      font-size:clamp(38px,6vw,72px);
      line-height:1.02;
      letter-spacing:-.05em;
    }

    .tools-page .intro-copy{
      max-width:700px;
      margin:24px 0 0;
      color:#dce8ff;
      font-size:18px;
    }

    .tools-page .intro-actions{
      margin-top:30px;
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }

    .tools-page .button-primary,
    .tools-page .button-secondary{
      min-height:48px;
      padding:12px 18px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:11px;
      font-weight:820;
      transition:transform .2s ease,background .2s ease;
    }

    .tools-page .button-primary{
      color:var(--warna-tema-gelap);
      background:#ffffff;
    }

    .tools-page .button-secondary{
      color:#ffffff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.32);
    }

    .tools-page .button-primary:hover,
    .tools-page .button-secondary:hover{
      transform:translateY(-2px);
    }

    .tools-page .trust-strip{
      position:relative;
      z-index:3;
      margin-top:-29px;
    }

    .tools-page .trust-grid{
      padding:18px 24px;
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:0;
      background:#ffffff;
      border:1px solid var(--warna-garis);
      border-radius:16px;
      box-shadow:var(--bayangan);
    }

    .tools-page .trust-item{
      padding:7px 18px;
      border-right:1px solid var(--warna-garis);
    }

    .tools-page .trust-item:last-child{
      border-right:0;
    }

    .tools-page .trust-item strong{
      display:block;
      color:var(--warna-tema);
      font-size:16px;
    }

    .tools-page .trust-item span{
      color:var(--warna-redup);
      font-size:13px;
    }

    .tools-page .tools-catalog{
      padding:78px 0 84px;
    }

    .tools-page .section-heading{
      margin-bottom:30px;
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:30px;
    }

    .tools-page .section-heading-copy{
      max-width:700px;
    }

    .tools-page .section-kicker{
      margin:0 0 8px;
      color:var(--warna-tema);
      font-size:13px;
      font-weight:850;
      letter-spacing:.1em;
      text-transform:uppercase;
    }

    .tools-page h2{
      margin:0;
      font-size:clamp(28px,4vw,44px);
      line-height:1.12;
      letter-spacing:-.035em;
    }

    .tools-page .section-heading p{
      margin:12px 0 0;
      color:var(--warna-redup);
    }

    .tools-page .catalog-note{
      flex:0 0 auto;
      padding:10px 14px;
      color:var(--warna-tema);
      background:var(--warna-tema-muda);
      border-radius:999px;
      font-size:13px;
      font-weight:780;
    }

    .tools-page .tools-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:20px;
    }

    .tools-page .tool-card{
      min-width:0;
      min-height:310px;
      padding:26px;
      display:flex;
      flex-direction:column;
      background:#ffffff;
      border:1px solid var(--warna-garis);
      border-radius:var(--radius);
      box-shadow:0 10px 28px rgba(16,24,40,.05);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }

    .tools-page .tool-card:hover{
      border-color:#adc2e7;
      box-shadow:0 20px 42px rgba(11,61,145,.12);
      transform:translateY(-5px);
    }

    .tools-page .tool-card-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }

    .tools-page .tool-card img{
      width:56px;
      height:56px;
      padding:9px;
      object-fit:contain;
      background:var(--warna-tema-muda);
      border-radius:14px;
    }

    .tools-page .tool-number{
      color:#c8d4e8;
      font-size:30px;
      font-weight:900;
      letter-spacing:-.04em;
    }

    .tools-page .tool-card h3{
      margin:22px 0 10px;
      font-size:21px;
      line-height:1.3;
    }

    .tools-page .tool-card p{
      margin:0;
      display:-webkit-box;
      overflow:hidden;
      color:var(--warna-redup);
      -webkit-box-orient:vertical;
      -webkit-line-clamp:4;
    }

    .tools-page .tool-card-link{
      margin-top:auto;
      padding-top:22px;
      display:inline-flex;
      align-items:center;
      gap:9px;
      color:var(--warna-tema);
      font-weight:840;
    }

    .tools-page .tool-card-link::after{
      content:"→";
      transition:transform .2s ease;
    }

    .tools-page .tool-card:hover .tool-card-link::after{
      transform:translateX(4px);
    }

    .tools-page .workflow{
      padding:84px 0;
      color:#ffffff;
      background:#0c1729;
    }

    .tools-page .workflow .section-kicker{
      color:#8fb8ff;
    }

    .tools-page .workflow-heading{
      max-width:760px;
      margin-bottom:38px;
    }

    .tools-page .workflow-heading p{
      color:#aebbd0;
    }

    .tools-page .workflow-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      counter-reset:tahap;
    }

    .tools-page .workflow-card{
      position:relative;
      min-height:230px;
      padding:25px;
      overflow:hidden;
      background:#14233a;
      border:1px solid #263b59;
      border-radius:16px;
      counter-increment:tahap;
    }

    .tools-page .workflow-card::before{
      content:"0" counter(tahap);
      position:absolute;
      right:16px;
      bottom:-18px;
      color:rgba(255,255,255,.055);
      font-size:88px;
      font-weight:900;
      line-height:1;
    }

    .tools-page .workflow-icon{
      width:39px;
      height:39px;
      display:grid;
      place-items:center;
      color:#ffffff;
      background:var(--warna-tema);
      border-radius:11px;
      font-weight:900;
    }

    .tools-page .workflow-card h3{
      position:relative;
      margin:20px 0 8px;
      font-size:19px;
    }

    .tools-page .workflow-card p{
      position:relative;
      margin:0;
      color:#aebbd0;
      font-size:14px;
    }

    .tools-page .safety-section{
      padding:84px 0;
      background:#ffffff;
    }

    .tools-page .safety-panel{
      padding:38px;
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
      gap:42px;
      align-items:center;
      background:linear-gradient(135deg,#f0f5ff,#ffffff);
      border:1px solid #dce6f7;
      border-radius:24px;
    }

    .tools-page .safety-panel p{
      color:var(--warna-redup);
    }

    .tools-page .safety-list{
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
      list-style:none;
    }

    .tools-page .safety-list li{
      padding:15px 17px 15px 48px;
      position:relative;
      background:#ffffff;
      border:1px solid #e0e7f2;
      border-radius:12px;
      color:#344054;
      font-weight:680;
    }

    .tools-page .safety-list li::before{
      content:"✓";
      position:absolute;
      top:14px;
      left:17px;
      width:22px;
      height:22px;
      display:grid;
      place-items:center;
      color:#ffffff;
      background:var(--warna-tema);
      border-radius:50%;
      font-size:12px;
    }

    .tools-page .faq-section{
      padding:0 0 90px;
      background:#ffffff;
    }

    .tools-page .faq-layout{
      display:grid;
      grid-template-columns:320px minmax(0,1fr);
      gap:45px;
    }

    .tools-page .faq-intro p{
      color:var(--warna-redup);
    }

    .tools-page .faq-list{
      border-top:1px solid var(--warna-garis);
    }

    .tools-page .faq-item{
      border-bottom:1px solid var(--warna-garis);
    }

    .tools-page .faq-question{
      width:100%;
      padding:21px 4px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      background:transparent;
      border:0;
      font-weight:820;
      text-align:left;
      cursor:pointer;
    }

    .tools-page .faq-question::after{
      content:"+";
      color:var(--warna-tema);
      font-size:24px;
      font-weight:500;
    }

    .tools-page .faq-question.active::after{
      content:"−";
    }

    .tools-page .faq-answer{
      max-height:0;
      overflow:hidden;
      color:var(--warna-redup);
      transition:max-height .3s ease,padding .3s ease;
    }

    .tools-page .faq-answer.open{
      max-height:260px;
      padding:0 4px 21px;
    }

    .tools-page .faq-answer p{
      margin:0;
    }

    .tools-page .final-cta{
      padding:70px 0;
      color:#ffffff;
      background:var(--warna-tema);
    }

    .tools-page .cta-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:36px;
    }

    .tools-page .cta-copy{
      max-width:720px;
    }

    .tools-page .cta-copy h2{
      color:#ffffff;
    }

    .tools-page .cta-copy p{
      margin:12px 0 0;
      color:#dce8ff;
    }

    .tools-page .cta-link{
      flex:0 0 auto;
      padding:13px 20px;
      color:var(--warna-tema);
      background:#ffffff;
      border-radius:11px;
      font-weight:850;
    }

    .footer{
      color:#d0d8e5;
      background:#081426;
    }

    .footer-main{
      padding:66px 0 48px;
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr 1fr;
      gap:44px;
    }

    .footer .logo{
      color:#ffffff;
      font-size:19px;
    }

    .footer-brand p{
      max-width:390px;
      margin:18px 0;
      color:#9eacc0;
      font-size:14px;
    }

    .social-links{
      color:#ffffff;
    }

    .footer h3{
      margin:5px 0 17px;
      color:#ffffff;
      font-size:15px;
    }

    .footer-links,
    .footer-contact{
      display:grid;
      gap:10px;
      color:#9eacc0;
      font-size:14px;
    }

    .footer-links a,
    .footer-contact a{
      transition:color .2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover{
      color:#ffffff;
    }

    .footer-bottom{
      min-height:72px;
      padding:18px 0;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      color:#8290a5;
      border-top:1px solid #1d2b40;
      font-size:13px;
    }

    .footer-bottom-links{
      display:flex;
      flex-wrap:wrap;
      gap:18px;
    }

    .footer-bottom-links a:hover{
      color:#ffffff;
    }

    @media (max-width:1120px){
      .main-nav{
        display:none;
      }

      .hamburger{
        display:flex;
      }

      .header-btns{
        margin-left:auto;
      }

      .tools-page .tools-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .footer-main{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:820px){
      .topbar-inner{
        padding:8px 0;
        align-items:flex-start;
        flex-direction:column;
        gap:3px;
      }

      .topbar-contact{
        flex-wrap:wrap;
        gap:4px 16px;
      }

      .header-inner{
        min-height:70px;
      }

      .header .logo{
        max-width:175px;
      }

      .header-btns > .open-account{
        display:none;
      }

      .tools-page .tools-intro{
        padding:58px 0 62px;
      }

      .tools-page .trust-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .tools-page .trust-item{
        border-right:0;
        border-bottom:1px solid var(--warna-garis);
      }

      .tools-page .trust-item:nth-last-child(-n+2){
        border-bottom:0;
      }

      .tools-page .section-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:16px;
      }

      .tools-page .workflow-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .tools-page .safety-panel{
        grid-template-columns:1fr;
      }

      .tools-page .faq-layout{
        grid-template-columns:1fr;
      }

      .tools-page .cta-inner{
        align-items:flex-start;
        flex-direction:column;
      }
    }

    @media (max-width:600px){
      .container{
        width:min(calc(100% - 28px),var(--container));
      }

      .topbar{
        font-size:12px;
      }

      .header .logo span{
        max-width:120px;
      }

      .tools-page .intro-copy{
        font-size:16px;
      }

      .tools-page .intro-actions{
        align-items:stretch;
        flex-direction:column;
      }

      .tools-page .button-primary,
      .tools-page .button-secondary{
        width:100%;
      }

      .tools-page .trust-grid{
        grid-template-columns:1fr;
      }

      .tools-page .trust-item,
      .tools-page .trust-item:nth-last-child(-n+2){
        border-bottom:1px solid var(--warna-garis);
      }

      .tools-page .trust-item:last-child{
        border-bottom:0;
      }

      .tools-page .tools-catalog,
      .tools-page .workflow,
      .tools-page .safety-section{
        padding:66px 0;
      }

      .tools-page .tools-grid,
      .tools-page .workflow-grid{
        grid-template-columns:1fr;
      }

      .tools-page .tool-card{
        min-height:285px;
      }

      .tools-page .safety-panel{
        padding:25px 20px;
      }

      .tools-page .faq-section{
        padding-bottom:70px;
      }

      .tools-page .final-cta{
        padding:58px 0;
      }

      .footer-main{
        grid-template-columns:1fr;
        gap:30px;
        padding:52px 0 38px;
      }

      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
      }
    }