/* roulang page: index */
:root{
      --berry:#5b183c;
      --berry-2:#7c2450;
      --coral:#ff765e;
      --coral-2:#ff9a66;
      --cream:#fff6ea;
      --cream-2:#fffaf4;
      --paper:#ffffff;
      --ink:#2b2225;
      --muted:#77676c;
      --line:#efd9d7;
      --soft:#f7e7df;
      --violet-soft:#f2e7ee;
      --green:#3d8b68;
      --shadow:0 18px 48px rgba(80,30,45,.10);
      --shadow-sm:0 10px 28px rgba(80,30,45,.08);
      --radius:22px;
      --radius-sm:14px;
      --max:1220px;
      --nav-h:82px;
      --speed:.22s 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 12% 4%, rgba(255,118,94,.14), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(91,24,60,.10), transparent 34%),
        linear-gradient(180deg,var(--cream) 0%,#fff 44%,#fffaf4 100%);
      line-height:1.75;
      padding-bottom:84px;
    }

    a{color:inherit;text-decoration:none;transition:color var(--speed), background var(--speed), transform var(--speed), box-shadow var(--speed), border-color var(--speed)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,118,94,.25)}

    .site-container{width:min(var(--max),calc(100% - 36px));margin:0 auto}
    .section{padding:78px 0}
    .section.compact{padding:54px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 13px;border-radius:999px;
      background:rgba(91,24,60,.08);color:var(--berry);
      font-size:13px;font-weight:700;border:1px solid rgba(91,24,60,.10);
    }
    .eyebrow i{color:var(--coral)}
    .section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:28px}
    .section-title{margin:12px 0 0;font-size:34px;line-height:1.22;font-weight:900;letter-spacing:-.02em;color:var(--ink)}
    .section-desc{max-width:660px;margin:12px 0 0;color:var(--muted);font-size:16px}
    .soft-panel{
      background:rgba(255,255,255,.82);
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow-sm);
    }

    .site-header{
      position:sticky;top:0;z-index:60;
      background:rgba(255,250,244,.94);
      border-bottom:1px solid rgba(239,217,215,.9);
      box-shadow:0 8px 22px rgba(80,30,45,.06);
      backdrop-filter:saturate(120%) blur(10px);
    }
    .nav-wrap{
      min-height:var(--nav-h);
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      gap:18px;
      align-items:center;
      padding:13px 0;
    }
    .brand{
      display:flex;align-items:center;gap:11px;min-width:max-content;
      font-weight:900;color:var(--berry);
    }
    .brand-mark{
      width:42px;height:42px;border-radius:15px;
      background:linear-gradient(135deg,var(--berry),var(--coral));
      display:grid;place-items:center;color:#fff;
      box-shadow:0 10px 22px rgba(91,24,60,.22);
      position:relative;
    }
    .brand-mark:after{
      content:"";position:absolute;right:-3px;top:-3px;width:12px;height:12px;
      border-radius:999px;background:#59d98e;border:2px solid var(--cream-2);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{font-size:17px;letter-spacing:-.03em}
    .brand-text span{font-size:12px;color:var(--muted);font-weight:700;margin-top:3px}
    .nav-search{position:relative}
    .nav-search i{position:absolute;left:18px;top:50%;transform:translateY(-50%);color:var(--berry-2);z-index:1}
    .nav-search input{
      width:100%;height:52px;border-radius:999px;
      border:1px solid var(--line);
      background:#fff;
      padding:0 18px 0 46px;
      color:var(--ink);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.75),0 6px 18px rgba(80,30,45,.05);
      outline:none;
    }
    .nav-search input:hover,.nav-search input:focus{
      border-color:var(--coral);
      background:#fffdfa;
      box-shadow:0 0 0 4px rgba(255,118,94,.12),0 8px 22px rgba(80,30,45,.08);
    }
    .nav-links{display:flex;align-items:center;gap:8px;justify-content:flex-end;white-space:nowrap}
    .nav-link{
      padding:10px 13px;border-radius:999px;
      color:var(--ink);font-size:14px;font-weight:800;
    }
    .nav-link:hover,.nav-link.active{background:var(--violet-soft);color:var(--berry)}
    .nav-cta{
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      padding:11px 16px;border-radius:999px;
      color:#fff;font-weight:900;font-size:14px;
      background:linear-gradient(135deg,var(--coral),var(--berry));
      box-shadow:0 12px 28px rgba(91,24,60,.18);
    }
    .nav-cta:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(91,24,60,.23);color:#fff}
    .mobile-row{display:none}
    .mobile-tabs{display:none}

    .hero{
      padding:42px 0 28px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.45),rgba(255,246,234,.88)),
        radial-gradient(circle at 80% 40%,rgba(255,118,94,.18),transparent 28%);
      border-bottom:1px solid rgba(239,217,215,.75);
    }
    .hero-banner{
      min-height:330px;
      border-radius:30px;
      overflow:hidden;
      position:relative;
      background:
        linear-gradient(110deg,rgba(91,24,60,.96) 0%,rgba(124,36,80,.94) 44%,rgba(255,118,94,.90) 100%);
      box-shadow:var(--shadow);
      color:#fff;
      padding:34px;
    }
    .hero-banner:before{
      content:"";position:absolute;inset:auto -80px -130px auto;
      width:360px;height:360px;border-radius:50%;
      background:rgba(255,255,255,.14);
    }
    .hero-banner:after{
      content:"";position:absolute;left:34px;right:34px;bottom:0;height:7px;
      background:linear-gradient(90deg,var(--coral),#ffd09b,rgba(255,255,255,.2));
      border-radius:999px 999px 0 0;
    }
    .hero-grid{position:relative;display:grid;grid-template-columns:1.22fr .78fr;gap:28px;align-items:center}
    .hero h1{
      margin:14px 0 14px;
      max-width:760px;
      font-size:48px;line-height:1.12;font-weight:950;letter-spacing:-.045em;
      color:#fff;
    }
    .hero-intro{max-width:760px;font-size:18px;line-height:1.78;color:rgba(255,255,255,.88);margin:0 0 22px}
    .hero-actions{display:flex;gap:13px;flex-wrap:wrap;margin:20px 0 18px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      min-height:52px;padding:0 22px;border-radius:999px;
      font-weight:900;border:1px solid transparent;line-height:1;color:var(--ink);
    }
    .btn-primary{background:linear-gradient(135deg,var(--coral),#ff9a66 45%,#fff0dc);color:var(--berry);box-shadow:0 14px 32px rgba(255,118,94,.25)}
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(255,118,94,.32);color:var(--berry)}
    .btn-secondary{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.36)}
    .btn-secondary:hover{background:rgba(255,255,255,.20);transform:translateY(-2px);color:#fff}
    .btn-light{background:#fff;color:var(--berry);border-color:var(--line)}
    .btn-light:hover{border-color:var(--coral);transform:translateY(-2px);box-shadow:var(--shadow-sm);color:var(--berry)}
    .hero-search{
      display:flex;align-items:center;gap:10px;
      max-width:700px;background:rgba(255,255,255,.96);
      border-radius:999px;padding:7px;border:1px solid rgba(255,255,255,.55);
      box-shadow:0 12px 28px rgba(43,34,37,.13);
    }
    .hero-search input{
      flex:1;min-width:0;border:0;outline:0;background:transparent;
      padding:0 8px 0 16px;height:44px;color:var(--ink);
    }
    .hero-search button{
      border:0;border-radius:999px;height:44px;padding:0 18px;
      background:var(--berry);color:#fff;font-weight:900;
    }
    .hero-search button:hover{background:#42102a}
    .hero-side{
      display:grid;gap:13px;
    }
    .quick-card{
      border:1px solid rgba(255,255,255,.26);
      background:rgba(255,255,255,.12);
      border-radius:22px;
      padding:18px;
      backdrop-filter:blur(3px);
    }
    .quick-card h3{font-size:17px;margin:0 0 12px;color:#fff;font-weight:900}
    .quick-list{display:grid;gap:9px;margin:0;padding:0;list-style:none}
    .quick-list li{
      display:flex;align-items:center;justify-content:space-between;gap:10px;
      padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.11);
      color:rgba(255,255,255,.92);font-size:14px;font-weight:700;
    }
    .quick-list i{color:#ffd09b}
    .trust-bar{
      display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:18px;
    }
    .trust-item{
      display:flex;align-items:center;gap:10px;
      padding:13px 14px;border-radius:18px;
      background:rgba(255,255,255,.74);
      border:1px solid var(--line);
      box-shadow:0 8px 20px rgba(80,30,45,.05);
      color:var(--berry);font-weight:900;font-size:14px;
    }
    .trust-item i{color:var(--coral)}

    .benefit-strip{
      display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:stretch;
    }
    .feature-main{
      padding:30px;position:relative;overflow:hidden;
      background:linear-gradient(135deg,#fff,#fff7ee);
      border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow-sm);
    }
    .feature-main:after{
      content:"";position:absolute;right:-55px;top:-55px;width:170px;height:170px;border-radius:50%;
      background:rgba(255,118,94,.13);
    }
    .icon-bubble{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--soft),#fff);color:var(--berry);
      border:1px solid var(--line);font-size:20px;
    }
    .feature-main h3,.small-card h3{font-size:22px;margin:16px 0 8px;font-weight:900;color:var(--ink)}
    .feature-main p,.small-card p{color:var(--muted);margin:0 0 16px}
    .mini-link{font-weight:900;color:var(--berry);display:inline-flex;align-items:center;gap:7px}
    .mini-link:hover{color:var(--coral)}
    .small-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .small-card{
      padding:22px;border-radius:20px;background:#fff;border:1px solid var(--line);
      box-shadow:0 8px 20px rgba(80,30,45,.05);
      position:relative;overflow:hidden;
    }
    .small-card:before{
      content:"";position:absolute;left:0;top:0;width:100%;height:5px;
      background:linear-gradient(90deg,var(--coral),var(--berry));
      opacity:.85;
    }
    .small-card:hover,.scenario-card:hover,.news-item:hover,.path-card:hover{
      border-color:rgba(255,118,94,.65);
      box-shadow:var(--shadow);
      transform:translateY(-2px);
    }
    .tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
    .tag{
      display:inline-flex;align-items:center;gap:7px;
      border-radius:999px;padding:8px 13px;
      background:#fff;border:1px solid var(--line);
      color:var(--berry);font-size:13px;font-weight:800;
    }
    .tag:hover{border-color:var(--coral);background:#fff9f3;color:var(--berry)}

    .metric-section{
      background:linear-gradient(135deg,var(--berry),#42102a);
      color:#fff;border-radius:34px;padding:42px;margin:10px auto;
      box-shadow:0 20px 54px rgba(91,24,60,.20);
      position:relative;overflow:hidden;
    }
    .metric-section:before{
      content:"";position:absolute;right:-120px;top:-120px;width:360px;height:360px;border-radius:50%;
      background:rgba(255,118,94,.20);
    }
    .metric-section .section-title,.metric-section .section-desc{color:#fff}
    .metric-section .section-desc{color:rgba(255,255,255,.78)}
    .metrics{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:26px}
    .metric-card{
      background:rgba(255,250,244,.96);
      border:1px solid rgba(255,255,255,.22);
      border-radius:22px;padding:22px;
      color:var(--ink);
    }
    .metric-value{
      font-size:32px;font-weight:950;color:var(--berry);line-height:1.1;
      display:flex;align-items:flex-end;gap:4px;
    }
    .metric-value span{font-size:14px;color:var(--coral);margin-bottom:5px}
    .metric-card p{font-size:14px;color:var(--muted);margin:10px 0 0}

    .scenario-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
    .scenario-card{
      background:#fff;border:1px solid var(--line);border-radius:22px;
      padding:20px;box-shadow:0 8px 20px rgba(80,30,45,.05);
      min-height:244px;display:flex;flex-direction:column;
    }
    .scenario-card .label{
      align-self:flex-start;padding:5px 10px;border-radius:999px;
      background:var(--violet-soft);color:var(--berry);font-size:12px;font-weight:900;
    }
    .scenario-card h3{font-size:18px;line-height:1.35;margin:14px 0 8px;font-weight:900}
    .scenario-card ul{margin:0 0 16px 18px;color:var(--muted);font-size:14px}
    .scenario-card .mini-link{margin-top:auto}

    .path-layout{display:grid;grid-template-columns:.92fr 1.08fr;gap:24px;align-items:start}
    .steps{
      background:#fff;border:1px solid var(--line);border-radius:var(--radius);
      box-shadow:var(--shadow-sm);padding:24px;
    }
    .step{
      display:grid;grid-template-columns:44px 1fr;gap:14px;position:relative;padding-bottom:22px;
    }
    .step:not(:last-child):after{
      content:"";position:absolute;left:21px;top:50px;bottom:4px;width:2px;background:var(--line);
    }
    .step-num{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;background:linear-gradient(135deg,var(--coral),var(--berry));
      color:#fff;font-weight:950;z-index:1;
    }
    .step h3{font-size:18px;margin:0 0 5px;font-weight:900}
    .step p{margin:0;color:var(--muted);font-size:14px}
    .compare-panel{
      background:linear-gradient(135deg,#fff,#fff7ef);
      border:1px solid var(--line);border-radius:var(--radius);padding:24px;box-shadow:var(--shadow-sm);
    }
    .compare-row{
      display:grid;grid-template-columns:150px 1fr auto;gap:14px;align-items:center;
      padding:14px 0;border-bottom:1px dashed var(--line);
    }
    .compare-row:last-child{border-bottom:0}
    .compare-row strong{color:var(--berry)}
    .status{display:inline-flex;align-items:center;gap:6px;color:var(--green);font-size:13px;font-weight:900}
    .status:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--green)}

    .news-layout{display:grid;grid-template-columns:1fr 350px;gap:24px}
    .news-list{display:grid;gap:12px}
    .news-item{
      display:grid;grid-template-columns:auto 1fr auto;gap:16px;align-items:center;
      padding:16px;border-radius:20px;background:#fff;border:1px solid var(--line);
      box-shadow:0 8px 20px rgba(80,30,45,.04);
    }
    .news-date{
      width:76px;text-align:center;border-radius:16px;padding:9px 6px;
      background:var(--violet-soft);color:var(--berry);font-weight:950;line-height:1.2;
    }
    .news-date span{display:block;font-size:12px;color:var(--muted);font-weight:800;margin-top:3px}
    .news-item h3{font-size:17px;margin:0 0 4px;font-weight:900}
    .news-item p{margin:0;color:var(--muted);font-size:14px}
    .recommend-box{
      padding:24px;border-radius:var(--radius);background:var(--berry);color:#fff;
      box-shadow:var(--shadow-sm);position:sticky;top:104px;
    }
    .recommend-box h3{font-size:21px;font-weight:900;margin:0 0 12px;color:#fff}
    .recommend-box p{color:rgba(255,255,255,.78);margin:0 0 18px}
    .rec-tags{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:18px}
    .rec-tags span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.12);font-size:13px;font-weight:800}

    .stage{
      background:linear-gradient(135deg,#fff,#fff4eb);
      border:1px solid var(--line);border-radius:30px;padding:28px;box-shadow:var(--shadow-sm);
      display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:center;
    }
    .screen{
      border-radius:26px;border:1px solid var(--line);
      background:#fff;box-shadow:0 18px 46px rgba(80,30,45,.10);
      overflow:hidden;
    }
    .screen-top{display:flex;gap:7px;padding:14px;background:#fff8f1;border-bottom:1px solid var(--line)}
    .screen-top span{width:10px;height:10px;border-radius:50%;background:var(--coral)}
    .screen-top span:nth-child(2){background:#ffc56d}
    .screen-top span:nth-child(3){background:#70d394}
    .screen-body{padding:20px}
    .filter-pill{
      display:inline-flex;margin:0 8px 9px 0;padding:8px 12px;border-radius:999px;
      background:var(--violet-soft);color:var(--berry);font-weight:900;font-size:13px;
    }
    .mock-line{height:14px;background:#f1dedc;border-radius:999px;margin:13px 0}
    .mock-line.short{width:62%}
    .mock-line.mid{width:82%}
    .screen-card{margin-top:14px;padding:15px;border-radius:18px;background:#fff8f1;border:1px solid var(--line)}
    .stage-copy h2{font-size:32px;line-height:1.2;font-weight:950;margin:0 0 12px}
    .stage-copy p{color:var(--muted);margin:0 0 18px}

    .faq-wrap{
      background:#fff;border:1px solid var(--line);border-radius:var(--radius);
      padding:12px;box-shadow:var(--shadow-sm);
    }
    .accordion{background:transparent;margin:0}
    .accordion-item{border-bottom:1px solid var(--line)}
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;background:#fff!important;
      color:var(--berry)!important;font-weight:950;font-size:17px;
      padding:18px 44px 18px 18px;border-radius:16px!important;
    }
    .accordion-title:hover,.accordion-title:focus{background:#fff7ef!important;color:var(--berry)!important}
    .is-active>.accordion-title{background:#fff7ef!important}
    .accordion-content{
      border:0!important;background:#fff!important;color:var(--muted);
      padding:0 20px 20px 22px;position:relative;
    }
    .accordion-content:before{
      content:"";position:absolute;left:8px;top:4px;bottom:22px;width:4px;border-radius:999px;background:var(--coral);
    }

    .contact-grid{display:grid;grid-template-columns:1fr .82fr;gap:24px;align-items:start}
    .contact-form{
      background:#fff;border:1px solid var(--line);border-radius:var(--radius);
      box-shadow:var(--shadow-sm);padding:26px;
    }
    .field-group{margin-bottom:15px}
    .field-group label{display:block;font-weight:900;color:var(--berry);margin-bottom:7px}
    .field-group input,.field-group select,.field-group textarea{
      width:100%;border:1px solid var(--line);border-radius:16px;
      background:#fffaf6;min-height:48px;padding:11px 14px;outline:none;
      color:var(--ink);box-shadow:none;
    }
    .field-group textarea{min-height:128px;resize:vertical}
    .field-group input:focus,.field-group select:focus,.field-group textarea:focus{
      border-color:var(--coral);box-shadow:0 0 0 4px rgba(255,118,94,.13);background:#fff;
    }
    .side-note{display:grid;gap:16px}
    .note-card{
      padding:22px;border-radius:22px;border:1px solid var(--line);background:#fff;
      box-shadow:0 8px 20px rgba(80,30,45,.05);
    }
    .note-card h3{font-size:20px;font-weight:950;margin:0 0 8px;color:var(--berry)}
    .note-card p{margin:0;color:var(--muted)}

    .site-footer{
      background:linear-gradient(135deg,var(--berry),#371024);
      color:#fff;margin-top:36px;padding:48px 0 32px;
    }
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:28px}
    .footer-brand{font-size:22px;font-weight:950;margin-bottom:10px}
    .footer-desc{color:rgba(255,255,255,.76);max-width:520px;margin:0}
    .footer-title{font-weight:950;margin:0 0 12px;color:#fff}
    .footer-links{display:grid;gap:8px}
    .footer-links a{color:rgba(255,255,255,.76);font-weight:700}
    .footer-links a:hover{color:var(--coral)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.15);
      margin-top:30px;padding-top:18px;
      display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;
      color:rgba(255,255,255,.70);font-size:13px;
    }
    .footer-alert{color:#ffd3c8;font-weight:800}

    .fixed-cta{
      position:fixed;left:50%;bottom:18px;transform:translateX(-50%);
      z-index:80;width:min(760px,calc(100% - 28px));
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      padding:10px 12px 10px 18px;border-radius:999px;
      background:rgba(91,24,60,.96);color:#fff;
      box-shadow:0 18px 48px rgba(43,16,30,.30);
      border:1px solid rgba(255,255,255,.16);
    }
    .fixed-cta strong{font-size:14px}
    .fixed-cta span{font-size:13px;color:rgba(255,255,255,.72)}
    .fixed-cta .btn{min-height:44px;padding:0 18px}

    @media (max-width:1100px){
      .nav-wrap{grid-template-columns:auto 1fr;gap:14px}
      .nav-links{grid-column:1 / -1;justify-content:flex-start;overflow:auto;padding-bottom:2px}
      .hero-grid,.benefit-strip,.path-layout,.news-layout,.stage,.contact-grid{grid-template-columns:1fr}
      .trust-bar{grid-template-columns:repeat(3,1fr)}
      .metrics{grid-template-columns:repeat(2,1fr)}
      .scenario-grid{grid-template-columns:repeat(3,1fr)}
      .recommend-box{position:static}
    }
    @media (max-width:760px){
      body{padding-bottom:86px}
      .site-container{width:min(100% - 28px,var(--max))}
      .section{padding:54px 0}
      .section-head{display:block}
      .section-title{font-size:27px}
      .nav-wrap{display:block;padding:10px 0}
      .desktop-search,.nav-links{display:none}
      .mobile-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .brand-text strong{font-size:15px}
      .mobile-menu-btn{
        border:1px solid var(--line);background:#fff;color:var(--berry);
        border-radius:999px;height:42px;padding:0 12px;font-weight:900;
      }
      .mobile-tabs{
        display:flex;gap:9px;overflow:auto;padding:10px 0 4px;
        scrollbar-width:none;
      }
      .mobile-tabs::-webkit-scrollbar{display:none}
      .mobile-tabs a{flex:0 0 auto;padding:8px 12px;border-radius:999px;background:#fff;border:1px solid var(--line);font-weight:900;font-size:13px;color:var(--berry)}
      .mobile-tabs a.active{background:var(--berry);color:#fff;border-color:var(--berry)}
      .mobile-search{display:block;margin-top:8px}
      .hero{padding:24px 0 22px}
      .hero-banner{padding:24px 20px;border-radius:24px}
      .hero h1{font-size:34px}
      .hero-intro{font-size:16px}
      .hero-actions .btn{width:100%}
      .hero-search{border-radius:20px;display:grid;grid-template-columns:1fr}
      .hero-search input{height:42px}
      .trust-bar,.small-grid,.metrics,.scenario-grid{grid-template-columns:1fr}
      .compare-row,.news-item{grid-template-columns:1fr;align-items:start}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{display:block}
      .fixed-cta{
        bottom:0;width:100%;border-radius:20px 20px 0 0;
        padding:10px 12px calc(10px + env(safe-area-inset-bottom));
      }
      .fixed-cta span{display:none}
      .fixed-cta .btn{min-width:126px}
    }
    @media (max-width:520px){
      .hero-banner{min-height:auto}
      .quick-card{padding:15px}
      .metric-section{border-radius:24px;padding:28px 18px}
      .feature-main,.contact-form,.compare-panel,.steps,.stage{padding:20px}
      .stage-copy h2{font-size:26px}
      .news-date{width:auto;text-align:left}
    }

/* roulang page: category1 */
:root{
      --berry:#7a2346;
      --berry-2:#4f1730;
      --coral:#ff7a59;
      --coral-2:#ff9a72;
      --cream:#fff7ed;
      --cream-2:#fffaf4;
      --paper:#ffffff;
      --ink:#2d2428;
      --muted:#75666c;
      --line:#f1d9d5;
      --soft:#f7ece8;
      --purple-soft:#efe2ea;
      --shadow:0 18px 48px rgba(80,30,45,.10);
      --shadow-sm:0 10px 28px rgba(80,30,45,.08);
      --radius:22px;
      --radius-sm:15px;
      --container:1200px;
      --header-h:86px;
    }
    *{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(255,122,89,.12), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(122,35,70,.10), transparent 34%),
        linear-gradient(180deg,var(--cream),#fff 42%,#fff8f2 100%);
      line-height:1.75;
      padding-bottom:86px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    input,select,textarea{
      outline:none;
      border:1px solid var(--line);
      background:#fff;
      color:var(--ink);
      border-radius:15px;
      transition:.22s ease;
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--coral);
      box-shadow:0 0 0 4px rgba(255,122,89,.16);
      background:#fffdf9;
    }
    .site-container{
      width:min(calc(100% - 36px),var(--container));
      margin:0 auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,244,.94);
      border-bottom:1px solid rgba(241,217,213,.88);
      box-shadow:0 10px 30px rgba(80,30,45,.06);
      backdrop-filter:blur(12px);
    }
    .nav-wrap{
      min-height:var(--header-h);
      display:flex;
      align-items:center;
      gap:18px;
      padding:14px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      min-width:240px;
    }
    .brand-mark{
      width:46px;
      height:46px;
      flex:0 0 46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--berry),var(--coral));
      box-shadow:0 12px 26px rgba(122,35,70,.22);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      right:-3px;
      top:-3px;
      width:12px;
      height:12px;
      border-radius:999px;
      background:#5ee192;
      border:2px solid #fff8f2;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.18}
    .brand-text strong{
      font-size:18px;
      font-weight:900;
      letter-spacing:-.02em;
      color:var(--berry-2);
      white-space:nowrap;
    }
    .brand-text span{
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
    }
    .nav-search{
      flex:1 1 auto;
      height:50px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:0 16px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 22px rgba(80,30,45,.06);
    }
    .nav-search i{color:var(--berry)}
    .nav-search input{
      width:100%;
      height:44px;
      border:0;
      box-shadow:none;
      padding:0;
      background:transparent;
      border-radius:0;
    }
    .nav-search:hover{
      border-color:rgba(255,122,89,.58);
      background:#fffdf9;
    }
    .nav-search input:focus{box-shadow:none}
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .nav-link{
      height:42px;
      padding:0 13px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      color:#5c4a50;
      font-size:14px;
      font-weight:800;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--berry);
      background:var(--purple-soft);
    }
    .nav-cta,.btn-primary{
      min-height:46px;
      padding:0 18px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      color:#fff;
      border:0;
      font-weight:900;
      background:linear-gradient(135deg,var(--coral),var(--berry));
      box-shadow:0 14px 28px rgba(122,35,70,.20);
    }
    .nav-cta:hover,.btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(122,35,70,.26);
      background:linear-gradient(135deg,var(--coral-2),var(--berry-2));
    }
    .btn-secondary{
      min-height:50px;
      padding:0 20px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      color:var(--berry);
      border:1px solid rgba(122,35,70,.22);
      background:#fffaf6;
      font-weight:900;
      box-shadow:0 10px 22px rgba(80,30,45,.06);
    }
    .btn-secondary:hover{
      transform:translateY(-2px);
      color:var(--berry-2);
      border-color:var(--coral);
      box-shadow:0 16px 30px rgba(80,30,45,.10);
    }
    .mobile-row,.mobile-search,.mobile-tabs{display:none}
    .page-hero{
      padding:54px 0 38px;
      position:relative;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      right:-8vw;
      top:18px;
      width:360px;
      height:240px;
      border-radius:60px;
      background:linear-gradient(135deg,rgba(122,35,70,.16),rgba(255,122,89,.10));
      transform:rotate(-8deg);
      z-index:-1;
    }
    .hero-shell{
      border:1px solid rgba(241,217,213,.92);
      background:linear-gradient(135deg,#fffdf9 0%,#fff6ee 54%,#fff 100%);
      border-radius:30px;
      padding:34px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-shell:after{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      border-radius:999px;
      right:-80px;
      bottom:-100px;
      background:rgba(255,122,89,.14);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      color:var(--berry);
      font-size:13px;
      font-weight:900;
      border:1px solid var(--line);
      box-shadow:0 8px 20px rgba(80,30,45,.06);
    }
    h1{
      margin:16px 0 12px;
      color:var(--berry-2);
      font-size:44px;
      line-height:1.16;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .hero-lead{
      max-width:760px;
      color:#5f5056;
      font-size:17px;
      margin:0 0 22px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:20px;
    }
    .filter-card{
      position:relative;
      z-index:2;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .filter-card h2{
      margin:0 0 12px;
      color:var(--berry-2);
      font-size:22px;
      line-height:1.25;
      font-weight:950;
    }
    .tag-matrix{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:38px;
      padding:0 13px;
      border-radius:999px;
      background:#fff7f0;
      color:#5b434b;
      border:1px solid #f1d7d0;
      font-size:13px;
      font-weight:800;
    }
    .tag-pill.active,.tag-pill:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--berry),var(--coral));
      border-color:transparent;
    }
    .quick-search{
      display:flex;
      gap:10px;
      margin-top:20px;
      background:#fff;
      border:1px solid var(--line);
      padding:8px;
      border-radius:20px;
      box-shadow:0 12px 28px rgba(80,30,45,.07);
    }
    .quick-search input{
      flex:1;
      border:0;
      min-height:48px;
      padding:0 13px;
      box-shadow:none;
      background:transparent;
    }
    .section{
      padding:54px 0;
    }
    .section-tight{padding-top:28px}
    .section-head{
      max-width:850px;
      margin:0 0 24px;
    }
    .section-head h2{
      margin:0 0 10px;
      color:var(--berry-2);
      font-size:32px;
      line-height:1.22;
      font-weight:950;
      letter-spacing:-.025em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:16px;
    }
    .trust-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:18px;
    }
    .trust-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:15px 16px;
      display:flex;
      align-items:center;
      gap:10px;
      box-shadow:0 8px 22px rgba(80,30,45,.06);
      font-weight:900;
      color:#4b363e;
    }
    .trust-item i{color:var(--coral)}
    .layout-grid{
      display:grid;
      grid-template-columns:280px 1fr;
      gap:24px;
      align-items:start;
    }
    .side-panel{
      position:sticky;
      top:112px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
      padding:20px;
    }
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:14px;
      color:var(--berry-2);
      font-weight:950;
      font-size:18px;
    }
    .filter-group{
      border-top:1px solid #f4e1dd;
      padding:16px 0;
    }
    .filter-group:first-of-type{border-top:0;padding-top:0}
    .filter-label{
      margin:0 0 9px;
      color:#4c3b41;
      font-size:13px;
      font-weight:950;
    }
    .check-list{
      display:grid;
      gap:9px;
    }
    .check-item{
      display:flex;
      align-items:center;
      gap:9px;
      min-height:38px;
      padding:8px 10px;
      border-radius:14px;
      color:#67565c;
      background:#fff8f2;
      border:1px solid transparent;
      font-size:14px;
      font-weight:800;
    }
    .check-item:hover,.check-item.is-on{
      border-color:#f0c4bc;
      color:var(--berry);
      background:#fff2ea;
    }
    .check-dot{
      width:11px;
      height:11px;
      border-radius:999px;
      background:#e7c9cf;
      box-shadow:inset 0 0 0 2px #fff;
    }
    .check-item.is-on .check-dot{background:var(--coral)}
    .content-stack{
      display:grid;
      gap:16px;
    }
    .entry-card{
      position:relative;
      display:grid;
      grid-template-columns:104px 1fr auto;
      gap:18px;
      align-items:center;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:18px;
      box-shadow:0 12px 28px rgba(80,30,45,.07);
      overflow:hidden;
      transition:.22s ease;
    }
    .entry-card:before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:6px;
      background:linear-gradient(180deg,var(--coral),var(--berry));
    }
    .entry-card:hover{
      transform:translateY(-2px);
      border-color:#efbeb5;
      box-shadow:0 18px 42px rgba(80,30,45,.12);
    }
    .entry-visual{
      height:84px;
      border-radius:18px;
      display:grid;
      place-items:center;
      color:#fff;
      font-size:26px;
      background:
        radial-gradient(circle at 72% 22%,rgba(255,255,255,.35),transparent 26%),
        linear-gradient(135deg,var(--berry),var(--coral));
    }
    .entry-info h3{
      margin:5px 0 6px;
      color:var(--berry-2);
      font-size:20px;
      line-height:1.28;
      font-weight:950;
    }
    .entry-info p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .entry-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      align-items:center;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 9px;
      border-radius:999px;
      background:#fff1e9;
      color:var(--berry);
      border:1px solid #f2d2cc;
      font-size:12px;
      font-weight:900;
    }
    .entry-action{
      display:flex;
      flex-direction:column;
      align-items:flex-end;
      gap:10px;
      min-width:130px;
    }
    .status{
      color:#6a5a60;
      font-size:13px;
      font-weight:800;
    }
    .small-btn{
      min-height:42px;
      padding:0 15px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      color:#fff;
      background:var(--berry);
      font-size:14px;
      font-weight:950;
      box-shadow:0 10px 22px rgba(122,35,70,.18);
    }
    .small-btn:hover{color:#fff;background:var(--coral);transform:translateY(-2px)}
    .notice-panel{
      background:linear-gradient(135deg,var(--berry-2),var(--berry));
      border-radius:28px;
      padding:30px;
      color:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .notice-panel:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-100px;
      top:-100px;
      border-radius:999px;
      background:rgba(255,122,89,.24);
    }
    .notice-panel h2{
      position:relative;
      z-index:1;
      margin:0 0 10px;
      font-size:30px;
      line-height:1.25;
      font-weight:950;
    }
    .notice-panel p{
      position:relative;
      z-index:1;
      max-width:820px;
      margin:0;
      color:rgba(255,255,255,.84);
    }
    .notice-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:22px;
    }
    .notice-card{
      border:1px solid rgba(255,255,255,.20);
      background:rgba(255,255,255,.10);
      border-radius:20px;
      padding:18px;
    }
    .notice-card strong{
      display:block;
      margin-bottom:5px;
      color:#fff;
      font-size:18px;
    }
    .notice-card span{color:rgba(255,255,255,.78);font-size:14px}
    .path-board{
      border-radius:28px;
      background:#fff;
      border:1px solid var(--line);
      padding:28px;
      box-shadow:var(--shadow-sm);
    }
    .step-list{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;
      counter-reset:path;
    }
    .step-item{
      position:relative;
      padding:18px 16px;
      min-height:150px;
      background:#fff8f2;
      border:1px solid #f1d9d5;
      border-radius:20px;
      counter-increment:path;
    }
    .step-item:before{
      content:counter(path);
      display:grid;
      place-items:center;
      width:34px;
      height:34px;
      border-radius:999px;
      color:#fff;
      background:linear-gradient(135deg,var(--coral),var(--berry));
      font-weight:950;
      margin-bottom:14px;
      box-shadow:0 10px 20px rgba(122,35,70,.16);
    }
    .step-item h3{
      margin:0 0 6px;
      color:var(--berry-2);
      font-size:17px;
      font-weight:950;
      line-height:1.35;
    }
    .step-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.65}
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 20px rgba(80,30,45,.06);
    }
    .accordion-title{
      border:0 !important;
      color:var(--berry-2);
      font-weight:950;
      font-size:16px;
      padding:18px 52px 18px 20px;
      background:#fff;
    }
    .accordion-title:focus,.accordion-title:hover{
      background:#fff6ef;
      color:var(--berry);
    }
    .accordion-content{
      border:0 !important;
      border-left:4px solid var(--coral) !important;
      color:var(--muted);
      padding:4px 22px 20px;
      background:#fffdf9;
    }
    .contact-panel{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .form-card,.privacy-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:26px;
      padding:26px;
      box-shadow:var(--shadow-sm);
    }
    .form-card h2,.privacy-card h2{
      margin:0 0 10px;
      color:var(--berry-2);
      font-size:26px;
      font-weight:950;
    }
    .form-card p,.privacy-card p{color:var(--muted);margin:0 0 18px}
    .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .field{display:flex;flex-direction:column;gap:8px;margin-bottom:14px}
    .field.full{grid-column:1/-1}
    .field label{font-size:13px;font-weight:950;color:#4e3c43}
    .field input,.field select,.field textarea{width:100%;padding:12px 14px}
    .field textarea{min-height:128px;resize:vertical}
    .tip-list{display:grid;gap:12px;margin-top:18px}
    .tip-item{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:18px;
      background:#fff8f2;
      border:1px solid #f1d9d5;
    }
    .tip-item i{color:var(--coral);margin-top:5px}
    .tip-item strong{display:block;color:var(--berry-2);margin-bottom:2px}
    .tip-item span{color:var(--muted);font-size:14px}
    .pagination-wrap{
      margin-top:22px;
      display:flex;
      justify-content:center;
    }
    .pagination .current{
      background:var(--berry);
      border-radius:999px;
    }
    .pagination a{
      border-radius:999px;
      color:var(--berry);
      font-weight:900;
    }
    .pagination a:hover{background:#fff1e9;color:var(--coral)}
    .site-footer{
      background:linear-gradient(135deg,var(--berry-2),#32101f);
      color:#fff8ef;
      padding:54px 0 26px;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .75fr;
      gap:30px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.16);
    }
    .footer-brand{
      color:#fff;
      font-size:22px;
      font-weight:950;
      margin-bottom:10px;
    }
    .footer-desc{
      max-width:560px;
      color:rgba(255,248,239,.78);
      margin:0;
    }
    .footer-title{
      color:#ffd2c1;
      font-weight:950;
      margin:0 0 12px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{color:rgba(255,248,239,.78)}
    .footer-links a:hover{color:var(--coral)}
    .footer-bottom{
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:rgba(255,248,239,.70);
      font-size:13px;
      flex-wrap:wrap;
    }
    .footer-alert{color:#ffd2c1}
    .fixed-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:60;
      width:min(calc(100% - 32px),880px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 14px 12px 18px;
      border-radius:999px;
      background:rgba(255,255,255,.96);
      border:1px solid var(--line);
      box-shadow:0 18px 52px rgba(80,30,45,.18);
    }
    .fixed-cta span{
      display:flex;
      align-items:center;
      gap:9px;
      color:var(--berry-2);
      font-weight:950;
    }
    .fixed-cta small{
      color:var(--muted);
      font-weight:700;
    }
    @media (max-width:1100px){
      .nav-wrap{flex-wrap:wrap}
      .brand.hide-for-small-only{display:none!important}
      .mobile-row{display:flex;width:100%;align-items:center;justify-content:space-between;gap:12px}
      .desktop-search{order:3;flex-basis:100%}
      .nav-links{order:2;margin-left:auto}
      .nav-links .nav-cta{display:none}
      .brand{min-width:auto}
      .layout-grid{grid-template-columns:1fr}
      .side-panel{position:relative;top:auto}
      .step-list{grid-template-columns:repeat(3,1fr)}
    }
    @media (max-width:768px){
      body{padding-bottom:96px}
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .site-header{position:sticky}
      .nav-wrap{padding:10px 0;gap:10px}
      .mobile-row{display:flex}
      .desktop-search,.nav-links{display:none}
      .mobile-search{
        display:flex;
        flex:0 0 100%;
        height:46px;
      }
      .mobile-tabs{
        display:flex;
        width:100%;
        overflow-x:auto;
        gap:8px;
        padding:2px 0 4px;
        scrollbar-width:none;
      }
      .mobile-tabs::-webkit-scrollbar{display:none}
      .mobile-tabs a{
        flex:0 0 auto;
        padding:8px 12px;
        border-radius:999px;
        background:#fff;
        border:1px solid var(--line);
        color:#5d4c52;
        font-size:13px;
        font-weight:900;
      }
      .mobile-tabs a.active{
        background:var(--berry);
        color:#fff;
        border-color:var(--berry);
      }
      .brand-text strong{font-size:16px}
      .brand-mark{width:42px;height:42px;flex-basis:42px;border-radius:14px}
      .nav-cta{min-height:40px;padding:0 13px;font-size:13px}
      .page-hero{padding:28px 0 24px}
      .hero-shell{padding:22px;border-radius:24px}
      h1{font-size:32px}
      .hero-lead{font-size:16px}
      .quick-search{flex-direction:column;border-radius:18px}
      .quick-search .btn-primary{width:100%}
      .trust-strip{grid-template-columns:1fr 1fr}
      .entry-card{grid-template-columns:1fr;gap:13px}
      .entry-visual{height:72px}
      .entry-action{align-items:flex-start}
      .notice-grid{grid-template-columns:1fr}
      .step-list{grid-template-columns:1fr}
      .contact-panel{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .field.full{grid-column:auto}
      .footer-grid{grid-template-columns:1fr;gap:22px}
      .fixed-cta{
        bottom:calc(10px + env(safe-area-inset-bottom));
        border-radius:24px;
        align-items:stretch;
      }
      .fixed-cta span{display:block;line-height:1.35}
      .fixed-cta small{display:block;margin-top:2px}
      .fixed-cta .btn-primary{min-height:48px;white-space:nowrap;padding:0 14px}
    }
    @media (max-width:520px){
      .hero-actions{display:grid;grid-template-columns:1fr}
      .btn-primary,.btn-secondary{width:100%}
      .trust-strip{grid-template-columns:1fr}
      .section{padding:42px 0}
      .section-head h2{font-size:26px}
      .notice-panel,.path-board,.form-card,.privacy-card{padding:22px;border-radius:22px}
      .fixed-cta{width:calc(100% - 20px);padding:10px}
      .fixed-cta span{font-size:13px}
    }

/* roulang page: category2 */
:root{
      --color-primary:#68213f;
      --color-primary-2:#8f2e58;
      --color-accent:#ff7a59;
      --color-accent-2:#ffb067;
      --color-bg:#fff7ed;
      --color-bg-soft:#fffaf4;
      --color-card:#ffffff;
      --color-cream:#fff1dc;
      --color-line:#f0d9d5;
      --color-line-2:#ead7e1;
      --color-text:#2d2426;
      --color-muted:#756568;
      --color-light:#fffdf9;
      --color-dark:#321223;
      --shadow-soft:0 18px 45px rgba(80,30,45,.09);
      --shadow-hover:0 24px 60px rgba(104,33,63,.16);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --container:1200px;
      --header-h:84px;
      --transition:all .22s 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(--color-text);
      background:
        radial-gradient(circle at 8% 2%,rgba(255,176,103,.20),transparent 28%),
        radial-gradient(circle at 92% 10%,rgba(143,46,88,.12),transparent 30%),
        linear-gradient(180deg,#fff8ef 0%,#fffaf5 42%,#fff7ed 100%);
      line-height:1.75;
      padding-bottom:92px;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover,a:focus{color:var(--color-accent)}
    button,input,select,textarea{font:inherit}
    input,select,textarea{outline:none}
    img{max-width:100%;display:block}
    ::selection{background:rgba(255,122,89,.22);color:var(--color-primary)}
    .site-container{
      width:min(calc(100% - 32px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section-tight{padding:52px 0}
    .section-title{
      max-width:760px;
      margin-bottom:30px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-primary);
      background:#fff0e6;
      border:1px solid rgba(255,122,89,.22);
      border-radius:var(--radius-pill);
      padding:7px 13px;
      font-size:13px;
      font-weight:800;
      margin-bottom:12px;
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(31px,4.4vw,50px);
      line-height:1.15;
      letter-spacing:-.04em;
      font-weight:900;
      color:var(--color-dark);
      margin-bottom:18px;
    }
    h2{
      font-size:clamp(25px,3vw,34px);
      line-height:1.2;
      letter-spacing:-.03em;
      font-weight:900;
      color:var(--color-dark);
      margin-bottom:12px;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:850;
      color:var(--color-dark);
      margin-bottom:10px;
    }
    p{color:var(--color-muted);font-size:16px}
    .lead{
      font-size:18px;
      color:#5f5054;
      max-width:770px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,250,244,.94);
      border-bottom:1px solid rgba(240,217,213,.85);
      box-shadow:0 10px 30px rgba(80,30,45,.06);
      backdrop-filter:saturate(120%) blur(10px);
    }
    .nav-wrap{
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      align-items:center;
      gap:18px;
      min-height:var(--header-h);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--color-dark);
    }
    .brand:hover{color:var(--color-primary)}
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:white;
      background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
      box-shadow:0 12px 25px rgba(104,33,63,.22);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      right:-3px;
      top:6px;
      width:10px;
      height:10px;
      border-radius:50%;
      background:#39d98a;
      border:2px solid #fff8ef;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.15}
    .brand-text strong{
      font-size:17px;
      font-weight:900;
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-text span{
      margin-top:3px;
      font-size:12px;
      color:var(--color-muted);
      font-weight:700;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:48px;
      padding:0 16px;
      border:1px solid var(--color-line);
      border-radius:var(--radius-pill);
      background:#fffdf9;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
      transition:var(--transition);
    }
    .nav-search:hover,
    .nav-search:focus-within{
      border-color:rgba(255,122,89,.75);
      background:#fffaf2;
      box-shadow:0 0 0 4px rgba(255,122,89,.10);
    }
    .nav-search i{color:var(--color-primary-2)}
    .nav-search input{
      width:100%;
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      height:46px;
      color:var(--color-text);
      font-size:14px;
    }
    .nav-search input:focus{border:0;box-shadow:none;background:transparent}
    .nav-links{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:8px;
      white-space:nowrap;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 12px;
      border-radius:var(--radius-pill);
      color:#5b4b50;
      font-size:14px;
      font-weight:800;
    }
    .nav-link:hover{
      background:#fff1e7;
      color:var(--color-primary);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-primary-2));
      box-shadow:0 10px 22px rgba(104,33,63,.18);
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:42px;
      padding:0 16px;
      border-radius:var(--radius-pill);
      color:#fff;
      font-size:14px;
      font-weight:900;
      background:linear-gradient(135deg,var(--color-accent),var(--color-primary));
      box-shadow:0 12px 28px rgba(255,122,89,.22);
    }
    .nav-cta:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(104,33,63,.24);
    }
    .mobile-row,.mobile-search,.mobile-tabs{display:none}

    .top-alert{
      background:linear-gradient(90deg,var(--color-primary),#7d284c,var(--color-accent));
      color:#fff;
      font-weight:800;
      font-size:14px;
      padding:10px 0;
    }
    .top-alert .site-container{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .top-alert span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .top-alert a{
      color:#fff7d7;
      text-decoration:underline;
      text-underline-offset:3px;
    }

    .page-hero{
      padding:54px 0 28px;
      overflow:hidden;
    }
    .hero-shell{
      position:relative;
      border:1px solid rgba(240,217,213,.92);
      border-radius:32px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,241,220,.96)),
        radial-gradient(circle at 80% 12%,rgba(255,122,89,.16),transparent 36%);
      box-shadow:var(--shadow-soft);
      padding:34px;
    }
    .hero-shell:before{
      content:"";
      position:absolute;
      right:-90px;
      top:-90px;
      width:260px;
      height:260px;
      background:rgba(104,33,63,.10);
      border-radius:50%;
    }
    .hero-summary{
      position:relative;
      z-index:1;
    }
    .hero-title-row{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
      gap:28px;
      align-items:stretch;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:52px;
      padding:0 22px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:900;
      cursor:pointer;
      transition:var(--transition);
      line-height:1;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--color-accent),var(--color-primary));
      box-shadow:0 14px 30px rgba(255,122,89,.26);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(104,33,63,.26);
    }
    .btn-secondary{
      color:var(--color-primary);
      background:#fffdf9;
      border-color:rgba(104,33,63,.18);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      background:#fff1e7;
      border-color:rgba(255,122,89,.55);
      transform:translateY(-2px);
    }
    .btn-small{
      min-height:40px;
      padding:0 14px;
      font-size:14px;
    }
    .trust-line{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:28px;
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px;
      border-radius:18px;
      background:#fffdf9;
      border:1px solid rgba(240,217,213,.86);
      font-size:14px;
      font-weight:850;
      color:#514044;
    }
    .trust-item i{
      width:30px;
      height:30px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:#fff0e7;
      color:var(--color-accent);
    }

    .choice-board{
      position:relative;
      z-index:1;
      height:100%;
      background:var(--color-dark);
      color:#fff;
      border-radius:28px;
      padding:22px;
      box-shadow:0 18px 44px rgba(50,18,35,.20);
      overflow:hidden;
    }
    .choice-board:after{
      content:"";
      position:absolute;
      inset:auto -40px -70px auto;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(255,122,89,.20);
    }
    .choice-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .choice-head strong{
      font-size:18px;
      font-weight:900;
    }
    .status-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:var(--radius-pill);
      padding:7px 10px;
      background:rgba(255,255,255,.12);
      color:#ffe8d7;
      font-size:12px;
      font-weight:850;
    }
    .status-pill:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:#39d98a;
      box-shadow:0 0 0 5px rgba(57,217,138,.12);
    }
    .recommend-card{
      position:relative;
      z-index:1;
      background:#fffaf4;
      border-radius:22px;
      padding:18px;
      color:var(--color-text);
      border:1px solid rgba(255,176,103,.35);
      margin-bottom:14px;
    }
    .recommend-card .tag{
      background:linear-gradient(135deg,var(--color-accent),var(--color-accent-2));
      color:#fff;
    }
    .recommend-title{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin:12px 0 8px;
    }
    .recommend-title h3{margin:0;font-size:23px}
    .price-badge{
      min-width:74px;
      text-align:center;
      border-radius:16px;
      padding:8px 10px;
      background:#fff0e6;
      color:var(--color-primary);
      font-weight:950;
      line-height:1.15;
    }
    .price-badge span{
      display:block;
      font-size:12px;
      color:#8a666b;
      font-weight:800;
    }
    .mini-checks{
      display:grid;
      gap:9px;
      margin:14px 0 0;
      padding:0;
      list-style:none;
    }
    .mini-checks li{
      display:flex;
      align-items:center;
      gap:9px;
      color:#5b4d50;
      font-size:14px;
      font-weight:750;
    }
    .mini-checks i{color:var(--color-accent)}
    .quick-card-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .quick-card{
      padding:13px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.13);
      color:#fff3ea;
      font-size:13px;
      font-weight:800;
    }
    .quick-card i{color:#ffb067;margin-right:6px}

    .quick-entry-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:22px;
    }
    .entry-card{
      position:relative;
      padding:18px;
      min-height:138px;
      border-radius:22px;
      background:#fffdf9;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:var(--transition);
    }
    .entry-card:before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:5px;
      background:linear-gradient(90deg,var(--color-accent),var(--color-primary));
      opacity:.76;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:rgba(255,122,89,.52);
      box-shadow:var(--shadow-hover);
    }
    .entry-icon{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:var(--color-primary);
      background:#fff0e7;
      margin-bottom:12px;
      font-size:18px;
    }
    .entry-card h3{font-size:18px;margin-bottom:6px}
    .entry-card p{font-size:14px;line-height:1.62;margin-bottom:0}

    .filter-panel{
      border-radius:30px;
      background:#fffdf9;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:var(--shadow-soft);
      padding:28px;
    }
    .filter-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:20px;
      margin-bottom:20px;
    }
    .selected-count{
      border-radius:var(--radius-pill);
      padding:9px 14px;
      background:#fff1e7;
      color:var(--color-primary);
      font-weight:900;
      font-size:14px;
      min-width:max-content;
    }
    .filter-groups{
      display:grid;
      gap:20px;
    }
    .filter-group{
      padding:18px;
      border-radius:22px;
      background:linear-gradient(180deg,#fffaf4,#fff);
      border:1px solid rgba(240,217,213,.82);
    }
    .filter-group-title{
      display:flex;
      align-items:center;
      gap:9px;
      margin-bottom:12px;
      font-weight:900;
      color:var(--color-dark);
    }
    .filter-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag,
    .filter-tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:7px;
      border-radius:var(--radius-pill);
      padding:8px 12px;
      font-size:13px;
      font-weight:850;
      border:1px solid rgba(104,33,63,.12);
      background:#fff;
      color:#654f55;
      cursor:pointer;
      transition:var(--transition);
      user-select:none;
    }
    .filter-tag:hover{
      border-color:rgba(255,122,89,.55);
      background:#fff4eb;
      color:var(--color-primary);
      transform:translateY(-1px);
    }
    .filter-tag.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
      box-shadow:0 10px 20px rgba(104,33,63,.16);
    }
    .filter-result{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
      margin-top:22px;
      padding:18px;
      border-radius:22px;
      background:#fff0e7;
      border:1px dashed rgba(255,122,89,.52);
    }
    .filter-result strong{
      display:block;
      color:var(--color-dark);
      font-size:18px;
      margin-bottom:4px;
    }
    .filter-result p{margin-bottom:0;font-size:14px}

    .timeline-wrap{
      display:grid;
      grid-template-columns:minmax(260px,.78fr) minmax(0,1.22fr);
      gap:26px;
      align-items:start;
    }
    .notice-card{
      position:sticky;
      top:112px;
      border-radius:28px;
      background:linear-gradient(160deg,var(--color-primary),#3a1629);
      color:#fff;
      padding:26px;
      overflow:hidden;
      box-shadow:0 20px 50px rgba(50,18,35,.18);
    }
    .notice-card:after{
      content:"";
      position:absolute;
      width:160px;
      height:160px;
      right:-60px;
      bottom:-55px;
      border-radius:50%;
      background:rgba(255,122,89,.22);
    }
    .notice-card h2{color:#fff}
    .notice-card p{color:#f8ded7}
    .notice-list{
      display:grid;
      gap:14px;
      margin:20px 0 0;
      padding:0;
      list-style:none;
      position:relative;
      z-index:1;
    }
    .notice-list li{
      display:flex;
      gap:10px;
      color:#fff7ed;
      font-weight:760;
      font-size:14px;
    }
    .notice-list i{color:#ffb067;margin-top:6px}
    .timeline{
      position:relative;
      display:grid;
      gap:15px;
    }
    .timeline-item{
      display:grid;
      grid-template-columns:112px minmax(0,1fr);
      gap:18px;
      padding:18px;
      border-radius:24px;
      background:#fffdf9;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:0 14px 34px rgba(80,30,45,.07);
      transition:var(--transition);
    }
    .timeline-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,122,89,.5);
      box-shadow:var(--shadow-hover);
    }
    .time-label{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:6px;
      color:var(--color-primary);
      font-weight:950;
    }
    .time-label span{
      padding:7px 10px;
      border-radius:var(--radius-pill);
      background:#fff0e7;
      color:var(--color-primary);
      font-size:12px;
    }
    .timeline-content h3{font-size:19px;margin-bottom:6px}
    .timeline-content p{font-size:15px;margin-bottom:12px}
    .timeline-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .meta-chip{
      border-radius:var(--radius-pill);
      padding:6px 10px;
      background:#fff5ee;
      color:#72565c;
      font-size:12px;
      font-weight:850;
    }

    .path-section{
      background:
        linear-gradient(180deg,rgba(104,33,63,.06),rgba(255,250,244,0)),
        var(--color-bg-soft);
      border-top:1px solid rgba(240,217,213,.7);
      border-bottom:1px solid rgba(240,217,213,.7);
    }
    .path-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      counter-reset:step;
    }
    .path-card{
      position:relative;
      min-height:210px;
      padding:20px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .path-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(255,122,89,.48);
    }
    .path-num{
      width:42px;
      height:42px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--color-primary),var(--color-accent));
      font-weight:950;
      margin-bottom:16px;
    }
    .path-card h3{font-size:18px}
    .path-card p{font-size:14px;margin-bottom:0}
    .compare-table{
      margin-top:26px;
      border-radius:26px;
      overflow:hidden;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:var(--shadow-soft);
      background:#fff;
    }
    .compare-row{
      display:grid;
      grid-template-columns:1fr 1.4fr 1.2fr;
      gap:0;
    }
    .compare-row > div{
      padding:16px 18px;
      border-bottom:1px solid rgba(240,217,213,.8);
      color:#645457;
    }
    .compare-row:last-child > div{border-bottom:0}
    .compare-head > div{
      background:var(--color-primary);
      color:#fff;
      font-weight:900;
    }
    .compare-row strong{color:var(--color-dark)}
    .compare-head strong{color:#fff}

    .faq-contact-grid{
      display:grid;
      grid-template-columns:minmax(0,1.04fr) minmax(300px,.96fr);
      gap:26px;
      align-items:start;
    }
    .faq-box,
    .contact-card{
      border-radius:28px;
      background:#fffdf9;
      border:1px solid rgba(240,217,213,.9);
      box-shadow:var(--shadow-soft);
      padding:24px;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(240,217,213,.9);
      background:#fff;
    }
    .accordion-title{
      border:0!important;
      color:var(--color-primary)!important;
      font-weight:900;
      font-size:16px;
      padding:18px 48px 18px 18px;
      background:#fffaf4;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff0e7;
      color:var(--color-primary)!important;
    }
    .accordion-title:before{
      color:var(--color-accent);
      font-weight:900;
      right:18px;
    }
    .accordion-content{
      border:0!important;
      border-left:4px solid var(--color-accent)!important;
      background:#fff!important;
      color:var(--color-muted);
      padding:16px 18px 18px;
    }
    .contact-form{
      display:grid;
      gap:14px;
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }
    .field label{
      display:block;
      margin-bottom:7px;
      color:var(--color-dark);
      font-size:14px;
      font-weight:900;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      min-height:48px;
      margin:0;
      padding:11px 13px;
      border:1px solid rgba(240,217,213,.95);
      border-radius:16px;
      background:#fff;
      box-shadow:none;
      color:var(--color-text);
      transition:var(--transition);
    }
    .field textarea{
      min-height:118px;
      resize:vertical;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:rgba(255,122,89,.82);
      box-shadow:0 0 0 4px rgba(255,122,89,.12);
      background:#fffdf9;
    }
    .privacy-note{
      display:flex;
      gap:12px;
      padding:15px;
      border-radius:20px;
      background:#fff0e7;
      color:#614d52;
      margin:16px 0;
      font-size:14px;
      font-weight:760;
    }
    .privacy-note i{
      color:var(--color-primary);
      margin-top:5px;
    }

    .final-cta{
      padding:42px 0 70px;
    }
    .cta-box{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      align-items:center;
      gap:22px;
      padding:28px;
      border-radius:30px;
      background:
        radial-gradient(circle at 82% 10%,rgba(255,176,103,.26),transparent 32%),
        linear-gradient(135deg,#fffdf9,#fff0e7);
      border:1px solid rgba(240,217,213,.95);
      box-shadow:var(--shadow-soft);
    }
    .cta-box h2{margin-bottom:8px}
    .cta-box p{margin-bottom:0}

    .site-footer{
      background:
        radial-gradient(circle at 12% 0,rgba(255,122,89,.20),transparent 26%),
        linear-gradient(135deg,#321223,#5e1f3b);
      color:#fffaf4;
      padding:54px 0 28px;
      margin-top:0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .75fr .75fr;
      gap:34px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.16);
    }
    .footer-brand{
      font-size:22px;
      font-weight:950;
      margin-bottom:12px;
      letter-spacing:-.03em;
    }
    .footer-desc{
      color:#f4d8d2;
      max-width:560px;
      margin-bottom:0;
      font-size:15px;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:12px;
      font-size:15px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:#f4d8d2;
      font-size:14px;
      font-weight:760;
    }
    .footer-links a:hover{color:var(--color-accent-2)}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      color:#f4d8d2;
      font-size:13px;
    }
    .footer-alert{
      color:#ffcfb8;
    }

    .fixed-bottom-cta{
      position:fixed;
      left:50%;
      bottom:18px;
      transform:translateX(-50%);
      z-index:60;
      width:min(calc(100% - 32px),860px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 14px 12px 18px;
      border-radius:var(--radius-pill);
      background:rgba(50,18,35,.94);
      color:#fff;
      box-shadow:0 18px 46px rgba(50,18,35,.26);
      border:1px solid rgba(255,255,255,.12);
    }
    .fixed-bottom-cta .tip{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      color:#fff3ea;
      font-size:14px;
    }
    .fixed-bottom-cta .tip i{color:#ffb067}
    .fixed-bottom-cta .actions{
      display:flex;
      gap:10px;
      align-items:center;
    }
    .fixed-bottom-cta .bottom-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:var(--radius-pill);
      font-weight:950;
      color:#fff;
      background:linear-gradient(135deg,var(--color-accent),var(--color-primary-2));
    }
    .fixed-bottom-cta .bottom-btn:hover{
      color:#fff;
      transform:translateY(-2px);
    }
    .fixed-bottom-cta .bottom-link{
      color:#ffe0ce;
      font-weight:850;
      font-size:14px;
    }
    .fixed-bottom-cta .bottom-link:hover{color:#fff}

    @media screen and (max-width:1100px){
      .nav-wrap{
        grid-template-columns:1fr;
        gap:10px;
        padding:12px 0;
      }
      .hide-for-small-only,
      .desktop-search{display:none!important}
      .mobile-row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:14px;
      }
      .mobile-search{display:flex}
      .nav-links{display:none}
      .mobile-tabs{
        display:flex;
        gap:8px;
        overflow-x:auto;
        padding:2px 0 4px;
        scrollbar-width:none;
      }
      .mobile-tabs::-webkit-scrollbar{display:none}
      .mobile-tabs a{
        min-width:max-content;
        padding:8px 12px;
        border-radius:var(--radius-pill);
        background:#fffdf9;
        border:1px solid var(--color-line);
        font-size:13px;
        font-weight:850;
        color:#5b4b50;
      }
      .mobile-tabs a.active{
        color:#fff;
        border-color:transparent;
        background:linear-gradient(135deg,var(--color-primary),var(--color-primary-2));
      }
      .hero-title-row,
      .timeline-wrap,
      .faq-contact-grid{
        grid-template-columns:1fr;
      }
      .notice-card{position:relative;top:auto}
      .quick-entry-grid{grid-template-columns:repeat(2,1fr)}
      .path-grid{grid-template-columns:repeat(3,1fr)}
      .trust-line{grid-template-columns:repeat(2,1fr)}
    }

    @media screen and (max-width:760px){
      body{padding-bottom:86px}
      .site-container{width:min(calc(100% - 24px),var(--container))}
      .section{padding:56px 0}
      .page-hero{padding:32px 0 20px}
      .hero-shell{padding:22px;border-radius:24px}
      .hero-actions .btn{width:100%}
      .choice-board{padding:18px;border-radius:24px}
      .recommend-title{flex-direction:column}
      .price-badge{width:max-content}
      .quick-entry-grid{grid-template-columns:1fr}
      .filter-panel,.faq-box,.contact-card{padding:18px;border-radius:24px}
      .filter-top{flex-direction:column}
      .filter-result{grid-template-columns:1fr}
      .timeline-item{grid-template-columns:1fr;gap:8px}
      .time-label{flex-direction:row;align-items:center}
      .path-grid{grid-template-columns:1fr}
      .compare-table{overflow-x:auto}
      .compare-row{min-width:650px}
      .form-row{grid-template-columns:1fr}
      .cta-box{grid-template-columns:1fr;padding:22px;border-radius:24px}
      .cta-box .btn{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:24px}
      .footer-bottom{flex-direction:column}
      .fixed-bottom-cta{
        bottom:calc(10px + env(safe-area-inset-bottom));
        width:calc(100% - 18px);
        border-radius:22px;
        padding:10px;
      }
      .fixed-bottom-cta .tip{
        flex:1;
        font-size:12px;
        line-height:1.35;
      }
      .fixed-bottom-cta .bottom-link{display:none}
      .fixed-bottom-cta .bottom-btn{
        min-height:44px;
        padding:0 13px;
        font-size:13px;
      }
    }

    @media screen and (max-width:520px){
      .brand-mark{width:42px;height:42px;border-radius:14px}
      .brand-text strong{font-size:15px}
      .brand-text span{font-size:11px}
      .nav-cta{min-height:38px;padding:0 12px;font-size:13px}
      .trust-line{grid-template-columns:1fr}
      .quick-card-list{grid-template-columns:1fr}
      .top-alert .site-container{align-items:flex-start}
    }
