/* roulang page: index */
:root{
      --primary:#8F2438;
      --primary-dark:#711A2B;
      --primary-soft:#F6E5E7;
      --accent:#C98A3A;
      --accent-soft:#FFF0D9;
      --ink:#2B2424;
      --muted:#74686A;
      --bg:#FBF7F2;
      --bg-alt:#F6EFE8;
      --white:#FFFFFF;
      --dark:#1E1719;
      --dark-2:#24191B;
      --line:rgba(143,36,56,.14);
      --line-dark:rgba(255,248,241,.18);
      --shadow:0 18px 45px rgba(80,45,40,.09);
      --shadow-hover:0 22px 55px rgba(80,45,40,.15);
      --radius-sm:12px;
      --radius-md:20px;
      --radius-lg:30px;
      --nav-h:74px;
      --container:1140px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 8%, rgba(201,138,58,.14), transparent 30%),
        radial-gradient(circle at 90% 12%, rgba(143,36,56,.10), transparent 34%),
        var(--bg);
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,transform .22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea{font-family:inherit}
    :focus-visible{
      outline:3px solid rgba(143,36,56,.28);
      outline-offset:3px;
      border-radius:12px;
    }
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(251,247,242,.88);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(143,36,56,.10);
      box-shadow:0 8px 24px rgba(80,45,40,.04);
    }
    .navbar{
      min-height:var(--nav-h);
      padding:12px 0;
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:var(--primary);
      letter-spacing:-.02em;
      line-height:1.2;
    }
    .brand-icon{
      width:42px;
      height:42px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--primary),#B64A56);
      position:relative;
      box-shadow:0 12px 24px rgba(143,36,56,.22);
      flex:0 0 auto;
    }
    .brand-icon:before,
    .brand-icon:after{
      content:"";
      position:absolute;
      background:rgba(255,248,241,.92);
      border-radius:999px;
    }
    .brand-icon:before{width:18px;height:18px;left:12px;top:9px}
    .brand-icon:after{width:24px;height:4px;left:9px;bottom:10px}
    .brand-text{font-size:18px;max-width:260px}
    .navbar-toggler{
      border:1px solid var(--line);
      border-radius:14px;
      padding:8px 10px;
      color:var(--primary);
      background:#fff8f1;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 .25rem rgba(143,36,56,.18)}
    .nav-menu{
      gap:8px;
      align-items:center;
    }
    .nav-link{
      color:var(--muted);
      font-weight:650;
      padding:9px 16px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover{
      color:var(--primary);
      background:rgba(143,36,56,.08);
    }
    .nav-link.active{
      color:var(--primary);
      background:var(--primary-soft);
    }
    .nav-cta{
      background:var(--primary);
      color:#FFF8F1!important;
      border-radius:999px;
      padding:9px 18px!important;
      box-shadow:0 12px 26px rgba(143,36,56,.18);
    }
    .nav-cta:hover{
      background:var(--primary-dark);
      transform:translateY(-2px);
      color:#fff!important;
    }
    main{position:relative}
    .section{
      padding:88px 0;
      position:relative;
    }
    .section-sm{padding:68px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      background:var(--primary-soft);
      color:var(--primary);
      font-size:13px;
      font-weight:750;
      margin-bottom:18px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(201,138,58,.14);
    }
    h1,h2,h3{letter-spacing:-.03em}
    h1{
      font-size:52px;
      line-height:1.16;
      font-weight:800;
      margin:0 0 22px;
      color:var(--ink);
    }
    h2{
      font-size:36px;
      line-height:1.25;
      font-weight:760;
      margin:0 0 16px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:720;
      margin-bottom:12px;
    }
    .lead-text{
      font-size:18px;
      color:var(--muted);
      line-height:1.85;
      max-width:760px;
    }
    .btn-brand,
    .btn-ghost,
    .btn-lightline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 22px;
      font-weight:750;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,color .22s ease,border-color .22s ease;
      min-height:48px;
    }
    .btn-brand{
      background:var(--primary);
      color:#FFF8F1;
      box-shadow:0 14px 30px rgba(143,36,56,.22);
    }
    .btn-brand:hover{
      background:var(--primary-dark);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(143,36,56,.30);
    }
    .btn-ghost{
      background:#fff;
      color:var(--primary);
      border-color:var(--line);
    }
    .btn-ghost:hover{
      background:var(--primary-soft);
      border-color:rgba(143,36,56,.24);
      color:var(--primary-dark);
      transform:translateY(-2px);
    }
    .btn-lightline{
      background:rgba(255,248,241,.08);
      color:#FFF8F1;
      border-color:var(--line-dark);
    }
    .btn-lightline:hover{
      background:rgba(255,248,241,.16);
      color:#fff;
      transform:translateY(-2px);
    }
    .hero{
      padding:78px 0 72px;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg, rgba(143,36,56,.08), transparent 42%),
        radial-gradient(circle at 75% 30%, rgba(201,138,58,.18), transparent 28%);
      pointer-events:none;
    }
    .hero-copy{position:relative;z-index:1}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:30px 0 24px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(143,36,56,.12);
      color:var(--muted);
      font-size:13px;
      font-weight:650;
      box-shadow:0 8px 20px rgba(80,45,40,.05);
    }
    .pill i{
      width:7px;
      height:7px;
      display:inline-block;
      border-radius:999px;
      background:var(--accent);
    }
    .hero-visual{
      position:relative;
      min-height:520px;
      z-index:1;
    }
    .cinema-panel{
      position:absolute;
      inset:16px 0 auto auto;
      width:min(100%,470px);
      border-radius:32px;
      background:linear-gradient(145deg,#2A1D20,var(--dark));
      color:#FFF8F1;
      padding:26px;
      box-shadow:0 30px 70px rgba(43,36,36,.24);
      border:1px solid rgba(255,248,241,.12);
      overflow:hidden;
    }
    .cinema-panel:before{
      content:"";
      position:absolute;
      inset:-60px -90px auto auto;
      width:210px;
      height:210px;
      background:radial-gradient(circle, rgba(201,138,58,.34), transparent 68%);
      pointer-events:none;
    }
    .player-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
      margin-bottom:22px;
    }
    .status-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#FFEBD4;
      font-size:13px;
      font-weight:700;
    }
    .status-dot:before{
      content:"";
      width:10px;
      height:10px;
      border-radius:50%;
      background:#E0A24F;
      box-shadow:0 0 0 6px rgba(224,162,79,.15);
    }
    .screen-box{
      height:210px;
      border-radius:24px;
      background:
        linear-gradient(135deg, rgba(255,248,241,.10), rgba(255,248,241,.03)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 18px);
      border:1px solid rgba(255,248,241,.12);
      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }
    .screen-box:after{
      content:"";
      position:absolute;
      width:190px;
      height:190px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(143,36,56,.55), transparent 68%);
      right:-50px;
      top:-44px;
    }
    .play-symbol{
      width:68px;
      height:68px;
      border-radius:50%;
      background:#FFF8F1;
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      box-shadow:0 20px 35px rgba(0,0,0,.22);
      z-index:1;
    }
    .index-card{
      position:absolute;
      left:0;
      bottom:42px;
      width:310px;
      background:#fff;
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow);
      border:1px solid var(--line);
    }
    .update-card{
      position:absolute;
      right:12px;
      bottom:0;
      width:245px;
      background:var(--accent-soft);
      border:1px solid rgba(201,138,58,.28);
      border-radius:22px;
      padding:18px;
      box-shadow:0 16px 36px rgba(80,45,40,.10);
    }
    .mini-list{
      display:grid;
      gap:10px;
      margin-top:16px;
    }
    .mini-row{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px;
      border-radius:14px;
      background:rgba(143,36,56,.06);
      color:var(--muted);
      font-size:14px;
    }
    .mini-row span{
      width:24px;
      height:24px;
      border-radius:9px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#fff;
      color:var(--primary);
      font-weight:800;
      flex:0 0 auto;
    }
    .problem-wrap{
      background:#fff;
      border-radius:32px;
      border:1px solid rgba(143,36,56,.10);
      box-shadow:var(--shadow);
      padding:36px;
    }
    .problem-list{
      display:grid;
      gap:16px;
    }
    .problem-item{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      padding:18px;
      border-radius:22px;
      background:linear-gradient(135deg,#fff,var(--bg));
      border:1px solid rgba(143,36,56,.10);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .problem-item:hover{
      transform:translateY(-3px);
      box-shadow:0 14px 32px rgba(80,45,40,.09);
      border-color:rgba(143,36,56,.20);
    }
    .num-badge{
      width:54px;
      height:54px;
      border-radius:18px;
      background:var(--primary-soft);
      color:var(--primary);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
    }
    .solution{
      background:var(--dark);
      color:#FFF8F1;
      overflow:hidden;
    }
    .solution:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 12% 20%, rgba(201,138,58,.18), transparent 30%),
        linear-gradient(90deg, rgba(255,248,241,.04) 1px, transparent 1px);
      background-size:auto,36px 36px;
      opacity:.9;
    }
    .solution .container{position:relative;z-index:1}
    .solution .lead-text,.solution p{color:rgba(255,248,241,.76)}
    .steps{
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      background:rgba(255,248,241,.06);
      border:1px solid rgba(255,248,241,.14);
      border-radius:24px;
      padding:24px;
      min-height:230px;
      position:relative;
      overflow:hidden;
      transition:transform .22s ease,background .22s ease,border-color .22s ease;
    }
    .step-card:hover{
      transform:translateY(-4px);
      background:rgba(255,248,241,.09);
      border-color:rgba(201,138,58,.44);
    }
    .step-no{
      font-size:54px;
      line-height:1;
      color:rgba(201,138,58,.32);
      font-weight:850;
      margin-bottom:18px;
    }
    .step-card h3{color:#FFF8F1}
    .content-strip{
      margin-top:28px;
      border-radius:24px;
      padding:18px;
      background:#FFF8F1;
      color:var(--ink);
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      justify-content:space-between;
      border-left:5px solid var(--accent);
    }
    .data-card,
    .info-card,
    .feedback-card{
      background:#fff;
      border:1px solid rgba(143,36,56,.10);
      border-radius:24px;
      box-shadow:var(--shadow);
    }
    .data-card{padding:30px}
    .data-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin-top:22px;
    }
    .metric{
      padding:20px;
      border-radius:20px;
      background:var(--bg);
      border:1px solid rgba(143,36,56,.10);
    }
    .metric strong{
      display:block;
      color:var(--primary);
      font-size:34px;
      line-height:1;
      margin-bottom:8px;
    }
    .progress-line{
      height:10px;
      border-radius:999px;
      background:#F2DDD8;
      overflow:hidden;
      margin-top:12px;
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--accent));
    }
    .explain-list{
      display:grid;
      gap:14px;
      margin-top:22px;
    }
    .explain-item{
      display:flex;
      gap:14px;
      padding:17px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(143,36,56,.10);
    }
    .check{
      width:28px;
      height:28px;
      border-radius:10px;
      background:var(--accent-soft);
      color:#9A6420;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:850;
      flex:0 0 auto;
      margin-top:3px;
    }
    .category-card{
      padding:30px;
      min-height:100%;
      position:relative;
      overflow:hidden;
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .category-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(143,36,56,.22);
    }
    .category-card:after{
      content:"";
      position:absolute;
      width:150px;
      height:150px;
      border-radius:50%;
      right:-52px;
      top:-50px;
      background:radial-gradient(circle, rgba(143,36,56,.10), transparent 70%);
    }
    .tag-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin:18px 0 22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:6px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:700;
      background:var(--primary-soft);
      color:var(--primary);
    }
    .tag.alt{background:var(--accent-soft);color:#8B5A20}
    .tag.gray{background:#F0E9E5;color:#6B5E60}
    .feedback-section{
      background:var(--bg-alt);
    }
    .feedback-layout{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .feedback-card{
      padding:28px;
      position:relative;
    }
    .feedback-card.big{
      background:linear-gradient(135deg,#fff,#FFF8F1);
    }
    .quote-mark{
      font-size:54px;
      line-height:1;
      color:rgba(143,36,56,.20);
      font-weight:850;
    }
    .stars{color:var(--accent);letter-spacing:2px;margin:12px 0}
    .faq .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid rgba(143,36,56,.12)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 22px rgba(80,45,40,.04);
    }
    .accordion-button{
      border-radius:20px!important;
      font-weight:760;
      color:var(--ink);
      padding:20px 22px;
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      background:var(--primary-soft);
      color:var(--primary);
    }
    .accordion-button:focus{
      box-shadow:none;
      border-color:transparent;
    }
    .accordion-button::after{
      filter:sepia(.4) saturate(1.8) hue-rotate(310deg);
    }
    .accordion-body{
      color:var(--muted);
      line-height:1.85;
      padding:2px 22px 22px;
    }
    .contact-box{
      background:#fff;
      border:1px solid rgba(143,36,56,.10);
      border-radius:28px;
      padding:30px;
      box-shadow:var(--shadow);
    }
    .form-control{
      border-radius:16px;
      border:1px solid rgba(143,36,56,.16);
      padding:12px 14px;
      background:#FFFDFC;
      color:var(--ink);
    }
    .form-control:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 .25rem rgba(143,36,56,.14);
      background:#fff;
    }
    .form-label{
      font-weight:720;
      color:var(--ink);
      margin-bottom:8px;
    }
    .cta-panel{
      border-radius:32px;
      background:
        radial-gradient(circle at 86% 18%, rgba(201,138,58,.26), transparent 28%),
        linear-gradient(135deg,var(--primary),#4A1722 70%);
      color:#FFF8F1;
      padding:42px;
      box-shadow:0 26px 60px rgba(143,36,56,.24);
      position:relative;
      overflow:hidden;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      left:-40px;
      bottom:-60px;
      width:210px;
      height:210px;
      border:1px solid rgba(255,248,241,.16);
      border-radius:50%;
    }
    .cta-panel p{color:rgba(255,248,241,.78);max-width:680px}
    .site-footer{
      background:var(--dark);
      color:#FFF8F1;
      padding:58px 0 88px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:0;
      height:10px;
      background:repeating-linear-gradient(90deg, rgba(255,248,241,.24) 0 12px, transparent 12px 24px);
      opacity:.5;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:850;
      font-size:20px;
      margin-bottom:14px;
      color:#FFF8F1;
    }
    .footer-text{
      color:rgba(255,248,241,.68);
      max-width:520px;
      margin:0;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px 18px;
      justify-content:flex-end;
    }
    .footer-links a{
      color:rgba(255,248,241,.76);
      font-weight:650;
    }
    .footer-links a:hover{color:var(--accent)}
    .copyright{
      border-top:1px solid rgba(255,248,241,.12);
      margin-top:34px;
      padding-top:20px;
      color:rgba(255,248,241,.58);
      font-size:14px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:space-between;
    }
    .mobile-tabs{
      display:none;
      position:fixed;
      left:12px;
      right:12px;
      bottom:12px;
      z-index:1040;
      background:rgba(255,252,248,.96);
      backdrop-filter:blur(18px);
      border:1px solid rgba(143,36,56,.13);
      box-shadow:0 12px 38px rgba(80,45,40,.18);
      border-radius:24px;
      padding:8px;
    }
    .mobile-tabs a{
      flex:1;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:2px;
      min-height:52px;
      color:var(--muted);
      font-size:12px;
      font-weight:720;
      border-radius:18px;
    }
    .mobile-tabs .tab-icon{
      font-size:18px;
      line-height:1;
    }
    .mobile-tabs a.active{
      background:var(--primary-soft);
      color:var(--primary);
    }
    .mobile-tabs a:hover{color:var(--primary)}
    @media (max-width: 991.98px){
      :root{--nav-h:64px}
      .navbar-collapse{
        padding:14px;
        margin-top:10px;
        background:#fff;
        border:1px solid var(--line);
        border-radius:22px;
        box-shadow:var(--shadow);
      }
      .nav-menu{align-items:stretch}
      .nav-link{width:100%}
      h1{font-size:40px}
      h2{font-size:30px}
      .hero{padding:58px 0 54px}
      .hero-visual{min-height:430px;margin-top:26px}
      .cinema-panel{right:0;left:auto;width:88%}
      .index-card{left:0;bottom:34px;width:285px}
      .update-card{right:0;width:230px}
      .steps{grid-template-columns:repeat(2,1fr)}
      .feedback-layout{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start;margin-top:24px}
    }
    @media (max-width: 767.98px){
      body{font-size:15px;padding-bottom:78px}
      .section{padding:58px 0}
      .section-sm{padding:48px 0}
      .brand-text{font-size:15px;max-width:210px}
      h1{font-size:34px;line-height:1.2}
      h2{font-size:26px}
      h3{font-size:20px}
      .lead-text{font-size:16px}
      .hero-actions{display:grid;grid-template-columns:1fr;gap:12px}
      .btn-brand,.btn-ghost,.btn-lightline{width:100%}
      .hero-visual{min-height:390px}
      .cinema-panel{
        position:relative;
        width:100%;
        inset:auto;
        padding:20px;
        border-radius:26px;
      }
      .screen-box{height:170px}
      .index-card,.update-card{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:14px;
      }
      .problem-wrap{padding:22px;border-radius:24px}
      .problem-item{grid-template-columns:44px 1fr;padding:15px}
      .num-badge{width:44px;height:44px;border-radius:15px}
      .steps{grid-template-columns:1fr}
      .step-card{min-height:auto}
      .content-strip{align-items:stretch}
      .data-grid{grid-template-columns:1fr}
      .category-card,.data-card,.feedback-card,.contact-box{padding:22px;border-radius:22px}
      .cta-panel{padding:28px 22px;border-radius:26px}
      .mobile-tabs{display:flex}
      .site-footer{padding-bottom:110px}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }
    @media (max-width: 520px){
      .container{padding-left:18px;padding-right:18px}
      .hero{padding-top:42px}
      h1{font-size:31px}
      .trust-row{gap:8px}
      .pill{font-size:12px;padding:6px 10px}
      .player-top{align-items:flex-start;flex-direction:column}
      .screen-box{height:150px}
      .play-symbol{width:58px;height:58px;font-size:24px}
      .metric strong{font-size:30px}
    }

/* roulang page: category1 */
:root {
      --primary: #8F2438;
      --primary-dark: #6f1829;
      --primary-soft: #f4e4e7;
      --accent: #C98A3A;
      --accent-soft: #f7ead8;
      --ink: #2B2424;
      --muted: #74686A;
      --paper: #FBF7F2;
      --paper-2: #F6EFE8;
      --white: #FFFFFF;
      --dark: #1E1719;
      --dark-2: #24191B;
      --line: rgba(143, 36, 56, 0.14);
      --line-dark: rgba(255, 248, 241, 0.16);
      --shadow: 0 18px 48px rgba(80, 45, 40, 0.10);
      --shadow-sm: 0 10px 28px rgba(80, 45, 40, 0.08);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 30px;
      --transition: all .24s ease;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(201, 138, 58, .12), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(143, 36, 56, .10), transparent 30%),
        var(--paper);
      line-height: 1.78;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover { color: var(--primary); }

    img { max-width: 100%; height: auto; }

    button, input, textarea, select { font: inherit; }

    ::selection {
      background: rgba(143, 36, 56, .18);
      color: var(--primary-dark);
    }

    .container {
      max-width: 1180px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(251, 247, 242, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(143, 36, 56, .10);
      box-shadow: 0 8px 26px rgba(80, 45, 40, .04);
    }

    .navbar {
      min-height: 76px;
      padding: 10px 0;
    }

    .brand-mark,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--ink);
      font-weight: 700;
      letter-spacing: -.02em;
    }

    .brand-icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, var(--primary), var(--primary-dark));
      position: relative;
      box-shadow: 0 12px 24px rgba(143, 36, 56, .22);
    }

    .brand-icon::before,
    .brand-icon::after {
      content: "";
      position: absolute;
      background: rgba(255, 248, 241, .88);
    }

    .brand-icon::before {
      width: 16px;
      height: 11px;
      left: 10px;
      top: 12px;
      border-radius: 3px;
      clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
    }

    .brand-icon::after {
      width: 4px;
      height: 4px;
      left: 8px;
      bottom: 7px;
      border-radius: 50%;
      box-shadow: 8px 0 0 rgba(255,248,241,.78), 16px 0 0 rgba(255,248,241,.56);
    }

    .brand-text {
      font-size: 18px;
      white-space: nowrap;
    }

    .navbar-toggler {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px 10px;
      box-shadow: none !important;
    }

    .navbar-toggler:focus {
      outline: 3px solid rgba(143, 36, 56, .16);
    }

    .navbar-toggler-icon {
      width: 1.25rem;
      height: 1.25rem;
      background-image: none;
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 1px;
      right: 1px;
      height: 2px;
      border-radius: 99px;
      background: var(--primary);
    }

    .navbar-toggler-icon::before {
      top: 5px;
      box-shadow: 0 6px 0 var(--primary);
    }

    .navbar-toggler-icon::after { top: 17px; }

    .nav-menu {
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      color: var(--muted);
      font-weight: 600;
      border-radius: 999px;
      padding: 10px 16px !important;
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary);
      background: rgba(143, 36, 56, .07);
    }

    .nav-link.active {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .nav-cta {
      color: #fff !important;
      background: var(--primary);
      box-shadow: 0 12px 24px rgba(143, 36, 56, .20);
    }

    .nav-cta:hover {
      color: #fff !important;
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    main {
      padding-bottom: 0;
    }

    .section {
      padding: 86px 0;
      position: relative;
    }

    .section-tight {
      padding: 56px 0;
    }

    .hero-category {
      padding: 72px 0 48px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.70), rgba(246,239,232,.72)),
        radial-gradient(circle at 18% 12%, rgba(201,138,58,.18), transparent 24%),
        radial-gradient(circle at 86% 28%, rgba(143,36,56,.13), transparent 28%);
      border-bottom: 1px solid rgba(143, 36, 56, .10);
      overflow: hidden;
    }

    .hero-category::after {
      content: "";
      position: absolute;
      inset: auto -8% -90px auto;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: repeating-linear-gradient(90deg, rgba(143,36,56,.10) 0 10px, transparent 10px 22px);
      opacity: .38;
      transform: rotate(-16deg);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(143, 36, 56, .08);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(201, 138, 58, .16);
    }

    h1, h2, h3 {
      letter-spacing: -.03em;
      line-height: 1.22;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 700;
      margin: 0 0 18px;
    }

    h2 {
      font-size: clamp(25px, 3.2vw, 36px);
      font-weight: 700;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .lead-text {
      max-width: 780px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.9;
      margin-bottom: 26px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn-brand,
    .btn-soft,
    .btn-darkline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: var(--transition);
      line-height: 1.2;
    }

    .btn-brand {
      color: #fff;
      background: var(--primary);
      box-shadow: 0 16px 34px rgba(143, 36, 56, .22);
    }

    .btn-brand:hover {
      color: #fff;
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(143, 36, 56, .28);
    }

    .btn-soft {
      color: var(--primary);
      background: rgba(255,255,255,.72);
      border-color: var(--line);
    }

    .btn-soft:hover {
      color: var(--primary-dark);
      background: var(--primary-soft);
      transform: translateY(-2px);
    }

    .btn-darkline {
      color: #fff;
      border-color: rgba(255, 248, 241, .34);
      background: rgba(255,255,255,.06);
    }

    .btn-darkline:hover {
      color: #fff;
      border-color: rgba(255, 248, 241, .58);
      background: rgba(255,255,255,.12);
      transform: translateY(-2px);
    }

    .btn-brand:focus,
    .btn-soft:focus,
    .btn-darkline:focus,
    .filter-chip:focus,
    .form-control:focus {
      outline: 3px solid rgba(143, 36, 56, .18);
      outline-offset: 2px;
      box-shadow: none;
    }

    .hero-panel {
      background: var(--dark);
      color: #FFF8F1;
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid var(--line-dark);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 76% 18%, rgba(201,138,58,.24), transparent 26%),
        linear-gradient(145deg, transparent, rgba(143,36,56,.18));
      pointer-events: none;
    }

    .panel-inner { position: relative; z-index: 1; }

    .screen-card {
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.08);
      border-radius: 24px;
      padding: 18px;
      margin-bottom: 18px;
    }

    .screen-top {
      height: 10px;
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }

    .screen-top i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      display: block;
      background: rgba(255,248,241,.35);
    }

    .screen-line {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,248,241,.18);
      margin: 10px 0;
    }

    .screen-line.w-70 { width: 70%; }
    .screen-line.w-45 { width: 45%; }
    .screen-line.w-88 { width: 88%; }

    .status-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .status-pill {
      padding: 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }

    .status-pill strong {
      display: block;
      color: var(--accent);
      font-size: 20px;
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .status-pill span {
      font-size: 12px;
      color: rgba(255,248,241,.72);
    }

    .filter-strip-wrap {
      margin-top: 28px;
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 12px;
      box-shadow: var(--shadow-sm);
    }

    .filter-strip {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: thin;
      padding-bottom: 2px;
    }

    .filter-chip {
      flex: 0 0 auto;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      border-radius: 999px;
      padding: 9px 15px;
      font-weight: 700;
      font-size: 14px;
      transition: var(--transition);
      white-space: nowrap;
    }

    .filter-chip:hover {
      color: var(--primary);
      background: var(--primary-soft);
      transform: translateY(-1px);
    }

    .filter-chip.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .section-note {
      color: var(--muted);
      margin: 0;
      font-size: 16px;
      line-height: 1.85;
    }

    .index-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 28px;
      align-items: start;
    }

    .side-panel {
      position: sticky;
      top: 98px;
      background: rgba(255,255,255,.78);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
    }

    .side-title {
      font-weight: 800;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .side-title::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
    }

    .side-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      display: grid;
      gap: 10px;
    }

    .side-list a,
    .side-list span {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 14px;
      background: var(--paper);
      color: var(--muted);
      font-weight: 600;
      border: 1px solid rgba(43,36,36,.06);
    }

    .side-list a:hover {
      color: var(--primary);
      background: var(--primary-soft);
      border-color: rgba(143,36,56,.12);
    }

    .guide-mini {
      border-radius: 18px;
      padding: 18px;
      background: linear-gradient(145deg, var(--dark), var(--dark-2));
      color: #FFF8F1;
      overflow: hidden;
      position: relative;
    }

    .guide-mini::after {
      content: "";
      position: absolute;
      right: -18px;
      bottom: -22px;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      border: 16px solid rgba(201,138,58,.20);
    }

    .guide-mini p {
      color: rgba(255,248,241,.76);
      margin-bottom: 14px;
      font-size: 14px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .content-card {
      min-height: 100%;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: 0 10px 30px rgba(80,45,40,.06);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .content-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(143,36,56,.24);
    }

    .content-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 20px;
      width: 4px;
      border-radius: 0 99px 99px 0;
      background: var(--accent);
      opacity: .85;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.2;
    }

    .tag-primary {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .tag-accent {
      color: #805015;
      background: var(--accent-soft);
    }

    .tag-muted {
      color: var(--muted);
      background: #f0ebe7;
    }

    .content-card h3 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 52px;
    }

    .content-card p {
      color: var(--muted);
      line-height: 1.78;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid rgba(143,36,56,.10);
      padding-top: 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .mini-link {
      color: var(--primary);
      font-weight: 800;
      white-space: nowrap;
    }

    .mini-link:hover {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .notice-band {
      margin: 22px 0;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(143,36,56,.10), rgba(201,138,58,.10));
      border: 1px solid rgba(143,36,56,.14);
      padding: 22px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .notice-dot {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      border-radius: 16px;
      background: var(--primary);
      position: relative;
      box-shadow: 0 14px 24px rgba(143,36,56,.20);
    }

    .notice-dot::after {
      content: "";
      position: absolute;
      left: 14px;
      top: 10px;
      width: 13px;
      height: 18px;
      border-radius: 3px;
      background: rgba(255,248,241,.88);
      clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
    }

    .notice-band strong {
      display: block;
      font-size: 18px;
      margin-bottom: 4px;
    }

    .notice-band p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

    .pagination-wrap {
      margin-top: 30px;
      display: flex;
      justify-content: center;
    }

    .pagination {
      gap: 8px;
      flex-wrap: wrap;
    }

    .page-link {
      color: var(--muted);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.82);
      border-radius: 999px !important;
      min-width: 42px;
      text-align: center;
      font-weight: 700;
      box-shadow: none !important;
    }

    .page-link:hover {
      color: var(--primary);
      background: var(--primary-soft);
      border-color: rgba(143,36,56,.22);
    }

    .page-item.active .page-link {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .dark-section {
      background:
        linear-gradient(145deg, var(--dark), var(--dark-2));
      color: #FFF8F1;
      overflow: hidden;
    }

    .dark-section .section-note {
      color: rgba(255,248,241,.72);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }

    .process-card {
      border: 1px solid var(--line-dark);
      background: rgba(255,255,255,.07);
      border-radius: var(--radius-md);
      padding: 22px;
      transition: var(--transition);
      min-height: 198px;
    }

    .process-card:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,.10);
      border-color: rgba(201,138,58,.42);
    }

    .process-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background: rgba(201,138,58,.18);
      color: var(--accent);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .process-card h3 {
      color: #FFF8F1;
      font-size: 19px;
    }

    .process-card p {
      color: rgba(255,248,241,.70);
      margin: 0;
      font-size: 15px;
    }

    .status-dashboard {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: stretch;
    }

    .dashboard-card,
    .explain-card,
    .feedback-card {
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }

    .meter {
      height: 14px;
      border-radius: 999px;
      background: #eee4df;
      overflow: hidden;
      margin: 18px 0 24px;
    }

    .meter span {
      display: block;
      height: 100%;
      width: 76%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .data-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .data-item {
      padding: 16px;
      border-radius: 18px;
      background: var(--paper);
      border: 1px solid rgba(143,36,56,.10);
    }

    .data-item strong {
      display: block;
      font-size: 26px;
      line-height: 1.1;
      color: var(--primary);
      margin-bottom: 6px;
    }

    .data-item span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
      color: var(--muted);
      line-height: 1.75;
    }

    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .55em;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--accent-soft);
      border: 4px solid var(--accent);
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      border: 1px solid var(--line) !important;
      border-radius: 18px !important;
      overflow: hidden;
      background: rgba(255,255,255,.88);
      box-shadow: 0 8px 22px rgba(80,45,40,.05);
    }

    .accordion-button {
      font-weight: 800;
      color: var(--ink);
      background: rgba(255,255,255,.88);
      padding: 18px 20px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary);
      background: var(--primary-soft);
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: none;
      outline: 3px solid rgba(143,36,56,.16);
      outline-offset: -3px;
    }

    .accordion-button::after {
      filter: sepia(1) saturate(1.2) hue-rotate(310deg);
    }

    .accordion-body {
      color: var(--muted);
      line-height: 1.86;
      padding: 18px 20px 22px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .feedback-card h3 {
      margin-bottom: 14px;
    }

    .feedback-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .form-label {
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      padding: 12px 14px;
      color: var(--ink);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(143,36,56,.55);
      box-shadow: 0 0 0 .22rem rgba(143,36,56,.12);
    }

    textarea.form-control {
      min-height: 124px;
      resize: vertical;
    }

    .cta-panel {
      background:
        radial-gradient(circle at 15% 20%, rgba(201,138,58,.24), transparent 26%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #FFF8F1;
      border-radius: var(--radius-lg);
      padding: 38px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 20px solid rgba(255,248,241,.10);
    }

    .cta-panel h2 {
      color: #FFF8F1;
      margin-bottom: 10px;
    }

    .cta-panel p {
      color: rgba(255,248,241,.78);
      margin: 0;
      max-width: 720px;
    }

    .site-footer {
      background: var(--dark);
      color: #FFF8F1;
      padding: 56px 0 30px;
      border-top: 1px solid var(--line-dark);
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 8px;
      background: repeating-linear-gradient(90deg, rgba(255,248,241,.14) 0 12px, transparent 12px 24px);
    }

    .footer-brand {
      font-size: 19px;
      margin-bottom: 16px;
    }

    .footer-text {
      color: rgba(255,248,241,.72);
      max-width: 620px;
      margin: 0;
      line-height: 1.85;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255,248,241,.76);
      border: 1px solid var(--line-dark);
      border-radius: 999px;
      padding: 9px 14px;
      font-weight: 600;
    }

    .footer-links a:hover {
      color: var(--accent);
      border-color: rgba(201,138,58,.42);
      background: rgba(255,255,255,.06);
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid var(--line-dark);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: rgba(255,248,241,.58);
      font-size: 13px;
    }

    .mobile-tabbar {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 1040;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: 0 16px 38px rgba(43,36,36,.16);
      padding: 8px;
    }

    .mobile-tabbar a {
      flex: 1;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      min-height: 48px;
      border-radius: 16px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .tab-icon {
      width: 18px;
      height: 18px;
      border: 2px solid currentColor;
      border-radius: 6px;
      position: relative;
    }

    .tab-icon.home::before {
      content: "";
      position: absolute;
      left: 3px;
      top: -6px;
      width: 8px;
      height: 8px;
      border-left: 2px solid currentColor;
      border-top: 2px solid currentColor;
      transform: rotate(45deg);
      background: rgba(255,255,255,.94);
    }

    .tab-icon.grid::before,
    .tab-icon.grid::after {
      content: "";
      position: absolute;
      width: 4px;
      height: 4px;
      border-radius: 1px;
      background: currentColor;
      top: 4px;
    }

    .tab-icon.grid::before { left: 4px; box-shadow: 0 6px 0 currentColor; }
    .tab-icon.grid::after { right: 4px; box-shadow: 0 6px 0 currentColor; }

    .tab-icon.msg::before {
      content: "";
      position: absolute;
      left: 4px;
      right: 4px;
      top: 5px;
      height: 2px;
      background: currentColor;
      box-shadow: 0 5px 0 currentColor;
    }

    .mobile-tabbar a.active {
      color: var(--primary);
      background: var(--primary-soft);
    }

    @media (max-width: 991.98px) {
      .navbar {
        min-height: 64px;
      }

      .navbar-collapse {
        padding: 14px 0 6px;
      }

      .nav-menu {
        align-items: stretch;
      }

      .nav-link {
        display: block;
      }

      .hero-category {
        padding: 52px 0 36px;
      }

      .hero-panel {
        margin-top: 26px;
      }

      .index-layout,
      .status-dashboard,
      .contact-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .side-panel {
        position: static;
      }

      .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      body {
        padding-bottom: 82px;
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .brand-text {
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .lead-text {
        font-size: 16px;
      }

      .hero-actions,
      .cta-actions {
        align-items: stretch;
      }

      .hero-actions .btn-brand,
      .hero-actions .btn-soft,
      .cta-actions .btn-brand,
      .cta-actions .btn-darkline,
      .cta-actions .btn-soft {
        width: 100%;
      }

      .content-grid {
        grid-template-columns: 1fr;
      }

      .data-row {
        grid-template-columns: 1fr;
      }

      .status-row {
        grid-template-columns: 1fr;
      }

      .process-grid {
        grid-template-columns: 1fr;
      }

      .notice-band {
        flex-direction: column;
      }

      .dashboard-card,
      .explain-card,
      .feedback-card,
      .cta-panel {
        padding: 24px;
        border-radius: 24px;
      }

      .mobile-tabbar {
        display: flex;
      }
    }

    @media (max-width: 520px) {
      .container {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-category {
        padding-top: 42px;
      }

      .brand-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 12px;
      }

      .brand-icon::before {
        left: 9px;
        top: 11px;
      }

      .brand-text {
        font-size: 15px;
        max-width: 188px;
      }

      .filter-strip-wrap {
        margin-left: -6px;
        margin-right: -6px;
        border-radius: 18px;
      }

      .content-card,
      .side-panel {
        padding: 20px;
      }

      .copyright {
        display: grid;
        gap: 8px;
      }
    }
