:root{
      --primary:#0B3D91;
      --primary-dark:#06285f;
      --primary-soft:#eaf1fc;
      --accent:#d83a32;
      --ink:#111318;
      --muted:#647084;
      --line:#dfe5ee;
      --paper:#fffdf7;
      --white:#ffffff;
      --success:#15805d;
      --shadow:0 18px 50px rgba(11,61,145,.12);
      --radius:18px;
      --container:1200px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      color:var(--ink);
      background:#f7f9fc;
      font-family:Inter,Arial,Helvetica,sans-serif;
      line-height:1.65;
      overflow-x:hidden;
    }

    body.drawer-lock{
      overflow:hidden;
    }

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

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

    button,
    input,
    select,
    textarea{
      font:inherit;
    }

    button,
    a{
      -webkit-tap-highlight-color:transparent;
    }

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

    .topbar{
      color:#dce7fb;
      background:var(--primary-dark);
      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:18px;
    }

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

    .topbar a:hover{
      color:var(--white);
    }

    .header{
      position:relative;
      z-index:50;
      border-bottom:1px solid rgba(11,61,145,.1);
      background:rgba(255,255,255,.97);
      box-shadow:0 6px 24px rgba(18,36,66,.05);
    }

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

    .logo{
      min-width:0;
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:var(--primary-dark);
      font-weight:900;
      letter-spacing:-.02em;
    }

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

    .logo span{
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

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

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

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

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

    .nav-link:hover,
    .nav-item:focus-within > .nav-link{
      color:var(--primary);
      background:var(--primary-soft);
    }

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:0;
      z-index:60;
      visibility:hidden;
      opacity:0;
      transform:translateY(10px);
      pointer-events:none;
      border:1px solid var(--line);
      border-top:3px solid var(--primary);
      background:var(--white);
      box-shadow:0 24px 60px rgba(14,33,63,.18);
      transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
    }

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

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

    .dropdown-panel{
      width:340px;
      padding:22px;
      border-radius:0 0 16px 16px;
    }

    .dropdown-title,
    .mega-title{
      margin:0 0 12px;
      color:var(--primary-dark);
      font-size:18px;
      line-height:1.3;
    }

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

    .dropdown-list a{
      padding:9px 10px;
      border-radius:9px;
      color:#344159;
      font-size:14px;
    }

    .dropdown-list a:hover{
      color:var(--primary);
      background:var(--primary-soft);
    }

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

    .mega-menu{
      left:50%;
      width:min(940px,calc(100vw - 48px));
      max-height:72vh;
      padding:24px;
      overflow:auto;
      border-radius:0 0 20px 20px;
      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:0;
      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:220px minmax(0,1fr);
      gap:24px;
    }

    .mega-intro{
      padding:20px;
      border-radius:15px;
      color:#eaf1fc;
      background:linear-gradient(145deg,var(--primary),var(--primary-dark));
    }

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

    .mega-intro .mega-title{
      color:var(--white);
    }

    .mega-intro > a{
      display:inline-flex;
      padding:9px 13px;
      border:1px solid rgba(255,255,255,.28);
      border-radius:999px;
      color:var(--white);
      font-size:13px;
      font-weight:800;
    }

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

    .mega-card{
      min-width:0;
      padding:13px;
      border:1px solid var(--line);
      border-radius:13px;
      background:#fbfcff;
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }

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

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

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

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

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

    .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-top:7px;
      color:var(--primary);
      font-size:11px;
      font-weight:750;
    }

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

    .category-links a{
      padding:7px 12px;
      border-radius:999px;
      color:#344159;
      background:#eef3fa;
      font-size:12px;
      font-weight:750;
    }

    .category-links a:hover{
      color:var(--white);
      background:var(--primary);
    }

    .header-btns{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:4px;
      white-space:nowrap;
    }

    .header-btns > a,
    .header-btns > button:not(.hamburger){
      font-size:13px;
    }

    .open-account{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 17px;
      border-radius:999px;
      color:var(--white);
      background:var(--primary);
      font-size:13px;
      font-weight:850;
      transition:background .2s ease,transform .2s ease;
    }

    .open-account:hover{
      transform:translateY(-1px);
      background:var(--primary-dark);
    }

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

    .hamburger span{
      width:20px;
      height:2px;
      border-radius:2px;
      background:var(--primary-dark);
      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;
      inset:0;
      z-index:90;
      visibility:hidden;
      opacity:0;
      background:rgba(4,15,34,.62);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

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

    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      z-index:100;
      width:min(390px,92vw);
      height:100dvh;
      overflow-y:auto;
      background:var(--white);
      box-shadow:-20px 0 60px rgba(2,17,44,.24);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

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

    .drawer-head{
      position:sticky;
      top:0;
      z-index:2;
      min-height:72px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:14px 18px;
      border-bottom:1px solid var(--line);
      background:rgba(255,255,255,.96);
      backdrop-filter:blur(10px);
    }

    .drawer-head > a{
      padding:9px 12px;
      border-radius:999px;
      color:var(--white);
      background:var(--primary);
      font-size:13px;
      font-weight:800;
    }

    .drawer-close{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      margin-left:auto;
      padding:0;
      border:1px solid var(--line);
      border-radius:50%;
      color:#263147;
      background:var(--white);
      font-size:25px;
      line-height:1;
      cursor:pointer;
    }

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

    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 5px;
      border:0;
      border-bottom:1px solid var(--line);
      color:#1d2a40;
      background:transparent;
      text-align:left;
      font-weight:800;
      cursor:pointer;
    }

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

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

    .drawer-submenu{
      max-height:0;
      display:grid;
      gap:3px;
      overflow:hidden;
      transition:max-height .3s ease,padding .3s ease;
    }

    .drawer-submenu.open{
      max-height:620px;
      padding:8px 0 12px 14px;
    }

    .drawer-submenu a{
      padding:9px 12px;
      border-radius:8px;
      color:#536077;
      font-size:14px;
    }

    .drawer-submenu a:hover{
      color:var(--primary);
      background:var(--primary-soft);
    }

    .tool-detail-page{
      min-width:0;
    }

    .tool-detail-page .tool-masthead{
      position:relative;
      isolation:isolate;
      overflow:hidden;
      padding:68px 0 86px;
      color:var(--white);
      background:
        radial-gradient(circle at 14% 18%,rgba(255,255,255,.16) 0 2px,transparent 3px),
        radial-gradient(circle at 85% 72%,rgba(255,255,255,.12) 0 3px,transparent 4px),
        linear-gradient(135deg,var(--primary-dark),var(--primary) 58%,#174fa3);
    }

    .tool-detail-page .tool-masthead::before{
      content:"";
      position:absolute;
      z-index:-1;
      width:430px;
      height:430px;
      top:-255px;
      right:6%;
      border:80px solid rgba(255,255,255,.06);
      border-radius:50%;
    }

    .tool-detail-page .tool-masthead::after{
      content:"ANALISIS";
      position:absolute;
      z-index:-1;
      right:-20px;
      bottom:-56px;
      color:rgba(255,255,255,.045);
      font-size:130px;
      font-weight:950;
      letter-spacing:.04em;
      line-height:1;
    }

    .tool-detail-page .breadcrumbs{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:9px;
      margin-bottom:28px;
      color:#cbd9f2;
      font-size:13px;
    }

    .tool-detail-page .breadcrumbs a:hover{
      color:var(--white);
    }

    .tool-detail-page .breadcrumbs span:not(:last-child)::after{
      content:"/";
      margin-left:9px;
      color:#849ec9;
    }

    .tool-detail-page .tool-title-wrap{
      max-width:950px;
    }

    .tool-detail-page .tool-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      padding:7px 12px;
      border:1px solid rgba(255,255,255,.24);
      border-radius:999px;
      color:#edf3ff;
      background:rgba(255,255,255,.08);
      font-size:12px;
      font-weight:850;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    .tool-detail-page .tool-kicker::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:#7ee2bb;
      box-shadow:0 0 0 5px rgba(126,226,187,.13);
    }

    .tool-detail-page .tool-title{
      max-width:1000px;
      margin:0;
      font-size:clamp(40px,7vw,86px);
      line-height:.98;
      letter-spacing:-.055em;
    }

    .tool-detail-page .tool-summary{
      max-width:760px;
      margin:24px 0 0;
      color:#dbe6f9;
      font-size:clamp(16px,2vw,20px);
      line-height:1.7;
    }

    .tool-detail-page .tool-action-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:30px;
    }

    .tool-detail-page .primary-action,
    .tool-detail-page .secondary-action{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 20px;
      border-radius:999px;
      font-size:14px;
      font-weight:850;
      transition:transform .2s ease,background .2s ease;
    }

    .tool-detail-page .primary-action{
      color:var(--primary-dark);
      background:var(--white);
    }

    .tool-detail-page .secondary-action{
      border:1px solid rgba(255,255,255,.3);
      color:var(--white);
      background:rgba(255,255,255,.08);
    }

    .tool-detail-page .primary-action:hover,
    .tool-detail-page .secondary-action:hover{
      transform:translateY(-2px);
    }

    .tool-detail-page .tool-shell{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0,1fr) 310px;
      gap:28px;
      margin-top:-38px;
      padding-bottom:80px;
    }

    .tool-detail-page .tool-main-card,
    .tool-detail-page .side-card{
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:var(--white);
      box-shadow:var(--shadow);
    }

    .tool-detail-page .tool-main-card{
      min-width:0;
      overflow:hidden;
    }

    .tool-detail-page .tool-statusbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:18px 24px;
      border-bottom:1px solid var(--line);
      background:#fbfcff;
    }

    .tool-detail-page .status-label{
      display:flex;
      align-items:center;
      gap:9px;
      color:#26344a;
      font-size:13px;
      font-weight:850;
    }

    .tool-detail-page .status-label::before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 5px rgba(21,128,93,.1);
    }

    .tool-detail-page .status-note{
      color:var(--muted);
      font-size:12px;
    }

    .tool-detail-page .tool-content{
      min-width:0;
      max-width:100%;
      padding:34px;
      overflow-x:auto;
      color:#344159;
    }

    .tool-detail-page .tool-content > :first-child{
      margin-top:0;
    }

    .tool-detail-page .tool-content > :last-child{
      margin-bottom:0;
    }

    .tool-detail-page .tool-content h1,
    .tool-detail-page .tool-content h2,
    .tool-detail-page .tool-content h3,
    .tool-detail-page .tool-content h4{
      color:#14213a;
      line-height:1.3;
      letter-spacing:-.025em;
    }

    .tool-detail-page .tool-content h2{
      margin:38px 0 14px;
      padding-bottom:10px;
      border-bottom:1px solid var(--line);
      font-size:27px;
    }

    .tool-detail-page .tool-content h3{
      margin:28px 0 10px;
      font-size:21px;
    }

    .tool-detail-page .tool-content p{
      margin:0 0 18px;
    }

    .tool-detail-page .tool-content a{
      color:var(--primary);
      text-decoration:underline;
      text-underline-offset:3px;
    }

    .tool-detail-page .tool-content img,
    .tool-detail-page .tool-content video,
    .tool-detail-page .tool-content iframe{
      max-width:100%;
      border-radius:14px;
    }

    .tool-detail-page .tool-content table{
      width:100%;
      max-width:100%;
      border-collapse:collapse;
    }

    .tool-detail-page .tool-content th,
    .tool-detail-page .tool-content td{
      padding:12px;
      border:1px solid var(--line);
      text-align:left;
    }

    .tool-detail-page .tool-content th{
      color:var(--primary-dark);
      background:var(--primary-soft);
    }

    .tool-detail-page .tool-content blockquote{
      margin:24px 0;
      padding:18px 22px;
      border-left:4px solid var(--primary);
      border-radius:0 12px 12px 0;
      color:#33415a;
      background:var(--primary-soft);
    }

    .tool-detail-page .sidebar{
      display:grid;
      align-content:start;
      gap:18px;
    }

    .tool-detail-page .side-card{
      padding:23px;
      box-shadow:0 14px 36px rgba(11,61,145,.08);
    }

    .tool-detail-page .side-card h2{
      margin:0 0 12px;
      color:var(--primary-dark);
      font-size:19px;
      line-height:1.35;
    }

    .tool-detail-page .side-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .tool-detail-page .guide-list{
      display:grid;
      gap:12px;
      margin:17px 0 0;
      padding:0;
      list-style:none;
      counter-reset:guide;
    }

    .tool-detail-page .guide-list li{
      position:relative;
      min-height:38px;
      padding-left:48px;
      color:#344159;
      font-size:13px;
      counter-increment:guide;
    }

    .tool-detail-page .guide-list li::before{
      content:counter(guide);
      position:absolute;
      top:0;
      left:0;
      width:32px;
      height:32px;
      display:grid;
      place-items:center;
      border-radius:10px;
      color:var(--primary);
      background:var(--primary-soft);
      font-weight:900;
    }

    .tool-detail-page .notice-card{
      border-color:#f0d4a5;
      background:#fffaf0;
    }

    .tool-detail-page .notice-card h2{
      color:#805413;
    }

    .tool-detail-page .tool-directory-link{
      width:100%;
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-top:18px;
      padding:0 16px;
      border-radius:999px;
      color:var(--white);
      background:var(--primary);
      font-size:13px;
      font-weight:850;
    }

    .tool-detail-page .related-tools{
      padding:0 0 84px;
    }

    .tool-detail-page .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:24px;
    }

    .tool-detail-page .section-head h2{
      margin:0;
      color:#14213a;
      font-size:clamp(28px,4vw,43px);
      line-height:1.1;
      letter-spacing:-.04em;
    }

    .tool-detail-page .section-head p{
      max-width:560px;
      margin:8px 0 0;
      color:var(--muted);
    }

    .tool-detail-page .section-head > a{
      flex:0 0 auto;
      color:var(--primary);
      font-size:14px;
      font-weight:850;
    }

    .tool-detail-page .related-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }

    .tool-detail-page .related-card{
      min-width:0;
      display:flex;
      flex-direction:column;
      padding:24px;
      border:1px solid var(--line);
      border-radius:17px;
      background:var(--white);
      box-shadow:0 10px 28px rgba(11,61,145,.06);
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }

    .tool-detail-page .related-card:hover{
      transform:translateY(-4px);
      border-color:#a9bee4;
      box-shadow:0 18px 42px rgba(11,61,145,.12);
    }

    .tool-detail-page .related-icon{
      width:48px;
      height:48px;
      padding:8px;
      border-radius:13px;
      object-fit:contain;
      background:var(--primary-soft);
    }

    .tool-detail-page .related-card h3{
      margin:18px 0 8px;
      color:#18243a;
      font-size:19px;
      line-height:1.35;
    }

    .tool-detail-page .related-card p{
      display:-webkit-box;
      margin:0 0 20px;
      overflow:hidden;
      color:var(--muted);
      font-size:14px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }

    .tool-detail-page .related-card span{
      margin-top:auto;
      color:var(--primary);
      font-size:13px;
      font-weight:850;
    }

    .tool-detail-page .responsibility{
      padding:34px 0;
      border-top:1px solid var(--line);
      background:#eef3fa;
    }

    .tool-detail-page .responsibility-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
    }

    .tool-detail-page .responsibility h2{
      margin:0 0 5px;
      color:var(--primary-dark);
      font-size:20px;
    }

    .tool-detail-page .responsibility p{
      max-width:850px;
      margin:0;
      color:#59667b;
      font-size:14px;
    }

    .tool-detail-page .responsibility-mark{
      flex:0 0 auto;
      padding:9px 13px;
      border:1px solid #b9c9e4;
      border-radius:999px;
      color:var(--primary);
      font-size:12px;
      font-weight:850;
    }

    .footer{
      color:#cbd5e7;
      background:#071a38;
    }

    .footer-main{
      display:grid;
      grid-template-columns:1.35fr .85fr .85fr 1fr;
      gap:46px;
      padding-top:62px;
      padding-bottom:42px;
    }

    .footer .logo{
      color:var(--white);
    }

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

    .social-links{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }

    .footer h3{
      margin:7px 0 17px;
      color:var(--white);
      font-size:15px;
    }

    .footer-links,
    .footer-contact{
      display:grid;
      gap:10px;
      font-size:13px;
    }

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

    .footer-links a:hover,
    .footer-contact a:hover{
      color:var(--white);
    }

    .footer-bottom{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#98a7bf;
      font-size:12px;
    }

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

    .footer-bottom a:hover{
      color:var(--white);
    }

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

      .hamburger{
        display:flex;
      }

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

      .tool-detail-page .tool-shell{
        grid-template-columns:minmax(0,1fr) 280px;
      }
    }

    @media (max-width:900px){
      .tool-detail-page .tool-shell{
        grid-template-columns:1fr;
      }

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

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

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

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

      .topbar-inner{
        min-height:46px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        gap:1px;
        padding:7px 0;
      }

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

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

      .header .logo img{
        width:36px;
        height:36px;
        flex-basis:36px;
      }

      .header .logo span{
        max-width:130px;
        font-size:14px;
      }

      .header-btns > :not(.hamburger):not(.open-account){
        display:none;
      }

      .open-account{
        min-height:38px;
        padding:0 13px;
        font-size:12px;
      }

      .hamburger{
        width:40px;
        height:40px;
      }

      .tool-detail-page .tool-masthead{
        padding:48px 0 72px;
      }

      .tool-detail-page .tool-masthead::after{
        bottom:-25px;
        font-size:62px;
      }

      .tool-detail-page .tool-title{
        font-size:clamp(39px,14vw,62px);
      }

      .tool-detail-page .tool-summary{
        font-size:16px;
      }

      .tool-detail-page .tool-action-row{
        align-items:stretch;
        flex-direction:column;
      }

      .tool-detail-page .primary-action,
      .tool-detail-page .secondary-action{
        width:100%;
      }

      .tool-detail-page .tool-shell{
        margin-top:-26px;
        padding-bottom:56px;
      }

      .tool-detail-page .tool-statusbar{
        align-items:flex-start;
        flex-direction:column;
        gap:5px;
        padding:16px 19px;
      }

      .tool-detail-page .tool-content{
        padding:24px 19px;
      }

      .tool-detail-page .tool-content h2{
        font-size:23px;
      }

      .tool-detail-page .sidebar{
        grid-template-columns:1fr;
      }

      .tool-detail-page .section-head{
        align-items:flex-start;
        flex-direction:column;
      }

      .tool-detail-page .related-grid{
        grid-template-columns:1fr;
      }

      .tool-detail-page .responsibility-inner{
        align-items:flex-start;
        flex-direction:column;
      }

      .footer-main{
        grid-template-columns:1fr;
        gap:28px;
        padding-top:46px;
      }

      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        padding:20px 0;
      }
    }