:root{
      --primary:#0B3D91;
      --primary-dark:#082c68;
      --primary-soft:#eaf1fc;
      --accent:#7557c8;
      --ink:#171820;
      --muted:#65697a;
      --line:#e4e6ec;
      --surface:#ffffff;
      --surface-alt:#f6f7fa;
      --shadow:0 18px 50px rgba(19,28,55,.10);
      --radius:20px;
      --container:1200px;
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      color:var(--ink);
      background:#fff;
      font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      line-height:1.7;
      overflow-x:hidden;
    }

    body.drawer-locked{
      overflow:hidden;
    }

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

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

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

    button{
      color:inherit;
    }

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

    .topbar{
      position:relative;
      z-index:110;
      color:#eef3ff;
      background:#151720;
      font-size:13px;
    }

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

    .topbar-welcome{
      white-space:nowrap;
    }

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

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

    .topbar-contact a:hover{
      color:#b9cdf8;
    }

    .header{
      position:relative;
      z-index:100;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 5px 20px rgba(20,29,53,.04);
    }

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

    .logo{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:11px;
      min-width:0;
      color:var(--ink);
      font-size:20px;
      font-weight:850;
      letter-spacing:-.03em;
    }

    .logo img{
      width:42px;
      height:42px;
      border-radius:12px;
      object-fit:contain;
      background:#fff;
    }

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

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

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

    .nav-link{
      position:relative;
      display:flex;
      align-items:center;
      gap:7px;
      padding:0 12px;
      color:#343744;
      font-size:15px;
      font-weight:700;
      white-space:nowrap;
      transition:color .2s ease;
    }

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

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

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

    .nav-link.has-arrow{
      padding-right:25px;
    }

    .nav-link.has-arrow::before{
      content:"";
      position:absolute;
      right:10px;
      top:50%;
      width:6px;
      height:6px;
      margin-top:-5px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:rotate(45deg);
    }

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:0;
      z-index:120;
      visibility:hidden;
      opacity:0;
      transform:translateY(8px);
      pointer-events:none;
      transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
      background:#fff;
      border:1px solid var(--line);
      border-radius:0 0 18px 18px;
      box-shadow:0 24px 60px rgba(14,25,50,.16);
    }

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

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

    .dropdown-panel{
      width:320px;
      padding:12px;
    }

    .dropdown-panel > a{
      display:block;
      padding:10px 12px;
      border-radius:10px;
      color:#343744;
      font-size:14px;
      font-weight:650;
    }

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

    .dropdown-panel .dropdown-all{
      margin-top:7px;
      color:var(--primary);
      border-top:1px solid var(--line);
      border-radius:0 0 10px 10px;
      text-align:center;
    }

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

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

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

    .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-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:16px;
      padding-bottom:14px;
      border-bottom:1px solid var(--line);
    }

    .mega-head strong{
      color:#1f2330;
      font-size:18px;
    }

    .mega-head span{
      color:var(--muted);
      font-size:13px;
    }

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

    .mega-card{
      min-width:0;
      display:flex;
      align-items:center;
      gap:12px;
      padding:12px;
      border:1px solid transparent;
      border-radius:14px;
      background:#f8f9fb;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    .mega-card:hover{
      transform:translateY(-2px);
      border-color:#cbd8ef;
      background:#fff;
    }

    .mega-card > img{
      flex:0 0 48px;
      width:48px;
      height:48px;
      object-fit:cover;
      border-radius:11px;
      background:#fff;
    }

    .mega-card-body{
      min-width:0;
      display:flex;
      flex-direction:column;
      gap:2px;
    }

    .mega-card-body strong,
    .mega-card-body small{
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .mega-card-body strong{
      color:#242733;
      font-size:14px;
      white-space:nowrap;
    }

    .mega-card-body small{
      color:var(--muted);
      font-size:11px;
      line-height:1.45;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
    }

    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:15px;
    }

    .mega-categories a{
      padding:6px 11px;
      color:#3b4a68;
      background:#edf2fb;
      border-radius:999px;
      font-size:12px;
      font-weight:750;
    }

    .mega-categories a:hover{
      color:#fff;
      background:var(--primary);
    }

    .mega-footer{
      display:block;
      margin-top:16px;
      padding:11px;
      color:#fff;
      background:var(--primary);
      border-radius:11px;
      text-align:center;
      font-size:14px;
      font-weight:800;
    }

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

    .header-btns > a:not(.account-btn){
      color:var(--primary);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
    }

    .account-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 17px;
      color:#fff;
      background:var(--primary);
      border-radius:11px;
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      box-shadow:0 9px 20px rgba(11,61,145,.2);
      transition:background .2s ease,transform .2s ease;
    }

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

    .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:11px;
      background:#fff;
      cursor:pointer;
    }

    .hamburger span{
      width:20px;
      height:2px;
      background:#242733;
      border-radius:2px;
      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:190;
      visibility:hidden;
      opacity:0;
      background:rgba(10,14,24,.56);
      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:200;
      width:min(410px,92vw);
      height:100dvh;
      overflow-y:auto;
      background:#fff;
      box-shadow:-25px 0 70px rgba(10,16,31,.22);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

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

    .drawer-head{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:13px;
      padding:16px 20px;
      color:#fff;
      background:#171a24;
    }

    .drawer-head > a{
      font-size:14px;
      font-weight:800;
    }

    .drawer-close{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      margin-left:auto;
      padding:0;
      color:#fff;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.2);
      border-radius:10px;
      font-size:27px;
      line-height:1;
      cursor:pointer;
    }

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

    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:50px;
      padding:10px 4px;
      color:#252833;
      background:transparent;
      border:0;
      border-bottom:1px solid var(--line);
      text-align:left;
      font-size:15px;
      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{
      display:none;
      padding:8px 0 12px 13px;
      border-bottom:1px solid var(--line);
    }

    .drawer-submenu.open{
      display:block;
    }

    .drawer-submenu a{
      display:block;
      padding:8px 11px;
      color:var(--muted);
      border-radius:8px;
      font-size:14px;
    }

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

    .about-page{
      min-width:0;
      background:#fff;
    }

    .about-page .about-hero{
      position:relative;
      isolation:isolate;
      overflow:hidden;
      padding:104px 0 94px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 20%,rgba(135,102,218,.42),transparent 34%),
        radial-gradient(circle at 85% 75%,rgba(29,103,205,.34),transparent 32%),
        linear-gradient(135deg,#17131f 0%,#29203c 52%,#11141c 100%);
    }

    .about-page .about-hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      opacity:.38;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:52px 52px;
      mask-image:linear-gradient(to bottom,#000,transparent);
    }

    .about-page .about-hero::after{
      content:"";
      position:absolute;
      left:50%;
      bottom:-250px;
      z-index:-1;
      width:780px;
      height:500px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:50%;
      transform:translateX(-50%);
      box-shadow:
        0 0 0 80px rgba(255,255,255,.025),
        0 0 0 160px rgba(255,255,255,.018);
    }

    .about-page .hero-copy{
      max-width:870px;
      margin:0 auto;
      text-align:center;
    }

    .about-page .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      margin-bottom:23px;
      color:#e8e2ff;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.18);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
      backdrop-filter:blur(10px);
    }

    .about-page .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      background:#ad9afb;
      border-radius:50%;
      box-shadow:0 0 15px #ad9afb;
    }

    .about-page .about-hero h1{
      max-width:820px;
      margin:0 auto 20px;
      font-size:clamp(40px,6vw,72px);
      line-height:1.12;
      letter-spacing:-.055em;
    }

    .about-page .about-hero p{
      max-width:750px;
      margin:0 auto;
      color:rgba(255,255,255,.76);
      font-size:18px;
      line-height:1.9;
    }

    .about-page .hero-actions{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:32px;
    }

    .about-page .button{
      min-height:50px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 22px;
      border:1px solid transparent;
      border-radius:13px;
      font-size:15px;
      font-weight:850;
      transition:transform .2s ease,background .2s ease,border-color .2s ease;
    }

    .about-page .button:hover{
      transform:translateY(-2px);
    }

    .about-page .button-primary{
      color:#fff;
      background:var(--primary);
      box-shadow:0 12px 28px rgba(11,61,145,.3);
    }

    .about-page .button-light{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.25);
      backdrop-filter:blur(10px);
    }

    .about-page .hero-metrics{
      max-width:870px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin:56px auto 0;
    }

    .about-page .metric{
      padding:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.15);
      border-radius:16px;
      text-align:left;
      backdrop-filter:blur(14px);
    }

    .about-page .metric strong{
      display:block;
      margin-bottom:3px;
      color:#fff;
      font-size:18px;
    }

    .about-page .metric span{
      color:rgba(255,255,255,.66);
      font-size:13px;
    }

    .about-page .section{
      padding:92px 0;
    }

    .about-page .section-soft{
      background:var(--surface-alt);
    }

    .about-page .section-heading{
      max-width:760px;
      margin:0 auto 48px;
      text-align:center;
    }

    .about-page .section-kicker{
      display:block;
      margin-bottom:10px;
      color:var(--primary);
      font-size:13px;
      font-weight:900;
      letter-spacing:.12em;
    }

    .about-page .section-heading h2{
      margin:0;
      font-size:clamp(30px,4vw,48px);
      line-height:1.25;
      letter-spacing:-.04em;
    }

    .about-page .section-heading p{
      margin:16px auto 0;
      color:var(--muted);
      font-size:16px;
    }

    .about-page .mission-panel{
      display:grid;
      grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
      gap:54px;
      align-items:center;
    }

    .about-page .mission-visual{
      position:relative;
      min-height:450px;
      overflow:hidden;
      padding:36px;
      color:#fff;
      background:
        linear-gradient(145deg,rgba(11,61,145,.96),rgba(31,24,53,.95)),
        radial-gradient(circle at top right,#8f71db,transparent 40%);
      border-radius:28px;
      box-shadow:var(--shadow);
    }

    .about-page .mission-visual::after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-80px;
      width:280px;
      height:280px;
      border:50px solid rgba(255,255,255,.08);
      border-radius:50%;
    }

    .about-page .visual-label{
      display:inline-block;
      padding:6px 11px;
      color:#f1edff;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.15);
      border-radius:999px;
      font-size:12px;
      font-weight:800;
    }

    .about-page .mission-visual blockquote{
      position:relative;
      z-index:1;
      margin:92px 0 0;
      font-size:clamp(28px,4vw,44px);
      font-weight:850;
      line-height:1.35;
      letter-spacing:-.04em;
    }

    .about-page .mission-copy h2{
      margin:0 0 20px;
      font-size:clamp(30px,4vw,46px);
      line-height:1.25;
      letter-spacing:-.04em;
    }

    .about-page .mission-copy > p{
      margin:0 0 28px;
      color:var(--muted);
      font-size:16px;
    }

    .about-page .principle-list{
      display:grid;
      gap:13px;
    }

    .about-page .principle{
      display:grid;
      grid-template-columns:44px minmax(0,1fr);
      gap:15px;
      padding:17px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
    }

    .about-page .principle-index{
      width:44px;
      height:44px;
      display:grid;
      place-items:center;
      color:var(--primary);
      background:var(--primary-soft);
      border-radius:12px;
      font-size:13px;
      font-weight:900;
    }

    .about-page .principle h3{
      margin:0 0 3px;
      font-size:17px;
    }

    .about-page .principle p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

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

    .about-page .service-card{
      position:relative;
      overflow:hidden;
      min-height:240px;
      padding:28px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      box-shadow:0 10px 32px rgba(23,31,55,.055);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    }

    .about-page .service-card:hover{
      transform:translateY(-5px);
      border-color:#c4d3ee;
      box-shadow:0 20px 45px rgba(23,31,55,.1);
    }

    .about-page .service-icon{
      width:50px;
      height:50px;
      display:grid;
      place-items:center;
      margin-bottom:24px;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      border-radius:15px;
      font-size:20px;
      font-weight:900;
      box-shadow:0 10px 22px rgba(11,61,145,.22);
    }

    .about-page .service-card h3{
      margin:0 0 10px;
      font-size:20px;
    }

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

    .about-page .service-card a{
      display:inline-flex;
      margin-top:18px;
      color:var(--primary);
      font-size:14px;
      font-weight:850;
    }

    .about-page .standards{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }

    .about-page .standard-card{
      padding:25px 22px;
      color:#fff;
      background:#1b1d27;
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
    }

    .about-page .standard-card span{
      display:block;
      margin-bottom:18px;
      color:#9eb8ed;
      font-size:13px;
      font-weight:900;
      letter-spacing:.1em;
    }

    .about-page .standard-card h3{
      margin:0 0 9px;
      font-size:18px;
    }

    .about-page .standard-card p{
      margin:0;
      color:rgba(255,255,255,.64);
      font-size:13px;
    }

    .about-page .timeline{
      position:relative;
      max-width:900px;
      display:grid;
      gap:22px;
      margin:0 auto;
    }

    .about-page .timeline::before{
      content:"";
      position:absolute;
      top:10px;
      bottom:10px;
      left:25px;
      width:2px;
      background:linear-gradient(var(--primary),#bea8ef);
    }

    .about-page .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:52px minmax(0,1fr);
      gap:22px;
      align-items:start;
    }

    .about-page .timeline-dot{
      position:relative;
      z-index:1;
      width:52px;
      height:52px;
      display:grid;
      place-items:center;
      color:#fff;
      background:var(--primary);
      border:7px solid #e9effa;
      border-radius:50%;
      font-size:12px;
      font-weight:900;
    }

    .about-page .timeline-content{
      padding:21px 24px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:17px;
      box-shadow:0 8px 26px rgba(23,31,55,.05);
    }

    .about-page .timeline-content h3{
      margin:0 0 7px;
      font-size:19px;
    }

    .about-page .timeline-content p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .about-page .trust-banner{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:40px;
      align-items:center;
      padding:52px;
      color:#fff;
      background:linear-gradient(135deg,#11141d,#242033 58%,#302456);
      border-radius:28px;
      box-shadow:var(--shadow);
    }

    .about-page .trust-banner::after{
      content:"";
      position:absolute;
      right:-80px;
      top:-120px;
      width:360px;
      height:360px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:50%;
      box-shadow:0 0 0 65px rgba(255,255,255,.025);
    }

    .about-page .trust-banner > *{
      position:relative;
      z-index:1;
    }

    .about-page .trust-banner h2{
      max-width:700px;
      margin:0;
      font-size:clamp(29px,4vw,45px);
      line-height:1.25;
      letter-spacing:-.04em;
    }

    .about-page .trust-banner p{
      max-width:700px;
      margin:13px 0 0;
      color:rgba(255,255,255,.68);
    }

    .about-page .risk-note{
      margin-top:25px;
      padding:17px 20px;
      color:#595d6b;
      background:#f3f4f7;
      border-left:4px solid var(--primary);
      border-radius:0 12px 12px 0;
      font-size:13px;
    }

    .footer{
      color:#d7dae4;
      background:#12141c;
    }

    .footer-main{
      display:grid;
      grid-template-columns:1.45fr .8fr .8fr 1fr;
      gap:46px;
      padding:68px 0 50px;
    }

    .footer .logo{
      color:#fff;
    }

    .footer-brand p{
      max-width:410px;
      margin:19px 0 0;
      color:#969cab;
      font-size:14px;
    }

    .footer h3{
      margin:4px 0 19px;
      color:#fff;
      font-size:15px;
    }

    .footer-links,
    .footer-contact{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:10px;
    }

    .footer-links a,
    .footer-contact a{
      color:#969cab;
      font-size:14px;
      transition:color .2s ease;
    }

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

    .footer-social{
      margin-top:7px;
      color:#fff;
    }

    .footer-bottom{
      min-height:66px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      color:#777e8e;
      border-top:1px solid rgba(255,255,255,.08);
      font-size:13px;
    }

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

      .hamburger{
        display:flex;
      }

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

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

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

    @media (max-width:820px){
      .topbar-welcome{
        display:none;
      }

      .topbar-inner{
        justify-content:center;
      }

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

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

      .about-page .about-hero{
        padding:78px 0 72px;
      }

      .about-page .about-hero p{
        font-size:16px;
      }

      .about-page .hero-metrics{
        grid-template-columns:1fr;
      }

      .about-page .section{
        padding:70px 0;
      }

      .about-page .mission-panel{
        grid-template-columns:1fr;
        gap:36px;
      }

      .about-page .mission-visual{
        min-height:360px;
      }

      .about-page .trust-banner{
        grid-template-columns:1fr;
        padding:36px;
      }

      .about-page .trust-banner .button{
        justify-self:start;
      }

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

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

      .topbar-contact{
        width:100%;
        justify-content:space-between;
        gap:10px;
      }

      .topbar-contact a{
        max-width:52%;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }

      .header .logo{
        font-size:17px;
      }

      .header .logo img{
        width:38px;
        height:38px;
      }

      .header-btns > a:not(.account-btn),
      .account-btn{
        display:none;
      }

      .about-page .about-hero h1{
        font-size:39px;
      }

      .about-page .hero-actions{
        flex-direction:column;
      }

      .about-page .button{
        width:100%;
      }

      .about-page .metric{
        text-align:center;
      }

      .about-page .section-heading{
        margin-bottom:34px;
      }

      .about-page .mission-visual{
        min-height:330px;
        padding:26px;
      }

      .about-page .mission-visual blockquote{
        margin-top:70px;
        font-size:29px;
      }

      .about-page .service-grid,
      .about-page .standards{
        grid-template-columns:1fr;
      }

      .about-page .service-card{
        min-height:0;
      }

      .about-page .timeline-item{
        gap:13px;
      }

      .about-page .timeline-content{
        padding:18px;
      }

      .about-page .trust-banner{
        padding:29px 23px;
        border-radius:21px;
      }

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

      .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        padding:18px 0;
      }
    }